ultracart-rest-sdk 4.1.14__py3-none-any.whl → 4.1.16__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.
@@ -0,0 +1,292 @@
1
+ """
2
+ UltraCart Rest API V2
3
+
4
+ UltraCart REST API Version 2 # noqa: E501
5
+
6
+ The version of the OpenAPI document: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://openapi-generator.tech
9
+ """
10
+
11
+
12
+ import re # noqa: F401
13
+ import sys # noqa: F401
14
+
15
+ from ultracart.model_utils import ( # noqa: F401
16
+ ApiTypeError,
17
+ ModelComposed,
18
+ ModelNormal,
19
+ ModelSimple,
20
+ cached_property,
21
+ change_keys_js_to_python,
22
+ convert_js_args_to_python_args,
23
+ date,
24
+ datetime,
25
+ file_type,
26
+ none_type,
27
+ validate_get_composed_info,
28
+ OpenApiModel
29
+ )
30
+ from ultracart.exceptions import ApiAttributeError
31
+
32
+
33
+ def lazy_import():
34
+ from ultracart.model.custom_report import CustomReport
35
+ from ultracart.model.error import Error
36
+ from ultracart.model.response_metadata import ResponseMetadata
37
+ from ultracart.model.warning import Warning
38
+ globals()['CustomReport'] = CustomReport
39
+ globals()['Error'] = Error
40
+ globals()['ResponseMetadata'] = ResponseMetadata
41
+ globals()['Warning'] = Warning
42
+
43
+
44
+ class CustomReportsResponse(ModelNormal):
45
+ """NOTE: This class is auto generated by OpenAPI Generator.
46
+ Ref: https://openapi-generator.tech
47
+
48
+ Do not edit the class manually.
49
+
50
+ Attributes:
51
+ allowed_values (dict): The key is the tuple path to the attribute
52
+ and the for var_name this is (var_name,). The value is a dict
53
+ with a capitalized key describing the allowed value and an allowed
54
+ value. These dicts store the allowed enum values.
55
+ attribute_map (dict): The key is attribute name
56
+ and the value is json key in definition.
57
+ discriminator_value_class_map (dict): A dict to go from the discriminator
58
+ variable value to the discriminator class name.
59
+ validations (dict): The key is the tuple path to the attribute
60
+ and the for var_name this is (var_name,). The value is a dict
61
+ that stores validations for max_length, min_length, max_items,
62
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
63
+ inclusive_minimum, and regex.
64
+ additional_properties_type (tuple): A tuple of classes accepted
65
+ as additional properties values.
66
+ """
67
+
68
+ allowed_values = {
69
+ }
70
+
71
+ validations = {
72
+ }
73
+
74
+ @cached_property
75
+ def additional_properties_type():
76
+ """
77
+ This must be a method because a model may have properties that are
78
+ of type self, this must run after the class is loaded
79
+ """
80
+ lazy_import()
81
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
82
+
83
+ _nullable = False
84
+
85
+ @cached_property
86
+ def openapi_types():
87
+ """
88
+ This must be a method because a model may have properties that are
89
+ of type self, this must run after the class is loaded
90
+
91
+ Returns
92
+ openapi_types (dict): The key is attribute name
93
+ and the value is attribute type.
94
+ """
95
+ lazy_import()
96
+ return {
97
+ 'error': (Error,), # noqa: E501
98
+ 'metadata': (ResponseMetadata,), # noqa: E501
99
+ 'reports': ([CustomReport],), # noqa: E501
100
+ 'success': (bool,), # noqa: E501
101
+ 'warning': (Warning,), # noqa: E501
102
+ }
103
+
104
+ @cached_property
105
+ def discriminator():
106
+ return None
107
+
108
+
109
+ attribute_map = {
110
+ 'error': 'error', # noqa: E501
111
+ 'metadata': 'metadata', # noqa: E501
112
+ 'reports': 'reports', # noqa: E501
113
+ 'success': 'success', # noqa: E501
114
+ 'warning': 'warning', # noqa: E501
115
+ }
116
+
117
+ read_only_vars = {
118
+ }
119
+
120
+ _composed_schemas = {}
121
+
122
+ @classmethod
123
+ @convert_js_args_to_python_args
124
+ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
125
+ """CustomReportsResponse - a model defined in OpenAPI
126
+
127
+ Keyword Args:
128
+ _check_type (bool): if True, values for parameters in openapi_types
129
+ will be type checked and a TypeError will be
130
+ raised if the wrong type is input.
131
+ Defaults to True
132
+ _path_to_item (tuple/list): This is a list of keys or values to
133
+ drill down to the model in received_data
134
+ when deserializing a response
135
+ _spec_property_naming (bool): True if the variable names in the input data
136
+ are serialized names, as specified in the OpenAPI document.
137
+ False if the variable names in the input data
138
+ are pythonic names, e.g. snake case (default)
139
+ _configuration (Configuration): the instance to use when
140
+ deserializing a file_type parameter.
141
+ If passed, type conversion is attempted
142
+ If omitted no type conversion is done.
143
+ _visited_composed_classes (tuple): This stores a tuple of
144
+ classes that we have traveled through so that
145
+ if we see that class again we will not use its
146
+ discriminator again.
147
+ When traveling through a discriminator, the
148
+ composed schema that is
149
+ is traveled through is added to this set.
150
+ For example if Animal has a discriminator
151
+ petType and we pass in "Dog", and the class Dog
152
+ allOf includes Animal, we move through Animal
153
+ once using the discriminator, and pick Dog.
154
+ Then in Dog, we will make an instance of the
155
+ Animal class but this time we won't travel
156
+ through its discriminator because we passed in
157
+ _visited_composed_classes = (Animal,)
158
+ error (Error): [optional] # noqa: E501
159
+ metadata (ResponseMetadata): [optional] # noqa: E501
160
+ reports ([CustomReport]): reports. [optional] # noqa: E501
161
+ success (bool): Indicates if API call was successful. [optional] # noqa: E501
162
+ warning (Warning): [optional] # noqa: E501
163
+ """
164
+
165
+ _check_type = kwargs.pop('_check_type', True)
166
+ _spec_property_naming = kwargs.pop('_spec_property_naming', True)
167
+ _path_to_item = kwargs.pop('_path_to_item', ())
168
+ _configuration = kwargs.pop('_configuration', None)
169
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
170
+
171
+ self = super(OpenApiModel, cls).__new__(cls)
172
+
173
+ if args:
174
+ for arg in args:
175
+ if isinstance(arg, dict):
176
+ kwargs.update(arg)
177
+ else:
178
+ raise ApiTypeError(
179
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
180
+ args,
181
+ self.__class__.__name__,
182
+ ),
183
+ path_to_item=_path_to_item,
184
+ valid_classes=(self.__class__,),
185
+ )
186
+
187
+ self._data_store = {}
188
+ self._check_type = _check_type
189
+ self._spec_property_naming = _spec_property_naming
190
+ self._path_to_item = _path_to_item
191
+ self._configuration = _configuration
192
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
193
+
194
+ for var_name, var_value in kwargs.items():
195
+ if var_name not in self.attribute_map and \
196
+ self._configuration is not None and \
197
+ self._configuration.discard_unknown_keys and \
198
+ self.additional_properties_type is None:
199
+ # discard variable.
200
+ continue
201
+ setattr(self, var_name, var_value)
202
+ return self
203
+
204
+ required_properties = set([
205
+ '_data_store',
206
+ '_check_type',
207
+ '_spec_property_naming',
208
+ '_path_to_item',
209
+ '_configuration',
210
+ '_visited_composed_classes',
211
+ ])
212
+
213
+ @convert_js_args_to_python_args
214
+ def __init__(self, *args, **kwargs): # noqa: E501
215
+ """CustomReportsResponse - a model defined in OpenAPI
216
+
217
+ Keyword Args:
218
+ _check_type (bool): if True, values for parameters in openapi_types
219
+ will be type checked and a TypeError will be
220
+ raised if the wrong type is input.
221
+ Defaults to True
222
+ _path_to_item (tuple/list): This is a list of keys or values to
223
+ drill down to the model in received_data
224
+ when deserializing a response
225
+ _spec_property_naming (bool): True if the variable names in the input data
226
+ are serialized names, as specified in the OpenAPI document.
227
+ False if the variable names in the input data
228
+ are pythonic names, e.g. snake case (default)
229
+ _configuration (Configuration): the instance to use when
230
+ deserializing a file_type parameter.
231
+ If passed, type conversion is attempted
232
+ If omitted no type conversion is done.
233
+ _visited_composed_classes (tuple): This stores a tuple of
234
+ classes that we have traveled through so that
235
+ if we see that class again we will not use its
236
+ discriminator again.
237
+ When traveling through a discriminator, the
238
+ composed schema that is
239
+ is traveled through is added to this set.
240
+ For example if Animal has a discriminator
241
+ petType and we pass in "Dog", and the class Dog
242
+ allOf includes Animal, we move through Animal
243
+ once using the discriminator, and pick Dog.
244
+ Then in Dog, we will make an instance of the
245
+ Animal class but this time we won't travel
246
+ through its discriminator because we passed in
247
+ _visited_composed_classes = (Animal,)
248
+ error (Error): [optional] # noqa: E501
249
+ metadata (ResponseMetadata): [optional] # noqa: E501
250
+ reports ([CustomReport]): reports. [optional] # noqa: E501
251
+ success (bool): Indicates if API call was successful. [optional] # noqa: E501
252
+ warning (Warning): [optional] # noqa: E501
253
+ """
254
+
255
+ _check_type = kwargs.pop('_check_type', True)
256
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
257
+ _path_to_item = kwargs.pop('_path_to_item', ())
258
+ _configuration = kwargs.pop('_configuration', None)
259
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
260
+
261
+ if args:
262
+ for arg in args:
263
+ if isinstance(arg, dict):
264
+ kwargs.update(arg)
265
+ else:
266
+ raise ApiTypeError(
267
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
268
+ args,
269
+ self.__class__.__name__,
270
+ ),
271
+ path_to_item=_path_to_item,
272
+ valid_classes=(self.__class__,),
273
+ )
274
+
275
+ self._data_store = {}
276
+ self._check_type = _check_type
277
+ self._spec_property_naming = _spec_property_naming
278
+ self._path_to_item = _path_to_item
279
+ self._configuration = _configuration
280
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
281
+
282
+ for var_name, var_value in kwargs.items():
283
+ if var_name not in self.attribute_map and \
284
+ self._configuration is not None and \
285
+ self._configuration.discard_unknown_keys and \
286
+ self.additional_properties_type is None:
287
+ # discard variable.
288
+ continue
289
+ setattr(self, var_name, var_value)
290
+ if var_name in self.read_only_vars:
291
+ raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
292
+ f"class with read only attributes.")
ultracart/model/item.py CHANGED
@@ -355,7 +355,7 @@ class Item(ModelNormal):
355
355
  merchant_item_oid (int): Unique object identifier for this item. [optional] # noqa: E501
