Skip to content

Commit 31da7e5

Browse files
author
github-actions-bot
committed
fix: add holiday
1 parent 4b9ee11 commit 31da7e5

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
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", "sick", "personal", "jury_duty", "volunteer", "bereavement", ]
7+
**value** | **str** | | must be one of ["null", "vacation", "holiday", "sick", "personal", "jury_duty", "volunteer", "bereavement", ]
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/policy_type_response.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ class PolicyTypeResponse(ModelSimple):
5353
'None': None,
5454
'NULL': "null",
5555
'VACATION': "vacation",
56+
'HOLIDAY': "holiday",
5657
'SICK': "sick",
5758
'PERSONAL': "personal",
5859
'JURY_DUTY': "jury_duty",
@@ -107,10 +108,10 @@ def __init__(self, *args, **kwargs):
107108
Note that value can be passed either in args or in kwargs, but not in both.
108109
109110
Args:
110-
args[0] (str):, must be one of ["null", "vacation", "sick", "personal", "jury_duty", "volunteer", "bereavement", ] # noqa: E501
111+
args[0] (str):, must be one of ["null", "vacation", "holiday", "sick", "personal", "jury_duty", "volunteer", "bereavement", ] # noqa: E501
111112
112113
Keyword Args:
113-
value (str):, must be one of ["null", "vacation", "sick", "personal", "jury_duty", "volunteer", "bereavement", ] # noqa: E501
114+
value (str):, must be one of ["null", "vacation", "holiday", "sick", "personal", "jury_duty", "volunteer", "bereavement", ] # noqa: E501
114115
_check_type (bool): if True, values for parameters in openapi_types
115116
will be type checked and a TypeError will be
116117
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.67"
11+
VERSION = "1.1.68"
1212

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

0 commit comments

Comments
 (0)