ultracart-rest-sdk 4.0.226__py3-none-any.whl → 4.0.227__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/item_api.py +2 -2
- ultracart/api_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/model/conversation_pbx_phone_number.py +5 -5
- ultracart/model/item_auto_order_step.py +4 -4
- {ultracart_rest_sdk-4.0.226.dist-info → ultracart_rest_sdk-4.0.227.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.226.dist-info → ultracart_rest_sdk-4.0.227.dist-info}/RECORD +11 -11
- {ultracart_rest_sdk-4.0.226.dist-info → ultracart_rest_sdk-4.0.227.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.226.dist-info → ultracart_rest_sdk-4.0.227.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.226.dist-info → ultracart_rest_sdk-4.0.227.dist-info}/top_level.txt +0 -0
ultracart/__init__.py
CHANGED
ultracart/api/item_api.py
CHANGED
|
@@ -2879,9 +2879,9 @@ class ItemApi(object):
|
|
|
2879
2879
|
self,
|
|
2880
2880
|
**kwargs
|
|
2881
2881
|
):
|
|
2882
|
-
"""Retrieve a list of item inventories # noqa: E501
|
|
2882
|
+
"""Retrieve a list of item inventories. This method may be called once every 15 minutes. More than that will result in a 429 response. # noqa: E501
|
|
2883
2883
|
|
|
2884
|
-
|
|
2884
|
+
Retrieve a list of item inventories. This method may be called once every 15 minutes. More than that will result in a 429 response. # noqa: E501
|
|
2885
2885
|
This method makes a synchronous HTTP request by default. To make an
|
|
2886
2886
|
asynchronous HTTP request, please pass async_req=True
|
|
2887
2887
|
|
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.227/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.227".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
|
@@ -72,7 +72,7 @@ class ConversationPbxPhoneNumber(ModelNormal):
|
|
|
72
72
|
('action_target',): {
|
|
73
73
|
'max_length': 50,
|
|
74
74
|
},
|
|
75
|
-
('
|
|
75
|
+
('conversation_pbx_phone_number_uuid',): {
|
|
76
76
|
'max_length': 50,
|
|
77
77
|
},
|
|
78
78
|
('merchant_id',): {
|
|
@@ -106,7 +106,7 @@ class ConversationPbxPhoneNumber(ModelNormal):
|
|
|
106
106
|
return {
|
|
107
107
|
'action': (str,), # noqa: E501
|
|
108
108
|
'action_target': (str,), # noqa: E501
|
|
109
|
-
'
|
|
109
|
+
'conversation_pbx_phone_number_uuid': (str,), # noqa: E501
|
|
110
110
|
'merchant_id': (str,), # noqa: E501
|
|
111
111
|
'phone_number': (str,), # noqa: E501
|
|
112
112
|
}
|
|
@@ -119,7 +119,7 @@ class ConversationPbxPhoneNumber(ModelNormal):
|
|
|
119
119
|
attribute_map = {
|
|
120
120
|
'action': 'action', # noqa: E501
|
|
121
121
|
'action_target': 'action_target', # noqa: E501
|
|
122
|
-
'
|
|
122
|
+
'conversation_pbx_phone_number_uuid': 'conversation_pbx_phone_number_uuid', # noqa: E501
|
|
123
123
|
'merchant_id': 'merchant_id', # noqa: E501
|
|
124
124
|
'phone_number': 'phone_number', # noqa: E501
|
|
125
125
|
}
|
|
@@ -167,7 +167,7 @@ class ConversationPbxPhoneNumber(ModelNormal):
|
|
|
167
167
|
_visited_composed_classes = (Animal,)
|
|
168
168
|
action (str): Action. [optional] # noqa: E501
|
|
169
169
|
action_target (str): Action target. This is the UUID associated with the configuration object of that particular type.. [optional] # noqa: E501
|
|
170
|
-
|
|
170
|
+
conversation_pbx_phone_number_uuid (str): Conversation Pbx Phone Number UUID. [optional] # noqa: E501
|
|
171
171
|
merchant_id (str): Merchant Id. [optional] # noqa: E501
|
|
172
172
|
phone_number (str): Phone number. [optional] # noqa: E501
|
|
173
173
|
"""
|
|
@@ -257,7 +257,7 @@ class ConversationPbxPhoneNumber(ModelNormal):
|
|
|
257
257
|
_visited_composed_classes = (Animal,)
|
|
258
258
|
action (str): Action. [optional] # noqa: E501
|
|
259
259
|
action_target (str): Action target. This is the UUID associated with the configuration object of that particular type.. [optional] # noqa: E501
|
|
260
|
-
|
|
260
|
+
conversation_pbx_phone_number_uuid (str): Conversation Pbx Phone Number UUID. [optional] # noqa: E501
|
|
261
261
|
merchant_id (str): Merchant Id. [optional] # noqa: E501
|
|
262
262
|
phone_number (str): Phone number. [optional] # noqa: E501
|
|
263
263
|
"""
|
|
@@ -199,8 +199,8 @@ class ItemAutoOrderStep(ModelNormal):
|
|
|
199
199
|
recurring_merchant_item_oid (int): Item object identifier to rebill. [optional] # noqa: E501
|
|
200
200
|
repeat_count (int): Number of times to rebill. Last step can be null for infinite. [optional] # noqa: E501
|
|
201
201
|
schedule (str): Frequency of the rebill. [optional] # noqa: E501
|
|
202
|
-
subscribe_email_list_name (str): Email list name to subscribe the customer to when the rebill occurs. [optional] # noqa: E501
|
|
203
|
-
subscribe_email_list_oid (int): Email list identifier to subscribe the customer to when this rebill occurs. [optional] # noqa: E501
|
|
202
|
+
subscribe_email_list_name (str): Email list name to subscribe the customer to when the rebill occurs (decommissioned email engine). [optional] # noqa: E501
|
|
203
|
+
subscribe_email_list_oid (int): Email list identifier to subscribe the customer to when this rebill occurs (decommissioned email engine). [optional] # noqa: E501
|
|
204
204
|
type (str): Type of step (item, kit only, loop or pause). [optional] # noqa: E501
|
|
205
205
|
"""
|
|
206
206
|
|
|
@@ -301,8 +301,8 @@ class ItemAutoOrderStep(ModelNormal):
|
|
|
301
301
|
recurring_merchant_item_oid (int): Item object identifier to rebill. [optional] # noqa: E501
|
|
302
302
|
repeat_count (int): Number of times to rebill. Last step can be null for infinite. [optional] # noqa: E501
|
|
303
303
|
schedule (str): Frequency of the rebill. [optional] # noqa: E501
|
|
304
|
-
subscribe_email_list_name (str): Email list name to subscribe the customer to when the rebill occurs. [optional] # noqa: E501
|
|
305
|
-
subscribe_email_list_oid (int): Email list identifier to subscribe the customer to when this rebill occurs. [optional] # noqa: E501
|
|
304
|
+
subscribe_email_list_name (str): Email list name to subscribe the customer to when the rebill occurs (decommissioned email engine). [optional] # noqa: E501
|
|
305
|
+
subscribe_email_list_oid (int): Email list identifier to subscribe the customer to when this rebill occurs (decommissioned email engine). [optional] # noqa: E501
|
|
306
306
|
type (str): Type of step (item, kit only, loop or pause). [optional] # noqa: E501
|
|
307
307
|
"""
|
|
308
308
|
|
|
@@ -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=bWeso_u7U4c_3WiMZfKG1y81WhetqTndYkFfimdBfz4,699
|
|
2
|
+
ultracart/api_client.py,sha256=QEbWDnUC_wZGZ4786iW9oGovULchnE4ZeViXnMCYTYs,39072
|
|
3
|
+
ultracart/configuration.py,sha256=lRqCWhQUB41Bqp96MZP_F-Fg4WJqxhwtmw9KHsvfMtU,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
|
|
@@ -17,7 +17,7 @@ ultracart/api/datawarehouse_api.py,sha256=4UdypzYNcDwgHeyWqK1x6WARC62u9CmbfVTGhr
|
|
|
17
17
|
ultracart/api/fulfillment_api.py,sha256=2MN_iugqFk4gwz-ZhrOgB9iIQHnzQ5qNcv9pweOvXro,35183
|
|
18
18
|
ultracart/api/gift_certificate_api.py,sha256=2TkzQhqCMcPf8Ro14eRycy0LtPxfC7n67GSMRrMcNuc,46858
|
|
19
19
|
ultracart/api/integration_log_api.py,sha256=t8spQtDERkGKISq7JtDNkA1MsQXp8qV8lSuXIhy0lEc,30164
|
|
20
|
-
ultracart/api/item_api.py,sha256=
|
|
20
|
+
ultracart/api/item_api.py,sha256=sMc9DIza1CedC845dfljhYz_Bdyh6A9pumu5b5nVxZU,134751
|
|
21
21
|
ultracart/api/oauth_api.py,sha256=oYx-F4WFF3LgMlHP-4x_gcSwS95-9Lowiwcgr5Rziyw,13636
|
|
22
22
|
ultracart/api/order_api.py,sha256=Mc1Mru5z7-BrN0fhnQs3xEjxwICrFkk4dIIuGraKy44,161058
|
|
23
23
|
ultracart/api/sso_api.py,sha256=Ct9oau71nCUKecojo_1kkXRcIqPxhlVZiST2bdjLJJ8,21632
|
|
@@ -212,7 +212,7 @@ ultracart/model/conversation_pbx_menu.py,sha256=E8--K06lUL63sO8fnFbotg-iLkVLPCjm
|
|
|
212
212
|
ultracart/model/conversation_pbx_menu_mapping.py,sha256=-00uET0jZHl1gFjTfWCwGTVDiOM23Snx5zxJQOGvq7M,12619
|
|
213
213
|
ultracart/model/conversation_pbx_menu_response.py,sha256=NknPaIxn5Xtbit9zmMoB5ri2TfUCdDiLqKi-4j3dYjI,12856
|
|
214
214
|
ultracart/model/conversation_pbx_menus_response.py,sha256=b7aNcBBXfAlXGxlX0LXcHqZRMSTFattGtNxJqZ6Ciz4,12870
|
|
215
|
-
ultracart/model/conversation_pbx_phone_number.py,sha256=
|
|
215
|
+
ultracart/model/conversation_pbx_phone_number.py,sha256=3sOTjxCcQ-HhihvWw07LnvWVS3fUcLMoczhtZnGbXMc,13326
|
|
216
216
|
ultracart/model/conversation_pbx_phone_number_response.py,sha256=FjbU6Rqy6J3eT3Jkhm32Wt47V0DxgR9-TPL4vq7k-hs,12967
|
|
217
217
|
ultracart/model/conversation_pbx_phone_numbers_response.py,sha256=rYihQnA17xnRi69J5HL8A8WPPhpEsis9cPvWmXRbJVQ,12981
|
|
218
218
|
ultracart/model/conversation_pbx_queue.py,sha256=uJtAgBj0_tnyqIdJK6RxG7pc32yfSD7AlqvqwSZ_QgY,19440
|
|
@@ -533,7 +533,7 @@ ultracart/model/item.py,sha256=ac73gzx3Ko8IHu4mXFMmcresRQ7ndPDbvTqO5h0O4Zg,30236
|
|
|
533
533
|
ultracart/model/item_accounting.py,sha256=2tY0OmwmBfL6jgJKYN3H9uWEqmzyofnFoxbDYkMeg44,12033
|
|
534
534
|
ultracart/model/item_amember.py,sha256=AtA_G1ftCCvRWkN4CjauKFrVo1Pfy4vt3iVusWqbVQk,12125
|
|
535
535
|
ultracart/model/item_auto_order.py,sha256=ooGSPdJAqZ-e9HBvPHpBfSxWJiuooGcByDMBacaM1-k,21148
|
|
536
|
-
ultracart/model/item_auto_order_step.py,sha256=
|
|
536
|
+
ultracart/model/item_auto_order_step.py,sha256=n1PiuD_K5yr28zrWIrWkTzMZOXJlfF7OY3UWYTQLNso,18570
|
|
537
537
|
ultracart/model/item_auto_order_step_arbitrary_unit_cost_schedule.py,sha256=NlrRgPtlwTU2R-uaSRh5X84XYe_I8z4EFBUBQwA8j64,11830
|
|
538
538
|
ultracart/model/item_auto_order_step_grandfather_pricing.py,sha256=2pi650wJqWZw-cTag9VFni3-GLgYZcW27E7K1-YDyKA,11788
|
|
539
539
|
ultracart/model/item_cc_bill.py,sha256=SllqloMw5uy2rwMqjU23_GR5YBNWTcfCG6n_AUQuxis,12987
|
|
@@ -882,8 +882,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
|
|
|
882
882
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
883
883
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
884
884
|
ultracart/models/__init__.py,sha256=JOyD4oTrVKrwdSgBUPAcyMnm_9hmWMw9aPK7u8ppvak,65794
|
|
885
|
-
ultracart_rest_sdk-4.0.
|
|
886
|
-
ultracart_rest_sdk-4.0.
|
|
887
|
-
ultracart_rest_sdk-4.0.
|
|
888
|
-
ultracart_rest_sdk-4.0.
|
|
889
|
-
ultracart_rest_sdk-4.0.
|
|
885
|
+
ultracart_rest_sdk-4.0.227.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
886
|
+
ultracart_rest_sdk-4.0.227.dist-info/METADATA,sha256=1Jegv6YsKyVhrUjIR59flVHAC-sna-SyuI03kDnYaME,403
|
|
887
|
+
ultracart_rest_sdk-4.0.227.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
888
|
+
ultracart_rest_sdk-4.0.227.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
889
|
+
ultracart_rest_sdk-4.0.227.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|