356
356
  options ([ItemOption]): Options. [optional] # noqa: E501
357
357
  parent_category_id (int): Parent category of the item. Zero indicates the root folder.. [optional] # noqa: E501
358
- parent_category_path (str): Parent category path. / indicates the root folder.. [optional] # noqa: E501
358
+ parent_category_path (str): Parent category path. / indicates the root folder. This is the folder structure within item management.. [optional] # noqa: E501
359
359
  payment_processing (ItemPaymentProcessing): [optional] # noqa: E501
360
360
  physical (ItemPhysical): [optional] # noqa: E501
361
361
  pricing (ItemPricing): [optional] # noqa: E501
@@ -491,7 +491,7 @@ class Item(ModelNormal):
491
491
  merchant_item_oid (int): Unique object identifier for this item. [optional] # noqa: E501
492
492
  options ([ItemOption]): Options. [optional] # noqa: E501
493
493
  parent_category_id (int): Parent category of the item. Zero indicates the root folder.. [optional] # noqa: E501
494
- parent_category_path (str): Parent category path. / indicates the root folder.. [optional] # noqa: E501
494
+ parent_category_path (str): Parent category path. / indicates the root folder. This is the folder structure within item management.. [optional] # noqa: E501
495
495
  payment_processing (ItemPaymentProcessing): [optional] # noqa: E501
