ultracart-rest-sdk 4.1.21__py3-none-any.whl → 4.1.22__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 CHANGED
@@ -11,7 +11,7 @@
11
11
  """
12
12
 
13
13
 
14
- __version__ = "4.1.21"
14
+ __version__ = "4.1.22"
15
15
 
16
16
  # import ApiClient
17
17
  from ultracart.api_client import ApiClient
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.1.21/python'
80
+ self.user_agent = 'OpenAPI-Generator/4.1.22/python'
81
81
 
82
82
  def __enter__(self):
83
83
  return self
@@ -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.1.21".\
425
+ "SDK Package Version: 4.1.22".\
426
426
  format(env=sys.platform, pyversion=sys.version)
427
427
 
428
428
  def get_host_settings(self):
@@ -106,6 +106,9 @@ class Customer(ModelNormal):
106
106
  ('dhl_duty_account_number',): {
107
107
  'max_length': 20,
108
108
  },
109
+ ('fax',): {
110
+ 'max_length': 32,
111
+ },
109
112
  ('fedex_account_number',): {
110
113
  'max_length': 20,
111
114
  },
@@ -178,6 +181,7 @@ class Customer(ModelNormal):
178
181
  'edi': (CustomerEDI,), # noqa: E501
179
182
  'email': (str,), # noqa: E501
180
183
  'exempt_shipping_handling_charge': (bool,), # noqa: E501
184
+ 'fax': (str,), # noqa: E501
181
185
  'fedex_account_number': (str,), # noqa: E501
182
186
  'free_shipping': (bool,), # noqa: E501
183
187
  'free_shipping_minimum': (float,), # noqa: E501
@@ -250,6 +254,7 @@ class Customer(ModelNormal):
250
254
  'edi': 'edi', # noqa: E501
251
255
  'email': 'email', # noqa: E501
252
256
  'exempt_shipping_handling_charge': 'exempt_shipping_handling_charge', # noqa: E501
257
+ 'fax': 'fax', # noqa: E501
253
258
  'fedex_account_number': 'fedex_account_number', # noqa: E501
254
259
  'free_shipping': 'free_shipping', # noqa: E501
255
260
  'free_shipping_minimum': 'free_shipping_minimum', # noqa: E501
@@ -357,6 +362,7 @@ class Customer(ModelNormal):
357
362
  edi (CustomerEDI): [optional] # noqa: E501
358
363
  email (str): Email address of this customer profile. [optional] # noqa: E501
359
364
  exempt_shipping_handling_charge (bool): Exempt shipping handling charge. [optional] # noqa: E501
365
+ fax (str): Fax Number. [optional] # noqa: E501
360
366
  fedex_account_number (str): FedEx account number. [optional] # noqa: E501
361
367
  free_shipping (bool): This customer always receives free shipping. [optional] # noqa: E501
362
368
  free_shipping_minimum (float): If free_shipping is true, this is the minimum subtotal required for free shipping. [optional] # noqa: E501
@@ -506,6 +512,7 @@ class Customer(ModelNormal):
506
512
  edi (CustomerEDI): [optional] # noqa: E501
507
513
  email (str): Email address of this customer profile. [optional] # noqa: E501
508
514
  exempt_shipping_handling_charge (bool): Exempt shipping handling charge. [optional] # noqa: E501
515
+ fax (str): Fax Number. [optional] # noqa: E501
509
516
  fedex_account_number (str): FedEx account number. [optional] # noqa: E501
510
517
  free_shipping (bool): This customer always receives free shipping. [optional] # noqa: E501
511
518
  free_shipping_minimum (float): If free_shipping is true, this is the minimum subtotal required for free shipping. [optional] # noqa: E501
@@ -101,6 +101,7 @@ class ItemShippingMethod(ModelNormal):
101
101
  'shipping_method': (str,), # noqa: E501
102
102
  'shipping_method_oid': (int,), # noqa: E501
103
103
  'shipping_method_validity': (str,), # noqa: E501
104
+ 'ships_separately': (bool,), # noqa: E501
104
105
  'signature_required': (bool,), # noqa: E501
105
106
  }
106
107
 
@@ -124,6 +125,7 @@ class ItemShippingMethod(ModelNormal):
124
125
  'shipping_method': 'shipping_method', # noqa: E501
125
126
  'shipping_method_oid': 'shipping_method_oid', # noqa: E501
126
127
  'shipping_method_validity': 'shipping_method_validity', # noqa: E501
128
+ 'ships_separately': 'ships_separately', # noqa: E501
127
129
  'signature_required': 'signature_required', # noqa: E501
128
130
  }
129
131
 
@@ -182,6 +184,7 @@ class ItemShippingMethod(ModelNormal):
182
184
  shipping_method (str): Shipping method name. [optional] # noqa: E501
183
185
  shipping_method_oid (int): Shipping method object identifier. [optional] # noqa: E501
184
186
  shipping_method_validity (str): Shipping method validity. [optional] # noqa: E501
187
+ ships_separately (bool): Ships separately. [optional] # noqa: E501
185
188
  signature_required (bool): Signature required. [optional] # noqa: E501
186
189
  """
