Skip to content

Commit 61d739a

Browse files
authored
Merge pull request #22 from FreeClimbAPI/fix-park-unpark-release
Update park/unpark & release contents
2 parents 95819d7 + 5bb9c21 commit 61d739a

File tree

7 files changed

+58
-51
lines changed

7 files changed

+58
-51
lines changed

.openapi-generator/FILES

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ docs/MutableResourceModel.md
5959
docs/OutDial.md
6060
docs/OutDialAllOf.md
6161
docs/PaginationModel.md
62+
docs/Park.md
63+
docs/ParkAllOf.md
6264
docs/Pause.md
6365
docs/PauseAllOf.md
6466
docs/PerclCommand.md
@@ -100,6 +102,7 @@ docs/SmsAllOf.md
100102
docs/StartRecordCall.md
101103
docs/TerminateConference.md
102104
docs/TerminateConferenceAllOf.md
105+
docs/Unpark.md
103106
docs/UpdateCallRequest.md
104107
docs/UpdateConferenceParticipantRequest.md
105108
docs/UpdateConferenceRequest.md
@@ -170,6 +173,8 @@ freeclimb/model/mutable_resource_model.py
170173
freeclimb/model/out_dial.py
171174
freeclimb/model/out_dial_all_of.py
172175
freeclimb/model/pagination_model.py
176+
freeclimb/model/park.py
177+
freeclimb/model/park_all_of.py
173178
freeclimb/model/pause.py
174179
freeclimb/model/pause_all_of.py
175180
freeclimb/model/percl_command.py
@@ -211,6 +216,7 @@ freeclimb/model/sms_all_of.py
211216
freeclimb/model/start_record_call.py
212217
freeclimb/model/terminate_conference.py
213218
freeclimb/model/terminate_conference_all_of.py
219+
freeclimb/model/unpark.py
214220
freeclimb/model/update_call_request.py
215221
freeclimb/model/update_conference_participant_request.py
216222
freeclimb/model/update_conference_request.py
@@ -221,4 +227,5 @@ requirements.txt
221227
setup.cfg
222228
setup.py
223229
test/__init__.py
230+
test/test_default_api.py
224231
tox.ini

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.2
7+
- Package version: 4.0.3
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.2"
14+
__version__ = "4.0.3"
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.2/python'
80+
self.user_agent = 'OpenAPI-Generator/4.0.3/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.2".\
408+
"SDK Package Version: 4.0.3".\
409409
format(env=sys.platform, pyversion=sys.version)
410410

411411
def get_host_settings(self):

setup.py

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

1414
NAME = "FreeClimb"
15-
VERSION = "4.0.2"
15+
VERSION = "4.0.3"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install

0 commit comments

Comments
 (0)