496
496
  physical (ItemPhysical): [optional] # noqa: E501
497
497
  pricing (ItemPricing): [optional] # noqa: E501
@@ -313,6 +313,17 @@ from ultracart.model.coupon_type import CouponType
313
313
  from ultracart.model.coupons_request import CouponsRequest
314
314
  from ultracart.model.coupons_response import CouponsResponse
315
315
  from ultracart.model.currency import Currency
316
+ from ultracart.model.custom_report import CustomReport
317
+ from ultracart.model.custom_report_account_config import CustomReportAccountConfig
318
+ from ultracart.model.custom_report_account_config_response import CustomReportAccountConfigResponse
319
+ from ultracart.model.custom_report_execution_parameter import CustomReportExecutionParameter
320
+ from ultracart.model.custom_report_execution_request import CustomReportExecutionRequest
321
+ from ultracart.model.custom_report_parameter import CustomReportParameter
322
+ from ultracart.model.custom_report_parameter_option import CustomReportParameterOption
323
+ from ultracart.model.custom_report_query import CustomReportQuery
324
+ from ultracart.model.custom_report_response import CustomReportResponse
325
+ from ultracart.model.custom_report_tooltip import CustomReportTooltip
326
+ from ultracart.model.custom_reports_response import CustomReportsResponse
316
327
  from ultracart.model.customer import Customer