187
190
 
@@ -282,6 +285,7 @@ class ItemShippingMethod(ModelNormal):
282
285
  shipping_method (str): Shipping method name. [optional] # noqa: E501
283
286
  shipping_method_oid (int): Shipping method object identifier. [optional] # noqa: E501
284
287
  shipping_method_validity (str): Shipping method validity. [optional] # noqa: E501
288
+ ships_separately (bool): Ships separately. [optional] # noqa: E501
285
289
  signature_required (bool): Signature required. [optional] # noqa: E501
286
290
  """
287
291
 
@@ -85,6 +85,7 @@ class OrderPayment(ModelNormal):
85
85
  'CHECK': "Check",
86
86
  'COD': "COD",
87
87
  'CREDIT_CARD': "Credit Card",
88
+ 'CRYPTO': "Crypto",
88
89
  'EBAY': "eBay",
89
90
  'ECHECK': "eCheck",
90
91
  'GOOGLE_SHOPPING': "Google Shopping",
@@ -147,7 +147,7 @@ class ReplaceOrderItemIdRequest(ModelNormal):
147
147
  Animal class but this time we won't travel
148
148
  through its discriminator because we passed in
149
149
  _visited_composed_classes = (Animal,)
150
- item_index (int): Index of the item on the order (one based index). [optional] # noqa: E501
150
+ item_index (int): Index of the item on the order. Must match order.items[].item_index. [optional] # noqa: E501
151
151
  merchant_item_id (str): Item ID. [optional] # noqa: E501
152
152
  order_id (str): Order ID. [optional] # noqa: E501
153
153
  replacement_merchant_item_id (str): Replacement Item ID. [optional] # noqa: E501
@@ -236,7 +236,7 @@ class ReplaceOrderItemIdRequest(ModelNormal):
236
236
  Animal class but this time we won't travel
237
237
  through its discriminator because we passed in
238
238
  _visited_composed_classes = (Animal,)
239
- item_index (int): Index of the item on the order (one based index). [optional] # noqa: E501
239
+ item_index (int): Index of the item on the order. Must match order.items[].item_index. [optional] # noqa: E501
240
240
  merchant_item_id (str): Item ID. [optional] # noqa: E501
241
241
  order_id (str): Order ID. [optional] # noqa: E501
242
242
  replacement_merchant_item_id (str): Replacement Item ID. [optional] # noqa: E501
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ultracart-rest-sdk
3
- Version: 4.1.21
3
+ Version: 4.1.22
4
4
  Summary: UltraCart Rest API V2
5
5
  Home-page: UNKNOWN
6
6
  Author: UltraCart Support
@@ -1,6 +1,6 @@
1
- ultracart/__init__.py,sha256=YytGsBcIXJg8_52KItcL1Ts6k3ygbkzqLuYOJRMPUzo,698
2
- ultracart/api_client.py,sha256=yG3TJ6zBRbYRQ4dyaL5d3XQuTabWkuuC98F-xz__9Bc,39071
3
- ultracart/configuration.py,sha256=1DvhvAnAH8AQdkJaPpKemmOjAoBZbdxQW-00PWbQ27I,17841
1
+ ultracart/__init__.py,sha256=d2cAR4lw0k4zFgTSbNWwrffMgGnCCxB0E2LL4THWnBo,698
2
+ ultracart/api_client.py,sha256=Ohfi-QZ8tvfYTLrESVB-c8IUaiobNHRqLHbcBIfgqxQ,39071
3
+ ultracart/configuration.py,sha256=KIXhZGU51VpHSx9MW1lK0m_Rgks2oViTWz2J54eKnoA,17841
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
@@ -356,7 +356,7 @@ ultracart/model/custom_reports_execution_report_data.py,sha256=M0eFl1W0jJ7Sd5E_z
356
356
  ultracart/model/custom_reports_execution_request.py,sha256=y2skvUgw7X8whMWAjsAnI6R86NK8sc4DYJkmxrjSW4Q,12124
357
357
  ultracart/model/custom_reports_execution_response.py,sha256=Ntk03s3ANP2UngJVkbEo2YvMs4ohlC0hUbvjKfLqv6Q,13452
358
358
  ultracart/model/custom_reports_response.py,sha256=0siuxCxjdqkqbKdQFFE7_hHuXUafAbcepFWj9CQ72bY,12827
359
- ultracart/model/customer.py,sha256=4IFDo1fb_WO2b2mXTwFZZ7pXOLPcfsyAgQ6jul3Sr7U,33232
359
+ ultracart/model/customer.py,sha256=VPjzbNtykMF_52eOwMBsarNKh444mPOjx4kPI35Bt10,33490
360
360
  ultracart/model/customer_activity.py,sha256=kf557fU6WEsJWIXpMM569JG8D4g3aJIcgsQJejkmyKw,13685
361
361
  ultracart/model/customer_affiliate.py,sha256=yJtbxEcyJzfeU9PZ5jxlk-rfFuixTHMLDqFKBqjpP2Y,12157
362
362
  ultracart/model/customer_attachment.py,sha256=2ubvzq-xfq2yQ6RFWCvYET6a6qL8dAq7FoMXoImJYrA,12517
@@ -631,7 +631,7 @@ ultracart/model/item_shipping_case.py,sha256=FnxLyFpwdhlIS-0ytsA87ZB2Dwr9_JlaXyy
631
631
  ultracart/model/item_shipping_destination_markup.py,sha256=dwcd7jpETU1vTw6LnE0Px0tlkoNCxM6kmvtCTYOHYWU,13317
632
632
  ultracart/model/item_shipping_destination_restriction.py,sha256=8anlMO2ultHnR_4LMxAdk9i1azuoNcljW1BTqztOVvw,12236
633
633
  ultracart/model/item_shipping_distribution_center.py,sha256=gqkLP32C-M2eHcTWs_ZEU2aQCSN82K_fiX-jF7-Lnk4,15701
634
- ultracart/model/item_shipping_method.py,sha256=nnGlXS-iOFIZoy0wNLcwEADzbLPku49aoSus-r0J0cE,15931
634
+ ultracart/model/item_shipping_method.py,sha256=7VNjM3GkbS3JZmOf9MrPuarqY7byAY2c4luMT938N_k,16208
635
635
  ultracart/model/item_shipping_package_requirement.py,sha256=kGs5EBH-ok7wQhFcUtzxGUuLC2kzgHiECwzGufJTd2Y,11774
636
636
  ultracart/model/item_tag.py,sha256=WdBpd_ZmZ_VRCjIYdiy108tPDnB2aBSBEePFA1iueuY,11831
637
637
  ultracart/model/item_tags.py,sha256=DW7Iv_d64yqJB2qxsLblbB-Q47eqUds6ZW7y7pBvV4c,11551
@@ -702,7 +702,7 @@ ultracart/model/order_item_tag.py,sha256=IGO8fQmXZ_MoREh8GiTLKd8T-DVn1KAefiSXXnb
702
702
  ultracart/model/order_linked_shipment.py,sha256=8J3ed4L48ebAgC61koZJXnipe7YVcTKWoyy8CR4-s_M,13149
703
703
  ultracart/model/order_marketing.py,sha256=x4VPy4XOKl7RLjiMnroIeFlWKKHfLEgSezIKNZOqKuo,12596
704
704
  ultracart/model/order_packing_slip_response.py,sha256=acLnSb5t-nZ1NQe3A8MSkgA-htWGCafmPi-c2cqzgkE,12719
705
- ultracart/model/order_payment.py,sha256=EXe4vlbDTXJzSkLjEj_31Q9YRuNeXxbZiSwqv2sdnRQ,20449
705
+ ultracart/model/order_payment.py,sha256=W6v9OGkoW_wIm24E-kfWx-07ijD6-LoKLi_BBDM7rTU,20481
706
706
  ultracart/model/order_payment_check.py,sha256=a-OAp4zyWwa-iNP5ukFQFc5Xi1xodnzwdvfn7BM2ivs,11468
707
707
  ultracart/model/order_payment_credit_card.py,sha256=eh__M764v83trWIKaq2to3L7dIQdAYDjXBoREXIjfcY,15912
708
708
  ultracart/model/order_payment_credit_card_dual_vaulted.py,sha256=BLE9zSsUsVjuddLhSJnrHmF6k2GDxtyeIG2y1ATCvck,12428
@@ -750,7 +750,7 @@ ultracart/model/pricing_tiers_response.py,sha256=811NZAobIBNgdVZB5Z1-GIKZN85NalC
750
750
  ultracart/model/publish_library_item_request.py,sha256=1CQbosYqBdfh8VBWdUkpCycfXwAw5VAFCh70Uf9Gyh0,11551
751
751
  ultracart/model/register_affiliate_click_request.py,sha256=WvcHVQOLw-YOjqcQB8yg9AkW6Zc4bxU_BzmkSEPrA6w,13148
752
752
  ultracart/model/register_affiliate_click_response.py,sha256=lBfzzBOkbQi3X62l6a3PXSPAomQliGxuRJjPSumSCks,12481
753
- ultracart/model/replace_order_item_id_request.py,sha256=PxIbP3x672qjndOVRxPTgmKzni624VqRvQ3mfvidLvg,12528
753
+ ultracart/model/replace_order_item_id_request.py,sha256=J_cnaE93E4F7xm1H3RWBTB5sRIDaycs1ZsbjJcFP_Mo,12568
754
754
  ultracart/model/report.py,sha256=3XUXn3Yccr_uqFRkwbHXgMS4UBN4QjXmjyXPDUYNq-0,14411
755
755
  ultracart/model/report_auth.py,sha256=pfHkmuhfJZD4mL2IvV1LjFn68rUq7v_VNDfm_Sl94SE,12097
756
756
  ultracart/model/report_auth_response.py,sha256=eqJPymE8NruFJZr3fGfI5mW8ATDM13ETkRIueDtzeUs,12800
@@ -918,8 +918,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
918
918
  ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
919
919
  ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
920
920
  ultracart/models/__init__.py,sha256=AQfyN4CIAocu5HuEYL7mJhi8cALaGkVoscz_BcwrI9M,69063
921
- ultracart_rest_sdk-4.1.21.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
922
- ultracart_rest_sdk-4.1.21.dist-info/METADATA,sha256=utJdwETm0NV0mt9Z4ZDeeLevopCGL2oUI4FcUR4-1Hk,402
923
- ultracart_rest_sdk-4.1.21.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
924
- ultracart_rest_sdk-4.1.21.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
925
- ultracart_rest_sdk-4.1.21.dist-info/RECORD,,
921
+ ultracart_rest_sdk-4.1.22.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
922
+ ultracart_rest_sdk-4.1.22.dist-info/METADATA,sha256=MSyg-KK8FUuEO_uE05llUx6hyvz4gVQwh-R5axik0o0,402
923
+ ultracart_rest_sdk-4.1.22.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
924
+ ultracart_rest_sdk-4.1.22.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
925
+ ultracart_rest_sdk-4.1.22.dist-info/RECORD,,