Skip to content

Commit f7c3f91

Browse files
authored
Merge pull request #25 from rchi-vail/queueMetrics
queueMetrics changes
2 parents 4f9a899 + 59050b0 commit f7c3f91

File tree

11 files changed

+75
-70
lines changed

11 files changed

+75
-70
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88
None
9-
<a name="4.0.5"></a>
9+
<a name-"4.0.6"></a>
10+
## [4.0.6] - 2022-12-01
11+
### Changed
12+
- Changed `QueueResult` property `current_size` from string to int
13+
- Renamed `QueueResult` property `average_wait_time` to `average_queue_removal_time`
1014

15+
<a name="4.0.5"></a>
1116
## [4.0.5] - 2022-11-01
1217
### Added
1318
- Add `offnet` property in IncomingNumber resource

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.5
7+
- Package version: 4.0.6
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/QueueResult.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Name | Type | Description | Notes
1111
**queue_id** | **str, none_type** | A string that uniquely identifies this Queue resource. | [optional]
1212
**alias** | **str, none_type** | A description for this Queue. | [optional]
1313
**max_size** | **int, none_type** | The maximum number of Calls permitted in the Queue. Default is 100. Maximum is 1000. | [optional]
14-
**current_size** | **str, none_type** | Count of Calls currently in the Queue. | [optional]
15-
**average_wait_time** | **str, none_type** | Average wait time (in seconds) of all Calls in the Queue. | [optional]
14+
**current_size** | **int, none_type** | Count of Calls currently in the Queue. | [optional]
15+
**average_queue_removal_time** | **int, none_type** | The average amount of time (in seconds) for a call to be removed from the queue. | [optional]
1616
**subresource_uris** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type** | List of subresources for this Queue (which includes Queue members). | [optional]
1717

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

docs/QueueResultAllOf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Name | Type | Description | Notes
77
**queue_id** | **str, none_type** | A string that uniquely identifies this Queue resource. | [optional]
88
**alias** | **str, none_type** | A description for this Queue. | [optional]
99
**max_size** | **int, none_type** | The maximum number of Calls permitted in the Queue. Default is 100. Maximum is 1000. | [optional]
10-
**current_size** | **str, none_type** | Count of Calls currently in the Queue. | [optional]
11-
**average_wait_time** | **str, none_type** | Average wait time (in seconds) of all Calls in the Queue. | [optional]
10+
**current_size** | **int, none_type** | Count of Calls currently in the Queue. | [optional]
11+
**average_queue_removal_time** | **int, none_type** | The average amount of time (in seconds) for a call to be removed from the queue. | [optional]
1212
**subresource_uris** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type** | List of subresources for this Queue (which includes Queue members). | [optional]
1313

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

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

411411
def get_host_settings(self):

freeclimb/model/queue_result.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ def openapi_types():
9898
'queue_id': (str, none_type,), # noqa: E501
9999
'alias': (str, none_type,), # noqa: E501
100100
'max_size': (int, none_type,), # noqa: E501
101-
'current_size': (str, none_type,), # noqa: E501
102-
'average_wait_time': (str, none_type,), # noqa: E501
101+
'current_size': (int, none_type,), # noqa: E501
102+
'average_queue_removal_time': (int, none_type,), # noqa: E501
103103
'subresource_uris': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type,), # noqa: E501
104104
}
105105

@@ -118,7 +118,7 @@ def discriminator():
118118
'alias': 'alias', # noqa: E501
119119
'max_size': 'maxSize', # noqa: E501
120120
'current_size': 'currentSize', # noqa: E501
121-
'average_wait_time': 'averageWaitTime', # noqa: E501
121+
'average_queue_removal_time': 'averageQueueRemovalTime', # noqa: E501
122122
'subresource_uris': 'subresourceUris', # noqa: E501
123123
}
124124

