ultracart-rest-sdk 4.0.158__py3-none-any.whl → 4.0.159__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/distribution_center.py +60 -0
- {ultracart_rest_sdk-4.0.158.dist-info → ultracart_rest_sdk-4.0.159.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.158.dist-info → ultracart_rest_sdk-4.0.159.dist-info}/RECORD +9 -9
- {ultracart_rest_sdk-4.0.158.dist-info → ultracart_rest_sdk-4.0.159.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.158.dist-info → ultracart_rest_sdk-4.0.159.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.158.dist-info → ultracart_rest_sdk-4.0.159.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.159/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.159".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
|
@@ -101,6 +101,21 @@ class DistributionCenter(ModelNormal):
|
|
|
101
101
|
'name': (str,), # noqa: E501
|
|
102
102
|
'no_customer_direct_shipments': (bool,), # noqa: E501
|
|
103
103
|
'no_split_shipment': (bool,), # noqa: E501
|
|
104
|
+
'pickup_cutoff_time_friday': (str,), # noqa: E501
|
|
105
|
+
'pickup_cutoff_time_monday': (str,), # noqa: E501
|
|
106
|
+
'pickup_cutoff_time_saturday': (str,), # noqa: E501
|
|
107
|
+
'pickup_cutoff_time_sunday': (str,), # noqa: E501
|
|
108
|
+
'pickup_cutoff_time_thursday': (str,), # noqa: E501
|
|
109
|
+
'pickup_cutoff_time_tuesday': (str,), # noqa: E501
|
|
110
|
+
'pickup_cutoff_time_wednesday': (str,), # noqa: E501
|
|
111
|
+
'pickup_start_time_friday': (str,), # noqa: E501
|
|
112
|
+
'pickup_start_time_monday': (str,), # noqa: E501
|
|
113
|
+
'pickup_start_time_saturday': (str,), # noqa: E501
|
|
114
|
+
'pickup_start_time_sunday': (str,), # noqa: E501
|
|
115
|
+
'pickup_start_time_thursday': (str,), # noqa: E501
|
|
116
|
+
'pickup_start_time_tuesday': (str,), # noqa: E501
|
|
117
|
+
'pickup_start_time_wednesday': (str,), # noqa: E501
|
|
118
|
+
'pickup_tz': (str,), # noqa: E501
|
|
104
119
|
'postal_code': (str,), # noqa: E501
|
|
105
120
|
'process_days': (int,), # noqa: E501
|
|
106
121
|
'process_inventory_start_time': (str,), # noqa: E501
|
|
@@ -144,6 +159,21 @@ class DistributionCenter(ModelNormal):
|
|
|
144
159
|
'name': 'name', # noqa: E501
|
|
145
160
|
'no_customer_direct_shipments': 'no_customer_direct_shipments', # noqa: E501
|
|
146
161
|
'no_split_shipment': 'no_split_shipment', # noqa: E501
|
|
162
|
+
'pickup_cutoff_time_friday': 'pickup_cutoff_time_friday', # noqa: E501
|
|
163
|
+
'pickup_cutoff_time_monday': 'pickup_cutoff_time_monday', # noqa: E501
|
|
164
|
+
'pickup_cutoff_time_saturday': 'pickup_cutoff_time_saturday', # noqa: E501
|
|
165
|
+
'pickup_cutoff_time_sunday': 'pickup_cutoff_time_sunday', # noqa: E501
|
|
166
|
+
'pickup_cutoff_time_thursday': 'pickup_cutoff_time_thursday', # noqa: E501
|
|
167
|
+
'pickup_cutoff_time_tuesday': 'pickup_cutoff_time_tuesday', # noqa: E501
|
|
168
|
+
'pickup_cutoff_time_wednesday': 'pickup_cutoff_time_wednesday', # noqa: E501
|
|
169
|
+
'pickup_start_time_friday': 'pickup_start_time_friday', # noqa: E501
|
|
170
|
+
'pickup_start_time_monday': 'pickup_start_time_monday', # noqa: E501
|
|
171
|
+
'pickup_start_time_saturday': 'pickup_start_time_saturday', # noqa: E501
|
|
172
|
+
'pickup_start_time_sunday': 'pickup_start_time_sunday', # noqa: E501
|
|
173
|
+
'pickup_start_time_thursday': 'pickup_start_time_thursday', # noqa: E501
|
|
174
|
+
'pickup_start_time_tuesday': 'pickup_start_time_tuesday', # noqa: E501
|
|
175
|
+
'pickup_start_time_wednesday': 'pickup_start_time_wednesday', # noqa: E501
|
|
176
|
+
'pickup_tz': 'pickup_tz', # noqa: E501
|
|
147
177
|
'postal_code': 'postal_code', # noqa: E501
|
|
148
178
|
'process_days': 'process_days', # noqa: E501
|
|
149
179
|
'process_inventory_start_time': 'process_inventory_start_time', # noqa: E501
|
|
@@ -222,6 +252,21 @@ class DistributionCenter(ModelNormal):
|
|
|
222
252
|
name (str): Name of this distribution center. [optional] # noqa: E501
|
|
223
253
|
no_customer_direct_shipments (bool): True if this distribution center does not handle customer direct shipments. [optional] # noqa: E501
|
|
224
254
|
no_split_shipment (bool): True if this distribution center is not allowed to participate in a split shipment.. [optional] # noqa: E501
|
|
255
|
+
pickup_cutoff_time_friday (str): The time (EST) after which pickups will not be available on Friday. [optional] # noqa: E501
|
|
256
|
+
pickup_cutoff_time_monday (str): The time (EST) after which pickups will not be available on Monday. [optional] # noqa: E501
|
|
257
|
+
pickup_cutoff_time_saturday (str): The time (EST) after which pickups will not be available on Saturday. [optional] # noqa: E501
|
|
258
|
+
pickup_cutoff_time_sunday (str): The time (EST) after which pickups will not be available on Sunday. [optional] # noqa: E501
|
|
259
|
+
pickup_cutoff_time_thursday (str): The time (EST) after which pickups will not be available on Thursday. [optional] # noqa: E501
|
|
260
|
+
pickup_cutoff_time_tuesday (str): The time (EST) after which pickups will not be available on Tuesday. [optional] # noqa: E501
|
|
261
|
+
pickup_cutoff_time_wednesday (str): The time (EST) after which pickups will not be available on Wednesday. [optional] # noqa: E501
|
|
262
|
+
pickup_start_time_friday (str): The time (EST) after which pickups are available on Friday. [optional] # noqa: E501
|
|
263
|
+
pickup_start_time_monday (str): The time (EST) after which pickups are available on Monday. [optional] # noqa: E501
|
|
264
|
+
pickup_start_time_saturday (str): The time (EST) after which pickups are available on Saturday. [optional] # noqa: E501
|
|
265
|
+
pickup_start_time_sunday (str): The time (EST) after which pickups are available on Sunday. [optional] # noqa: E501
|
|
266
|
+
pickup_start_time_thursday (str): The time (EST) after which pickups are available on Thursday. [optional] # noqa: E501
|
|
267
|
+
pickup_start_time_tuesday (str): The time (EST) after which pickups are available on Tuesday. [optional] # noqa: E501
|
|
268
|
+
pickup_start_time_wednesday (str): The time (EST) after which pickups are available on Wednesday. [optional] # noqa: E501
|
|
269
|
+
pickup_tz (str): The IANA timezone for all pickup times. [optional] # noqa: E501
|
|
225
270
|
postal_code (str): Postal code of the distribution center. [optional] # noqa: E501
|
|
226
271
|
process_days (int): The number of processing days required before an order ships. [optional] # noqa: E501
|
|
227
272
|
process_inventory_start_time (str): The time (EST) after which inventory updates will be processed. [optional] # noqa: E501
|
|
@@ -342,6 +387,21 @@ class DistributionCenter(ModelNormal):
|
|
|
342
387
|
name (str): Name of this distribution center. [optional] # noqa: E501
|
|
343
388
|
no_customer_direct_shipments (bool): True if this distribution center does not handle customer direct shipments. [optional] # noqa: E501
|
|
344
389
|
no_split_shipment (bool): True if this distribution center is not allowed to participate in a split shipment.. [optional] # noqa: E501
|
|
390
|
+
pickup_cutoff_time_friday (str): The time (EST) after which pickups will not be available on Friday. [optional] # noqa: E501
|
|
391
|
+
pickup_cutoff_time_monday (str): The time (EST) after which pickups will not be available on Monday. [optional] # noqa: E501
|
|
392
|
+
pickup_cutoff_time_saturday (str): The time (EST) after which pickups will not be available on Saturday. [optional] # noqa: E501
|
|
393
|
+
pickup_cutoff_time_sunday (str): The time (EST) after which pickups will not be available on Sunday. [optional] # noqa: E501
|
|
394
|
+
pickup_cutoff_time_thursday (str): The time (EST) after which pickups will not be available on Thursday. [optional] # noqa: E501
|
|
395
|
+
pickup_cutoff_time_tuesday (str): The time (EST) after which pickups will not be available on Tuesday. [optional] # noqa: E501
|
|
396
|
+
pickup_cutoff_time_wednesday (str): The time (EST) after which pickups will not be available on Wednesday. [optional] # noqa: E501
|
|
397
|
+
pickup_start_time_friday (str): The time (EST) after which pickups are available on Friday. [optional] # noqa: E501
|
|
398
|
+
pickup_start_time_monday (str): The time (EST) after which pickups are available on Monday. [optional] # noqa: E501
|
|
399
|
+
pickup_start_time_saturday (str): The time (EST) after which pickups are available on Saturday. [optional] # noqa: E501
|
|
400
|
+
pickup_start_time_sunday (str): The time (EST) after which pickups are available on Sunday. [optional] # noqa: E501
|
|
401
|
+
pickup_start_time_thursday (str): The time (EST) after which pickups are available on Thursday. [optional] # noqa: E501
|
|
402
|
+
pickup_start_time_tuesday (str): The time (EST) after which pickups are available on Tuesday. [optional] # noqa: E501
|
|
403
|
+
pickup_start_time_wednesday (str): The time (EST) after which pickups are available on Wednesday. [optional] # noqa: E501
|
|
404
|
+
pickup_tz (str): The IANA timezone for all pickup times. [optional] # noqa: E501
|
|
345
405
|
postal_code (str): Postal code of the distribution center. [optional] # noqa: E501
|
|
346
406
|
process_days (int): The number of processing days required before an order ships. [optional] # noqa: E501
|
|
347
407
|
process_inventory_start_time (str): The time (EST) after which inventory updates will be processed. [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=ATYrk5hx_6kBS6BUoAjo_rsHYAnU9qw5NX_IbSTtKw0,699
|
|
2
|
+
ultracart/api_client.py,sha256=PodG3Df8gzVanBfLcSxxYQFToJKqtdp6TXURk6cmRVs,39072
|
|
3
|
+
ultracart/configuration.py,sha256=Vq1tUSx9gxFcPAqYs5oj6D44RhnlXyvgB4qiUjqzRfc,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
|
|
@@ -316,7 +316,7 @@ ultracart/model/customer_tax_codes.py,sha256=oKs-NSaWkFlp1XSHy_mGqeq-AhLF-k50CPp
|
|
|
316
316
|
ultracart/model/customers_response.py,sha256=1vdY1_q1jPaMW7kOmSDr_xsZxcj4GzBc6Kt9iA1IPso,12778
|
|
317
317
|
ultracart/model/data_tables_server_side_response.py,sha256=X3dt-MTwoj_mVXaWrclM36KZ32yIpOWeGY0Xf_Mx0n0,12242
|
|
318
318
|
ultracart/model/distance.py,sha256=wgCsWXmvusssgD_kC6kPQrGsc4qjO8KHkx-NBr0r3SE,11730
|
|
319
|
-
ultracart/model/distribution_center.py,sha256=
|
|
319
|
+
ultracart/model/distribution_center.py,sha256=x6aGrBl4UE5Ignv8nB3PXqkqBrN4TcVl8mJlsbqnUu8,30174
|
|
320
320
|
ultracart/model/distribution_centers_response.py,sha256=kThIpcdMXb2NYb1qAvzuS4LYM0cFhyLukCwgSMwpleI,12934
|
|
321
321
|
ultracart/model/email_base_template_list_response.py,sha256=2tPIkuUXdil5F6h1qAu4OHVkmW94_KlJMSdW8g-F92w,11491
|
|
322
322
|
ultracart/model/email_campaign.py,sha256=SigZsj7-atzEkYulk8qPZqA8K9lnvaBwKFA_Ir8Iprs,20256
|
|
@@ -804,8 +804,8 @@ ultracart/model/webhook_sample_request_response.py,sha256=Ni-3WiNhVLt9a7yX_MNdD1
|
|
|
804
804
|
ultracart/model/webhooks_response.py,sha256=RVGQ76kc7X0XY5iJdLgnwVr5V50uCoYCGaRtc03FKc4,12763
|
|
805
805
|
ultracart/model/weight.py,sha256=LTxs6KqiARegRkcShAviWKILAMAdw9KXwI-QgBtpoM0,11726
|
|
806
806
|
ultracart/models/__init__.py,sha256=v8-9uEROm6n92C1w3-BPFki2zZHFwv2a-kXOflz-xlk,59125
|
|
807
|
-
ultracart_rest_sdk-4.0.
|
|
808
|
-
ultracart_rest_sdk-4.0.
|
|
809
|
-
ultracart_rest_sdk-4.0.
|
|
810
|
-
ultracart_rest_sdk-4.0.
|
|
811
|
-
ultracart_rest_sdk-4.0.
|
|
807
|
+
ultracart_rest_sdk-4.0.159.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
808
|
+
ultracart_rest_sdk-4.0.159.dist-info/METADATA,sha256=FPjWvaBem7VnJkWsWDLyv9qTMBo9HCIysZUGp6bLLDo,403
|
|
809
|
+
ultracart_rest_sdk-4.0.159.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
810
|
+
ultracart_rest_sdk-4.0.159.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
811
|
+
ultracart_rest_sdk-4.0.159.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|