ultracart-rest-sdk 4.0.213__py3-none-any.whl → 4.0.214__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ultracart/__init__.py CHANGED
@@ -11,7 +11,7 @@
11
11
  """
12
12
 
13
13
 
14
- __version__ = "4.0.213"
14
+ __version__ = "4.0.214"
15
15
 
16
16
  # import ApiClient
17
17
  from ultracart.api_client import ApiClient
@@ -48,6 +48,7 @@ from ultracart.model.conversation_pbx_agents_response import ConversationPbxAgen
48
48
  from ultracart.model.conversation_pbx_audio import ConversationPbxAudio
49
49
  from ultracart.model.conversation_pbx_audio_response import ConversationPbxAudioResponse
50
50
  from ultracart.model.conversation_pbx_audio_upload_url_response import ConversationPbxAudioUploadUrlResponse
51
+ from ultracart.model.conversation_pbx_audio_usage_response import ConversationPbxAudioUsageResponse
51
52
  from ultracart.model.conversation_pbx_audios_response import ConversationPbxAudiosResponse
52
53
  from ultracart.model.conversation_pbx_customer_snapshot_request import ConversationPbxCustomerSnapshotRequest
53
54
  from ultracart.model.conversation_pbx_customer_snapshot_response import ConversationPbxCustomerSnapshotResponse
@@ -2036,6 +2037,58 @@ class ConversationApi(object):
2036
2037
  },
2037
2038
  api_client=api_client
2038
2039
  )
2040
+ self.get_pbx_audio_usage_endpoint = _Endpoint(
2041
+ settings={
2042
+ 'response_type': (ConversationPbxAudioUsageResponse,),
2043
+ 'auth': [
2044
+ 'ultraCartOauth',
2045
+ 'ultraCartSimpleApiKey'
2046
+ ],
2047
+ 'endpoint_path': '/conversation/pbx/audio/{conversationPbxAudioUuid}/usage',
2048
+ 'operation_id': 'get_pbx_audio_usage',
2049
+ 'http_method': 'GET',
2050
+ 'servers': None,
2051
+ },
2052
+ params_map={
2053
+ 'all': [
2054
+ 'conversation_pbx_audio_uuid',
2055
+ ],
2056
+ 'required': [
2057
+ 'conversation_pbx_audio_uuid',
2058
+ ],
2059
+ 'nullable': [
2060
+ ],
2061
+ 'enum': [
2062
+ ],
2063
+ 'validation': [
2064
+ ]
2065
+ },
2066
+ root_map={
2067
+ 'validations': {
2068
+ },
2069
+ 'allowed_values': {
2070
+ },
2071
+ 'openapi_types': {
2072
+ 'conversation_pbx_audio_uuid':
2073
+ (str,),
2074
+ },
2075
+ 'attribute_map': {
2076
+ 'conversation_pbx_audio_uuid': 'conversationPbxAudioUuid',
2077
+ },
2078
+ 'location_map': {
2079
+ 'conversation_pbx_audio_uuid': 'path',
2080
+ },
2081
+ 'collection_format_map': {
2082
+ }
2083
+ },
2084
+ headers_map={
2085
+ 'accept': [
2086
+ 'application/json'
2087
+ ],
2088
+ 'content_type': [],
2089
+ },
2090
+ api_client=api_client
2091
+ )
2039
2092
  self.get_pbx_audios_endpoint = _Endpoint(
2040
2093
  settings={
2041
2094
  'response_type': (ConversationPbxAudiosResponse,),
@@ -7703,6 +7756,89 @@ class ConversationApi(object):
7703
7756
  conversation_pbx_audio_uuid
7704
7757
  return self.get_pbx_audio_endpoint.call_with_http_info(**kwargs)
7705
7758
 
7759
+ def get_pbx_audio_usage(
7760
+ self,
7761
+ conversation_pbx_audio_uuid,
7762
+ **kwargs
7763
+ ):
7764
+ """Get pbx audio usage # noqa: E501
7765
+
7766
+ Retrieve a pbx audio usage # noqa: E501
7767
+ This method makes a synchronous HTTP request by default. To make an
7768
+ asynchronous HTTP request, please pass async_req=True
7769
+
7770
+ >>> thread = api.get_pbx_audio_usage(conversation_pbx_audio_uuid, async_req=True)
7771
+ >>> result = thread.get()
7772
+
7773
+ Args:
7774
+ conversation_pbx_audio_uuid (str):
7775
+
7776
+ Keyword Args:
7777
+ _return_http_data_only (bool): response data without head status
7778
+ code and headers. Default is True.
7779
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
7780
+ will be returned without reading/decoding response data.
7781
+ Default is True.
7782
+ _request_timeout (int/float/tuple): timeout setting for this request. If
7783
+ one number provided, it will be total request timeout. It can also
7784
+ be a pair (tuple) of (connection, read) timeouts.
7785
+ Default is None.
7786
+ _check_input_type (bool): specifies if type checking
7787
+ should be done one the data sent to the server.
7788
+ Default is True.
7789
+ _check_return_type (bool): specifies if type checking
7790
+ should be done one the data received from the server.
7791
+ Default is True.
7792
+ _spec_property_naming (bool): True if the variable names in the input data
7793
+ are serialized names, as specified in the OpenAPI document.
7794
+ False if the variable names in the input data
7795
+ are pythonic names, e.g. snake case (default)
7796
+ _content_type (str/None): force body content-type.
7797
+ Default is None and content-type will be predicted by allowed
7798
+ content-types and body.
7799
+ _host_index (int/None): specifies the index of the server
7800
+ that we want to use.
7801
+ Default is read from the configuration.
7802
+ _request_auths (list): set to override the auth_settings for an a single
7803
+ request; this effectively ignores the authentication
7804
+ in the spec for a single request.
7805
+ Default is None
7806
+ async_req (bool): execute request asynchronously
7807
+
7808
+ Returns:
7809
+ ConversationPbxAudioUsageResponse
7810
+ If the method is called asynchronously, returns the request
7811
+ thread.
7812
+ """
7813
+ kwargs['async_req'] = kwargs.get(
7814
+ 'async_req', False
7815
+ )
7816
+ kwargs['_return_http_data_only'] = kwargs.get(
7817
+ '_return_http_data_only', True
7818
+ )
7819
+ kwargs['_preload_content'] = kwargs.get(
7820
+ '_preload_content', True
7821
+ )
7822
+ kwargs['_request_timeout'] = kwargs.get(
7823
+ '_request_timeout', None
7824
+ )
7825
+ kwargs['_check_input_type'] = kwargs.get(
7826
+ '_check_input_type', True
7827
+ )
7828
+ kwargs['_check_return_type'] = kwargs.get(
7829
+ '_check_return_type', True
7830
+ )
7831
+ kwargs['_spec_property_naming'] = kwargs.get(
7832
+ '_spec_property_naming', False
7833
+ )
7834
+ kwargs['_content_type'] = kwargs.get(
7835
+ '_content_type')
7836
+ kwargs['_host_index'] = kwargs.get('_host_index')
7837
+ kwargs['_request_auths'] = kwargs.get('_request_auths', None)
7838
+ kwargs['conversation_pbx_audio_uuid'] = \
7839
+ conversation_pbx_audio_uuid
7840
+ return self.get_pbx_audio_usage_endpoint.call_with_http_info(**kwargs)
7841
+
7706
7842
  def get_pbx_audios(
7707
7843
  self,
7708
7844
  **kwargs
ultracart/api_client.py CHANGED
@@ -77,7 +77,7 @@ class ApiClient(object):
77
77
  self.default_headers[header_name] = header_value
78
78
  self.cookie = cookie
79
79
  # Set default User-Agent.
80
- self.user_agent = 'OpenAPI-Generator/4.0.213/python'
80
+ self.user_agent = 'OpenAPI-Generator/4.0.214/python'
81
81
 
82
82
  def __enter__(self):
83
83
  return self
@@ -422,7 +422,7 @@ conf = ultracart.Configuration(
422
422
  "OS: {env}\n"\
423
423
  "Python Version: {pyversion}\n"\
424
424
  "Version of the API: 2.0.0\n"\
425
- "SDK Package Version: 4.0.213".\
425
+ "SDK Package Version: 4.0.214".\
426
426
  format(env=sys.platform, pyversion=sys.version)
427
427
 
428
428
  def get_host_settings(self):
@@ -0,0 +1,304 @@
1
+ """
2
+ UltraCart Rest API V2
3
+
4
+ UltraCart REST API Version 2 # noqa: E501
5
+
6
+ The version of the OpenAPI document: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://openapi-generator.tech
9
+ """
10
+
11
+
12
+ import re # noqa: F401
13
+ import sys # noqa: F401
14
+
15
+ from ultracart.model_utils import ( # noqa: F401
16
+ ApiTypeError,
17
+ ModelComposed,
18
+ ModelNormal,
19
+ ModelSimple,
20
+ cached_property,
21
+ change_keys_js_to_python,
22
+ convert_js_args_to_python_args,
23
+ date,
24
+ datetime,
25
+ file_type,
26
+ none_type,
27
+ validate_get_composed_info,
28
+ OpenApiModel
29
+ )
30
+ from ultracart.exceptions import ApiAttributeError
31
+
32
+
33
+ def lazy_import():
34
+ from ultracart.model.conversation_pbx_menu import ConversationPbxMenu
35
+ from ultracart.model.conversation_pbx_queue import ConversationPbxQueue
36
+ from ultracart.model.conversation_pbx_voicemail_mailbox import ConversationPbxVoicemailMailbox
37
+ from ultracart.model.error import Error
38
+ from ultracart.model.response_metadata import ResponseMetadata
39
+ from ultracart.model.warning import Warning
40
+ globals()['ConversationPbxMenu'] = ConversationPbxMenu
41
+ globals()['ConversationPbxQueue'] = ConversationPbxQueue
42
+ globals()['ConversationPbxVoicemailMailbox'] = ConversationPbxVoicemailMailbox
43
+ globals()['Error'] = Error
44
+ globals()['ResponseMetadata'] = ResponseMetadata
45
+ globals()['Warning'] = Warning
46
+
47
+
48
+ class ConversationPbxAudioUsageResponse(ModelNormal):
49
+ """NOTE: This class is auto generated by OpenAPI Generator.
50
+ Ref: https://openapi-generator.tech
51
+
52
+ Do not edit the class manually.
53
+
54
+ Attributes:
55
+ allowed_values (dict): The key is the tuple path to the attribute
56
+ and the for var_name this is (var_name,). The value is a dict
57
+ with a capitalized key describing the allowed value and an allowed
58
+ value. These dicts store the allowed enum values.
59
+ attribute_map (dict): The key is attribute name
60
+ and the value is json key in definition.
61
+ discriminator_value_class_map (dict): A dict to go from the discriminator
62
+ variable value to the discriminator class name.
63
+ validations (dict): The key is the tuple path to the attribute
64
+ and the for var_name this is (var_name,). The value is a dict
65
+ that stores validations for max_length, min_length, max_items,
66
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
67
+ inclusive_minimum, and regex.
68
+ additional_properties_type (tuple): A tuple of classes accepted
69
+ as additional properties values.
70
+ """
71
+
72
+ allowed_values = {
73
+ }
74
+
75
+ validations = {
76
+ }
77
+
78
+ @cached_property
79
+ def additional_properties_type():
80
+ """
81
+ This must be a method because a model may have properties that are
82
+ of type self, this must run after the class is loaded
83
+ """
84
+ lazy_import()
85
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
86
+
87
+ _nullable = False
88
+
89
+ @cached_property
90
+ def openapi_types():
91
+ """
92
+ This must be a method because a model may have properties that are
93
+ of type self, this must run after the class is loaded
94
+
95
+ Returns
96
+ openapi_types (dict): The key is attribute name
97
+ and the value is attribute type.
98
+ """
99
+ lazy_import()
100
+ return {
101
+ 'error': (Error,), # noqa: E501
102
+ 'menus': ([ConversationPbxMenu],), # noqa: E501
103
+ 'metadata': (ResponseMetadata,), # noqa: E501
104
+ 'queues': ([ConversationPbxQueue],), # noqa: E501
105
+ 'success': (bool,), # noqa: E501
106
+ 'voicemail_mailboxes': ([ConversationPbxVoicemailMailbox],), # noqa: E501
107
+ 'warning': (Warning,), # noqa: E501
108
+ }
109
+
110
+ @cached_property
111
+ def discriminator():
112
+ return None
113
+
114
+
115
+ attribute_map = {
116
+ 'error': 'error', # noqa: E501
117
+ 'menus': 'menus', # noqa: E501
118
+ 'metadata': 'metadata', # noqa: E501
119
+ 'queues': 'queues', # noqa: E501
120
+ 'success': 'success', # noqa: E501
121
+ 'voicemail_mailboxes': 'voicemail_mailboxes', # noqa: E501
122
+ 'warning': 'warning', # noqa: E501
123
+ }
124
+
125
+ read_only_vars = {
126
+ }
127
+
128
+ _composed_schemas = {}
129
+
130
+ @classmethod
131
+ @convert_js_args_to_python_args
132
+ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
133
+ """ConversationPbxAudioUsageResponse - a model defined in OpenAPI
134
+
135
+ Keyword Args:
136
+ _check_type (bool): if True, values for parameters in openapi_types
137
+ will be type checked and a TypeError will be
138
+ raised if the wrong type is input.
139
+ Defaults to True
140
+ _path_to_item (tuple/list): This is a list of keys or values to
141
+ drill down to the model in received_data
142
+ when deserializing a response
143
+ _spec_property_naming (bool): True if the variable names in the input data
144
+ are serialized names, as specified in the OpenAPI document.
145
+ False if the variable names in the input data
146
+ are pythonic names, e.g. snake case (default)
147
+ _configuration (Configuration): the instance to use when
148
+ deserializing a file_type parameter.
149
+ If passed, type conversion is attempted
150
+ If omitted no type conversion is done.
151
+ _visited_composed_classes (tuple): This stores a tuple of
152
+ classes that we have traveled through so that
153
+ if we see that class again we will not use its
154
+ discriminator again.
155
+ When traveling through a discriminator, the
156
+ composed schema that is
157
+ is traveled through is added to this set.
158
+ For example if Animal has a discriminator
159
+ petType and we pass in "Dog", and the class Dog
160
+ allOf includes Animal, we move through Animal
161
+ once using the discriminator, and pick Dog.
162
+ Then in Dog, we will make an instance of the
163
+ Animal class but this time we won't travel
164
+ through its discriminator because we passed in
165
+ _visited_composed_classes = (Animal,)
166
+ error (Error): [optional] # noqa: E501
167
+ menus ([ConversationPbxMenu]): [optional] # noqa: E501
168
+ metadata (ResponseMetadata): [optional] # noqa: E501
169
+ queues ([ConversationPbxQueue]): [optional] # noqa: E501
170
+ success (bool): Indicates if API call was successful. [optional] # noqa: E501
171
+ voicemail_mailboxes ([ConversationPbxVoicemailMailbox]): [optional] # noqa: E501
172
+ warning (Warning): [optional] # noqa: E501
173
+ """
174
+
175
+ _check_type = kwargs.pop('_check_type', True)
176
+ _spec_property_naming = kwargs.pop('_spec_property_naming', True)
177
+ _path_to_item = kwargs.pop('_path_to_item', ())
178
+ _configuration = kwargs.pop('_configuration', None)
179
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
180
+
181
+ self = super(OpenApiModel, cls).__new__(cls)
182
+
183
+ if args:
184
+ for arg in args:
185
+ if isinstance(arg, dict):
186
+ kwargs.update(arg)
187
+ else:
188
+ raise ApiTypeError(
189
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
190
+ args,
191
+ self.__class__.__name__,
192
+ ),
193
+ path_to_item=_path_to_item,
194
+ valid_classes=(self.__class__,),
195
+ )
196
+
197
+ self._data_store = {}
198
+ self._check_type = _check_type
199
+ self._spec_property_naming = _spec_property_naming
200
+ self._path_to_item = _path_to_item
201
+ self._configuration = _configuration
202
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
203
+
204
+ for var_name, var_value in kwargs.items():
205
+ if var_name not in self.attribute_map and \
206
+ self._configuration is not None and \
207
+ self._configuration.discard_unknown_keys and \
208
+ self.additional_properties_type is None:
209
+ # discard variable.
210
+ continue
211
+ setattr(self, var_name, var_value)
212
+ return self
213
+
214
+ required_properties = set([
215
+ '_data_store',
216
+ '_check_type',
217
+ '_spec_property_naming',
218
+ '_path_to_item',
219
+ '_configuration',
220
+ '_visited_composed_classes',
221
+ ])
222
+
223
+ @convert_js_args_to_python_args
224
+ def __init__(self, *args, **kwargs): # noqa: E501
225
+ """ConversationPbxAudioUsageResponse - a model defined in OpenAPI
226
+
227
+ Keyword Args:
228
+ _check_type (bool): if True, values for parameters in openapi_types
229
+ will be type checked and a TypeError will be
230
+ raised if the wrong type is input.
231
+ Defaults to True
232
+ _path_to_item (tuple/list): This is a list of keys or values to
233
+ drill down to the model in received_data
234
+ when deserializing a response
235
+ _spec_property_naming (bool): True if the variable names in the input data
236
+ are serialized names, as specified in the OpenAPI document.
237
+ False if the variable names in the input data
238
+ are pythonic names, e.g. snake case (default)
239
+ _configuration (Configuration): the instance to use when
240
+ deserializing a file_type parameter.
241
+ If passed, type conversion is attempted
242
+ If omitted no type conversion is done.
243
+ _visited_composed_classes (tuple): This stores a tuple of
244
+ classes that we have traveled through so that
245
+ if we see that class again we will not use its
246
+ discriminator again.
247
+ When traveling through a discriminator, the
248
+ composed schema that is
249
+ is traveled through is added to this set.
250
+ For example if Animal has a discriminator
251
+ petType and we pass in "Dog", and the class Dog
252
+ allOf includes Animal, we move through Animal
253
+ once using the discriminator, and pick Dog.
254
+ Then in Dog, we will make an instance of the
255
+ Animal class but this time we won't travel
256
+ through its discriminator because we passed in
257
+ _visited_composed_classes = (Animal,)
258
+ error (Error): [optional] # noqa: E501
259
+ menus ([ConversationPbxMenu]): [optional] # noqa: E501
260
+ metadata (ResponseMetadata): [optional] # noqa: E501
261
+ queues ([ConversationPbxQueue]): [optional] # noqa: E501
262
+ success (bool): Indicates if API call was successful. [optional] # noqa: E501
263
+ voicemail_mailboxes ([ConversationPbxVoicemailMailbox]): [optional] # noqa: E501
264
+ warning (Warning): [optional] # noqa: E501
265
+ """
266
+
267
+ _check_type = kwargs.pop('_check_type', True)
268
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
269
+ _path_to_item = kwargs.pop('_path_to_item', ())
270
+ _configuration = kwargs.pop('_configuration', None)
271
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
272
+
273
+ if args:
274
+ for arg in args:
275
+ if isinstance(arg, dict):
276
+ kwargs.update(arg)
277
+ else:
278
+ raise ApiTypeError(
279
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
280
+ args,
281
+ self.__class__.__name__,
282
+ ),
283
+ path_to_item=_path_to_item,
284
+ valid_classes=(self.__class__,),
285
+ )
286
+
287
+ self._data_store = {}
288
+ self._check_type = _check_type
289
+ self._spec_property_naming = _spec_property_naming
290
+ self._path_to_item = _path_to_item
291
+ self._configuration = _configuration
292
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
293
+
294
+ for var_name, var_value in kwargs.items():
295
+ if var_name not in self.attribute_map and \
296
+ self._configuration is not None and \
297
+ self._configuration.discard_unknown_keys and \
298
+ self.additional_properties_type is None:
299
+ # discard variable.
300
+ continue
301
+ setattr(self, var_name, var_value)
302
+ if var_name in self.read_only_vars:
303
+ raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
304
+ f"class with read only attributes.")
@@ -185,6 +185,7 @@ from ultracart.model.conversation_pbx_audio import ConversationPbxAudio
185
185
  from ultracart.model.conversation_pbx_audio_response import ConversationPbxAudioResponse
186
186
  from ultracart.model.conversation_pbx_audio_upload_url import ConversationPbxAudioUploadUrl
187
187
  from ultracart.model.conversation_pbx_audio_upload_url_response import ConversationPbxAudioUploadUrlResponse
188
+ from ultracart.model.conversation_pbx_audio_usage_response import ConversationPbxAudioUsageResponse
188
189
  from ultracart.model.conversation_pbx_audios_response import ConversationPbxAudiosResponse
189
190
  from ultracart.model.conversation_pbx_customer_snapshot_request import ConversationPbxCustomerSnapshotRequest
190
191
  from ultracart.model.conversation_pbx_customer_snapshot_response import ConversationPbxCustomerSnapshotResponse
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ultracart-rest-sdk
3
- Version: 4.0.213
3
+ Version: 4.0.214
4
4
  Summary: UltraCart Rest API V2
5
5
  Home-page: UNKNOWN
6
6
  Author: UltraCart Support
@@ -1,6 +1,6 @@
1
- ultracart/__init__.py,sha256=T2KBCOQ-ZBYm1CAtEYF08HD6RtwyHAXWA8lMUuu7FKQ,699
2
- ultracart/api_client.py,sha256=sOsNZOJnGzEzaU_caagAs9SPGKRLDZW7Dzt9aO4W5TA,39072
3
- ultracart/configuration.py,sha256=JjpudD81ElbwNYKxwGGtLcpXq0dxGPJnM1ZrAggAtxE,17842
1
+ ultracart/__init__.py,sha256=s6poa0JodnQ5n1MJ67jYEhSRmA9ia4fdWEXuJ0_cAOc,699
2
+ ultracart/api_client.py,sha256=xoq0r_gRRXYtfNc41XqJ_Ptc7AmzeEQdosaa-19Oun4,39072
3
+ ultracart/configuration.py,sha256=UkwTC7JXeGyUXEsaoLUkpgzvUuOKZNHjgArx1wkdmCI,17842
4
4
  ultracart/exceptions.py,sha256=dwRtrWJsW4H_jKk3B1w2chykcQ7E2FSlhftUByD9e9E,5069
5
5
  ultracart/model_utils.py,sha256=X_RAfA-TlvDKBICnIve7PPVDM34Nl58aV1bqCrVmoTo,82574
6
6
  ultracart/rest.py,sha256=2lM6zwrjGp_SjkddamoKdpk3jFuc8Ow7fKIXRdKNp24,14268
@@ -10,7 +10,7 @@ ultracart/api/auto_order_api.py,sha256=PrBsBkt6uneTf07QHlF5kipjzGlbT44LMOP5pthc6
10
10
  ultracart/api/channel_partner_api.py,sha256=aPduqNAS8wcwqS9hC0bnZktMFCBd90S6lz9265-v3JU,63965
11
11
  ultracart/api/chargeback_api.py,sha256=bC5LfbV1DuVMZhfCvkkog33VACDVk7W74JvlaXy5Nuc,32295
12
12
  ultracart/api/checkout_api.py,sha256=KLZAsTMiY55AHDhubbNZYipBPGwihQbEsLDjIDzkLkQ,105889
13
- ultracart/api/conversation_api.py,sha256=JLEB5PVY2mzv2dl8motzBhxg_NInQkmIqC2Tgmphz4Q,458196
13
+ ultracart/api/conversation_api.py,sha256=HjH1FRZRlPmxVoF5pfZ4F_o3cViLdO_W-Nh9UV8YpDo,463604
14
14
  ultracart/api/coupon_api.py,sha256=voBpCzDhuBog_0WKSj9J-2zKSI8LyJINjUneeLAwlHg,109039
15
15
  ultracart/api/customer_api.py,sha256=I9skXHJZw9asr5LnRnE3vbVNMadjLm_2bDrNhr-mnfg,146498
16
16
  ultracart/api/datawarehouse_api.py,sha256=4UdypzYNcDwgHeyWqK1x6WARC62u9CmbfVTGhryOq5I,52975
@@ -204,6 +204,7 @@ ultracart/model/conversation_pbx_audio.py,sha256=_ab09XhTiyNOYTzV2ah-hS0-_Oj1gFi
204
204
  ultracart/model/conversation_pbx_audio_response.py,sha256=D0fZUpw22P5QXSvfEp756d67ArwTSsNiBJzye9_pH3E,12871
205
205
  ultracart/model/conversation_pbx_audio_upload_url.py,sha256=h3KlzvgL2QkDEdx6-55qB2xI4wHehOM5Dv4tKhkbh_g,11604
206
206
  ultracart/model/conversation_pbx_audio_upload_url_response.py,sha256=gXXooQs_zWA_qwMEJoFywCcZedNzFXbNyKkfhaeukF0,13103
207
+ ultracart/model/conversation_pbx_audio_usage_response.py,sha256=tNc1ZTFkkUKvRiIc6ZMZMqdcGVTWlzuqV8YuFfhteQc,13792
207
208
  ultracart/model/conversation_pbx_audios_response.py,sha256=llnOyuMCddIzgEzHTVHSKHeA7aha8ns6w2NDViqR8cY,12885
208
209
  ultracart/model/conversation_pbx_customer_snapshot_request.py,sha256=NX_L4Dnn2vkE0LJWKuHU_s_opzpzxVvoZIyuULwH7bo,13442
209
210
  ultracart/model/conversation_pbx_customer_snapshot_response.py,sha256=altaQBJHMquhMUViFRjvXY8c8BmPLs6KHRCzW_Ek0tg,13448
@@ -875,9 +876,9 @@ ultracart/model/workflow_tasks_response.py,sha256=KmHe72xKnZiS9CemBr5hluY5EsU9_x
875
876
  ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE41k,11903
876
877
  ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
877
878
  ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
878
- ultracart/models/__init__.py,sha256=EGMhmgzL3NSxfIlfUzNhrcgkVH4YxSbYzfFYNH_iTio,65270
879
- ultracart_rest_sdk-4.0.213.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
880
- ultracart_rest_sdk-4.0.213.dist-info/METADATA,sha256=myyh1ceYBGDs5M0NAFxQgMylQGYRdjTbDZTFNIG7k2E,403
881
- ultracart_rest_sdk-4.0.213.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
882
- ultracart_rest_sdk-4.0.213.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
883
- ultracart_rest_sdk-4.0.213.dist-info/RECORD,,
879
+ ultracart/models/__init__.py,sha256=0VZcMHj-u6Zc6EOw-mQH_PPHT2FtR1T1Lzjalm0RbLI,65370
880
+ ultracart_rest_sdk-4.0.214.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
881
+ ultracart_rest_sdk-4.0.214.dist-info/METADATA,sha256=kRaz_AYs8W17ddvW9Y7Dm8MEjXbfa_JYXP2q7-4SdXw,403
882
+ ultracart_rest_sdk-4.0.214.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
883
+ ultracart_rest_sdk-4.0.214.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
884
+ ultracart_rest_sdk-4.0.214.dist-info/RECORD,,