ultracart-rest-sdk 4.0.222__py3-none-any.whl → 4.0.223__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_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/model/order_query.py +8 -0
- {ultracart_rest_sdk-4.0.222.dist-info → ultracart_rest_sdk-4.0.223.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.222.dist-info → ultracart_rest_sdk-4.0.223.dist-info}/RECORD +9 -9
- {ultracart_rest_sdk-4.0.222.dist-info → ultracart_rest_sdk-4.0.223.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.222.dist-info → ultracart_rest_sdk-4.0.223.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.222.dist-info → ultracart_rest_sdk-4.0.223.dist-info}/top_level.txt +0 -0
ultracart/__init__.py
CHANGED
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.223/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.223".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
ultracart/model/order_query.py
CHANGED
|
@@ -88,6 +88,10 @@ class OrderQuery(ModelNormal):
|
|
|
88
88
|
'APPLE_PAY': "Apple Pay",
|
|
89
89
|
'_GOOGLE_PAY': " Google Pay",
|
|
90
90
|
},
|
|
91
|
+
('query_target',): {
|
|
92
|
+
'ORIGIN': "origin",
|
|
93
|
+
'CACHE': "cache",
|
|
94
|
+
},
|
|
91
95
|
}
|
|
92
96
|
|
|
93
97
|
validations = {
|
|
@@ -181,6 +185,7 @@ class OrderQuery(ModelNormal):
|
|
|
181
185
|
'phone': (str,), # noqa: E501
|
|
182
186
|
'postal_code': (str,), # noqa: E501
|
|
183
187
|
'purchase_order_number': (str,), # noqa: E501
|
|
188
|
+
'query_target': (str,), # noqa: E501
|
|
184
189
|
'refund_date_begin': (str,), # noqa: E501
|
|
185
190
|
'refund_date_end': (str,), # noqa: E501
|
|
186
191
|
'rma': (str,), # noqa: E501
|
|
@@ -231,6 +236,7 @@ class OrderQuery(ModelNormal):
|
|
|
231
236
|
'phone': 'phone', # noqa: E501
|
|
232
237
|
'postal_code': 'postal_code', # noqa: E501
|
|
233
238
|
'purchase_order_number': 'purchase_order_number', # noqa: E501
|
|
239
|
+
'query_target': 'query_target', # noqa: E501
|
|
234
240
|
'refund_date_begin': 'refund_date_begin', # noqa: E501
|
|
235
241
|
'refund_date_end': 'refund_date_end', # noqa: E501
|
|
236
242
|
'rma': 'rma', # noqa: E501
|
|
@@ -316,6 +322,7 @@ class OrderQuery(ModelNormal):
|
|
|
316
322
|
phone (str): Phone. [optional] # noqa: E501
|
|
317
323
|
postal_code (str): Postal code. [optional] # noqa: E501
|
|
318
324
|
purchase_order_number (str): Purchase order number. [optional] # noqa: E501
|
|
325
|
+
query_target (str): Query Target. [optional] # noqa: E501
|
|
319
326
|
refund_date_begin (str): Date/time that the order was refunded. [optional] # noqa: E501
|
|
320
327
|
refund_date_end (str): Date/time that the order was refunded. [optional] # noqa: E501
|
|
321
328
|
rma (str): RMA number. [optional] # noqa: E501
|
|
@@ -443,6 +450,7 @@ class OrderQuery(ModelNormal):
|
|
|
443
450
|
phone (str): Phone. [optional] # noqa: E501
|
|
444
451
|
postal_code (str): Postal code. [optional] # noqa: E501
|
|
445
452
|
purchase_order_number (str): Purchase order number. [optional] # noqa: E501
|
|
453
|
+
query_target (str): Query Target. [optional] # noqa: E501
|
|
446
454
|
refund_date_begin (str): Date/time that the order was refunded. [optional] # noqa: E501
|
|
447
455
|
refund_date_end (str): Date/time that the order was refunded. [optional] # noqa: E501
|
|
448
456
|
rma (str): RMA number. [optional] # noqa: E501
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
ultracart/__init__.py,sha256=
|
|
2
|
-
ultracart/api_client.py,sha256=
|
|
3
|
-
ultracart/configuration.py,sha256=
|
|
1
|
+
ultracart/__init__.py,sha256=0mXxfI1T5Avzw86-3fX3PX-pru7pyPHXfmupCLHSjsQ,699
|
|
2
|
+
ultracart/api_client.py,sha256=0eqW09pIec1DixGjPygq_6t63UadOLR-uEXKT-A4otA,39072
|
|
3
|
+
ultracart/configuration.py,sha256=EwVGkhD4kVm3BnVtujXAFbbUPhJqEzZyW-lYfTwXQig,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
|
|
@@ -679,7 +679,7 @@ ultracart/model/order_point_of_sale.py,sha256=5PcsqLiP1BR7nePLXEqSF1jIFid0eco2dc
|
|
|
679
679
|
ultracart/model/order_process_payment_request.py,sha256=J9_DP7vtyLyvyAMxoUc2s5e49DrYsAP7hSYBasUc4pU,12147
|
|
680
680
|
ultracart/model/order_process_payment_response.py,sha256=mp3Jdx6-Rp5DXPhUpja2jKArwsgYCsTpYuKuds7MLKs,12959
|
|
681
681
|
ultracart/model/order_property.py,sha256=TTwNAPFD0xn200o_d9xJnLVIOw2F_Kgs8veYbx7JD1Q,12365
|
|
682
|
-
ultracart/model/order_query.py,sha256=
|
|
682
|
+
ultracart/model/order_query.py,sha256=ZswAfhXL946t5XlWRK8vNzhxN1qGRsKKeAPFI1Yz2sU,25412
|
|
683
683
|
ultracart/model/order_query_batch.py,sha256=a4wi9dX8Oi85SGTkPwSWUv6s1x6tKC2w0i16WYyFvGs,11447
|
|
684
684
|
ultracart/model/order_quote.py,sha256=rearxF0qL6u7uhstszLj2iajryy7om5nGc_LiFgtZuI,12012
|
|
685
685
|
ultracart/model/order_reason.py,sha256=OOSWtof1CiNxPxVo5jliywXnMTkrPdZ8PCK9pH2ty5Q,12225
|
|
@@ -877,8 +877,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
|
|
|
877
877
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
878
878
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
879
879
|
ultracart/models/__init__.py,sha256=0VZcMHj-u6Zc6EOw-mQH_PPHT2FtR1T1Lzjalm0RbLI,65370
|
|
880
|
-
ultracart_rest_sdk-4.0.
|
|
881
|
-
ultracart_rest_sdk-4.0.
|
|
882
|
-
ultracart_rest_sdk-4.0.
|
|
883
|
-
ultracart_rest_sdk-4.0.
|
|
884
|
-
ultracart_rest_sdk-4.0.
|
|
880
|
+
ultracart_rest_sdk-4.0.223.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
881
|
+
ultracart_rest_sdk-4.0.223.dist-info/METADATA,sha256=UvsTEJlwVZIPP_JSLW40fHflmx4Ks-J-2E0u29hdtCw,403
|
|
882
|
+
ultracart_rest_sdk-4.0.223.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
883
|
+
ultracart_rest_sdk-4.0.223.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
884
|
+
ultracart_rest_sdk-4.0.223.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|