Skip to content

Commit 264385b

Browse files
authored
Resolve VCSWP-19961 (Change AddToConference CallId property type) (#40)
* Change AddToConference CallId property type * Add changelog entry
1 parent 8e89b22 commit 264385b

11 files changed

+182
-73
lines changed

CHANGELOG.md

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

1010
None
1111

12+
<a name="4.4.1"></a>
13+
14+
## [4.4.1] - 2023-07-26
15+
16+
### Changed
17+
18+
- Changed AddToConference CallId property type from boolean to string
19+
1220
<a name="4.4.0"></a>
1321

1422
## [4.4.0] - 2023-06-08

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.4.0
7+
- Package version: 4.4.1
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

docs/AddToConference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
**allow_call_control** | **bool** | If &#x60;true&#x60;, Call control will be enabled for this Participant&#39;s Call leg. | [optional]
99
**call_control_sequence** | **str** | Defines a sequence of digits that, when entered by this caller, invokes the &#x60;callControlUrl&#x60;. Only digits plus &#39;*&#39;, and &#39;#&#39; may be used. | [optional]
1010
**call_control_url** | **str** | URL to be invoked when this Participant enters the digit sequence defined in the &#x60;callControlSequence&#x60; attribute. | [optional]
11-
**call_id** | **bool** | ID of the Call that will be added to the specified Conference. The Call must be in progress or an error will result. If the Call is part of an existing Conference, it is first removed from that Conference and is then moved to the new one. | [optional]
11+
**call_id** | **str** | ID of the Call that will be added to the specified Conference. The Call must be in progress or an error will result. If the Call is part of an existing Conference, it is first removed from that Conference and is then moved to the new one. | [optional]
1212
**leave_conference_url** | **str** | URL to be invoked when the Participant leaves the Conference. | [optional]
1313
**listen** | **bool** | If &#x60;true&#x60;, the Participant joins the Conference with listen privileges. This may be modified later via the REST API or &#x60;SetListen&#x60; PerCL command. | [optional]
1414
**notification_url** | **str** | When the Participant enters the Conference, this URL will be invoked using an HTTP POST request with the standard request parameters. | [optional]

docs/AddToConferenceAllOf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**allow_call_control** | **bool** | If &#x60;true&#x60;, Call control will be enabled for this Participant&#39;s Call leg. | [optional]
88
**call_control_sequence** | **str** | Defines a sequence of digits that, when entered by this caller, invokes the &#x60;callControlUrl&#x60;. Only digits plus &#39;*&#39;, and &#39;#&#39; may be used. | [optional]
99
**call_control_url** | **str** | URL to be invoked when this Participant enters the digit sequence defined in the &#x60;callControlSequence&#x60; attribute. | [optional]
10-
**call_id** | **bool** | ID of the Call that will be added to the specified Conference. The Call must be in progress or an error will result. If the Call is part of an existing Conference, it is first removed from that Conference and is then moved to the new one. | [optional]
10+
**call_id** | **str** | ID of the Call that will be added to the specified Conference. The Call must be in progress or an error will result. If the Call is part of an existing Conference, it is first removed from that Conference and is then moved to the new one. | [optional]
1111
**leave_conference_url** | **str** | URL to be invoked when the Participant leaves the Conference. | [optional]
1212
**listen** | **bool** | If &#x60;true&#x60;, the Participant joins the Conference with listen privileges. This may be modified later via the REST API or &#x60;SetListen&#x60; PerCL command. | [optional]
1313
**notification_url** | **str** | When the Participant enters the Conference, this URL will be invoked using an HTTP POST request with the standard request parameters. | [optional]

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

411411
def get_host_settings(self):

freeclimb/model/add_to_conference.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def openapi_types():
142142
'allow_call_control': (bool,), # noqa: E501
143143
'call_control_sequence': (str,), # noqa: E501
144144
'call_control_url': (str,), # noqa: E501
145-
'call_id': (bool,), # noqa: E501
145+
'call_id': (str,), # noqa: E501
146146
'leave_conference_url': (str,), # noqa: E501
147147
'listen': (bool,), # noqa: E501
148148
'notification_url': (str,), # noqa: E501
@@ -213,7 +213,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
213213
allow_call_control (bool): If `true`, Call control will be enabled for this Participant's Call leg.. [optional] # noqa: E501
214214
call_control_sequence (str): Defines a sequence of digits that, when entered by this caller, invokes the `callControlUrl`. Only digits plus '*', and '#' may be used.. [optional] # noqa: E501
215215
call_control_url (str): URL to be invoked when this Participant enters the digit sequence defined in the `callControlSequence` attribute.. [optional] # noqa: E501
216-
call_id (bool): ID of the Call that will be added to the specified Conference. The Call must be in progress or an error will result. If the Call is part of an existing Conference, it is first removed from that Conference and is then moved to the new one.. [optional] # noqa: E501
216+
call_id (str): ID of the Call that will be added to the specified Conference. The Call must be in progress or an error will result. If the Call is part of an existing Conference, it is first removed from that Conference and is then moved to the new one.. [optional] # noqa: E501
217217
leave_conference_url (str): URL to be invoked when the Participant leaves the Conference. . [optional] # noqa: E501
218218
listen (bool): If `true`, the Participant joins the Conference with listen privileges. This may be modified later via the REST API or `SetListen` PerCL command.. [optional] # noqa: E501
219219
notification_url (str): When the Participant enters the Conference, this URL will be invoked using an HTTP POST request with the standard request parameters.. [optional] # noqa: E501
@@ -323,7 +323,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
323323
allow_call_control (bool): If `true`, Call control will be enabled for this Participant's Call leg.. [optional] # noqa: E501
324324
call_control_sequence (str): Defines a sequence of digits that, when entered by this caller, invokes the `callControlUrl`. Only digits plus '*', and '#' may be used.. [optional] # noqa: E501
325325
call_control_url (str): URL to be invoked when this Participant enters the digit sequence defined in the `callControlSequence` attribute.. [optional] # noqa: E501
326-
call_id (bool): ID of the Call that will be added to the specified Conference. The Call must be in progress or an error will result. If the Call is part of an existing Conference, it is first removed from that Conference and is then moved to the new one.. [optional] # noqa: E501
326+
call_id (str): ID of the Call that will be added to the specified Conference. The Call must be in progress or an error will result. If the Call is part of an existing Conference, it is first removed from that Conference and is then moved to the new one.. [optional] # noqa: E501
327327
leave_conference_url (str): URL to be invoked when the Participant leaves the Conference. . [optional] # noqa: E501
328328
listen (bool): If `true`, the Participant joins the Conference with listen privileges. This may be modified later via the REST API or `SetListen` PerCL command.. [optional] # noqa: E501
329329
notification_url (str): When the Participant enters the Conference, this URL will be invoked using an HTTP POST request with the standard request parameters.. [optional] # noqa: E501

freeclimb/model/add_to_conference_all_of.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def openapi_types():
8787
'allow_call_control': (bool,), # noqa: E501
8888
'call_control_sequence': (str,), # noqa: E501
8989
'call_control_url': (str,), # noqa: E501
90-
'call_id': (bool,), # noqa: E501
90+
'call_id': (str,), # noqa: E501
9191
'leave_conference_url': (str,), # noqa: E501
9292
'listen': (bool,), # noqa: E501
9393
'notification_url': (str,), # noqa: E501
@@ -160,7 +160,7 @@ def _from_openapi_data(cls, conference_id, *args, **kwargs): # noqa: E501
160160
allow_call_control (bool): If `true`, Call control will be enabled for this Participant's Call leg.. [optional] # noqa: E501
161161
call_control_sequence (str): Defines a sequence of digits that, when entered by this caller, invokes the `callControlUrl`. Only digits plus '*', and '#' may be used.. [optional] # noqa: E501
162162
call_control_url (str): URL to be invoked when this Participant enters the digit sequence defined in the `callControlSequence` attribute.. [optional] # noqa: E501
163-
call_id (bool): ID of the Call that will be added to the specified Conference. The Call must be in progress or an error will result. If the Call is part of an existing Conference, it is first removed from that Conference and is then moved to the new one.. [optional] # noqa: E501
163+
call_id (str): ID of the Call that will be added to the specified Conference. The Call must be in progress or an error will result. If the Call is part of an existing Conference, it is first removed from that Conference and is then moved to the new one.. [optional] # noqa: E501
164164
leave_conference_url (str): URL to be invoked when the Participant leaves the Conference. . [optional] # noqa: E501
165165
listen (bool): If `true`, the Participant joins the Conference with listen privileges. This may be modified later via the REST API or `SetListen` PerCL command.. [optional] # noqa: E501
166166
notification_url (str): When the Participant enters the Conference, this URL will be invoked using an HTTP POST request with the standard request parameters.. [optional] # noqa: E501
@@ -254,7 +254,7 @@ def __init__(self, conference_id, *args, **kwargs): # noqa: E501
254254
allow_call_control (bool): If `true`, Call control will be enabled for this Participant's Call leg.. [optional] # noqa: E501
255255
call_control_sequence (str): Defines a sequence of digits that, when entered by this caller, invokes the `callControlUrl`. Only digits plus '*', and '#' may be used.. [optional] # noqa: E501
256256
call_control_url (str): URL to be invoked when this Participant enters the digit sequence defined in the `callControlSequence` attribute.. [optional] # noqa: E501
257-
call_id (bool): ID of the Call that will be added to the specified Conference. The Call must be in progress or an error will result. If the Call is part of an existing Conference, it is first removed from that Conference and is then moved to the new one.. [optional] # noqa: E501
257+
call_id (str): ID of the Call that will be added to the specified Conference. The Call must be in progress or an error will result. If the Call is part of an existing Conference, it is first removed from that Conference and is then moved to the new one.. [optional] # noqa: E501
258258
leave_conference_url (str): URL to be invoked when the Participant leaves the Conference. . [optional] # noqa: E501
259259
listen (bool): If `true`, the Participant joins the Conference with listen privileges. This may be modified later via the REST API or `SetListen` PerCL command.. [optional] # noqa: E501
260260
notification_url (str): When the Participant enters the Conference, this URL will be invoked using an HTTP POST request with the standard request parameters.. [optional] # noqa: E501

0 commit comments

Comments
 (0)