317
328
  from ultracart.model.customer_activity import CustomerActivity
318
329
  from ultracart.model.customer_affiliate import CustomerAffiliate
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ultracart-rest-sdk
3
- Version: 4.1.14
3
+ Version: 4.1.16
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=MyyvbFe_Oawg78qYpPl0oRl2bgjcbLPu_STwxH0uM14,698
2
- ultracart/api_client.py,sha256=Esukmfs5mtR0TZb-04uvhi7XrEgkKD09Jihbe78_qes,39071
3
- ultracart/configuration.py,sha256=GIQgqj0UTK3WbH2onnaUqRcUg-REGACWY6WG8puUEBc,17841
1
+ ultracart/__init__.py,sha256=0P_f967dyix6_ciAezcjJQIxKI0WLqV4BgjhIppINA4,698
2
+ ultracart/api_client.py,sha256=MSLonzqbhCpNwuwJHXt2662QeEoyBNJscmlZnvGU6h0,39071
3
+ ultracart/configuration.py,sha256=BVpSc3SFUY9oz4Z9orZsRO7aoz6D08cDgULc6gVebj4,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
@@ -13,18 +13,18 @@ ultracart/api/checkout_api.py,sha256=KLZAsTMiY55AHDhubbNZYipBPGwihQbEsLDjIDzkLkQ
13
13
  ultracart/api/conversation_api.py,sha256=deOzEvUmURbCPVHPgGAsascLOt5R5qXrJ4JgjrUCXyU,468220
14
14
  ultracart/api/coupon_api.py,sha256=voBpCzDhuBog_0WKSj9J-2zKSI8LyJINjUneeLAwlHg,109039
15
15
  ultracart/api/customer_api.py,sha256=I9skXHJZw9asr5LnRnE3vbVNMadjLm_2bDrNhr-mnfg,146498
16
- ultracart/api/datawarehouse_api.py,sha256=4UdypzYNcDwgHeyWqK1x6WARC62u9CmbfVTGhryOq5I,52975
16
+ ultracart/api/datawarehouse_api.py,sha256=1qNqAp7NSGqd1v06Lea_qg4XBOWu7gAL1bc4APyOXv0,95156
17
17
  ultracart/api/fulfillment_api.py,sha256=JD4uwms4Mz5XWmLBnOo-nDT6GHKW-uI2xt_YjwieJLU,35275
