ultracart-rest-sdk 4.0.212__py3-none-any.whl → 4.0.213__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/auto_order.py +9 -0
- {ultracart_rest_sdk-4.0.212.dist-info → ultracart_rest_sdk-4.0.213.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.212.dist-info → ultracart_rest_sdk-4.0.213.dist-info}/RECORD +9 -9
- {ultracart_rest_sdk-4.0.212.dist-info → ultracart_rest_sdk-4.0.213.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.212.dist-info → ultracart_rest_sdk-4.0.213.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.212.dist-info → ultracart_rest_sdk-4.0.213.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.213/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.213".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
ultracart/model/auto_order.py
CHANGED
|
@@ -72,6 +72,7 @@ class AutoOrder(ModelNormal):
|
|
|
72
72
|
'ACTIVE': "active",
|
|
73
73
|
'CANCELED': "canceled",
|
|
74
74
|
'DISABLED': "disabled",
|
|
75
|
+
'MERGED': "merged",
|
|
75
76
|
},
|
|
76
77
|
}
|
|
77
78
|
|
|
@@ -119,6 +120,8 @@ class AutoOrder(ModelNormal):
|
|
|
119
120
|
'logs': ([AutoOrderLog],), # noqa: E501
|
|
120
121
|
'management': (AutoOrderManagement,), # noqa: E501
|
|
121
122
|
'merchant_id': (str,), # noqa: E501
|
|
123
|
+
'merged_dts': (str,), # noqa: E501
|
|
124
|
+
'merged_into_auto_order_oid': (int,), # noqa: E501
|
|
122
125
|
'next_attempt': (str,), # noqa: E501
|
|
123
126
|
'original_order': (Order,), # noqa: E501
|
|
124
127
|
'original_order_id': (str,), # noqa: E501
|
|
@@ -152,6 +155,8 @@ class AutoOrder(ModelNormal):
|
|
|
152
155
|
'logs': 'logs', # noqa: E501
|
|
153
156
|
'management': 'management', # noqa: E501
|
|
154
157
|
'merchant_id': 'merchant_id', # noqa: E501
|
|
158
|
+
'merged_dts': 'merged_dts', # noqa: E501
|
|
159
|
+
'merged_into_auto_order_oid': 'merged_into_auto_order_oid', # noqa: E501
|
|
155
160
|
'next_attempt': 'next_attempt', # noqa: E501
|
|
156
161
|
'original_order': 'original_order', # noqa: E501
|
|
157
162
|
'original_order_id': 'original_order_id', # noqa: E501
|
|
@@ -220,6 +225,8 @@ class AutoOrder(ModelNormal):
|
|
|
220
225
|
logs ([AutoOrderLog]): Logs associated with this auto order. [optional] # noqa: E501
|
|
221
226
|
management (AutoOrderManagement): [optional] # noqa: E501
|
|
222
227
|
merchant_id (str): UltraCart merchant ID owning this order. [optional] # noqa: E501
|
|
228
|
+
merged_dts (str): The date/time the auto order was merged into another auto order. [optional] # noqa: E501
|
|
229
|
+
merged_into_auto_order_oid (int): The auto order that this auto order was merged into. [optional] # noqa: E501
|
|
223
230
|
next_attempt (str): The next time that the auto order will be attempted for processing. [optional] # noqa: E501
|
|
224
231
|
original_order (Order): [optional] # noqa: E501
|
|
225
232
|
original_order_id (str): The original order id that this auto order is associated with.. [optional] # noqa: E501
|
|
@@ -330,6 +337,8 @@ class AutoOrder(ModelNormal):
|
|
|
330
337
|
logs ([AutoOrderLog]): Logs associated with this auto order. [optional] # noqa: E501
|
|
331
338
|
management (AutoOrderManagement): [optional] # noqa: E501
|
|
332
339
|
merchant_id (str): UltraCart merchant ID owning this order. [optional] # noqa: E501
|
|
340
|
+
merged_dts (str): The date/time the auto order was merged into another auto order. [optional] # noqa: E501
|
|
341
|
+
merged_into_auto_order_oid (int): The auto order that this auto order was merged into. [optional] # noqa: E501
|
|
333
342
|
next_attempt (str): The next time that the auto order will be attempted for processing. [optional] # noqa: E501
|
|
334
343
|
original_order (Order): [optional] # noqa: E501
|
|
335
344
|
original_order_id (str): The original order id that this auto order is associated with.. [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=T2KBCOQ-ZBYm1CAtEYF08HD6RtwyHAXWA8lMUuu7FKQ,699
|
|
2
|
+
ultracart/api_client.py,sha256=sOsNZOJnGzEzaU_caagAs9SPGKRLDZW7Dzt9aO4W5TA,39072
|
|
3
|
+
ultracart/configuration.py,sha256=JjpudD81ElbwNYKxwGGtLcpXq0dxGPJnM1ZrAggAtxE,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
|
|
@@ -50,7 +50,7 @@ ultracart/model/affiliate_link.py,sha256=7-uKorHwxIdCjLJ7JbuXCqqjAhB7qG8E_Xl1VMb
|
|
|
50
50
|
ultracart/model/api_user_application_profile.py,sha256=3Sxhy1ik5Q7V2q9WUAqGeM-sMnzwrS97LDUUeBjm0wM,12706
|
|
51
51
|
ultracart/model/apply_library_item_request.py,sha256=hSLU1jVcNPL7l5RQ3TsAmTP2TFqEwm8kqHfT4n0Nkdw,12987
|
|
52
52
|
ultracart/model/apply_library_item_response.py,sha256=cmBteAFEixzDwZZ-uyMl34WWjozbYw7jHSUSNKuoR50,15428
|
|
53
|
-
ultracart/model/auto_order.py,sha256
|
|
53
|
+
ultracart/model/auto_order.py,sha256=BB_fJT2nsg47A4BAjKTYHxby8bn-UGr1wAuCpNps5ns,21172
|
|
54
54
|
ultracart/model/auto_order_addon_item.py,sha256=bj3m5w0E5dnlV079lNqpABG4UPuRS5jDV3Fe0V12ASs,12875
|
|
55
55
|
ultracart/model/auto_order_addon_item_option.py,sha256=YbtpPdYXTssJ-PaNTVVOYOihcpm-2xcSkM-Uk0nP-lU,11765
|
|
56
56
|
ultracart/model/auto_order_consolidate.py,sha256=fJiH7uKwK3gwP2mhVTmt7MtZokQem_CpkmuzF8ya82M,11505
|
|
@@ -876,8 +876,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
|
|
|
876
876
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
877
877
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
878
878
|
ultracart/models/__init__.py,sha256=EGMhmgzL3NSxfIlfUzNhrcgkVH4YxSbYzfFYNH_iTio,65270
|
|
879
|
-
ultracart_rest_sdk-4.0.
|
|
880
|
-
ultracart_rest_sdk-4.0.
|
|
881
|
-
ultracart_rest_sdk-4.0.
|
|
882
|
-
ultracart_rest_sdk-4.0.
|
|
883
|
-
ultracart_rest_sdk-4.0.
|
|
879
|
+
ultracart_rest_sdk-4.0.213.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
880
|
+
ultracart_rest_sdk-4.0.213.dist-info/METADATA,sha256=myyh1ceYBGDs5M0NAFxQgMylQGYRdjTbDZTFNIG7k2E,403
|
|
881
|
+
ultracart_rest_sdk-4.0.213.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
882
|
+
ultracart_rest_sdk-4.0.213.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
883
|
+
ultracart_rest_sdk-4.0.213.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|