@@ -169,8 +169,8 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
169169
queue_id (str, none_type): A string that uniquely identifies this Queue resource.. [optional] # noqa: E501
170170
alias (str, none_type): A description for this Queue.. [optional] # noqa: E501
171171
max_size (int, none_type): The maximum number of Calls permitted in the Queue. Default is 100. Maximum is 1000.. [optional] # noqa: E501
172-
current_size (str, none_type): Count of Calls currently in the Queue.. [optional] # noqa: E501
173-
average_wait_time (str, none_type): Average wait time (in seconds) of all Calls in the Queue.. [optional] # noqa: E501
172+
current_size (int, none_type): Count of Calls currently in the Queue.. [optional] # noqa: E501
173+
average_queue_removal_time (int, none_type): The average amount of time (in seconds) for a call to be removed from the queue.. [optional] # noqa: E501
174174
subresource_uris ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): List of subresources for this Queue (which includes Queue members).. [optional] # noqa: E501
175175
"""
176176

@@ -279,8 +279,8 @@ def __init__(self, *args, **kwargs): # noqa: E501
279279
queue_id (str, none_type): A string that uniquely identifies this Queue resource.. [optional] # noqa: E501
280280
alias (str, none_type): A description for this Queue.. [optional] # noqa: E501
281281
max_size (int, none_type): The maximum number of Calls permitted in the Queue. Default is 100. Maximum is 1000.. [optional] # noqa: E501
282-
current_size (str, none_type): Count of Calls currently in the Queue.. [optional] # noqa: E501
283-
average_wait_time (str, none_type): Average wait time (in seconds) of all Calls in the Queue.. [optional] # noqa: E501
282+
current_size (int, none_type): Count of Calls currently in the Queue.. [optional] # noqa: E501
283+
average_queue_removal_time (int, none_type): The average amount of time (in seconds) for a call to be removed from the queue.. [optional] # noqa: E501
284284
subresource_uris ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): List of subresources for this Queue (which includes Queue members).. [optional] # noqa: E501
285285
"""
286286

freeclimb/model/queue_result_all_of.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ def openapi_types():
8787
'queue_id': (str, none_type,), # noqa: E501
8888
'alias': (str, none_type,), # noqa: E501
8989
'max_size': (int, none_type,), # noqa: E501
90-
'current_size': (str, none_type,), # noqa: E501
91-
'average_wait_time': (str, none_type,), # noqa: E501
90+
'current_size': (int, none_type,), # noqa: E501
91+
'average_queue_removal_time': (int, none_type,), # noqa: E501
9292
'subresource_uris': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type,), # noqa: E501
9393
}
9494

@@ -103,7 +103,7 @@ def discriminator():
103103
'alias': 'alias', # noqa: E501
104104
'max_size': 'maxSize', # noqa: E501
105105
'current_size': 'currentSize', # noqa: E501
106-
'average_wait_time': 'averageWaitTime', # noqa: E501
106+
'average_queue_removal_time': 'averageQueueRemovalTime', # noqa: E501
107107
'subresource_uris': 'subresourceUris', # noqa: E501
108108
}
109109

@@ -152,8 +152,8 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
152152
queue_id (str, none_type): A string that uniquely identifies this Queue resource.. [optional] # noqa: E501
153153
alias (str, none_type): A description for this Queue.. [optional] # noqa: E501
154154
max_size (int, none_type): The maximum number of Calls permitted in the Queue. Default is 100. Maximum is 1000.. [optional] # noqa: E501
155-
current_size (str, none_type): Count of Calls currently in the Queue.. [optional] # noqa: E501
156-
average_wait_time (str, none_type): Average wait time (in seconds) of all Calls in the Queue.. [optional] # noqa: E501
155+
current_size (int, none_type): Count of Calls currently in the Queue.. [optional] # noqa: E501
156+
average_queue_removal_time (int, none_type): The average amount of time (in seconds) for a call to be removed from the queue.. [optional] # noqa: E501
157157
subresource_uris ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): List of subresources for this Queue (which includes Queue members).. [optional] # noqa: E501
158158
"""
159159

@@ -240,8 +240,8 @@ def __init__(self, *args, **kwargs): # noqa: E501
240240
queue_id (str, none_type): A string that uniquely identifies this Queue resource.. [optional] # noqa: E501
241241
alias (str, none_type): A description for this Queue.. [optional] # noqa: E501
242242
max_size (int, none_type): The maximum number of Calls permitted in the Queue. Default is 100. Maximum is 1000.. [optional] # noqa: E501
243-
current_size (str, none_type): Count of Calls currently in the Queue.. [optional] # noqa: E501
244-
average_wait_time (str, none_type): Average wait time (in seconds) of all Calls in the Queue.. [optional] # noqa: E501
243+
current_size (int, none_type): Count of Calls currently in the Queue.. [optional] # noqa: E501
244+
average_queue_removal_time (int, none_type): The average amount of time (in seconds) for a call to be removed from the queue.. [optional] # noqa: E501
245245
subresource_uris ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): List of subresources for this Queue (which includes Queue members).. [optional] # noqa: E501
246246
"""
247247

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.5"
15+
VERSION = "4.0.6"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install

0 commit comments

Comments
 (0)