18
18
  ultracart/api/gift_certificate_api.py,sha256=2TkzQhqCMcPf8Ro14eRycy0LtPxfC7n67GSMRrMcNuc,46858
19
19
  ultracart/api/integration_log_api.py,sha256=t8spQtDERkGKISq7JtDNkA1MsQXp8qV8lSuXIhy0lEc,30164
20
20
  ultracart/api/item_api.py,sha256=Mig0efruQ_KXKqqATbQAYmynq_Rwj1FcejQd_iq8mlc,134676
21
21
  ultracart/api/oauth_api.py,sha256=ZgwVvUNQybiol1gdS8OjQY60ElUsEPmtFgSSb5Ys5SI,13633
22
- ultracart/api/order_api.py,sha256=raD-2d94gwpZJ2MBM9ALdk9gzeSFYlH2lZRduD5ddV0,169868
22
+ ultracart/api/order_api.py,sha256=TbypsoBWldwgrEB-kxYXicAKpARLp2iMw3EXiKiMRj0,172011
23
23
  ultracart/api/sso_api.py,sha256=Ct9oau71nCUKecojo_1kkXRcIqPxhlVZiST2bdjLJJ8,21632
24
24
  ultracart/api/storefront_api.py,sha256=tItFugj94AYHHfGJLbhMlMkErGP1ItZoiOeqtdRafGw,1017735
25
25
  ultracart/api/tax_api.py,sha256=aQZaRsIXlFNDPwXYAykApv3KaAGfV-ZHB6QPBbEK-P0,148671
26
26
  ultracart/api/user_api.py,sha256=LrzuXSpBa5V_rS8iRDRRhFYnUZN9fR2Y54FRnJ_fpiI,56627
27
- ultracart/api/webhook_api.py,sha256=G3dR3EmddQABH5S1LoIJMIczDhoF2YWFQcw7maFg3s0,48476
27
+ ultracart/api/webhook_api.py,sha256=YCauQnRNn13DZ9StEaSItzhOztXjzOUC-ipcnK8Ag58,46732
28
28
  ultracart/api/workflow_api.py,sha256=R9FwRKXTwilS9hKnDYGtjTeTj4jnZln3QHQxh1JH-JU,64957
29
29
  ultracart/apis/__init__.py,sha256=34qpEkWA4o5K2-EOU97Cv8OiaFpey9RrjxQ4tr-hIX4,1521
30
30
  ultracart/model/__init__.py,sha256=suxHGMXD01EjVybiiQCxwC2UxGr-ARfz-MQPkowHO6w,343
@@ -128,7 +128,7 @@ ultracart/model/cart_settings_terms.py,sha256=yQjf46a2JpDv99pmSuQdf5tnLa8PTYjq-w
128
128
  ultracart/model/cart_shipping.py,sha256=Ku-sta1B4hntBNPjGApbOCPncYjfQE1_NFnOAKZ0EDU,17806
129
129
  ultracart/model/cart_summary.py,sha256=IicxmQjoDpZBU5PbzwfJqj6ZWuqia_FMYiXJpiZgB14,16948
130
130
  ultracart/model/cart_taxes.py,sha256=kyaaigzZVn4gkaI8ynhJ9Lh05VNb9OQfhOYTqMzS2KY,11961
131
- ultracart/model/cart_upsell_after.py,sha256=FW72bbr4rlQ6J8UAMN33WxgJc_GgA16iQOMJ2Lmcu-I,12497
131
+ ultracart/model/cart_upsell_after.py,sha256=Iw-R6pEiGBv5t0YQpME3Pl3VYUBDyLE0oHWFwyoA3GI,13474
132
132
  ultracart/model/cart_validation_request.py,sha256=n_UJMsC4LKR0C7NSXELwi4aF1McbkuNppvcM_LC2uOE,11782
133
133
  ultracart/model/cart_validation_response.py,sha256=ENGgzQdIPkXAKM6yNk9LyOKyu2YrLr9dzCGYyfCniqE,11909
134
134
  ultracart/model/chanel_partner_reason_codes_response.py,sha256=QAkNinQyhSuv41nf8BXgwSBUrDBcxEffv74V5fC2rVs,15514
