Skip to content

Commit 26b4b64

Browse files
author
github-actions-bot
committed
fix: sort countries
1 parent 31da7e5 commit 26b4b64

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

docs/PolicyTypeResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **str** | | must be one of ["null", "vacation", "holiday", "sick", "personal", "jury_duty", "volunteer", "bereavement", ]
7+
**value** | **str** | | must be one of ["null", "bereavement", "holiday", "jury_duty", "personal", "sick", "vacation", "volunteer", ]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1010

openapi_client/model/address_no_non_null_request.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ class AddressNoNonNullRequest(ModelNormal):
6868
'CL': "CL",
6969
'PE': "PE",
7070
'AT': "AT",
71-
'AU': "AU",
7271
'BE': "BE",
7372
'CH': "CH",
7473
'CY': "CY",

openapi_client/model/address_response.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ class AddressResponse(ModelNormal):
6969
'CL': "CL",
7070
'PE': "PE",
7171
'AT': "AT",
72-
'AU': "AU",
7372
'BE': "BE",
7473
'CH': "CH",
7574
'CY': "CY",

openapi_client/model/policy_type_response.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ class PolicyTypeResponse(ModelSimple):
5252
('value',): {
5353
'None': None,
5454
'NULL': "null",
55-
'VACATION': "vacation",
55+
'BEREAVEMENT': "bereavement",
5656
'HOLIDAY': "holiday",
57-
'SICK': "sick",
58-
'PERSONAL': "personal",
5957
'JURY_DUTY': "jury_duty",
58+
'PERSONAL': "personal",
59+
'SICK': "sick",
60+
'VACATION': "vacation",
6061
'VOLUNTEER': "volunteer",
61-
'BEREAVEMENT': "bereavement",
6262
},
6363
}
6464

@@ -108,10 +108,10 @@ def __init__(self, *args, **kwargs):
108108
Note that value can be passed either in args or in kwargs, but not in both.
109109
110110
Args:
111-
args[0] (str):, must be one of ["null", "vacation", "holiday", "sick", "personal", "jury_duty", "volunteer", "bereavement", ] # noqa: E501
111+
args[0] (str):, must be one of ["null", "bereavement", "holiday", "jury_duty", "personal", "sick", "vacation", "volunteer", ] # noqa: E501
112112
113113
Keyword Args:
114-
value (str):, must be one of ["null", "vacation", "holiday", "sick", "personal", "jury_duty", "volunteer", "bereavement", ] # noqa: E501
114+
value (str):, must be one of ["null", "bereavement", "holiday", "jury_duty", "personal", "sick", "vacation", "volunteer", ] # noqa: E501
115115
_check_type (bool): if True, values for parameters in openapi_types
116116
will be type checked and a TypeError will be
117117
raised if the wrong type is input.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from setuptools import setup, find_packages # noqa: H301
99

1010
NAME = "affixapi"
11-
VERSION = "1.1.68"
11+
VERSION = "1.1.69"
1212

1313
# To install the library, run the following
1414
#

0 commit comments

Comments
 (0)