ultracart-rest-sdk 4.0.240__py3-none-any.whl → 4.0.242__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/fulfillment_api.py +4 -3
- ultracart/api/oauth_api.py +1 -1
- ultracart/api/webhook_api.py +3 -3
- ultracart/api_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/model/channel_partner_order.py +4 -0
- ultracart/model/customer_attachment.py +2 -2
- ultracart/model/item_payment_processing.py +4 -0
- ultracart/model/item_review.py +7 -0
- ultracart/model/order.py +6 -0
- ultracart/model/order_current_stage_history.py +302 -0
- ultracart/model/order_item.py +4 -0
- ultracart/model/order_summary.py +16 -0
- ultracart/model/{webhook_sample_request.py → webhook_reflow.py} +11 -25
- ultracart/model/{webhook_sample_request_response.py → webhook_reflow_response.py} +9 -9
- ultracart/models/__init__.py +3 -2
- {ultracart_rest_sdk-4.0.240.dist-info → ultracart_rest_sdk-4.0.242.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.240.dist-info → ultracart_rest_sdk-4.0.242.dist-info}/RECORD +22 -21
- {ultracart_rest_sdk-4.0.240.dist-info → ultracart_rest_sdk-4.0.242.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.240.dist-info → ultracart_rest_sdk-4.0.242.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.240.dist-info → ultracart_rest_sdk-4.0.242.dist-info}/top_level.txt +0 -0
ultracart/__init__.py
CHANGED
ultracart/api/fulfillment_api.py
CHANGED
|
@@ -26,6 +26,7 @@ from ultracart.model.distribution_centers_response import DistributionCentersRes
|
|
|
26
26
|
from ultracart.model.error_response import ErrorResponse
|
|
27
27
|
from ultracart.model.fulfillment_inventory import FulfillmentInventory
|
|
28
28
|
from ultracart.model.fulfillment_shipment import FulfillmentShipment
|
|
29
|
+
from ultracart.model.order_packing_slip_response import OrderPackingSlipResponse
|
|
29
30
|
from ultracart.model.orders_response import OrdersResponse
|
|
30
31
|
|
|
31
32
|
|
|
@@ -112,7 +113,7 @@ class FulfillmentApi(object):
|
|
|
112
113
|
)
|
|
113
114
|
self.generate_packing_slip_endpoint = _Endpoint(
|
|
114
115
|
settings={
|
|
115
|
-
'response_type': (
|
|
116
|
+
'response_type': (OrderPackingSlipResponse,),
|
|
116
117
|
'auth': [
|
|
117
118
|
'ultraCartOauth',
|
|
118
119
|
'ultraCartSimpleApiKey'
|
|
@@ -523,7 +524,7 @@ class FulfillmentApi(object):
|
|
|
523
524
|
async_req (bool): execute request asynchronously
|
|
524
525
|
|
|
525
526
|
Returns:
|
|
526
|
-
|
|
527
|
+
OrderPackingSlipResponse
|
|
527
528
|
If the method is called asynchronously, returns the request
|
|
528
529
|
thread.
|
|
529
530
|
"""
|
|
@@ -565,7 +566,7 @@ class FulfillmentApi(object):
|
|
|
565
566
|
):
|
|
566
567
|
"""Retrieve orders queued up for this distribution center. # noqa: E501
|
|
567
568
|
|
|
568
|
-
Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
569
|
+
Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes. # noqa: E501
|
|
569
570
|
This method makes a synchronous HTTP request by default. To make an
|
|
570
571
|
asynchronous HTTP request, please pass async_req=True
|
|
571
572
|
|
ultracart/api/oauth_api.py
CHANGED
|
@@ -208,7 +208,7 @@ class OauthApi(object):
|
|
|
208
208
|
|
|
209
209
|
Keyword Args:
|
|
210
210
|
code (str): Authorization code received back from the browser redirect. [optional]
|
|
211
|
-
redirect_uri (str): The URI that you redirect the browser to
|
|
211
|
+
redirect_uri (str): The URI that you redirect the browser to start the authorization process. [optional]
|
|
212
212
|
refresh_token (str): The refresh token received during the original grant_type=authorization_code that can be used to return a new access token. [optional]
|
|
213
213
|
_return_http_data_only (bool): response data without head status
|
|
214
214
|
code and headers. Default is True.
|
ultracart/api/webhook_api.py
CHANGED
|
@@ -26,8 +26,8 @@ from ultracart.model.error_response import ErrorResponse
|
|
|
26
26
|
from ultracart.model.webhook import Webhook
|
|
27
27
|
from ultracart.model.webhook_log_response import WebhookLogResponse
|
|
28
28
|
from ultracart.model.webhook_log_summaries_response import WebhookLogSummariesResponse
|
|
29
|
+
from ultracart.model.webhook_reflow_response import WebhookReflowResponse
|
|
29
30
|
from ultracart.model.webhook_response import WebhookResponse
|
|
30
|
-
from ultracart.model.webhook_sample_request_response import WebhookSampleRequestResponse
|
|
31
31
|
from ultracart.model.webhooks_response import WebhooksResponse
|
|
32
32
|
|
|
33
33
|
|
|
@@ -408,7 +408,7 @@ class WebhookApi(object):
|
|
|
408
408
|
)
|
|
409
409
|
self.resend_event_endpoint = _Endpoint(
|
|
410
410
|
settings={
|
|
411
|
-
'response_type': (
|
|
411
|
+
'response_type': (WebhookReflowResponse,),
|
|
412
412
|
'auth': [
|
|
413
413
|
'ultraCartOauth',
|
|
414
414
|
'ultraCartSimpleApiKey'
|
|
@@ -1086,7 +1086,7 @@ class WebhookApi(object):
|
|
|
1086
1086
|
async_req (bool): execute request asynchronously
|
|
1087
1087
|
|
|
1088
1088
|
Returns:
|
|
1089
|
-
|
|
1089
|
+
WebhookReflowResponse
|
|
1090
1090
|
If the method is called asynchronously, returns the request
|
|
1091
1091
|
thread.
|
|
1092
1092
|
"""
|
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.242/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.242".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
|
@@ -310,6 +310,7 @@ class ChannelPartnerOrder(ModelNormal):
|
|
|
310
310
|
'special_instructions': (str,), # noqa: E501
|
|
311
311
|
'store_completed': (bool,), # noqa: E501
|
|
312
312
|
'store_if_payment_declines': (bool,), # noqa: E501
|
|
313
|
+
'storefront_host_name': (str,), # noqa: E501
|
|
313
314
|
'tax_county': (str,), # noqa: E501
|
|
314
315
|
'tax_exempt': (bool,), # noqa: E501
|
|
315
316
|
'transaction': (ChannelPartnerOrderTransaction,), # noqa: E501
|
|
@@ -409,6 +410,7 @@ class ChannelPartnerOrder(ModelNormal):
|
|
|
409
410
|
'special_instructions': 'special_instructions', # noqa: E501
|
|
410
411
|
'store_completed': 'store_completed', # noqa: E501
|
|
411
412
|
'store_if_payment_declines': 'store_if_payment_declines', # noqa: E501
|
|
413
|
+
'storefront_host_name': 'storefront_host_name', # noqa: E501
|
|
412
414
|
'tax_county': 'tax_county', # noqa: E501
|
|
413
415
|
'tax_exempt': 'tax_exempt', # noqa: E501
|
|
414
416
|
'transaction': 'transaction', # noqa: E501
|
|
@@ -543,6 +545,7 @@ class ChannelPartnerOrder(ModelNormal):
|
|
|
543
545
|
special_instructions (str): Special instructions from the customer regarding shipping. [optional] # noqa: E501
|
|
544
546
|
store_completed (bool): If true the order bypasses shipping and is marked completed. [optional] # noqa: E501
|
|
545
547
|
store_if_payment_declines (bool): If true any failed payments are placed into Accounts Receivable. If false any failed payments result in a rejected order resulting in errors thrown during the insert routine. [optional] # noqa: E501
|
|
548
|
+
storefront_host_name (str): StoreFront host name associated with the order. [optional] # noqa: E501
|
|
546
549
|
tax_county (str): The optional shipping county used to determine exact taxes. [optional] # noqa: E501
|
|
547
550
|
tax_exempt (bool): If true this order is marked as being tax exempt. [optional] # noqa: E501
|
|
548
551
|
transaction (ChannelPartnerOrderTransaction): [optional] # noqa: E501
|
|
@@ -719,6 +722,7 @@ class ChannelPartnerOrder(ModelNormal):
|
|
|
719
722
|
special_instructions (str): Special instructions from the customer regarding shipping. [optional] # noqa: E501
|
|
720
723
|
store_completed (bool): If true the order bypasses shipping and is marked completed. [optional] # noqa: E501
|
|
721
724
|
store_if_payment_declines (bool): If true any failed payments are placed into Accounts Receivable. If false any failed payments result in a rejected order resulting in errors thrown during the insert routine. [optional] # noqa: E501
|
|
725
|
+
storefront_host_name (str): StoreFront host name associated with the order. [optional] # noqa: E501
|
|
722
726
|
tax_county (str): The optional shipping county used to determine exact taxes. [optional] # noqa: E501
|
|
723
727
|
tax_exempt (bool): If true this order is marked as being tax exempt. [optional] # noqa: E501
|
|
724
728
|
transaction (ChannelPartnerOrderTransaction): [optional] # noqa: E501
|
|
@@ -146,7 +146,7 @@ class CustomerAttachment(ModelNormal):
|
|
|
146
146
|
customer_profile_attachment_oid (int): Attachment identifier. [optional] # noqa: E501
|
|
147
147
|
description (str): Description. [optional] # noqa: E501
|
|
148
148
|
file_name (str): File name. [optional] # noqa: E501
|
|
149
|
-
mime_type (str): Mime
|
|
149
|
+
mime_type (str): Mime type. [optional] # noqa: E501
|
|
150
150
|
upload_dts (str): Upload date/time. [optional] # noqa: E501
|
|
151
151
|
"""
|
|
152
152
|
|
|
@@ -236,7 +236,7 @@ class CustomerAttachment(ModelNormal):
|
|
|
236
236
|
customer_profile_attachment_oid (int): Attachment identifier. [optional] # noqa: E501
|
|
237
237
|
description (str): Description. [optional] # noqa: E501
|
|
238
238
|
file_name (str): File name. [optional] # noqa: E501
|
|
239
|
-
mime_type (str): Mime
|
|
239
|
+
mime_type (str): Mime type. [optional] # noqa: E501
|
|
240
240
|
upload_dts (str): Upload date/time. [optional] # noqa: E501
|
|
241
241
|
"""
|
|
242
242
|
|
|
@@ -83,6 +83,7 @@ class ItemPaymentProcessing(ModelNormal):
|
|
|
83
83
|
"""
|
|
84
84
|
return {
|
|
85
85
|
'block_prepaid': (bool,), # noqa: E501
|
|
86
|
+
'block_refunds': (bool,), # noqa: E501
|
|
86
87
|
'credit_card_transaction_type': (str,), # noqa: E501
|
|
87
88
|
'no_realtime_charge': (bool,), # noqa: E501
|
|
88
89
|
'payment_method_validity': ([str],), # noqa: E501
|
|
@@ -96,6 +97,7 @@ class ItemPaymentProcessing(ModelNormal):
|
|
|
96
97
|
|
|
97
98
|
attribute_map = {
|
|
98
99
|
'block_prepaid': 'block_prepaid', # noqa: E501
|
|
100
|
+
'block_refunds': 'block_refunds', # noqa: E501
|
|
99
101
|
'credit_card_transaction_type': 'credit_card_transaction_type', # noqa: E501
|
|
100
102
|
'no_realtime_charge': 'no_realtime_charge', # noqa: E501
|
|
101
103
|
'payment_method_validity': 'payment_method_validity', # noqa: E501
|
|
@@ -144,6 +146,7 @@ class ItemPaymentProcessing(ModelNormal):
|
|
|
144
146
|
through its discriminator because we passed in
|
|
145
147
|
_visited_composed_classes = (Animal,)
|
|
146
148
|
block_prepaid (bool): True if prepaid cards should be blocked from buying this item. [optional] # noqa: E501
|
|
149
|
+
block_refunds (bool): True if this item should block any refund attempts. [optional] # noqa: E501
|
|
147
150
|
credit_card_transaction_type (str): Credit card transaction type. [optional] # noqa: E501
|
|
148
151
|
no_realtime_charge (bool): True if no real-time charge should be performed on this item.. [optional] # noqa: E501
|
|
149
152
|
payment_method_validity ([str]): Payment method validity. [optional] # noqa: E501
|
|
@@ -234,6 +237,7 @@ class ItemPaymentProcessing(ModelNormal):
|
|
|
234
237
|
through its discriminator because we passed in
|
|
235
238
|
_visited_composed_classes = (Animal,)
|
|
236
239
|
block_prepaid (bool): True if prepaid cards should be blocked from buying this item. [optional] # noqa: E501
|
|
240
|
+
block_refunds (bool): True if this item should block any refund attempts. [optional] # noqa: E501
|
|
237
241
|
credit_card_transaction_type (str): Credit card transaction type. [optional] # noqa: E501
|
|
238
242
|
no_realtime_charge (bool): True if no real-time charge should be performed on this item.. [optional] # noqa: E501
|
|
239
243
|
payment_method_validity ([str]): Payment method validity. [optional] # noqa: E501
|
ultracart/model/item_review.py
CHANGED
|
@@ -65,6 +65,9 @@ class ItemReview(ModelNormal):
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
validations = {
|
|
68
|
+
('merchant_reply',): {
|
|
69
|
+
'max_length': 10000,
|
|
70
|
+
},
|
|
68
71
|
('rating_name1',): {
|
|
69
72
|
'max_length': 100,
|
|
70
73
|
},
|
|
@@ -140,6 +143,7 @@ class ItemReview(ModelNormal):
|
|
|
140
143
|
'featured': (bool,), # noqa: E501
|
|
141
144
|
'helperful_no_votes': (int,), # noqa: E501
|
|
142
145
|
'helpful_yes_votes': (int,), # noqa: E501
|
|
146
|
+
'merchant_reply': (str,), # noqa: E501
|
|
143
147
|
'order_id': (str,), # noqa: E501
|
|
144
148
|
'overall': (float,), # noqa: E501
|
|
145
149
|
'rating_name1': (str,), # noqa: E501
|
|
@@ -185,6 +189,7 @@ class ItemReview(ModelNormal):
|
|
|
185
189
|
'featured': 'featured', # noqa: E501
|
|
186
190
|
'helperful_no_votes': 'helperful_no_votes', # noqa: E501
|
|
187
191
|
'helpful_yes_votes': 'helpful_yes_votes', # noqa: E501
|
|
192
|
+
'merchant_reply': 'merchant_reply', # noqa: E501
|
|
188
193
|
'order_id': 'order_id', # noqa: E501
|
|
189
194
|
'overall': 'overall', # noqa: E501
|
|
190
195
|
'rating_name1': 'rating_name1', # noqa: E501
|
|
@@ -265,6 +270,7 @@ class ItemReview(ModelNormal):
|
|
|
265
270
|
featured (bool): [optional] # noqa: E501
|
|
266
271
|
helperful_no_votes (int): [optional] # noqa: E501
|
|
267
272
|
helpful_yes_votes (int): [optional] # noqa: E501
|
|
273
|
+
merchant_reply (str): Merchant Reply (set to an empty string to remove). [optional] # noqa: E501
|
|
268
274
|
order_id (str): [optional] # noqa: E501
|
|
269
275
|
overall (float): [optional] # noqa: E501
|
|
270
276
|
rating_name1 (str): Rating Name 1. [optional] # noqa: E501
|
|
@@ -387,6 +393,7 @@ class ItemReview(ModelNormal):
|
|
|
387
393
|
featured (bool): [optional] # noqa: E501
|
|
388
394
|
helperful_no_votes (int): [optional] # noqa: E501
|
|
389
395
|
helpful_yes_votes (int): [optional] # noqa: E501
|
|
396
|
+
merchant_reply (str): Merchant Reply (set to an empty string to remove). [optional] # noqa: E501
|
|
390
397
|
order_id (str): [optional] # noqa: E501
|
|
391
398
|
overall (float): [optional] # noqa: E501
|
|
392
399
|
rating_name1 (str): Rating Name 1. [optional] # noqa: E501
|
ultracart/model/order.py
CHANGED
|
@@ -39,6 +39,7 @@ def lazy_import():
|
|
|
39
39
|
from ultracart.model.order_channel_partner import OrderChannelPartner
|
|
40
40
|
from ultracart.model.order_checkout import OrderCheckout
|
|
41
41
|
from ultracart.model.order_coupon import OrderCoupon
|
|
42
|
+
from ultracart.model.order_current_stage_history import OrderCurrentStageHistory
|
|
42
43
|
from ultracart.model.order_digital_order import OrderDigitalOrder
|
|
43
44
|
from ultracart.model.order_edi import OrderEdi
|
|
44
45
|
from ultracart.model.order_fraud_score import OrderFraudScore
|
|
@@ -66,6 +67,7 @@ def lazy_import():
|
|
|
66
67
|
globals()['OrderChannelPartner'] = OrderChannelPartner
|
|
67
68
|
globals()['OrderCheckout'] = OrderCheckout
|
|
68
69
|
globals()['OrderCoupon'] = OrderCoupon
|
|
70
|
+
globals()['OrderCurrentStageHistory'] = OrderCurrentStageHistory
|
|
69
71
|
globals()['OrderDigitalOrder'] = OrderDigitalOrder
|
|
70
72
|
globals()['OrderEdi'] = OrderEdi
|
|
71
73
|
globals()['OrderFraudScore'] = OrderFraudScore
|
|
@@ -171,6 +173,7 @@ class Order(ModelNormal):
|
|
|
171
173
|
'creation_dts': (str,), # noqa: E501
|
|
172
174
|
'currency_code': (str,), # noqa: E501
|
|
173
175
|
'current_stage': (str,), # noqa: E501
|
|
176
|
+
'current_stage_histories': ([OrderCurrentStageHistory],), # noqa: E501
|
|
174
177
|
'customer_profile': (Customer,), # noqa: E501
|
|
175
178
|
'digital_order': (OrderDigitalOrder,), # noqa: E501
|
|
176
179
|
'edi': (OrderEdi,), # noqa: E501
|
|
@@ -217,6 +220,7 @@ class Order(ModelNormal):
|
|
|
217
220
|
'creation_dts': 'creation_dts', # noqa: E501
|
|
218
221
|
'currency_code': 'currency_code', # noqa: E501
|
|
219
222
|
'current_stage': 'current_stage', # noqa: E501
|
|
223
|
+
'current_stage_histories': 'current_stage_histories', # noqa: E501
|
|
220
224
|
'customer_profile': 'customer_profile', # noqa: E501
|
|
221
225
|
'digital_order': 'digital_order', # noqa: E501
|
|
222
226
|
'edi': 'edi', # noqa: E501
|
|
@@ -298,6 +302,7 @@ class Order(ModelNormal):
|
|
|
298
302
|
creation_dts (str): Date/time that the order was created. [optional] # noqa: E501
|
|
299
303
|
currency_code (str): Currency code that the customer used if different than the merchant's base currency code. [optional] # noqa: E501
|
|
300
304
|
current_stage (str): Current stage that the order is in.. [optional] # noqa: E501
|
|
305
|
+
current_stage_histories ([OrderCurrentStageHistory]): History of the changes to the current_stage field. [optional] # noqa: E501
|
|
301
306
|
customer_profile (Customer): [optional] # noqa: E501
|
|
302
307
|
digital_order (OrderDigitalOrder): [optional] # noqa: E501
|
|
303
308
|
edi (OrderEdi): [optional] # noqa: E501
|
|
@@ -421,6 +426,7 @@ class Order(ModelNormal):
|
|
|
421
426
|
creation_dts (str): Date/time that the order was created. [optional] # noqa: E501
|
|
422
427
|
currency_code (str): Currency code that the customer used if different than the merchant's base currency code. [optional] # noqa: E501
|
|
423
428
|
current_stage (str): Current stage that the order is in.. [optional] # noqa: E501
|
|
429
|
+
current_stage_histories ([OrderCurrentStageHistory]): History of the changes to the current_stage field. [optional] # noqa: E501
|
|
424
430
|
customer_profile (Customer): [optional] # noqa: E501
|
|
425
431
|
digital_order (OrderDigitalOrder): [optional] # noqa: E501
|
|
426
432
|
edi (OrderEdi): [optional] # noqa: E501
|
|
@@ -0,0 +1,302 @@
|
|
|
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
|
+
|
|
34
|
+
class OrderCurrentStageHistory(ModelNormal):
|
|
35
|
+
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
36
|
+
Ref: https://openapi-generator.tech
|
|
37
|
+
|
|
38
|
+
Do not edit the class manually.
|
|
39
|
+
|
|
40
|
+
Attributes:
|
|
41
|
+
allowed_values (dict): The key is the tuple path to the attribute
|
|
42
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
43
|
+
with a capitalized key describing the allowed value and an allowed
|
|
44
|
+
value. These dicts store the allowed enum values.
|
|
45
|
+
attribute_map (dict): The key is attribute name
|
|
46
|
+
and the value is json key in definition.
|
|
47
|
+
discriminator_value_class_map (dict): A dict to go from the discriminator
|
|
48
|
+
variable value to the discriminator class name.
|
|
49
|
+
validations (dict): The key is the tuple path to the attribute
|
|
50
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
51
|
+
that stores validations for max_length, min_length, max_items,
|
|
52
|
+
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
|
|
53
|
+
inclusive_minimum, and regex.
|
|
54
|
+
additional_properties_type (tuple): A tuple of classes accepted
|
|
55
|
+
as additional properties values.
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
allowed_values = {
|
|
59
|
+
('after_stage',): {
|
|
60
|
+
'ACCOUNTS_RECEIVABLE': "Accounts Receivable",
|
|
61
|
+
'PENDING_CLEARANCE': "Pending Clearance",
|
|
62
|
+
'FRAUD_REVIEW': "Fraud Review",
|
|
63
|
+
'REJECTED': "Rejected",
|
|
64
|
+
'SHIPPING_DEPARTMENT': "Shipping Department",
|
|
65
|
+
'COMPLETED_ORDER': "Completed Order",
|
|
66
|
+
'QUOTE_REQUEST': "Quote Request",
|
|
67
|
+
'QUOTE_SENT': "Quote Sent",
|
|
68
|
+
'LEAST_COST_ROUTING': "Least Cost Routing",
|
|
69
|
+
'UNKNOWN': "Unknown",
|
|
70
|
+
'PRE-ORDERED': "Pre-ordered",
|
|
71
|
+
'ADVANCED_ORDER_ROUTING': "Advanced Order Routing",
|
|
72
|
+
'HOLD': "Hold",
|
|
73
|
+
},
|
|
74
|
+
('before_stage',): {
|
|
75
|
+
'ACCOUNTS_RECEIVABLE': "Accounts Receivable",
|
|
76
|
+
'PENDING_CLEARANCE': "Pending Clearance",
|
|
77
|
+
'FRAUD_REVIEW': "Fraud Review",
|
|
78
|
+
'REJECTED': "Rejected",
|
|
79
|
+
'SHIPPING_DEPARTMENT': "Shipping Department",
|
|
80
|
+
'COMPLETED_ORDER': "Completed Order",
|
|
81
|
+
'QUOTE_REQUEST': "Quote Request",
|
|
82
|
+
'QUOTE_SENT': "Quote Sent",
|
|
83
|
+
'LEAST_COST_ROUTING': "Least Cost Routing",
|
|
84
|
+
'UNKNOWN': "Unknown",
|
|
85
|
+
'PRE-ORDERED': "Pre-ordered",
|
|
86
|
+
'ADVANCED_ORDER_ROUTING': "Advanced Order Routing",
|
|
87
|
+
'HOLD': "Hold",
|
|
88
|
+
},
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
validations = {
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@cached_property
|
|
95
|
+
def additional_properties_type():
|
|
96
|
+
"""
|
|
97
|
+
This must be a method because a model may have properties that are
|
|
98
|
+
of type self, this must run after the class is loaded
|
|
99
|
+
"""
|
|
100
|
+
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
|
|
101
|
+
|
|
102
|
+
_nullable = False
|
|
103
|
+
|
|
104
|
+
@cached_property
|
|
105
|
+
def openapi_types():
|
|
106
|
+
"""
|
|
107
|
+
This must be a method because a model may have properties that are
|
|
108
|
+
of type self, this must run after the class is loaded
|
|
109
|
+
|
|
110
|
+
Returns
|
|
111
|
+
openapi_types (dict): The key is attribute name
|
|
112
|
+
and the value is attribute type.
|
|
113
|
+
"""
|
|
114
|
+
return {
|
|
115
|
+
'after_stage': (str,), # noqa: E501
|
|
116
|
+
'before_stage': (str,), # noqa: E501
|
|
117
|
+
'transition_dts': (str,), # noqa: E501
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
@cached_property
|
|
121
|
+
def discriminator():
|
|
122
|
+
return None
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
attribute_map = {
|
|
126
|
+
'after_stage': 'after_stage', # noqa: E501
|
|
127
|
+
'before_stage': 'before_stage', # noqa: E501
|
|
128
|
+
'transition_dts': 'transition_dts', # noqa: E501
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
read_only_vars = {
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
_composed_schemas = {}
|
|
135
|
+
|
|
136
|
+
@classmethod
|
|
137
|
+
@convert_js_args_to_python_args
|
|
138
|
+
def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
|
|
139
|
+
"""OrderCurrentStageHistory - a model defined in OpenAPI
|
|
140
|
+
|
|
141
|
+
Keyword Args:
|
|
142
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
143
|
+
will be type checked and a TypeError will be
|
|
144
|
+
raised if the wrong type is input.
|
|
145
|
+
Defaults to True
|
|
146
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
147
|
+
drill down to the model in received_data
|
|
148
|
+
when deserializing a response
|
|
149
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
150
|
+
are serialized names, as specified in the OpenAPI document.
|
|
151
|
+
False if the variable names in the input data
|
|
152
|
+
are pythonic names, e.g. snake case (default)
|
|
153
|
+
_configuration (Configuration): the instance to use when
|
|
154
|
+
deserializing a file_type parameter.
|
|
155
|
+
If passed, type conversion is attempted
|
|
156
|
+
If omitted no type conversion is done.
|
|
157
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
158
|
+
classes that we have traveled through so that
|
|
159
|
+
if we see that class again we will not use its
|
|
160
|
+
discriminator again.
|
|
161
|
+
When traveling through a discriminator, the
|
|
162
|
+
composed schema that is
|
|
163
|
+
is traveled through is added to this set.
|
|
164
|
+
For example if Animal has a discriminator
|
|
165
|
+
petType and we pass in "Dog", and the class Dog
|
|
166
|
+
allOf includes Animal, we move through Animal
|
|
167
|
+
once using the discriminator, and pick Dog.
|
|
168
|
+
Then in Dog, we will make an instance of the
|
|
169
|
+
Animal class but this time we won't travel
|
|
170
|
+
through its discriminator because we passed in
|
|
171
|
+
_visited_composed_classes = (Animal,)
|
|
172
|
+
after_stage (str): New stage that the order is in.. [optional] # noqa: E501
|
|
173
|
+
before_stage (str): Previous stage that the order was in.. [optional] # noqa: E501
|
|
174
|
+
transition_dts (str): Date/time that the stage transitioned. [optional] # noqa: E501
|
|
175
|
+
"""
|
|
176
|
+
|
|
177
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
178
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', True)
|
|
179
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
180
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
181
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
182
|
+
|
|
183
|
+
self = super(OpenApiModel, cls).__new__(cls)
|
|
184
|
+
|
|
185
|
+
if args:
|
|
186
|
+
for arg in args:
|
|
187
|
+
if isinstance(arg, dict):
|
|
188
|
+
kwargs.update(arg)
|
|
189
|
+
else:
|
|
190
|
+
raise ApiTypeError(
|
|
191
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
192
|
+
args,
|
|
193
|
+
self.__class__.__name__,
|
|
194
|
+
),
|
|
195
|
+
path_to_item=_path_to_item,
|
|
196
|
+
valid_classes=(self.__class__,),
|
|
197
|
+
)
|
|
198
|
+
|
|
199
|
+
self._data_store = {}
|
|
200
|
+
self._check_type = _check_type
|
|
201
|
+
self._spec_property_naming = _spec_property_naming
|
|
202
|
+
self._path_to_item = _path_to_item
|
|
203
|
+
self._configuration = _configuration
|
|
204
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
205
|
+
|
|
206
|
+
for var_name, var_value in kwargs.items():
|
|
207
|
+
if var_name not in self.attribute_map and \
|
|
208
|
+
self._configuration is not None and \
|
|
209
|
+
self._configuration.discard_unknown_keys and \
|
|
210
|
+
self.additional_properties_type is None:
|
|
211
|
+
# discard variable.
|
|
212
|
+
continue
|
|
213
|
+
setattr(self, var_name, var_value)
|
|
214
|
+
return self
|
|
215
|
+
|
|
216
|
+
required_properties = set([
|
|
217
|
+
'_data_store',
|
|
218
|
+
'_check_type',
|
|
219
|
+
'_spec_property_naming',
|
|
220
|
+
'_path_to_item',
|
|
221
|
+
'_configuration',
|
|
222
|
+
'_visited_composed_classes',
|
|
223
|
+
])
|
|
224
|
+
|
|
225
|
+
@convert_js_args_to_python_args
|
|
226
|
+
def __init__(self, *args, **kwargs): # noqa: E501
|
|
227
|
+
"""OrderCurrentStageHistory - a model defined in OpenAPI
|
|
228
|
+
|
|
229
|
+
Keyword Args:
|
|
230
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
231
|
+
will be type checked and a TypeError will be
|
|
232
|
+
raised if the wrong type is input.
|
|
233
|
+
Defaults to True
|
|
234
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
235
|
+
drill down to the model in received_data
|
|
236
|
+
when deserializing a response
|
|
237
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
238
|
+
are serialized names, as specified in the OpenAPI document.
|
|
239
|
+
False if the variable names in the input data
|
|
240
|
+
are pythonic names, e.g. snake case (default)
|
|
241
|
+
_configuration (Configuration): the instance to use when
|
|
242
|
+
deserializing a file_type parameter.
|
|
243
|
+
If passed, type conversion is attempted
|
|
244
|
+
If omitted no type conversion is done.
|
|
245
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
246
|
+
classes that we have traveled through so that
|
|
247
|
+
if we see that class again we will not use its
|
|
248
|
+
discriminator again.
|
|
249
|
+
When traveling through a discriminator, the
|
|
250
|
+
composed schema that is
|
|
251
|
+
is traveled through is added to this set.
|
|
252
|
+
For example if Animal has a discriminator
|
|
253
|
+
petType and we pass in "Dog", and the class Dog
|
|
254
|
+
allOf includes Animal, we move through Animal
|
|
255
|
+
once using the discriminator, and pick Dog.
|
|
256
|
+
Then in Dog, we will make an instance of the
|
|
257
|
+
Animal class but this time we won't travel
|
|
258
|
+
through its discriminator because we passed in
|
|
259
|
+
_visited_composed_classes = (Animal,)
|
|
260
|
+
after_stage (str): New stage that the order is in.. [optional] # noqa: E501
|
|
261
|
+
before_stage (str): Previous stage that the order was in.. [optional] # noqa: E501
|
|
262
|
+
transition_dts (str): Date/time that the stage transitioned. [optional] # noqa: E501
|
|
263
|
+
"""
|
|
264
|
+
|
|
265
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
266
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
|
267
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
268
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
269
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
270
|
+
|
|
271
|
+
if args:
|
|
272
|
+
for arg in args:
|
|
273
|
+
if isinstance(arg, dict):
|
|
274
|
+
kwargs.update(arg)
|
|
275
|
+
else:
|
|
276
|
+
raise ApiTypeError(
|
|
277
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
278
|
+
args,
|
|
279
|
+
self.__class__.__name__,
|
|
280
|
+
),
|
|
281
|
+
path_to_item=_path_to_item,
|
|
282
|
+
valid_classes=(self.__class__,),
|
|
283
|
+
)
|
|
284
|
+
|
|
285
|
+
self._data_store = {}
|
|
286
|
+
self._check_type = _check_type
|
|
287
|
+
self._spec_property_naming = _spec_property_naming
|
|
288
|
+
self._path_to_item = _path_to_item
|
|
289
|
+
self._configuration = _configuration
|
|
290
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
291
|
+
|
|
292
|
+
for var_name, var_value in kwargs.items():
|
|
293
|
+
if var_name not in self.attribute_map and \
|
|
294
|
+
self._configuration is not None and \
|
|
295
|
+
self._configuration.discard_unknown_keys and \
|
|
296
|
+
self.additional_properties_type is None:
|
|
297
|
+
# discard variable.
|
|
298
|
+
continue
|
|
299
|
+
setattr(self, var_name, var_value)
|
|
300
|
+
if var_name in self.read_only_vars:
|
|
301
|
+
raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
|
|
302
|
+
f"class with read only attributes.")
|
ultracart/model/order_item.py
CHANGED
|
@@ -141,6 +141,7 @@ class OrderItem(ModelNormal):
|
|
|
141
141
|
return {
|
|
142
142
|
'accounting_code': (str,), # noqa: E501
|
|
143
143
|
'activation_codes': ([str],), # noqa: E501
|
|
144
|
+
'actual_cogs': (Currency,), # noqa: E501
|
|
144
145
|
'arbitrary_unit_cost': (Currency,), # noqa: E501
|
|
145
146
|
'auto_order_last_rebill_dts': (str,), # noqa: E501
|
|
146
147
|
'auto_order_schedule': (str,), # noqa: E501
|
|
@@ -214,6 +215,7 @@ class OrderItem(ModelNormal):
|
|
|
214
215
|
attribute_map = {
|
|
215
216
|
'accounting_code': 'accounting_code', # noqa: E501
|
|
216
217
|
'activation_codes': 'activation_codes', # noqa: E501
|
|
218
|
+
'actual_cogs': 'actual_cogs', # noqa: E501
|
|
217
219
|
'arbitrary_unit_cost': 'arbitrary_unit_cost', # noqa: E501
|
|
218
220
|
'auto_order_last_rebill_dts': 'auto_order_last_rebill_dts', # noqa: E501
|
|
219
221
|
'auto_order_schedule': 'auto_order_schedule', # noqa: E501
|
|
@@ -322,6 +324,7 @@ class OrderItem(ModelNormal):
|
|
|
322
324
|
_visited_composed_classes = (Animal,)
|
|
323
325
|
accounting_code (str): QuickBooks code. [optional] # noqa: E501
|
|
324
326
|
activation_codes ([str]): Activation codes assigned to this item. [optional] # noqa: E501
|
|
327
|
+
actual_cogs (Currency): [optional] # noqa: E501
|
|
325
328
|
arbitrary_unit_cost (Currency): [optional] # noqa: E501
|
|
326
329
|
auto_order_last_rebill_dts (str): Date/time of the last rebill, used only during order insert to help project future rebills. [optional] # noqa: E501
|
|
327
330
|
auto_order_schedule (str): Auto order schedule, used only during inserts supplying the recurring schedule. [optional] # noqa: E501
|
|
@@ -472,6 +475,7 @@ class OrderItem(ModelNormal):
|
|
|
472
475
|
_visited_composed_classes = (Animal,)
|
|
473
476
|
accounting_code (str): QuickBooks code. [optional] # noqa: E501
|
|
474
477
|
activation_codes ([str]): Activation codes assigned to this item. [optional] # noqa: E501
|
|
478
|
+
actual_cogs (Currency): [optional] # noqa: E501
|
|
475
479
|
arbitrary_unit_cost (Currency): [optional] # noqa: E501
|
|
476
480
|
auto_order_last_rebill_dts (str): Date/time of the last rebill, used only during order insert to help project future rebills. [optional] # noqa: E501
|
|
477
481
|
auto_order_schedule (str): Auto order schedule, used only during inserts supplying the recurring schedule. [optional] # noqa: E501
|
ultracart/model/order_summary.py
CHANGED
|
@@ -89,7 +89,11 @@ class OrderSummary(ModelNormal):
|
|
|
89
89
|
lazy_import()
|
|
90
90
|
return {
|
|
91
91
|
'actual_fulfillment': (Currency,), # noqa: E501
|
|
92
|
+
'actual_other_cost': (Currency,), # noqa: E501
|
|
92
93
|
'actual_payment_processing': (Currency,), # noqa: E501
|
|
94
|
+
'actual_profit': (Currency,), # noqa: E501
|
|
95
|
+
'actual_profit_analyzed': (bool,), # noqa: E501
|
|
96
|
+
'actual_profit_review': (bool,), # noqa: E501
|
|
93
97
|
'actual_shipping': (Currency,), # noqa: E501
|
|
94
98
|
'arbitrary_shipping_handling_total': (Currency,), # noqa: E501
|
|
95
99
|
'health_benefit_card_amount': (Currency,), # noqa: E501
|
|
@@ -119,7 +123,11 @@ class OrderSummary(ModelNormal):
|
|
|
119
123
|
|
|
120
124
|
attribute_map = {
|
|
121
125
|
'actual_fulfillment': 'actual_fulfillment', # noqa: E501
|
|
126
|
+
'actual_other_cost': 'actual_other_cost', # noqa: E501
|
|
122
127
|
'actual_payment_processing': 'actual_payment_processing', # noqa: E501
|
|
128
|
+
'actual_profit': 'actual_profit', # noqa: E501
|
|
129
|
+
'actual_profit_analyzed': 'actual_profit_analyzed', # noqa: E501
|
|
130
|
+
'actual_profit_review': 'actual_profit_review', # noqa: E501
|
|
123
131
|
'actual_shipping': 'actual_shipping', # noqa: E501
|
|
124
132
|
'arbitrary_shipping_handling_total': 'arbitrary_shipping_handling_total', # noqa: E501
|
|
125
133
|
'health_benefit_card_amount': 'health_benefit_card_amount', # noqa: E501
|
|
@@ -184,7 +192,11 @@ class OrderSummary(ModelNormal):
|
|
|
184
192
|
through its discriminator because we passed in
|
|
185
193
|
_visited_composed_classes = (Animal,)
|
|
186
194
|
actual_fulfillment (Currency): [optional] # noqa: E501
|
|
195
|
+
actual_other_cost (Currency): [optional] # noqa: E501
|
|
187
196
|
actual_payment_processing (Currency): [optional] # noqa: E501
|
|
197
|
+
actual_profit (Currency): [optional] # noqa: E501
|
|
198
|
+
actual_profit_analyzed (bool): Actual profit has been analyzed. [optional] # noqa: E501
|
|
199
|
+
actual_profit_review (bool): Actual profit needs review. [optional] # noqa: E501
|
|
188
200
|
actual_shipping (Currency): [optional] # noqa: E501
|
|
189
201
|
arbitrary_shipping_handling_total (Currency): [optional] # noqa: E501
|
|
190
202
|
health_benefit_card_amount (Currency): [optional] # noqa: E501
|
|
@@ -291,7 +303,11 @@ class OrderSummary(ModelNormal):
|
|
|
291
303
|
through its discriminator because we passed in
|
|
292
304
|
_visited_composed_classes = (Animal,)
|
|
293
305
|
actual_fulfillment (Currency): [optional] # noqa: E501
|
|
306
|
+
actual_other_cost (Currency): [optional] # noqa: E501
|
|
294
307
|
actual_payment_processing (Currency): [optional] # noqa: E501
|
|
308
|
+
actual_profit (Currency): [optional] # noqa: E501
|
|
309
|
+
actual_profit_analyzed (bool): Actual profit has been analyzed. [optional] # noqa: E501
|
|
310
|
+
actual_profit_review (bool): Actual profit needs review. [optional] # noqa: E501
|
|
295
311
|
actual_shipping (Currency): [optional] # noqa: E501
|
|
296
312
|
arbitrary_shipping_handling_total (Currency): [optional] # noqa: E501
|
|
297
313
|
health_benefit_card_amount (Currency): [optional] # noqa: E501
|
|
@@ -30,12 +30,8 @@ from ultracart.model_utils import ( # noqa: F401
|
|
|
30
30
|
from ultracart.exceptions import ApiAttributeError
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
def lazy_import():
|
|
34
|
-
from ultracart.model.http_header import HTTPHeader
|
|
35
|
-
globals()['HTTPHeader'] = HTTPHeader
|
|
36
33
|
|
|
37
|
-
|
|
38
|
-
class WebhookSampleRequest(ModelNormal):
|
|
34
|
+
class WebhookReflow(ModelNormal):
|
|
39
35
|
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
40
36
|
Ref: https://openapi-generator.tech
|
|
41
37
|
|
|
@@ -71,7 +67,6 @@ class WebhookSampleRequest(ModelNormal):
|
|
|
71
67
|
This must be a method because a model may have properties that are
|
|
72
68
|
of type self, this must run after the class is loaded
|
|
73
69
|
"""
|
|
74
|
-
lazy_import()
|
|
75
70
|
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
|
|
76
71
|
|
|
77
72
|
_nullable = False
|
|
@@ -86,12 +81,9 @@ class WebhookSampleRequest(ModelNormal):
|
|
|
86
81
|
openapi_types (dict): The key is attribute name
|
|
87
82
|
and the value is attribute type.
|
|
88
83
|
"""
|
|
89
|
-
lazy_import()
|
|
90
84
|
return {
|
|
91
|
-
'
|
|
92
|
-
'
|
|
93
|
-
'request_id': (str,), # noqa: E501
|
|
94
|
-
'uri': (str,), # noqa: E501
|
|
85
|
+
'event_name': (str,), # noqa: E501
|
|
86
|
+
'queued': (bool,), # noqa: E501
|
|
95
87
|
}
|
|
96
88
|
|
|
97
89
|
@cached_property
|
|
@@ -100,10 +92,8 @@ class WebhookSampleRequest(ModelNormal):
|
|
|
100
92
|
|
|
101
93
|
|
|
102
94
|
attribute_map = {
|
|
103
|
-
'
|
|
104
|
-
'
|
|
105
|
-
'request_id': 'request_id', # noqa: E501
|
|
106
|
-
'uri': 'uri', # noqa: E501
|
|
95
|
+
'event_name': 'event_name', # noqa: E501
|
|
96
|
+
'queued': 'queued', # noqa: E501
|
|
107
97
|
}
|
|
108
98
|
|
|
109
99
|
read_only_vars = {
|
|
@@ -114,7 +104,7 @@ class WebhookSampleRequest(ModelNormal):
|
|
|
114
104
|
@classmethod
|
|
115
105
|
@convert_js_args_to_python_args
|
|
116
106
|
def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
|
|
117
|
-
"""
|
|
107
|
+
"""WebhookReflow - a model defined in OpenAPI
|
|
118
108
|
|
|
119
109
|
Keyword Args:
|
|
120
110
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -147,10 +137,8 @@ class WebhookSampleRequest(ModelNormal):
|
|
|
147
137
|
Animal class but this time we won't travel
|
|
148
138
|
through its discriminator because we passed in
|
|
149
139
|
_visited_composed_classes = (Animal,)
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
request_id (str): Request id. [optional] # noqa: E501
|
|
153
|
-
uri (str): URI to send request to. [optional] # noqa: E501
|
|
140
|
+
event_name (str): [optional] # noqa: E501
|
|
141
|
+
queued (bool): [optional] # noqa: E501
|
|
154
142
|
"""
|
|
155
143
|
|
|
156
144
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -203,7 +191,7 @@ class WebhookSampleRequest(ModelNormal):
|
|
|
203
191
|
|
|
204
192
|
@convert_js_args_to_python_args
|
|
205
193
|
def __init__(self, *args, **kwargs): # noqa: E501
|
|
206
|
-
"""
|
|
194
|
+
"""WebhookReflow - a model defined in OpenAPI
|
|
207
195
|
|
|
208
196
|
Keyword Args:
|
|
209
197
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -236,10 +224,8 @@ class WebhookSampleRequest(ModelNormal):
|
|
|
236
224
|
Animal class but this time we won't travel
|
|
237
225
|
through its discriminator because we passed in
|
|
238
226
|
_visited_composed_classes = (Animal,)
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
request_id (str): Request id. [optional] # noqa: E501
|
|
242
|
-
uri (str): URI to send request to. [optional] # noqa: E501
|
|
227
|
+
event_name (str): [optional] # noqa: E501
|
|
228
|
+
queued (bool): [optional] # noqa: E501
|
|
243
229
|
"""
|
|
244
230
|
|
|
245
231
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -34,14 +34,14 @@ def lazy_import():
|
|
|
34
34
|
from ultracart.model.error import Error
|
|
35
35
|
from ultracart.model.response_metadata import ResponseMetadata
|
|
36
36
|
from ultracart.model.warning import Warning
|
|
37
|
-
from ultracart.model.
|
|
37
|
+
from ultracart.model.webhook_reflow import WebhookReflow
|
|
38
38
|
globals()['Error'] = Error
|
|
39
39
|
globals()['ResponseMetadata'] = ResponseMetadata
|
|
40
40
|
globals()['Warning'] = Warning
|
|
41
|
-
globals()['
|
|
41
|
+
globals()['WebhookReflow'] = WebhookReflow
|
|
42
42
|
|
|
43
43
|
|
|
44
|
-
class
|
|
44
|
+
class WebhookReflowResponse(ModelNormal):
|
|
45
45
|
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
46
46
|
Ref: https://openapi-generator.tech
|
|
47
47
|
|
|
@@ -96,9 +96,9 @@ class WebhookSampleRequestResponse(ModelNormal):
|
|
|
96
96
|
return {
|
|
97
97
|
'error': (Error,), # noqa: E501
|
|
98
98
|
'metadata': (ResponseMetadata,), # noqa: E501
|
|
99
|
+
'reflow': (WebhookReflow,), # noqa: E501
|
|
99
100
|
'success': (bool,), # noqa: E501
|
|
100
101
|
'warning': (Warning,), # noqa: E501
|
|
101
|
-
'webhook_sample_request': (WebhookSampleRequest,), # noqa: E501
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
@cached_property
|
|
@@ -109,9 +109,9 @@ class WebhookSampleRequestResponse(ModelNormal):
|
|
|
109
109
|
attribute_map = {
|
|
110
110
|
'error': 'error', # noqa: E501
|
|
111
111
|
'metadata': 'metadata', # noqa: E501
|
|
112
|
+
'reflow': 'reflow', # noqa: E501
|
|
112
113
|
'success': 'success', # noqa: E501
|
|
113
114
|
'warning': 'warning', # noqa: E501
|
|
114
|
-
'webhook_sample_request': 'webhook_sample_request', # noqa: E501
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
read_only_vars = {
|
|
@@ -122,7 +122,7 @@ class WebhookSampleRequestResponse(ModelNormal):
|
|
|
122
122
|
@classmethod
|
|
123
123
|
@convert_js_args_to_python_args
|
|
124
124
|
def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
|
|
125
|
-
"""
|
|
125
|
+
"""WebhookReflowResponse - a model defined in OpenAPI
|
|
126
126
|
|
|
127
127
|
Keyword Args:
|
|
128
128
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -157,9 +157,9 @@ class WebhookSampleRequestResponse(ModelNormal):
|
|
|
157
157
|
_visited_composed_classes = (Animal,)
|
|
158
158
|
error (Error): [optional] # noqa: E501
|
|
159
159
|
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
160
|
+
reflow (WebhookReflow): [optional] # noqa: E501
|
|
160
161
|
success (bool): Indicates if API call was successful. [optional] # noqa: E501
|
|
161
162
|
warning (Warning): [optional] # noqa: E501
|
|
162
|
-
webhook_sample_request (WebhookSampleRequest): [optional] # noqa: E501
|
|
163
163
|
"""
|
|
164
164
|
|
|
165
165
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -212,7 +212,7 @@ class WebhookSampleRequestResponse(ModelNormal):
|
|
|
212
212
|
|
|
213
213
|
@convert_js_args_to_python_args
|
|
214
214
|
def __init__(self, *args, **kwargs): # noqa: E501
|
|
215
|
-
"""
|
|
215
|
+
"""WebhookReflowResponse - a model defined in OpenAPI
|
|
216
216
|
|
|
217
217
|
Keyword Args:
|
|
218
218
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -247,9 +247,9 @@ class WebhookSampleRequestResponse(ModelNormal):
|
|
|
247
247
|
_visited_composed_classes = (Animal,)
|
|
248
248
|
error (Error): [optional] # noqa: E501
|
|
249
249
|
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
250
|
+
reflow (WebhookReflow): [optional] # noqa: E501
|
|
250
251
|
success (bool): Indicates if API call was successful. [optional] # noqa: E501
|
|
251
252
|
warning (Warning): [optional] # noqa: E501
|
|
252
|
-
webhook_sample_request (WebhookSampleRequest): [optional] # noqa: E501
|
|
253
253
|
"""
|
|
254
254
|
|
|
255
255
|
_check_type = kwargs.pop('_check_type', True)
|
ultracart/models/__init__.py
CHANGED
|
@@ -627,6 +627,7 @@ from ultracart.model.order_by_token_query import OrderByTokenQuery
|
|
|
627
627
|
from ultracart.model.order_channel_partner import OrderChannelPartner
|
|
628
628
|
from ultracart.model.order_checkout import OrderCheckout
|
|
629
629
|
from ultracart.model.order_coupon import OrderCoupon
|
|
630
|
+
from ultracart.model.order_current_stage_history import OrderCurrentStageHistory
|
|
630
631
|
from ultracart.model.order_digital_item import OrderDigitalItem
|
|
631
632
|
from ultracart.model.order_digital_order import OrderDigitalOrder
|
|
632
633
|
from ultracart.model.order_edi import OrderEdi
|
|
@@ -840,9 +841,9 @@ from ultracart.model.webhook_log import WebhookLog
|
|
|
840
841
|
from ultracart.model.webhook_log_response import WebhookLogResponse
|
|
841
842
|
from ultracart.model.webhook_log_summaries_response import WebhookLogSummariesResponse
|
|
842
843
|
from ultracart.model.webhook_log_summary import WebhookLogSummary
|
|
844
|
+
from ultracart.model.webhook_reflow import WebhookReflow
|
|
845
|
+
from ultracart.model.webhook_reflow_response import WebhookReflowResponse
|
|
843
846
|
from ultracart.model.webhook_response import WebhookResponse
|
|
844
|
-
from ultracart.model.webhook_sample_request import WebhookSampleRequest
|
|
845
|
-
from ultracart.model.webhook_sample_request_response import WebhookSampleRequestResponse
|
|
846
847
|
from ultracart.model.webhooks_response import WebhooksResponse
|
|
847
848
|
from ultracart.model.weight import Weight
|
|
848
849
|
from ultracart.model.workflow_agent_auth import WorkflowAgentAuth
|
|
@@ -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=JbUJiDXJuq0OxQBI4cQN26h6NUQUte2yTODfstvPV0A,699
|
|
2
|
+
ultracart/api_client.py,sha256=ki3Z1adeY1G0_v_7imXuMjVBr1hPLIS6ZVUFZJMJSrw,39072
|
|
3
|
+
ultracart/configuration.py,sha256=GJ5AXXjnPAxlEluLRF3GOy-f-YcMsdkddvvDXLR4qoQ,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
|
|
@@ -14,17 +14,17 @@ ultracart/api/conversation_api.py,sha256=fwFvhCeMBGguLqXHZQF1UsKxIzgsCfrKPGDDOKl
|
|
|
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
|
|
17
|
-
ultracart/api/fulfillment_api.py,sha256=
|
|
17
|
+
ultracart/api/fulfillment_api.py,sha256=JD4uwms4Mz5XWmLBnOo-nDT6GHKW-uI2xt_YjwieJLU,35275
|
|
18
18
|
ultracart/api/gift_certificate_api.py,sha256=2TkzQhqCMcPf8Ro14eRycy0LtPxfC7n67GSMRrMcNuc,46858
|
|
19
19
|
ultracart/api/integration_log_api.py,sha256=t8spQtDERkGKISq7JtDNkA1MsQXp8qV8lSuXIhy0lEc,30164
|
|
20
20
|
ultracart/api/item_api.py,sha256=sMc9DIza1CedC845dfljhYz_Bdyh6A9pumu5b5nVxZU,134751
|
|
21
|
-
ultracart/api/oauth_api.py,sha256=
|
|
21
|
+
ultracart/api/oauth_api.py,sha256=ZgwVvUNQybiol1gdS8OjQY60ElUsEPmtFgSSb5Ys5SI,13633
|
|
22
22
|
ultracart/api/order_api.py,sha256=TYIegMclGmOjWZ4-TeJghPWZDa0pyUYJ8eu1oUkcAJI,161411
|
|
23
23
|
ultracart/api/sso_api.py,sha256=Ct9oau71nCUKecojo_1kkXRcIqPxhlVZiST2bdjLJJ8,21632
|
|
24
24
|
ultracart/api/storefront_api.py,sha256=tItFugj94AYHHfGJLbhMlMkErGP1ItZoiOeqtdRafGw,1017735
|
|
25
25
|
ultracart/api/tax_api.py,sha256=aQZaRsIXlFNDPwXYAykApv3KaAGfV-ZHB6QPBbEK-P0,148671
|
|
26
26
|
ultracart/api/user_api.py,sha256=LrzuXSpBa5V_rS8iRDRRhFYnUZN9fR2Y54FRnJ_fpiI,56627
|
|
27
|
-
ultracart/api/webhook_api.py,sha256=
|
|
27
|
+
ultracart/api/webhook_api.py,sha256=YCauQnRNn13DZ9StEaSItzhOztXjzOUC-ipcnK8Ag58,46732
|
|
28
28
|
ultracart/api/workflow_api.py,sha256=R9FwRKXTwilS9hKnDYGtjTeTj4jnZln3QHQxh1JH-JU,64957
|
|
29
29
|
ultracart/apis/__init__.py,sha256=34qpEkWA4o5K2-EOU97Cv8OiaFpey9RrjxQ4tr-hIX4,1521
|
|
30
30
|
ultracart/model/__init__.py,sha256=suxHGMXD01EjVybiiQCxwC2UxGr-ARfz-MQPkowHO6w,343
|
|
@@ -136,7 +136,7 @@ ultracart/model/channel_partner_cancel_response.py,sha256=jUOeYsm5CqtHInXWujdpHJ
|
|
|
136
136
|
ultracart/model/channel_partner_estimate_shipping_response.py,sha256=Y1mG1FK9UEoTaYBvGwt2Eiod4r0oabWfUbUnY_Hfuwc,13090
|
|
137
137
|
ultracart/model/channel_partner_estimate_tax_response.py,sha256=deJ8MMWfw9UjYXqyBFRiC6WYQKF4JnqAkzLK5MfEd6U,12744
|
|
138
138
|
ultracart/model/channel_partner_import_response.py,sha256=Oyt0Q-5zzTKQkOl8e2YtdruLR-TWJWPymKW0vYwEoI4,13430
|
|
139
|
-
ultracart/model/channel_partner_order.py,sha256=
|
|
139
|
+
ultracart/model/channel_partner_order.py,sha256=q1nbLKqkt0deWD-CBJATrsDWxNA7-s1VVUsZEPH2WCk,45650
|
|
140
140
|
ultracart/model/channel_partner_order_item.py,sha256=-eCTLRsgWqO4-uLB6pTZrxWCFTd3b_roQQSuhbrBqkw,14644
|
|
141
141
|
ultracart/model/channel_partner_order_item_option.py,sha256=PXlQNBEXO00Ef4I7TE_yFAYfogbH-3sef5YleCruBnk,11741
|
|
142
142
|
ultracart/model/channel_partner_order_transaction.py,sha256=iJc9N5cr57Od203rNJYf3u9ZTqmR5ZQb-uutw4S3pQE,12195
|
|
@@ -328,7 +328,7 @@ ultracart/model/currency.py,sha256=5j7b7UBSSQTG53CI7daieMmL0trGPNPoIxM_4fckR_4,1
|
|
|
328
328
|
ultracart/model/customer.py,sha256=4IFDo1fb_WO2b2mXTwFZZ7pXOLPcfsyAgQ6jul3Sr7U,33232
|
|
329
329
|
ultracart/model/customer_activity.py,sha256=kf557fU6WEsJWIXpMM569JG8D4g3aJIcgsQJejkmyKw,13685
|
|
330
330
|
ultracart/model/customer_affiliate.py,sha256=yJtbxEcyJzfeU9PZ5jxlk-rfFuixTHMLDqFKBqjpP2Y,12157
|
|
331
|
-
ultracart/model/customer_attachment.py,sha256=
|
|
331
|
+
ultracart/model/customer_attachment.py,sha256=2ubvzq-xfq2yQ6RFWCvYET6a6qL8dAq7FoMXoImJYrA,12517
|
|
332
332
|
ultracart/model/customer_billing.py,sha256=_I0iJJeNCN-kXKxAJ1evm0P31VQt7c7sabgucfSO4V8,16404
|
|
333
333
|
ultracart/model/customer_card.py,sha256=aaIknA2Zd-u2PDtIDA7I6fCXZzD3Mv7o3ciCh6XVc04,13673
|
|
334
334
|
ultracart/model/customer_edi.py,sha256=aqZFCM-Huk4hpXifFOEXRZIHfzTX-xDa0Pv2YvWh3eA,12359
|
|
@@ -574,7 +574,7 @@ ultracart/model/item_option.py,sha256=hUC09m7-n1XMhUBKiiGWyUDrpB3lNmgu0FCOoNSD-u
|
|
|
574
574
|
ultracart/model/item_option_value.py,sha256=hZPHNPo04oxye1j3nIAW1QwNI7neWkktkfRq14pyL0Y,16577
|
|
575
575
|
ultracart/model/item_option_value_additional_item.py,sha256=jER6TmJ7UF2fOG_L13et-ieY-4sYfElxS8eLZyOkS0Q,11959
|
|
576
576
|
ultracart/model/item_option_value_digital_item.py,sha256=yNK8KfBaIEFJXVJevtvu3bZejaJ28_YynEugB9xF8s8,11832
|
|
577
|
-
ultracart/model/item_payment_processing.py,sha256=
|
|
577
|
+
ultracart/model/item_payment_processing.py,sha256=HIXs-4aJablUtiushYiDgApU0Oer8tJz0Pid3BUYzng,13386
|
|
578
578
|
ultracart/model/item_physical.py,sha256=iBAm6zRdUri7rzD4m31Mmzh0VwB5EJPvbrEvFnItwAU,12238
|
|
579
579
|
ultracart/model/item_pricing.py,sha256=VLwFh8NPIqBSyj4hRp--4kmztoDET7dzsNRw7ym9ZlI,16963
|
|
580
580
|
ultracart/model/item_pricing_tier.py,sha256=QoOtNu-UFHRfFwLuzDR93Op1iS3jRz82q6t-aGlnykc,12900
|
|
@@ -589,7 +589,7 @@ ultracart/model/item_response.py,sha256=qWGe4Zznnhc23QYv9Aq4yuBQ4YzA2AeN2YwiIYqe
|
|
|
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
|
|
591
591
|
ultracart/model/item_revguard.py,sha256=2XrswNmZEuDAlm1qiw4sQyaUlpW7uEQgL1lqijpEOQc,13583
|
|
592
|
-
ultracart/model/item_review.py,sha256=
|
|
592
|
+
ultracart/model/item_review.py,sha256=0zk6HZ2mAylWuual4OA-6No3h-gxt3ZILzHPoTGLuUI,21868
|
|
593
593
|
ultracart/model/item_review_response.py,sha256=9vficG5KJijtb0K7cjipsSYfqMevxGAeyBCg2ShS-Wc,12775
|
|
594
594
|
ultracart/model/item_reviews.py,sha256=5Jy7c06pNx10kNCn-GhVs-RqFZ38NUes2d3iKqya610,14717
|
|
595
595
|
ultracart/model/item_reviews_response.py,sha256=8VHoKWhneLoHiNnHai2oI229a4djg4ZPMaLeD2-Z7go,12807
|
|
@@ -636,7 +636,7 @@ ultracart/model/model_property.py,sha256=EOcmwJLSZua2pwbyL_nX0eYkYzLyzZc7dJG9sDP
|
|
|
636
636
|
ultracart/model/notification.py,sha256=4qN0C80GbWgWeBtYjRDtfnzpr8R3nnNqRKbXdTCzJUY,16098
|
|
637
637
|
ultracart/model/oauth_revoke_success_response.py,sha256=D6VKLKQbFp17Mmk0mxaQQwEj7iI7Ng_B_UI7SB-7zFc,11807
|
|
638
638
|
ultracart/model/oauth_token_response.py,sha256=4tCvIpB6b8xjck5pkc5-DWmCu6QrvE6v-t7QVfnWaZY,13770
|
|
639
|
-
ultracart/model/order.py,sha256=
|
|
639
|
+
ultracart/model/order.py,sha256=dsCLB3nICewVFSCIltaooYY7whSWtSEMsoxMU4Pda9k,26781
|
|
640
640
|
ultracart/model/order_affiliate.py,sha256=uj1ehllPGQvy1jMfDrY6xbSjh4kp9W5EDKrZtUUgnA0,12446
|
|
641
641
|
ultracart/model/order_affiliate_ledger.py,sha256=iulygTNTTZTEnvPuf2mAIBQpf1h4EzpHU_FRCPDuRRM,14619
|
|
642
642
|
ultracart/model/order_auto_order.py,sha256=A6QzFhmJTRnWTKSjoSo6x5bdbADquYDzbVueZBeBA8U,18519
|
|
@@ -646,6 +646,7 @@ ultracart/model/order_by_token_query.py,sha256=SXfdOshQfjdax_JtBsUTpFlKlyI5G5xBF
|
|
|
646
646
|
ultracart/model/order_channel_partner.py,sha256=ns03sFk3j7EiSDXSBkfuUBW-KSI1YRX4bCPJcwggitg,16274
|
|
647
647
|
ultracart/model/order_checkout.py,sha256=GzfiEtp78FYUOdP1DqM2yGkAETkbKMzW3ltGHi-Ygoc,17077
|
|
648
648
|
ultracart/model/order_coupon.py,sha256=Pf4gddvTsn-pNkV_-gyo06QZzm8fD2sadkqMGU15ZGw,13196
|
|
649
|
+
ultracart/model/order_current_stage_history.py,sha256=I7qJRxU5dwv4ceQ-7EdD4BnY0eo7sGf3tyz6Xzav8k4,13423
|
|
649
650
|
ultracart/model/order_digital_item.py,sha256=U-GldDb9vqygkiLEG0B6Kqs-F8H9fX_MF-wVv-5KrBI,13607
|
|
650
651
|
ultracart/model/order_digital_order.py,sha256=Bqrruo3A8NiOP9EQADraPRVz1R1EjxmQenowmXnPBk0,12968
|
|
651
652
|
ultracart/model/order_edi.py,sha256=OKyi7Z3EZaGLKfEK71AODMjC8W2rF-gzWBufoDmOoWQ,12815
|
|
@@ -658,7 +659,7 @@ ultracart/model/order_gift.py,sha256=Wpv_8A9X2ntRI1RfGmDF5JJMZEaVXuO2SLJkFDVd6L8
|
|
|
658
659
|
ultracart/model/order_gift_certificate.py,sha256=S7ArqIzcsPBV4dmTdbo-pcrg1SJrFHSb-hNYGqAHn-4,12345
|
|
659
660
|
ultracart/model/order_internal.py,sha256=o_6vXHWs3F7e7yP6-KSKq6ldZHTJkCac4f0Uu1ycdo8,13928
|
|
660
661
|
ultracart/model/order_invoice_response.py,sha256=guLqy7BTwxqYBRpfriF-P9gFlKz0naOQ62i7x38KTOI,12707
|
|
661
|
-
ultracart/model/order_item.py,sha256=
|
|
662
|
+
ultracart/model/order_item.py,sha256=STqJJx0Cnpk94pqqsncdcGwXnFv-9_IxQmz8BhW3038,33251
|
|
662
663
|
ultracart/model/order_item_edi.py,sha256=YnRVaQSyFhq_nSIYarIs-Qzx8eDKFGW3w0NXmF3la30,12239
|
|
663
664
|
ultracart/model/order_item_edi_identification.py,sha256=GNj6owL0zdEnRAZRBfB0n8w0U2eSVWFIkE066yMMnxw,11803
|
|
664
665
|
ultracart/model/order_item_edi_lot.py,sha256=FHY005memYooGpS0OhIXZ3AhVQRu3uUNU9xVSYUskgw,11954
|
|
@@ -695,7 +696,7 @@ ultracart/model/order_replacement_response.py,sha256=oj9AKHm-Xgn95gOYMV4VZvizJZN
|
|
|
695
696
|
ultracart/model/order_response.py,sha256=qE-bEiTXJxvxNw9MQIdlqpJzH3LqsWX9ikk_9zqO6-E,12719
|
|
696
697
|
ultracart/model/order_salesforce.py,sha256=7HY3SVQcVxi7xFv94Al7jWIUnRKcp2xWLU6OHaHMvrk,11561
|
|
697
698
|
ultracart/model/order_shipping.py,sha256=U26sqK6XwE7EBKZGT622De1Q6-0OodTZk6mxwJr7QAk,22365
|
|
698
|
-
ultracart/model/order_summary.py,sha256=
|
|
699
|
+
ultracart/model/order_summary.py,sha256=Id0oHC_5BH075lH5X_Q-e78hXW3LEGbZ05AHSftXqmc,18559
|
|
699
700
|
ultracart/model/order_tag.py,sha256=XWxmL3Xhc46d5JzR37s7EOmaVruktmMiRcuoFya_Qpo,11488
|
|
700
701
|
ultracart/model/order_taxes.py,sha256=UwE0YgmrpECLFOU4HMvm8IgX3BdHgrK8dAhCrGvG1Yc,17986
|
|
701
702
|
ultracart/model/order_token_response.py,sha256=HX53gJ6_G8Ifll-jc12Vu3FB2_w_5_J39IgC-qzXzZI,12789
|
|
@@ -859,9 +860,9 @@ ultracart/model/webhook_log.py,sha256=R_v3y2YuMf7xN5vrOuRmROicefJCjFtT4EcoUhBkXs
|
|
|
859
860
|
ultracart/model/webhook_log_response.py,sha256=GMoM76adgiCdaCaiYQ28o6BKySRaRAcltRT3jUvguEc,12800
|
|
860
861
|
ultracart/model/webhook_log_summaries_response.py,sha256=XDBBAA12ahSULMgyBSUfzrMnEkRJmV3wanXQ2q1xqBo,12979
|
|
861
862
|
ultracart/model/webhook_log_summary.py,sha256=1J7uzy5On8Wy0nOGqyPQUCj8t6bDipWrzXxPKPinlqs,12004
|
|
863
|
+
ultracart/model/webhook_reflow.py,sha256=bGG9WPhKRgHEtACZET8l86jzKzLPE11ivrvSYEyQMN8,11609
|
|
864
|
+
ultracart/model/webhook_reflow_response.py,sha256=t4bDr7WNQO_g3IkQx6cws6tEJgxH3HasPQ1C8sNhQ6I,12805
|
|
862
865
|
ultracart/model/webhook_response.py,sha256=V6IBHt4Us2Am_oLjWew0XgCQUAAvOi0S8OpHeSsXL88,12749
|
|
863
|
-
ultracart/model/webhook_sample_request.py,sha256=Qvt7FJPvECdYKv5MZztkSSmDxPDTSytxWrM47mR8ApA,12349
|
|
864
|
-
ultracart/model/webhook_sample_request_response.py,sha256=Ni-3WiNhVLt9a7yX_MNdD16NsRehVpJWiTdN_myLRk4,12956
|
|
865
866
|
ultracart/model/webhooks_response.py,sha256=RVGQ76kc7X0XY5iJdLgnwVr5V50uCoYCGaRtc03FKc4,12763
|
|
866
867
|
ultracart/model/weight.py,sha256=LTxs6KqiARegRkcShAviWKILAMAdw9KXwI-QgBtpoM0,11726
|
|
867
868
|
ultracart/model/workflow_agent_auth.py,sha256=WbiurfatVOtJZsEovYbugbJfBJbs9ZD2kmnDoB5soTw,11831
|
|
@@ -882,9 +883,9 @@ ultracart/model/workflow_tasks_response.py,sha256=KmHe72xKnZiS9CemBr5hluY5EsU9_x
|
|
|
882
883
|
ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE41k,11903
|
|
883
884
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
884
885
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
885
|
-
ultracart/models/__init__.py,sha256=
|
|
886
|
-
ultracart_rest_sdk-4.0.
|
|
887
|
-
ultracart_rest_sdk-4.0.
|
|
888
|
-
ultracart_rest_sdk-4.0.
|
|
889
|
-
ultracart_rest_sdk-4.0.
|
|
890
|
-
ultracart_rest_sdk-4.0.
|
|
886
|
+
ultracart/models/__init__.py,sha256=PmKNiB2g3ssPPPwhHfduAvJNSM5q9z_KDf472v8fJiA,65939
|
|
887
|
+
ultracart_rest_sdk-4.0.242.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
888
|
+
ultracart_rest_sdk-4.0.242.dist-info/METADATA,sha256=6TC5oefMqX4kZJO8EC7bJW_9D_jl2o8GJMgqxv6BFT8,403
|
|
889
|
+
ultracart_rest_sdk-4.0.242.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
890
|
+
ultracart_rest_sdk-4.0.242.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
891
|
+
ultracart_rest_sdk-4.0.242.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|