ultracart-rest-sdk 4.0.210__py3-none-any.whl → 4.0.211__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 +1 -1
- ultracart/api/conversation_api.py +1 -1
- ultracart/api_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/model/conversation_agent_auth.py +12 -0
- ultracart/model/conversation_pbx_queue.py +4 -0
- ultracart/model/email_commseq_email.py +32 -0
- ultracart/model/item_chargeback.py +4 -4
- ultracart/model/order_refundable_response.py +4 -0
- {ultracart_rest_sdk-4.0.210.dist-info → ultracart_rest_sdk-4.0.211.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.210.dist-info → ultracart_rest_sdk-4.0.211.dist-info}/RECORD +14 -14
- {ultracart_rest_sdk-4.0.210.dist-info → ultracart_rest_sdk-4.0.211.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.210.dist-info → ultracart_rest_sdk-4.0.211.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.210.dist-info → ultracart_rest_sdk-4.0.211.dist-info}/top_level.txt +0 -0
ultracart/__init__.py
CHANGED
|
@@ -3524,7 +3524,7 @@ class ConversationApi(object):
|
|
|
3524
3524
|
'ultraCartOauth',
|
|
3525
3525
|
'ultraCartSimpleApiKey'
|
|
3526
3526
|
],
|
|
3527
|
-
'endpoint_path': '/conversation/pbx/{queue_uuid}/voicemails/
|
|
3527
|
+
'endpoint_path': '/conversation/pbx/queues/{queue_uuid}/voicemails/{recording_sid}/listened',
|
|
3528
3528
|
'operation_id': 'listened_pbx_queue_voicemail',
|
|
3529
3529
|
'http_method': 'GET',
|
|
3530
3530
|
'servers': None,
|
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.
|
|
80
|
+
self.user_agent = 'OpenAPI-Generator/4.0.211/python'
|
|
81
81
|
|
|
82
82
|
def __enter__(self):
|
|
83
83
|
return self
|
ultracart/configuration.py
CHANGED
|
@@ -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.
|
|
425
|
+
"SDK Package Version: 4.0.211".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
|
@@ -92,7 +92,10 @@ class ConversationAgentAuth(ModelNormal):
|
|
|
92
92
|
'conversation_participant_name': (str,), # noqa: E501
|
|
93
93
|
'jwt': (str,), # noqa: E501
|
|
94
94
|
'merchant_id': (str,), # noqa: E501
|
|
95
|
+
'pbx_admin': (bool,), # noqa: E501
|
|
95
96
|
'pbx_jwt': (str,), # noqa: E501
|
|
97
|
+
'pbx_supervisor': (bool,), # noqa: E501
|
|
98
|
+
'pbx_user': (bool,), # noqa: E501
|
|
96
99
|
'pbx_voice_identity': (str,), # noqa: E501
|
|
97
100
|
'pbx_voice_token': (str,), # noqa: E501
|
|
98
101
|
'pbx_worker_token': (str,), # noqa: E501
|
|
@@ -110,7 +113,10 @@ class ConversationAgentAuth(ModelNormal):
|
|
|
110
113
|
'conversation_participant_name': 'conversation_participant_name', # noqa: E501
|
|
111
114
|
'jwt': 'jwt', # noqa: E501
|
|
112
115
|
'merchant_id': 'merchant_id', # noqa: E501
|
|
116
|
+
'pbx_admin': 'pbx_admin', # noqa: E501
|
|
113
117
|
'pbx_jwt': 'pbx_jwt', # noqa: E501
|
|
118
|
+
'pbx_supervisor': 'pbx_supervisor', # noqa: E501
|
|
119
|
+
'pbx_user': 'pbx_user', # noqa: E501
|
|
114
120
|
'pbx_voice_identity': 'pbx_voice_identity', # noqa: E501
|
|
115
121
|
'pbx_voice_token': 'pbx_voice_token', # noqa: E501
|
|
116
122
|
'pbx_worker_token': 'pbx_worker_token', # noqa: E501
|
|
@@ -163,7 +169,10 @@ class ConversationAgentAuth(ModelNormal):
|
|
|
163
169
|
conversation_participant_name (str): [optional] # noqa: E501
|
|
164
170
|
jwt (str): [optional] # noqa: E501
|
|
165
171
|
merchant_id (str): [optional] # noqa: E501
|
|
172
|
+
pbx_admin (bool): [optional] # noqa: E501
|
|
166
173
|
pbx_jwt (str): [optional] # noqa: E501
|
|
174
|
+
pbx_supervisor (bool): [optional] # noqa: E501
|
|
175
|
+
pbx_user (bool): [optional] # noqa: E501
|
|
167
176
|
pbx_voice_identity (str): [optional] # noqa: E501
|
|
168
177
|
pbx_voice_token (str): [optional] # noqa: E501
|
|
169
178
|
pbx_worker_token (str): [optional] # noqa: E501
|
|
@@ -258,7 +267,10 @@ class ConversationAgentAuth(ModelNormal):
|
|
|
258
267
|
conversation_participant_name (str): [optional] # noqa: E501
|
|
259
268
|
jwt (str): [optional] # noqa: E501
|
|
260
269
|
merchant_id (str): [optional] # noqa: E501
|
|
270
|
+
pbx_admin (bool): [optional] # noqa: E501
|
|
261
271
|
pbx_jwt (str): [optional] # noqa: E501
|
|
272
|
+
pbx_supervisor (bool): [optional] # noqa: E501
|
|
273
|
+
pbx_user (bool): [optional] # noqa: E501
|
|
262
274
|
pbx_voice_identity (str): [optional] # noqa: E501
|
|
263
275
|
pbx_voice_token (str): [optional] # noqa: E501
|
|
264
276
|
pbx_worker_token (str): [optional] # noqa: E501
|
|
@@ -138,6 +138,7 @@ class ConversationPbxQueue(ModelNormal):
|
|
|
138
138
|
'voicemail': (bool,), # noqa: E501
|
|
139
139
|
'wait_critical_seconds': (int,), # noqa: E501
|
|
140
140
|
'wait_warning_seconds': (int,), # noqa: E501
|
|
141
|
+
'wrap_up_seconds': (int,), # noqa: E501
|
|
141
142
|
}
|
|
142
143
|
|
|
143
144
|
@cached_property
|
|
@@ -166,6 +167,7 @@ class ConversationPbxQueue(ModelNormal):
|
|
|
166
167
|
'voicemail': 'voicemail', # noqa: E501
|
|
167
168
|
'wait_critical_seconds': 'wait_critical_seconds', # noqa: E501
|
|
168
169
|
'wait_warning_seconds': 'wait_warning_seconds', # noqa: E501
|
|
170
|
+
'wrap_up_seconds': 'wrap_up_seconds', # noqa: E501
|
|
169
171
|
}
|
|
170
172
|
|
|
171
173
|
read_only_vars = {
|
|
@@ -229,6 +231,7 @@ class ConversationPbxQueue(ModelNormal):
|
|
|
229
231
|
voicemail (bool): If true, this queue has a voicemail associated with it. [optional] # noqa: E501
|
|
230
232
|
wait_critical_seconds (int): Wait time in seconds before critical. [optional] # noqa: E501
|
|
231
233
|
wait_warning_seconds (int): Wait time in seconds before warning. [optional] # noqa: E501
|
|
234
|
+
wrap_up_seconds (int): Wrap up time in seconds. [optional] # noqa: E501
|
|
232
235
|
"""
|
|
233
236
|
|
|
234
237
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -334,6 +337,7 @@ class ConversationPbxQueue(ModelNormal):
|
|
|
334
337
|
voicemail (bool): If true, this queue has a voicemail associated with it. [optional] # noqa: E501
|
|
335
338
|
wait_critical_seconds (int): Wait time in seconds before critical. [optional] # noqa: E501
|
|
336
339
|
wait_warning_seconds (int): Wait time in seconds before warning. [optional] # noqa: E501
|
|
340
|
+
wrap_up_seconds (int): Wrap up time in seconds. [optional] # noqa: E501
|
|
337
341
|
"""
|
|
338
342
|
|
|
339
343
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -89,6 +89,14 @@ class EmailCommseqEmail(ModelNormal):
|
|
|
89
89
|
'email_container_cjson': (str,), # noqa: E501
|
|
90
90
|
'email_container_cjson_last_modified_dts': (str,), # noqa: E501
|
|
91
91
|
'email_template_vm_path': (str,), # noqa: E501
|
|
92
|
+
'external_generation': (bool,), # noqa: E501
|
|
93
|
+
'external_generation_authentication': (str,), # noqa: E501
|
|
94
|
+
'external_generation_basic_password': (str,), # noqa: E501
|
|
95
|
+
'external_generation_basic_username': (str,), # noqa: E501
|
|
96
|
+
'external_generation_header_name': (str,), # noqa: E501
|
|
97
|
+
'external_generation_header_value': (str,), # noqa: E501
|
|
98
|
+
'external_generation_id': (str,), # noqa: E501
|
|
99
|
+
'external_generation_url': (str,), # noqa: E501
|
|
92
100
|
'filter_profile_equation_json': (str,), # noqa: E501
|
|
93
101
|
'individually_render': (bool,), # noqa: E501
|
|
94
102
|
'library_item_oid': (int,), # noqa: E501
|
|
@@ -123,6 +131,14 @@ class EmailCommseqEmail(ModelNormal):
|
|
|
123
131
|
'email_container_cjson': 'email_container_cjson', # noqa: E501
|
|
124
132
|
'email_container_cjson_last_modified_dts': 'email_container_cjson_last_modified_dts', # noqa: E501
|
|
125
133
|
'email_template_vm_path': 'email_template_vm_path', # noqa: E501
|
|
134
|
+
'external_generation': 'external_generation', # noqa: E501
|
|
135
|
+
'external_generation_authentication': 'external_generation_authentication', # noqa: E501
|
|
136
|
+
'external_generation_basic_password': 'external_generation_basic_password', # noqa: E501
|
|
137
|
+
'external_generation_basic_username': 'external_generation_basic_username', # noqa: E501
|
|
138
|
+
'external_generation_header_name': 'external_generation_header_name', # noqa: E501
|
|
139
|
+
'external_generation_header_value': 'external_generation_header_value', # noqa: E501
|
|
140
|
+
'external_generation_id': 'external_generation_id', # noqa: E501
|
|
141
|
+
'external_generation_url': 'external_generation_url', # noqa: E501
|
|
126
142
|
'filter_profile_equation_json': 'filter_profile_equation_json', # noqa: E501
|
|
127
143
|
'individually_render': 'individually_render', # noqa: E501
|
|
128
144
|
'library_item_oid': 'library_item_oid', # noqa: E501
|
|
@@ -192,6 +208,14 @@ class EmailCommseqEmail(ModelNormal):
|
|
|
192
208
|
email_container_cjson (str): Email container cjson. [optional] # noqa: E501
|
|
193
209
|
email_container_cjson_last_modified_dts (str): Timestamp the last time the container was modified.. [optional] # noqa: E501
|
|
194
210
|
email_template_vm_path (str): Email template virtual path. [optional] # noqa: E501
|
|
211
|
+
external_generation (bool): [optional] # noqa: E501
|
|
212
|
+
external_generation_authentication (str): [optional] # noqa: E501
|
|
213
|
+
external_generation_basic_password (str): [optional] # noqa: E501
|
|
214
|
+
external_generation_basic_username (str): [optional] # noqa: E501
|
|
215
|
+
external_generation_header_name (str): [optional] # noqa: E501
|
|
216
|
+
external_generation_header_value (str): [optional] # noqa: E501
|
|
217
|
+
external_generation_id (str): [optional] # noqa: E501
|
|
218
|
+
external_generation_url (str): [optional] # noqa: E501
|
|
195
219
|
filter_profile_equation_json (str): Filter profile equation json. [optional] # noqa: E501
|
|
196
220
|
individually_render (bool): Individually render. [optional] # noqa: E501
|
|
197
221
|
library_item_oid (int): If this item was ever added to the Code Library, this is the oid for that library item, or 0 if never added before. This value is used to determine if a library item should be inserted or updated.. [optional] # noqa: E501
|
|
@@ -303,6 +327,14 @@ class EmailCommseqEmail(ModelNormal):
|
|
|
303
327
|
email_container_cjson (str): Email container cjson. [optional] # noqa: E501
|
|
304
328
|
email_container_cjson_last_modified_dts (str): Timestamp the last time the container was modified.. [optional] # noqa: E501
|
|
305
329
|
email_template_vm_path (str): Email template virtual path. [optional] # noqa: E501
|
|
330
|
+
external_generation (bool): [optional] # noqa: E501
|
|
331
|
+
external_generation_authentication (str): [optional] # noqa: E501
|
|
332
|
+
external_generation_basic_password (str): [optional] # noqa: E501
|
|
333
|
+
external_generation_basic_username (str): [optional] # noqa: E501
|
|
334
|
+
external_generation_header_name (str): [optional] # noqa: E501
|
|
335
|
+
external_generation_header_value (str): [optional] # noqa: E501
|
|
336
|
+
external_generation_id (str): [optional] # noqa: E501
|
|
337
|
+
external_generation_url (str): [optional] # noqa: E501
|
|
306
338
|
filter_profile_equation_json (str): Filter profile equation json. [optional] # noqa: E501
|
|
307
339
|
individually_render (bool): Individually render. [optional] # noqa: E501
|
|
308
340
|
library_item_oid (int): If this item was ever added to the Code Library, this is the oid for that library item, or 0 if never added before. This value is used to determine if a library item should be inserted or updated.. [optional] # noqa: E501
|
|
@@ -145,8 +145,8 @@ class ItemChargeback(ModelNormal):
|
|
|
145
145
|
Animal class but this time we won't travel
|
|
146
146
|
through its discriminator because we passed in
|
|
147
147
|
_visited_composed_classes = (Animal,)
|
|
148
|
-
addendums ([ItemChargebackAddendum]): Addendums. [optional] # noqa: E501
|
|
149
|
-
adjustment_requests ([ItemChargebackAdjustmentRequest]): Adjustment requests. [optional] # noqa: E501
|
|
148
|
+
addendums ([ItemChargebackAddendum]): Addendums (deprecated). [optional] # noqa: E501
|
|
149
|
+
adjustment_requests ([ItemChargebackAdjustmentRequest]): Adjustment requests (deprecated). [optional] # noqa: E501
|
|
150
150
|
"""
|
|
151
151
|
|
|
152
152
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -232,8 +232,8 @@ class ItemChargeback(ModelNormal):
|
|
|
232
232
|
Animal class but this time we won't travel
|
|
233
233
|
through its discriminator because we passed in
|
|
234
234
|
_visited_composed_classes = (Animal,)
|
|
235
|
-
addendums ([ItemChargebackAddendum]): Addendums. [optional] # noqa: E501
|
|
236
|
-
adjustment_requests ([ItemChargebackAdjustmentRequest]): Adjustment requests. [optional] # noqa: E501
|
|
235
|
+
addendums ([ItemChargebackAddendum]): Addendums (deprecated). [optional] # noqa: E501
|
|
236
|
+
adjustment_requests ([ItemChargebackAdjustmentRequest]): Adjustment requests (deprecated). [optional] # noqa: E501
|
|
237
237
|
"""
|
|
238
238
|
|
|
239
239
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -102,6 +102,7 @@ class OrderRefundableResponse(ModelNormal):
|
|
|
102
102
|
'metadata': (ResponseMetadata,), # noqa: E501
|
|
103
103
|
'order_level_refund_reason_required': (bool,), # noqa: E501
|
|
104
104
|
'order_level_refund_reasons': ([OrderReason],), # noqa: E501
|
|
105
|
+
'order_level_reject_reason_required': (bool,), # noqa: E501
|
|
105
106
|
'order_level_reject_reasons': ([OrderReason],), # noqa: E501
|
|
106
107
|
'refundable': (bool,), # noqa: E501
|
|
107
108
|
'success': (bool,), # noqa: E501
|
|
@@ -122,6 +123,7 @@ class OrderRefundableResponse(ModelNormal):
|
|
|
122
123
|
'metadata': 'metadata', # noqa: E501
|
|
123
124
|
'order_level_refund_reason_required': 'order_level_refund_reason_required', # noqa: E501
|
|
124
125
|
'order_level_refund_reasons': 'order_level_refund_reasons', # noqa: E501
|
|
126
|
+
'order_level_reject_reason_required': 'order_level_reject_reason_required', # noqa: E501
|
|
125
127
|
'order_level_reject_reasons': 'order_level_reject_reasons', # noqa: E501
|
|
126
128
|
'refundable': 'refundable', # noqa: E501
|
|
127
129
|
'success': 'success', # noqa: E501
|
|
@@ -177,6 +179,7 @@ class OrderRefundableResponse(ModelNormal):
|
|
|
177
179
|
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
178
180
|
order_level_refund_reason_required (bool): True if the order level refund reason is required. [optional] # noqa: E501
|
|
179
181
|
order_level_refund_reasons ([OrderReason]): Reason codes available at the order level.. [optional] # noqa: E501
|
|
182
|
+
order_level_reject_reason_required (bool): True if the order level reject reason is required. [optional] # noqa: E501
|
|
180
183
|
order_level_reject_reasons ([OrderReason]): Reject codes available at the order level.. [optional] # noqa: E501
|
|
181
184
|
refundable (bool): Whether the order is refundable or not. Null should be interpreted as false.. [optional] # noqa: E501
|
|
182
185
|
success (bool): Indicates if API call was successful. [optional] # noqa: E501
|
|
@@ -274,6 +277,7 @@ class OrderRefundableResponse(ModelNormal):
|
|
|
274
277
|
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
275
278
|
order_level_refund_reason_required (bool): True if the order level refund reason is required. [optional] # noqa: E501
|
|
276
279
|
order_level_refund_reasons ([OrderReason]): Reason codes available at the order level.. [optional] # noqa: E501
|
|
280
|
+
order_level_reject_reason_required (bool): True if the order level reject reason is required. [optional] # noqa: E501
|
|
277
281
|
order_level_reject_reasons ([OrderReason]): Reject codes available at the order level.. [optional] # noqa: E501
|
|
278
282
|
refundable (bool): Whether the order is refundable or not. Null should be interpreted as false.. [optional] # noqa: E501
|
|
279
283
|
success (bool): Indicates if API call was successful. [optional] # noqa: E501
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
ultracart/__init__.py,sha256=
|
|
2
|
-
ultracart/api_client.py,sha256=
|
|
3
|
-
ultracart/configuration.py,sha256=
|
|
1
|
+
ultracart/__init__.py,sha256=JM11qHsAhsu7Kl596_k5cgf7sg3IVs2WxnmbFKygvPU,699
|
|
2
|
+
ultracart/api_client.py,sha256=bDbRsxbemSttAISk5Utd4EyOwSQ7FcHJGAYRUTySPBE,39072
|
|
3
|
+
ultracart/configuration.py,sha256=DQV-TXYzqRNkp0Hg1JgRZOFNYTUelDCQr1sfyg4r878,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=9AEzkGADZhNlCy5wVSylV5DGXlSG-_UPlY_EgPDUB
|
|
|
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=
|
|
13
|
+
ultracart/api/conversation_api.py,sha256=pUSqn4SR9I1WjjPC7iZw66Md3_vgkxOV6rBgPYR-Y4I,458091
|
|
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
|
|
@@ -156,7 +156,7 @@ ultracart/model/checkout_setup_browser_key_response.py,sha256=HHkfgHDcOps7jAp8RB
|
|
|
156
156
|
ultracart/model/checkout_state_province_response.py,sha256=QD6yupUWG_6ocSN83krfw7-eaN0YzxtLvatnUuci10Y,11698
|
|
157
157
|
ultracart/model/city_state_zip.py,sha256=goGnlh4nzcsV1p8iNeFm4y6LP2TrtHIVjBPrHCDNBas,12129
|
|
158
158
|
ultracart/model/conversation.py,sha256=GzwEq5ZCV02WfWPE7zyJvbZz-MX1KIdBxij-zelOfYc,17213
|
|
159
|
-
ultracart/model/conversation_agent_auth.py,sha256=
|
|
159
|
+
ultracart/model/conversation_agent_auth.py,sha256=oieZAeNMuVWBBDO-YrOAHcBmCc__q5_xmRXArdVkk1g,14520
|
|
160
160
|
ultracart/model/conversation_agent_auth_response.py,sha256=boVaC_JNOUGPlmxX2E-QdQWFLAJMS8GC4OWMRYaCjNM,12906
|
|
161
161
|
ultracart/model/conversation_agent_profile.py,sha256=vqIOHdbPLr3tgNMwe_Ufx_disp3Q_80aOStSZSXwAEQ,13813
|
|
162
162
|
ultracart/model/conversation_agent_profile_response.py,sha256=vlWWfOZOgHoUuA74xY23jQ9bk4yBZkBbhFWAKiv1mq0,12951
|
|
@@ -211,7 +211,7 @@ ultracart/model/conversation_pbx_menus_response.py,sha256=b7aNcBBXfAlXGxlX0LXcHq
|
|
|
211
211
|
ultracart/model/conversation_pbx_phone_number.py,sha256=Oe2WNHvcBUq97JguRQt-JgvoSuNCYCILwzyfsC6yv-Q,12944
|
|
212
212
|
ultracart/model/conversation_pbx_phone_number_response.py,sha256=FjbU6Rqy6J3eT3Jkhm32Wt47V0DxgR9-TPL4vq7k-hs,12967
|
|
213
213
|
ultracart/model/conversation_pbx_phone_numbers_response.py,sha256=rYihQnA17xnRi69J5HL8A8WPPhpEsis9cPvWmXRbJVQ,12981
|
|
214
|
-
ultracart/model/conversation_pbx_queue.py,sha256=
|
|
214
|
+
ultracart/model/conversation_pbx_queue.py,sha256=uJtAgBj0_tnyqIdJK6RxG7pc32yfSD7AlqvqwSZ_QgY,19440
|
|
215
215
|
ultracart/model/conversation_pbx_queue_members.py,sha256=05KtH79B4H8imx-lfd4hlrrrcbCoXrpK2p0JmHUOr9c,11635
|
|
216
216
|
ultracart/model/conversation_pbx_queue_response.py,sha256=xzYGTLoM4wtTuxNOu_pabjyM3qKxTGwX3p4cC3imGhs,12871
|
|
217
217
|
ultracart/model/conversation_pbx_queues_response.py,sha256=TYpY1yzuSZnjgzNoWudPEAyqWIHzsmWvYdVBGcQZwxc,12885
|
|
@@ -370,7 +370,7 @@ ultracart/model/email_campaigns_response.py,sha256=E6eQ_YBRkI5fvMPgbuJs4X8gK6SqP
|
|
|
370
370
|
ultracart/model/email_click.py,sha256=AhH1q2qiDGkzK4bXDVZ57FM1c0-WYOdd1wR2XNogbAI,11623
|
|
371
371
|
ultracart/model/email_clicks_response.py,sha256=2r6byxoyaVFSCmt-LekTdF5ZaEMqZ7-ILYFyBTvZ-o4,12784
|
|
372
372
|
ultracart/model/email_commseq.py,sha256=_YgEIz_WsfSwJMFKrN9Ras5kmZ5C-lapB7C3aGqq3RI,12659
|
|
373
|
-
ultracart/model/email_commseq_email.py,sha256=
|
|
373
|
+
ultracart/model/email_commseq_email.py,sha256=qqCN-IegE-1AMRaaDN67-ReieCjlKvExmlV_dVjnFsY,22433
|
|
374
374
|
ultracart/model/email_commseq_email_response.py,sha256=rMRJIzXfN3vgovm5U6xG-xTtnyCLpB9gPP1HiesPMXg,12841
|
|
375
375
|
ultracart/model/email_commseq_email_send_test_request.py,sha256=igYZ3BA3cx_Cu1Q8eAKVvbnrzJDYtErtJxKMCFM4VD0,13620
|
|
376
376
|
ultracart/model/email_commseq_email_send_test_response.py,sha256=g9qkxIkYU8WGn9m-MmBg7LUKwIwo2p0SLXe3wlxsPog,12515
|
|
@@ -532,7 +532,7 @@ ultracart/model/item_auto_order_step_arbitrary_unit_cost_schedule.py,sha256=NlrR
|
|
|
532
532
|
ultracart/model/item_auto_order_step_grandfather_pricing.py,sha256=2pi650wJqWZw-cTag9VFni3-GLgYZcW27E7K1-YDyKA,11788
|
|
533
533
|
ultracart/model/item_cc_bill.py,sha256=SllqloMw5uy2rwMqjU23_GR5YBNWTcfCG6n_AUQuxis,12987
|
|
534
534
|
ultracart/model/item_channel_partner_mapping.py,sha256=CtNueraQPpHSwT3JFLdFcgwHLuGHMaXJvO9toeCN-9Y,16646
|
|
535
|
-
ultracart/model/item_chargeback.py,sha256=
|
|
535
|
+
ultracart/model/item_chargeback.py,sha256=rhRmQvDw-rKyjf5hXvwcBsEZV05N1yDW6G2_LTXMehA,12329
|
|
536
536
|
ultracart/model/item_chargeback_addendum.py,sha256=YEqjTO3XFZ-Ya59gLdpgKg_1Yuv-9YODqufOAl7vGrU,12283
|
|
537
537
|
ultracart/model/item_chargeback_adjustment_request.py,sha256=xYUhTJwD8lcgC566ioKYzxW-PsjpRLekTpnrgVPfGoU,12163
|
|
538
538
|
ultracart/model/item_checkout.py,sha256=WUp2p_im2hHLGrP9dFzdRHpDTHkckq2UWqZYZZ2vhN4,12603
|
|
@@ -679,7 +679,7 @@ ultracart/model/order_query.py,sha256=B20ISgIg4N6fLPj4QkeNK3qNbETQj7f0sIg9kIVzf8
|
|
|
679
679
|
ultracart/model/order_query_batch.py,sha256=a4wi9dX8Oi85SGTkPwSWUv6s1x6tKC2w0i16WYyFvGs,11447
|
|
680
680
|
ultracart/model/order_quote.py,sha256=rearxF0qL6u7uhstszLj2iajryy7om5nGc_LiFgtZuI,12012
|
|
681
681
|
ultracart/model/order_reason.py,sha256=OOSWtof1CiNxPxVo5jliywXnMTkrPdZ8PCK9pH2ty5Q,12225
|
|
682
|
-
ultracart/model/order_refundable_response.py,sha256=
|
|
682
|
+
ultracart/model/order_refundable_response.py,sha256=XHIuuXrEQFUmqseOIiW7_CRPaZ120-OLFc1Zs_xSm6M,16408
|
|
683
683
|
ultracart/model/order_replacement.py,sha256=2JpkKJHqO_YTEqeeT1mm1S7ZeNISxdw7bDYVoq4k-N0,16822
|
|
684
684
|
ultracart/model/order_replacement_item.py,sha256=-9l1eY8-iSvhhglx50MvSaLPLfFdRthQN4OqO13FBgw,12238
|
|
685
685
|
ultracart/model/order_replacement_response.py,sha256=oj9AKHm-Xgn95gOYMV4VZvizJZNoE1G7J2kPQ6kiazw,12497
|
|
@@ -873,8 +873,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
|
|
|
873
873
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
874
874
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
875
875
|
ultracart/models/__init__.py,sha256=4sfhSouSKN26BXjipfDio_WoTfaH5TaiDegT8YuWlR8,64997
|
|
876
|
-
ultracart_rest_sdk-4.0.
|
|
877
|
-
ultracart_rest_sdk-4.0.
|
|
878
|
-
ultracart_rest_sdk-4.0.
|
|
879
|
-
ultracart_rest_sdk-4.0.
|
|
880
|
-
ultracart_rest_sdk-4.0.
|
|
876
|
+
ultracart_rest_sdk-4.0.211.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
877
|
+
ultracart_rest_sdk-4.0.211.dist-info/METADATA,sha256=q14l-rlFBwWY-1goegYHht0WimIy9hIKOon3APQB4jQ,403
|
|
878
|
+
ultracart_rest_sdk-4.0.211.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
879
|
+
ultracart_rest_sdk-4.0.211.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
880
|
+
ultracart_rest_sdk-4.0.211.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|