Skip to content

Commit fdd4706

Browse files
authored
Merge pull request #23 from rchi-vail/spec_enum_updates
Re-generate with spec updates
2 parents 61d739a + dea533f commit fdd4706

13 files changed

+79
-63
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
66

77
## [Unreleased]
88
None
9+
<a name="4.0.4"></a>
10+
## [4.0.4] - 2022-10-07
11+
### Added
12+
- Add `play_ beep` enum to update conference request
13+
### Changed
14+
- Call `status` enum `INPROGRESS` to `IN_PROGRESS`
15+
- Call `status` enum `NOANSWER` to `NO_ANSWER`
16+
- Conference `play_beep` enum `ENTRYONLY` to `ENTRY_ONLY`
17+
- Conference `play_beep` enum `EXITONLY` to `EXIT_ONLY`
18+
919

1020
<a name="4.0.3"></a>
1121
## [4.0.3] - 2022-08-19

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FreeClimb is a cloud-based application programming interface (API) that puts the
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: 1.0.0
7-
- Package version: 4.0.3
7+
- Package version: 4.0.4
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99
For more information, please visit [https://www.freeclimb.com/support/](https://www.freeclimb.com/support/)
1010

freeclimb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212

1313

14-
__version__ = "4.0.3"
14+
__version__ = "4.0.4"
1515

1616
# import ApiClient
1717
from freeclimb.api_client import ApiClient

freeclimb/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers[header_name] = header_value
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'OpenAPI-Generator/4.0.3/python'
80+
self.user_agent = 'OpenAPI-Generator/4.0.4/python'
8181

8282
def __enter__(self):
8383
return self

freeclimb/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def to_debug_report(self):
405405
"OS: {env}\n"\
406406
"Python Version: {pyversion}\n"\
407407
"Version of the API: 1.0.0\n"\
408-
"SDK Package Version: 4.0.3".\
408+
"SDK Package Version: 4.0.4".\
409409
format(env=sys.platform, pyversion=sys.version)
410410

411411
def get_host_settings(self):

freeclimb/model/call_result.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ class CallResult(ModelComposed):
6666
'None': None,
6767
'QUEUED': "queued",
6868
'RINGING': "ringing",
69-
'INPROGRESS': "inProgress",
69+
'IN_PROGRESS': "inProgress",
7070
'CANCELED': "canceled",
7171
'COMPLETED': "completed",
7272
'BUSY': "busy",
7373
'FAILED': "failed",
74-
'NOANSWER': "noAnswer",
74+
'NO_ANSWER': "noAnswer",
7575
},
7676
}
7777

freeclimb/model/call_result_all_of.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ class CallResultAllOf(ModelNormal):
6161
'None': None,
6262
'QUEUED': "queued",
6363
'RINGING': "ringing",
64-
'INPROGRESS': "inProgress",
64+
'IN_PROGRESS': "inProgress",
6565
'CANCELED': "canceled",
6666
'COMPLETED': "completed",
6767
'BUSY': "busy",
6868
'FAILED': "failed",
69-
'NOANSWER': "noAnswer",
69+
'NO_ANSWER': "noAnswer",
7070
},
7171
}
7272

freeclimb/model/conference_result.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ class ConferenceResult(ModelComposed):
6666
'None': None,
6767
'ALWAYS': "always",
6868
'NEVER': "never",
69-
'ENTRYONLY': "entryOnly",
70-
'EXITONLY': "exitOnly",
69+
'ENTRY_ONLY': "entryOnly",
70+
'EXIT_ONLY': "exitOnly",
7171
},
7272
('status',): {
7373
'None': None,
7474
'CREATING': "creating",
7575
'EMPTY': "empty",
7676
'POPULATED': "populated",
77-
'INPROGRESS': "inProgress",
77+
'IN_PROGRESS': "inProgress",
7878
'TERMINATED': "terminated",
7979
},
8080
}

freeclimb/model/conference_result_all_of.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ class ConferenceResultAllOf(ModelNormal):
6161
'None': None,
6262
'ALWAYS': "always",
6363
'NEVER': "never",
64-
'ENTRYONLY': "entryOnly",
65-
'EXITONLY': "exitOnly",
64+
'ENTRY_ONLY': "entryOnly",
65+
'EXIT_ONLY': "exitOnly",
6666
},
6767
('status',): {
6868
'None': None,
6969
'CREATING': "creating",
7070
'EMPTY': "empty",
7171
'POPULATED': "populated",
72-
'INPROGRESS': "inProgress",
72+
'IN_PROGRESS': "inProgress",
7373
'TERMINATED': "terminated",
7474
},
7575
}

freeclimb/model/create_conference_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ class CreateConferenceRequest(ModelNormal):
6060
('play_beep',): {
6161
'ALWAYS': "always",
6262
'NEVER': "never",
63-
'ENTRYONLY': "entryOnly",
64-
'EXITONLY': "exitOnly",
63+
'ENTRY_ONLY': "entryOnly",
64+
'EXIT_ONLY': "exitOnly",
6565
},
6666
}
6767

0 commit comments

Comments
 (0)