@@ -250,7 +250,7 @@ ultracart/model/conversation_summary.py,sha256=0i8GstJNBSy6uItPgsIXA02V2zehOpUhj
250
250
  ultracart/model/conversation_twilio_account.py,sha256=E-UV15UQjZJwQDfG_9qggZjoSDSP72YnXu8LyE7q-TQ,11723
251
251
  ultracart/model/conversation_virtual_agent_budget.py,sha256=PRCNTgiHi-00tmwzMQo9TB2Uq6OkjHDsM-PkGbzqWvQ,12157
252
252
  ultracart/model/conversation_virtual_agent_budget_response.py,sha256=oA6EwrXgQ5-xvXcfU5-76a2GQB59t9Fk8DCXsoaE9Ks,12977
253
- ultracart/model/conversation_virtual_agent_capabilities.py,sha256=EIVQ6QtMZ9stBuiY9-BZX-LEnWoKPsf5cIDeqaMHlIY,13758
253
+ ultracart/model/conversation_virtual_agent_capabilities.py,sha256=VG2LpyaHNIlNg28Pe-120zhD-otEtAiH5dsMjhMFPLY,14739
254
254
  ultracart/model/conversation_virtual_agent_capabilities_response.py,sha256=4RftOI59iQvVbRTFzK8dJwgwxXuZqAlVlhdOrQcPDPU,13067
255
255
  ultracart/model/conversation_webchat_context.py,sha256=_DgYNiy2WOVMcEuM9Un-aLqRuWUstG0IC3BLnFmYtCk,13789
256
256
  ultracart/model/conversation_webchat_queue_status.py,sha256=s2o5xhzatNYdo6jWwjDl76rzjbgRLJcU-qr9BoPB3Zg,16005
@@ -332,6 +332,17 @@ ultracart/model/coupon_type.py,sha256=jGQ4jJ6nJ18F3LrZ_CTNdeVXcgOCBAY_AQ4EqoodG0
332
332
  ultracart/model/coupons_request.py,sha256=LGP_gTnJTa8koXe_dvd4Gq3FTbv1NJNlwCbo8w72o5M,11582
333
333
  ultracart/model/coupons_response.py,sha256=Mllh7PHtGgtEpEECB3xXudvcWLfuiFUUfyms_0F_K54,12748
334
334
  ultracart/model/currency.py,sha256=5j7b7UBSSQTG53CI7daieMmL0trGPNPoIxM_4fckR_4,12648
335
+ ultracart/model/custom_report.py,sha256=notiYnmefTaKCNDprqQYTB2YismSRq6h0Lkk5vqh0vg,14112
336
+ ultracart/model/custom_report_account_config.py,sha256=oCjAsAHFq_am0zCwgO03ThgFGhXJio7UDvBc5sVVhQw,13607
337
+ ultracart/model/custom_report_account_config_response.py,sha256=zh3oqi7Pt90rXJ9MUiCNbLq90zBZEVQ2Mek9yF6OQ-g,12967
338
+ ultracart/model/custom_report_execution_parameter.py,sha256=SkPErOb6F6A2xaJrKmv5K-tLMH7UbgkN_l7nkp8AAMI,11800
339
+ ultracart/model/custom_report_execution_request.py,sha256=0FUDMMQDYDSe5sdM4NxQElcGg2orYKeS0ymSCQ-zWOU,11792
340
+ ultracart/model/custom_report_parameter.py,sha256=yx3zZJBCGUxqeP2v1_hLkK9YfSxfoRNVtb_2vvalzhc,12688
341
+ ultracart/model/custom_report_parameter_option.py,sha256=evtUYP8rkmD8i26e1b-e_0sJWUAjvmt3QHFXw_zyCEA,11648
342
+ ultracart/model/custom_report_query.py,sha256=r4CgFzK-Ilx9EAoJl0MHcCrG3aJ7Ba0VfGYB-YJqNZ8,12576
343
+ ultracart/model/custom_report_response.py,sha256=TJzALSmjMp2mXisUEjbljqw92v8grVhi8anpTFBEhiI,12795
344
+ ultracart/model/custom_report_tooltip.py,sha256=X68kCck4tsfU2CQbZCKsuJmuIxVCGMUCB1qX3WBZs8Q,11634
345
+ ultracart/model/custom_reports_response.py,sha256=0siuxCxjdqkqbKdQFFE7_hHuXUafAbcepFWj9CQ72bY,12827
335
346
  ultracart/model/customer.py,sha256=4IFDo1fb_WO2b2mXTwFZZ7pXOLPcfsyAgQ6jul3Sr7U,33232
