ultracart-rest-sdk 4.0.198__py3-none-any.whl → 4.0.199__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 +12 -0
- {ultracart_rest_sdk-4.0.198.dist-info → ultracart_rest_sdk-4.0.199.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.198.dist-info → ultracart_rest_sdk-4.0.199.dist-info}/RECORD +9 -9
- {ultracart_rest_sdk-4.0.198.dist-info → ultracart_rest_sdk-4.0.199.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.198.dist-info → ultracart_rest_sdk-4.0.199.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.198.dist-info → ultracart_rest_sdk-4.0.199.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.199/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.199".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
ultracart/model/order_query.py
CHANGED
|
@@ -160,12 +160,15 @@ class OrderQuery(ModelNormal):
|
|
|
160
160
|
'creation_date_end': (str,), # noqa: E501
|
|
161
161
|
'current_stage': (str,), # noqa: E501
|
|
162
162
|
'custom_field_1': (str,), # noqa: E501
|
|
163
|
+
'custom_field_10': (str,), # noqa: E501
|
|
163
164
|
'custom_field_2': (str,), # noqa: E501
|
|
164
165
|
'custom_field_3': (str,), # noqa: E501
|
|
165
166
|
'custom_field_4': (str,), # noqa: E501
|
|
166
167
|
'custom_field_5': (str,), # noqa: E501
|
|
167
168
|
'custom_field_6': (str,), # noqa: E501
|
|
168
169
|
'custom_field_7': (str,), # noqa: E501
|
|
170
|
+
'custom_field_8': (str,), # noqa: E501
|
|
171
|
+
'custom_field_9': (str,), # noqa: E501
|
|
169
172
|
'customer_profile_oid': (int,), # noqa: E501
|
|
170
173
|
'email': (str,), # noqa: E501
|
|
171
174
|
'first_name': (str,), # noqa: E501
|
|
@@ -207,12 +210,15 @@ class OrderQuery(ModelNormal):
|
|
|
207
210
|
'creation_date_end': 'creation_date_end', # noqa: E501
|
|
208
211
|
'current_stage': 'current_stage', # noqa: E501
|
|
209
212
|
'custom_field_1': 'custom_field_1', # noqa: E501
|
|
213
|
+
'custom_field_10': 'custom_field_10', # noqa: E501
|
|
210
214
|
'custom_field_2': 'custom_field_2', # noqa: E501
|
|
211
215
|
'custom_field_3': 'custom_field_3', # noqa: E501
|
|
212
216
|
'custom_field_4': 'custom_field_4', # noqa: E501
|
|
213
217
|
'custom_field_5': 'custom_field_5', # noqa: E501
|
|
214
218
|
'custom_field_6': 'custom_field_6', # noqa: E501
|
|
215
219
|
'custom_field_7': 'custom_field_7', # noqa: E501
|
|
220
|
+
'custom_field_8': 'custom_field_8', # noqa: E501
|
|
221
|
+
'custom_field_9': 'custom_field_9', # noqa: E501
|
|
216
222
|
'customer_profile_oid': 'customer_profile_oid', # noqa: E501
|
|
217
223
|
'email': 'email', # noqa: E501
|
|
218
224
|
'first_name': 'first_name', # noqa: E501
|
|
@@ -289,12 +295,15 @@ class OrderQuery(ModelNormal):
|
|
|
289
295
|
creation_date_end (str): Date/time that the order was created. [optional] # noqa: E501
|
|
290
296
|
current_stage (str): Current stage that the order is in.. [optional] # noqa: E501
|
|
291
297
|
custom_field_1 (str): Custom field 1. [optional] # noqa: E501
|
|
298
|
+
custom_field_10 (str): Custom field 10. [optional] # noqa: E501
|
|
292
299
|
custom_field_2 (str): Custom field 2. [optional] # noqa: E501
|
|
293
300
|
custom_field_3 (str): Custom field 3. [optional] # noqa: E501
|
|
294
301
|
custom_field_4 (str): Custom field 4. [optional] # noqa: E501
|
|
295
302
|
custom_field_5 (str): Custom field 5. [optional] # noqa: E501
|
|
296
303
|
custom_field_6 (str): Custom field 6. [optional] # noqa: E501
|
|
297
304
|
custom_field_7 (str): Custom field 7. [optional] # noqa: E501
|
|
305
|
+
custom_field_8 (str): Custom field 8. [optional] # noqa: E501
|
|
306
|
+
custom_field_9 (str): Custom field 9. [optional] # noqa: E501
|
|
298
307
|
customer_profile_oid (int): The customer profile to find associated orders for. [optional] # noqa: E501
|
|
299
308
|
email (str): Email. [optional] # noqa: E501
|
|
300
309
|
first_name (str): First name. [optional] # noqa: E501
|
|
@@ -413,12 +422,15 @@ class OrderQuery(ModelNormal):
|
|
|
413
422
|
creation_date_end (str): Date/time that the order was created. [optional] # noqa: E501
|
|
414
423
|
current_stage (str): Current stage that the order is in.. [optional] # noqa: E501
|
|
415
424
|
custom_field_1 (str): Custom field 1. [optional] # noqa: E501
|
|
425
|
+
custom_field_10 (str): Custom field 10. [optional] # noqa: E501
|
|
416
426
|
custom_field_2 (str): Custom field 2. [optional] # noqa: E501
|
|
417
427
|
custom_field_3 (str): Custom field 3. [optional] # noqa: E501
|
|
418
428
|
custom_field_4 (str): Custom field 4. [optional] # noqa: E501
|
|
419
429
|
custom_field_5 (str): Custom field 5. [optional] # noqa: E501
|
|
420
430
|
custom_field_6 (str): Custom field 6. [optional] # noqa: E501
|
|
421
431
|
custom_field_7 (str): Custom field 7. [optional] # noqa: E501
|
|
432
|
+
custom_field_8 (str): Custom field 8. [optional] # noqa: E501
|
|
433
|
+
custom_field_9 (str): Custom field 9. [optional] # noqa: E501
|
|
422
434
|
customer_profile_oid (int): The customer profile to find associated orders for. [optional] # noqa: E501
|
|
423
435
|
email (str): Email. [optional] # noqa: E501
|
|
424
436
|
first_name (str): First name. [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=YfqqUVpc_sTaa99dt_MwQ8xUOEBT-CPXN_yx1TGINbs,699
|
|
2
|
+
ultracart/api_client.py,sha256=xjLaS1PTStMNLoojc1RRqaYBmeH639v7J2r_ectcMF0,39072
|
|
3
|
+
ultracart/configuration.py,sha256=U_emQwK7egxjaDzSY11C7LB7YpTJuOb0gyAWISFiAmo,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
|
|
@@ -635,7 +635,7 @@ ultracart/model/order_point_of_sale.py,sha256=5PcsqLiP1BR7nePLXEqSF1jIFid0eco2dc
|
|
|
635
635
|
ultracart/model/order_process_payment_request.py,sha256=J9_DP7vtyLyvyAMxoUc2s5e49DrYsAP7hSYBasUc4pU,12147
|
|
636
636
|
ultracart/model/order_process_payment_response.py,sha256=mp3Jdx6-Rp5DXPhUpja2jKArwsgYCsTpYuKuds7MLKs,12959
|
|
637
637
|
ultracart/model/order_property.py,sha256=TTwNAPFD0xn200o_d9xJnLVIOw2F_Kgs8veYbx7JD1Q,12365
|
|
638
|
-
ultracart/model/order_query.py,sha256=
|
|
638
|
+
ultracart/model/order_query.py,sha256=B20ISgIg4N6fLPj4QkeNK3qNbETQj7f0sIg9kIVzf8k,25064
|
|
639
639
|
ultracart/model/order_query_batch.py,sha256=a4wi9dX8Oi85SGTkPwSWUv6s1x6tKC2w0i16WYyFvGs,11447
|
|
640
640
|
ultracart/model/order_quote.py,sha256=rearxF0qL6u7uhstszLj2iajryy7om5nGc_LiFgtZuI,12012
|
|
641
641
|
ultracart/model/order_reason.py,sha256=OOSWtof1CiNxPxVo5jliywXnMTkrPdZ8PCK9pH2ty5Q,12225
|
|
@@ -829,8 +829,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
|
|
|
829
829
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
830
830
|
ultracart/model/workflow_users_response.py,sha256=uVrMVVk_hsX94W_exep-rKCwvv772Ocdw19UO1YL27g,12813
|
|
831
831
|
ultracart/models/__init__.py,sha256=hjVxJD34IfqxbWKSX2a2Wm4rw_d9-A-9RCN5bLxNNSA,60995
|
|
832
|
-
ultracart_rest_sdk-4.0.
|
|
833
|
-
ultracart_rest_sdk-4.0.
|
|
834
|
-
ultracart_rest_sdk-4.0.
|
|
835
|
-
ultracart_rest_sdk-4.0.
|
|
836
|
-
ultracart_rest_sdk-4.0.
|
|
832
|
+
ultracart_rest_sdk-4.0.199.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
833
|
+
ultracart_rest_sdk-4.0.199.dist-info/METADATA,sha256=B9n_Bjpo4xJXrPxRWq-TsNP1JMdWooSReqcSacscnrQ,403
|
|
834
|
+
ultracart_rest_sdk-4.0.199.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
835
|
+
ultracart_rest_sdk-4.0.199.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
836
|
+
ultracart_rest_sdk-4.0.199.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|