ultracart-rest-sdk 4.0.226__py3-none-any.whl → 4.0.228__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_agent.py +14 -7
- ultracart/model/conversation_pbx_phone_number.py +5 -5
- ultracart/model/item_auto_order_step.py +4 -4
- ultracart/model/item_reporting.py +2 -2
- {ultracart_rest_sdk-4.0.226.dist-info → ultracart_rest_sdk-4.0.228.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.226.dist-info → ultracart_rest_sdk-4.0.228.dist-info}/RECORD +13 -13
- {ultracart_rest_sdk-4.0.226.dist-info → ultracart_rest_sdk-4.0.228.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.226.dist-info → ultracart_rest_sdk-4.0.228.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.226.dist-info → ultracart_rest_sdk-4.0.228.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.228/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.228".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
|
@@ -62,12 +62,15 @@ class ConversationPbxAgent(ModelNormal):
|
|
|
62
62
|
('cellphone',): {
|
|
63
63
|
'max_length': 50,
|
|
64
64
|
},
|
|
65
|
-
('conversation_pbx_voicemail_mailbox_uuid',): {
|
|
66
|
-
'max_length': 50,
|
|
67
|
-
},
|
|
68
65
|
('merchant_id',): {
|
|
69
66
|
'max_length': 5,
|
|
70
67
|
},
|
|
68
|
+
('personal_conversation_pbx_voicemail_mailbox_uuid',): {
|
|
69
|
+
'max_length': 50,
|
|
70
|
+
},
|
|
71
|
+
('shared_conversation_pbx_voicemail_mailbox_uuid',): {
|
|
72
|
+
'max_length': 50,
|
|
73
|
+
},
|
|
71
74
|
('twilio_taskrouter_worker_id',): {
|
|
72
75
|
'max_length': 100,
|
|
73
76
|
},
|
|
@@ -102,13 +105,14 @@ class ConversationPbxAgent(ModelNormal):
|
|
|
102
105
|
return {
|
|
103
106
|
'cellphone': (str,), # noqa: E501
|
|
104
107
|
'conversation_pbx_agent_uuid': (str,), # noqa: E501
|
|
105
|
-
'conversation_pbx_voicemail_mailbox_uuid': (str,), # noqa: E501
|
|
106
108
|
'extension': (int,), # noqa: E501
|
|
107
109
|
'forward_calls_to_cellphone': (bool,), # noqa: E501
|
|
108
110
|
'full_name': (str,), # noqa: E501
|
|
109
111
|
'login': (str,), # noqa: E501
|
|
110
112
|
'merchant_id': (str,), # noqa: E501
|
|
113
|
+
'personal_conversation_pbx_voicemail_mailbox_uuid': (str,), # noqa: E501
|
|
111
114
|
'record_outgoing_automatically': (bool,), # noqa: E501
|
|
115
|
+
'shared_conversation_pbx_voicemail_mailbox_uuid': (str,), # noqa: E501
|
|
112
116
|
'twilio_taskrouter_worker_id': (str,), # noqa: E501
|
|
113
117
|
'unavailable_play_audio_uuid': (str,), # noqa: E501
|
|
114
118
|
'unavailable_say': (str,), # noqa: E501
|
|
@@ -125,13 +129,14 @@ class ConversationPbxAgent(ModelNormal):
|
|
|
125
129
|
attribute_map = {
|
|
126
130
|
'cellphone': 'cellphone', # noqa: E501
|
|
127
131
|
'conversation_pbx_agent_uuid': 'conversation_pbx_agent_uuid', # noqa: E501
|
|
128
|
-
'conversation_pbx_voicemail_mailbox_uuid': 'conversation_pbx_voicemail_mailbox_uuid', # noqa: E501
|
|
129
132
|
'extension': 'extension', # noqa: E501
|
|
130
133
|
'forward_calls_to_cellphone': 'forward_calls_to_cellphone', # noqa: E501
|
|
131
134
|
'full_name': 'full_name', # noqa: E501
|
|
132
135
|
'login': 'login', # noqa: E501
|
|
133
136
|
'merchant_id': 'merchant_id', # noqa: E501
|
|
137
|
+
'personal_conversation_pbx_voicemail_mailbox_uuid': 'personal_conversation_pbx_voicemail_mailbox_uuid', # noqa: E501
|
|
134
138
|
'record_outgoing_automatically': 'record_outgoing_automatically', # noqa: E501
|
|
139
|
+
'shared_conversation_pbx_voicemail_mailbox_uuid': 'shared_conversation_pbx_voicemail_mailbox_uuid', # noqa: E501
|
|
135
140
|
'twilio_taskrouter_worker_id': 'twilio_taskrouter_worker_id', # noqa: E501
|
|
136
141
|
'unavailable_play_audio_uuid': 'unavailable_play_audio_uuid', # noqa: E501
|
|
137
142
|
'unavailable_say': 'unavailable_say', # noqa: E501
|
|
@@ -183,13 +188,14 @@ class ConversationPbxAgent(ModelNormal):
|
|
|
183
188
|
_visited_composed_classes = (Animal,)
|
|
184
189
|
cellphone (str): Cellphone number of agent in E.164 format. [optional] # noqa: E501
|
|
185
190
|
conversation_pbx_agent_uuid (str): Conversation Pbx Agent unique identifier. [optional] # noqa: E501
|
|
186
|
-
conversation_pbx_voicemail_mailbox_uuid (str): Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
|
|
187
191
|
extension (int): Extension. [optional] # noqa: E501
|
|
188
192
|
forward_calls_to_cellphone (bool): True if calls to this agent should be forwarded to their cellphone. [optional] # noqa: E501
|
|
189
193
|
full_name (str): Full name. [optional] # noqa: E501
|
|
190
194
|
login (str): Agent login. [optional] # noqa: E501
|
|
191
195
|
merchant_id (str): Merchant Id. [optional] # noqa: E501
|
|
196
|
+
personal_conversation_pbx_voicemail_mailbox_uuid (str): Personal Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
|
|
192
197
|
record_outgoing_automatically (bool): True if outgoing calls should be automatically recorded. [optional] # noqa: E501
|
|
198
|
+
shared_conversation_pbx_voicemail_mailbox_uuid (str): Shared Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
|
|
193
199
|
twilio_taskrouter_worker_id (str): Twilio taskrouter worker Id. [optional] # noqa: E501
|
|
194
200
|
unavailable_play_audio_uuid (str): Unavailable play audio UUID. [optional] # noqa: E501
|
|
195
201
|
unavailable_say (str): Unavailable say. [optional] # noqa: E501
|
|
@@ -283,13 +289,14 @@ class ConversationPbxAgent(ModelNormal):
|
|
|
283
289
|
_visited_composed_classes = (Animal,)
|
|
284
290
|
cellphone (str): Cellphone number of agent in E.164 format. [optional] # noqa: E501
|
|
285
291
|
conversation_pbx_agent_uuid (str): Conversation Pbx Agent unique identifier. [optional] # noqa: E501
|
|
286
|
-
conversation_pbx_voicemail_mailbox_uuid (str): Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
|
|
287
292
|
extension (int): Extension. [optional] # noqa: E501
|
|
288
293
|
forward_calls_to_cellphone (bool): True if calls to this agent should be forwarded to their cellphone. [optional] # noqa: E501
|
|
289
294
|
full_name (str): Full name. [optional] # noqa: E501
|
|
290
295
|
login (str): Agent login. [optional] # noqa: E501
|
|
291
296
|
merchant_id (str): Merchant Id. [optional] # noqa: E501
|
|
297
|
+
personal_conversation_pbx_voicemail_mailbox_uuid (str): Personal Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
|
|
292
298
|
record_outgoing_automatically (bool): True if outgoing calls should be automatically recorded. [optional] # noqa: E501
|
|
299
|
+
shared_conversation_pbx_voicemail_mailbox_uuid (str): Shared Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
|
|
293
300
|
twilio_taskrouter_worker_id (str): Twilio taskrouter worker Id. [optional] # noqa: E501
|
|
294
301
|
unavailable_play_audio_uuid (str): Unavailable play audio UUID. [optional] # noqa: E501
|
|
295
302
|
unavailable_say (str): Unavailable say. [optional] # noqa: E501
|
|
@@ -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
|
|
|
@@ -138,7 +138,7 @@ class ItemReporting(ModelNormal):
|
|
|
138
138
|
through its discriminator because we passed in
|
|
139
139
|
_visited_composed_classes = (Animal,)
|
|
140
140
|
report_as_upsell (bool): Report as an upsell. [optional] # noqa: E501
|
|
141
|
-
report_pickable_quantities ([int]): Report pickable quantities. [optional] # noqa: E501
|
|
141
|
+
report_pickable_quantities ([int]): Report pickable quantities (deprecated). [optional] # noqa: E501
|
|
142
142
|
"""
|
|
143
143
|
|
|
144
144
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -225,7 +225,7 @@ class ItemReporting(ModelNormal):
|
|
|
225
225
|
through its discriminator because we passed in
|
|
226
226
|
_visited_composed_classes = (Animal,)
|
|
227
227
|
report_as_upsell (bool): Report as an upsell. [optional] # noqa: E501
|
|
228
|
-
report_pickable_quantities ([int]): Report pickable quantities. [optional] # noqa: E501
|
|
228
|
+
report_pickable_quantities ([int]): Report pickable quantities (deprecated). [optional] # noqa: E501
|
|
229
229
|
"""
|
|
230
230
|
|
|
231
231
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -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=Ur0eaxOvB_Pxi7BnYFOWxdEp68I4gv-BnEd39wbbpJA,699
|
|
2
|
+
ultracart/api_client.py,sha256=9SjGOlzLIfCvgJanpqIjcCHgnSZdXHBzeffeIUPkRpg,39072
|
|
3
|
+
ultracart/configuration.py,sha256=ePgN1zz8Q7HNFkfqj1CojRrrDVSn4aoNUhQzZnT7HT4,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
|
|
@@ -197,7 +197,7 @@ ultracart/model/conversation_messages_response.py,sha256=wKaD-ZyZz4PGDSRUw-cDmZ3
|
|
|
197
197
|
ultracart/model/conversation_multimedia_upload_url.py,sha256=b83yz8vwDJCcmrlnzKrMmoIzWV85YXc9JvigpxpRchc,11610
|
|
198
198
|
ultracart/model/conversation_multimedia_upload_url_response.py,sha256=I9GW0IiHrN8XbkV9-m9RvJI9QE39EHmGoXxei_LQ-DY,13127
|
|
199
199
|
ultracart/model/conversation_participant.py,sha256=AL9wPJxm2TozPN31HbUisIv6AhvTL6DqPuG5VIqY7_4,14482
|
|
200
|
-
ultracart/model/conversation_pbx_agent.py,sha256=
|
|
200
|
+
ultracart/model/conversation_pbx_agent.py,sha256=_qTlzQAoUk3dI_jBCVnN3160HuXJoAH1lOWlfqzxIKc,17004
|
|
201
201
|
ultracart/model/conversation_pbx_agent_response.py,sha256=ExYxi_fMSjPzyaBA1U9OODt0Ktn8DSMHlRFiq8vfQ04,12871
|
|
202
202
|
ultracart/model/conversation_pbx_agents_response.py,sha256=DsJzAkoq_3y8maXw3rlGTfshJnZK9gG0sdVO5WnFjTQ,12885
|
|
203
203
|
ultracart/model/conversation_pbx_audio.py,sha256=0SF54E2KA7HeOb8szFIeydhTuilStBu7cbE3A0GX_JA,14218
|
|
@@ -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
|
|
@@ -584,7 +584,7 @@ ultracart/model/item_property.py,sha256=moPghPxE3j9MPcKwnjDXQuATsauY7-YHq6yam1cb
|
|
|
584
584
|
ultracart/model/item_realtime_pricing.py,sha256=UO5qVBvkVyKAazKGB24YJ8vRYLUAzv3Osf4z-Adv8j8,12336
|
|
585
585
|
ultracart/model/item_related.py,sha256=-XnQ7S6KNujNhXOf0rnPhkzbKF5L5wtP8DojmYFYKEY,12367
|
|
586
586
|
ultracart/model/item_related_item.py,sha256=6ahwZdUhhBb_7ukTefTHwoJPHT0ooioRiPW4AcZbXZU,12197
|
|
587
|
-
ultracart/model/item_reporting.py,sha256=
|
|
587
|
+
ultracart/model/item_reporting.py,sha256=aNXTDDwx3XWBJoEgaW6IE3CUNJqh7bKiNpgBQw5I3uM,11869
|
|
588
588
|
ultracart/model/item_response.py,sha256=qWGe4Zznnhc23QYv9Aq4yuBQ4YzA2AeN2YwiIYqeSo8,12704
|
|
589
589
|
ultracart/model/item_restriction.py,sha256=ZTNz8HEcs7RCVSboE-5IatYzHqmQN-Nn0FbSpUgmdHA,13725
|
|
590
590
|
ultracart/model/item_restriction_item.py,sha256=NiZfriRqi3bO2RaSfOXK_Zo6EG_qTIcpIO6cmoGgq2Y,12353
|
|
@@ -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.228.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
886
|
+
ultracart_rest_sdk-4.0.228.dist-info/METADATA,sha256=rD--fDpgIXG7VDfGp1YR8WEMMXZQWAewO7Pik12UCs4,403
|
|
887
|
+
ultracart_rest_sdk-4.0.228.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
888
|
+
ultracart_rest_sdk-4.0.228.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
889
|
+
ultracart_rest_sdk-4.0.228.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|