336
347
  ultracart/model/customer_activity.py,sha256=kf557fU6WEsJWIXpMM569JG8D4g3aJIcgsQJejkmyKw,13685
337
348
  ultracart/model/customer_affiliate.py,sha256=yJtbxEcyJzfeU9PZ5jxlk-rfFuixTHMLDqFKBqjpP2Y,12157
@@ -536,7 +547,7 @@ ultracart/model/integration_log_response.py,sha256=XK0SWmPsAtd6uj4SIW6XreGvtwm3Y
536
547
  ultracart/model/integration_log_summary.py,sha256=kxcFvfKVsOTqOLGdPqTQ4xmrpEFPB4EJZjDaqzNWsWk,13001
537
548
  ultracart/model/integration_log_summary_query_request.py,sha256=HqglWiY5JkT6lhxeP0tbONkI6cvWXspQ0fh3_kRTX7w,11786
538
549
  ultracart/model/integration_log_summary_query_response.py,sha256=MKG2F6-bwrbmR4T2hYN_Ju2ffNtBbYsQ2aUPuEYyr8I,13002
539
- ultracart/model/item.py,sha256=ac73gzx3Ko8IHu4mXFMmcresRQ7ndPDbvTqO5h0O4Zg,30236
550
+ ultracart/model/item.py,sha256=0U40VO7ing_4j5OF4Mlw9aV4pK_tVRiLMwrJBxnITi8,30344
540
551
  ultracart/model/item_accounting.py,sha256=2tY0OmwmBfL6jgJKYN3H9uWEqmzyofnFoxbDYkMeg44,12033
541
552
  ultracart/model/item_amember.py,sha256=AtA_G1ftCCvRWkN4CjauKFrVo1Pfy4vt3iVusWqbVQk,12125
542
553
  ultracart/model/item_auto_order.py,sha256=ooGSPdJAqZ-e9HBvPHpBfSxWJiuooGcByDMBacaM1-k,21148
@@ -891,9 +902,9 @@ ultracart/model/workflow_tasks_response.py,sha256=KmHe72xKnZiS9CemBr5hluY5EsU9_x
891
902
  ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE41k,11903
892
903
  ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
893
904
  ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
894
- ultracart/models/__init__.py,sha256=ny_sseLdjDLsOo49QeMjJ4B1qZaKuNhBA8e6EW4H8uk,66731
895
- ultracart_rest_sdk-4.1.14.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
896
- ultracart_rest_sdk-4.1.14.dist-info/METADATA,sha256=LnW528O1gTPvDDy9ELhcWb1oWp2J6NC083HhhZrK8hM,402
897
- ultracart_rest_sdk-4.1.14.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
898
- ultracart_rest_sdk-4.1.14.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
899
- ultracart_rest_sdk-4.1.14.dist-info/RECORD,,
905
+ ultracart/models/__init__.py,sha256=cd_ymrS6ZUAyDIumeAizxmyOPgzybMdoNMCgwHyysOU,67594
906
+ ultracart_rest_sdk-4.1.16.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
907
+ ultracart_rest_sdk-4.1.16.dist-info/METADATA,sha256=gIl2rBLE0FE72BPb7UZfCnGaU7MiCHn0VjTTw_E4wUw,402
908
+ ultracart_rest_sdk-4.1.16.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
909
+ ultracart_rest_sdk-4.1.16.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
910
+ ultracart_rest_sdk-4.1.16.dist-info/RECORD,,