ultracart-rest-sdk 4.1.16__py3-none-any.whl → 4.1.18__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/datawarehouse_api.py +912 -95
- ultracart/api/storefront_api.py +136 -0
- ultracart/api_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/model/custom_dashboard.py +282 -0
- ultracart/model/custom_dashboard_page.py +278 -0
- ultracart/model/custom_dashboard_page_report.py +280 -0
- ultracart/model/custom_dashboard_response.py +292 -0
- ultracart/model/custom_dashboards_response.py +292 -0
- ultracart/model/custom_report_execution_response.py +306 -0
- ultracart/model/custom_reports_execution_report_data.py +272 -0
- ultracart/model/custom_reports_execution_request.py +274 -0
- ultracart/model/custom_reports_execution_response.py +298 -0
- ultracart/model/email_editor_values_response.py +290 -0
- ultracart/models/__init__.py +10 -0
- {ultracart_rest_sdk-4.1.16.dist-info → ultracart_rest_sdk-4.1.18.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.1.16.dist-info → ultracart_rest_sdk-4.1.18.dist-info}/RECORD +21 -11
- {ultracart_rest_sdk-4.1.16.dist-info → ultracart_rest_sdk-4.1.18.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.1.16.dist-info → ultracart_rest_sdk-4.1.18.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.1.16.dist-info → ultracart_rest_sdk-4.1.18.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,290 @@
|
|
|
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.error import Error
|
|
35
|
+
from ultracart.model.response_metadata import ResponseMetadata
|
|
36
|
+
from ultracart.model.warning import Warning
|
|
37
|
+
globals()['Error'] = Error
|
|
38
|
+
globals()['ResponseMetadata'] = ResponseMetadata
|
|
39
|
+
globals()['Warning'] = Warning
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
class EmailEditorValuesResponse(ModelNormal):
|
|
43
|
+
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
44
|
+
Ref: https://openapi-generator.tech
|
|
45
|
+
|
|
46
|
+
Do not edit the class manually.
|
|
47
|
+
|
|
48
|
+
Attributes:
|
|
49
|
+
allowed_values (dict): The key is the tuple path to the attribute
|
|
50
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
51
|
+
with a capitalized key describing the allowed value and an allowed
|
|
52
|
+
value. These dicts store the allowed enum values.
|
|
53
|
+
attribute_map (dict): The key is attribute name
|
|
54
|
+
and the value is json key in definition.
|
|
55
|
+
discriminator_value_class_map (dict): A dict to go from the discriminator
|
|
56
|
+
variable value to the discriminator class name.
|
|
57
|
+
validations (dict): The key is the tuple path to the attribute
|
|
58
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
59
|
+
that stores validations for max_length, min_length, max_items,
|
|
60
|
+
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
|
|
61
|
+
inclusive_minimum, and regex.
|
|
62
|
+
additional_properties_type (tuple): A tuple of classes accepted
|
|
63
|
+
as additional properties values.
|
|
64
|
+
"""
|
|
65
|
+
|
|
66
|
+
allowed_values = {
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
validations = {
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@cached_property
|
|
73
|
+
def additional_properties_type():
|
|
74
|
+
"""
|
|
75
|
+
This must be a method because a model may have properties that are
|
|
76
|
+
of type self, this must run after the class is loaded
|
|
77
|
+
"""
|
|
78
|
+
lazy_import()
|
|
79
|
+
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
|
|
80
|
+
|
|
81
|
+
_nullable = False
|
|
82
|
+
|
|
83
|
+
@cached_property
|
|
84
|
+
def openapi_types():
|
|
85
|
+
"""
|
|
86
|
+
This must be a method because a model may have properties that are
|
|
87
|
+
of type self, this must run after the class is loaded
|
|
88
|
+
|
|
89
|
+
Returns
|
|
90
|
+
openapi_types (dict): The key is attribute name
|
|
91
|
+
and the value is attribute type.
|
|
92
|
+
"""
|
|
93
|
+
lazy_import()
|
|
94
|
+
return {
|
|
95
|
+
'error': (Error,), # noqa: E501
|
|
96
|
+
'loyalty_tiers': ([str],), # noqa: E501
|
|
97
|
+
'metadata': (ResponseMetadata,), # noqa: E501
|
|
98
|
+
'success': (bool,), # noqa: E501
|
|
99
|
+
'warning': (Warning,), # noqa: E501
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@cached_property
|
|
103
|
+
def discriminator():
|
|
104
|
+
return None
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
attribute_map = {
|
|
108
|
+
'error': 'error', # noqa: E501
|
|
109
|
+
'loyalty_tiers': 'loyalty_tiers', # noqa: E501
|
|
110
|
+
'metadata': 'metadata', # noqa: E501
|
|
111
|
+
'success': 'success', # noqa: E501
|
|
112
|
+
'warning': 'warning', # noqa: E501
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
read_only_vars = {
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
_composed_schemas = {}
|
|
119
|
+
|
|
120
|
+
@classmethod
|
|
121
|
+
@convert_js_args_to_python_args
|
|
122
|
+
def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
|
|
123
|
+
"""EmailEditorValuesResponse - a model defined in OpenAPI
|
|
124
|
+
|
|
125
|
+
Keyword Args:
|
|
126
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
127
|
+
will be type checked and a TypeError will be
|
|
128
|
+
raised if the wrong type is input.
|
|
129
|
+
Defaults to True
|
|
130
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
131
|
+
drill down to the model in received_data
|
|
132
|
+
when deserializing a response
|
|
133
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
134
|
+
are serialized names, as specified in the OpenAPI document.
|
|
135
|
+
False if the variable names in the input data
|
|
136
|
+
are pythonic names, e.g. snake case (default)
|
|
137
|
+
_configuration (Configuration): the instance to use when
|
|
138
|
+
deserializing a file_type parameter.
|
|
139
|
+
If passed, type conversion is attempted
|
|
140
|
+
If omitted no type conversion is done.
|
|
141
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
142
|
+
classes that we have traveled through so that
|
|
143
|
+
if we see that class again we will not use its
|
|
144
|
+
discriminator again.
|
|
145
|
+
When traveling through a discriminator, the
|
|
146
|
+
composed schema that is
|
|
147
|
+
is traveled through is added to this set.
|
|
148
|
+
For example if Animal has a discriminator
|
|
149
|
+
petType and we pass in "Dog", and the class Dog
|
|
150
|
+
allOf includes Animal, we move through Animal
|
|
151
|
+
once using the discriminator, and pick Dog.
|
|
152
|
+
Then in Dog, we will make an instance of the
|
|
153
|
+
Animal class but this time we won't travel
|
|
154
|
+
through its discriminator because we passed in
|
|
155
|
+
_visited_composed_classes = (Animal,)
|
|
156
|
+
error (Error): [optional] # noqa: E501
|
|
157
|
+
loyalty_tiers ([str]): [optional] # noqa: E501
|
|
158
|
+
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
159
|
+
success (bool): Indicates if API call was successful. [optional] # noqa: E501
|
|
160
|
+
warning (Warning): [optional] # noqa: E501
|
|
161
|
+
"""
|
|
162
|
+
|
|
163
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
164
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', True)
|
|
165
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
166
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
167
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
168
|
+
|
|
169
|
+
self = super(OpenApiModel, cls).__new__(cls)
|
|
170
|
+
|
|
171
|
+
if args:
|
|
172
|
+
for arg in args:
|
|
173
|
+
if isinstance(arg, dict):
|
|
174
|
+
kwargs.update(arg)
|
|
175
|
+
else:
|
|
176
|
+
raise ApiTypeError(
|
|
177
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
178
|
+
args,
|
|
179
|
+
self.__class__.__name__,
|
|
180
|
+
),
|
|
181
|
+
path_to_item=_path_to_item,
|
|
182
|
+
valid_classes=(self.__class__,),
|
|
183
|
+
)
|
|
184
|
+
|
|
185
|
+
self._data_store = {}
|
|
186
|
+
self._check_type = _check_type
|
|
187
|
+
self._spec_property_naming = _spec_property_naming
|
|
188
|
+
self._path_to_item = _path_to_item
|
|
189
|
+
self._configuration = _configuration
|
|
190
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
191
|
+
|
|
192
|
+
for var_name, var_value in kwargs.items():
|
|
193
|
+
if var_name not in self.attribute_map and \
|
|
194
|
+
self._configuration is not None and \
|
|
195
|
+
self._configuration.discard_unknown_keys and \
|
|
196
|
+
self.additional_properties_type is None:
|
|
197
|
+
# discard variable.
|
|
198
|
+
continue
|
|
199
|
+
setattr(self, var_name, var_value)
|
|
200
|
+
return self
|
|
201
|
+
|
|
202
|
+
required_properties = set([
|
|
203
|
+
'_data_store',
|
|
204
|
+
'_check_type',
|
|
205
|
+
'_spec_property_naming',
|
|
206
|
+
'_path_to_item',
|
|
207
|
+
'_configuration',
|
|
208
|
+
'_visited_composed_classes',
|
|
209
|
+
])
|
|
210
|
+
|
|
211
|
+
@convert_js_args_to_python_args
|
|
212
|
+
def __init__(self, *args, **kwargs): # noqa: E501
|
|
213
|
+
"""EmailEditorValuesResponse - a model defined in OpenAPI
|
|
214
|
+
|
|
215
|
+
Keyword Args:
|
|
216
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
217
|
+
will be type checked and a TypeError will be
|
|
218
|
+
raised if the wrong type is input.
|
|
219
|
+
Defaults to True
|
|
220
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
221
|
+
drill down to the model in received_data
|
|
222
|
+
when deserializing a response
|
|
223
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
224
|
+
are serialized names, as specified in the OpenAPI document.
|
|
225
|
+
False if the variable names in the input data
|
|
226
|
+
are pythonic names, e.g. snake case (default)
|
|
227
|
+
_configuration (Configuration): the instance to use when
|
|
228
|
+
deserializing a file_type parameter.
|
|
229
|
+
If passed, type conversion is attempted
|
|
230
|
+
If omitted no type conversion is done.
|
|
231
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
232
|
+
classes that we have traveled through so that
|
|
233
|
+
if we see that class again we will not use its
|
|
234
|
+
discriminator again.
|
|
235
|
+
When traveling through a discriminator, the
|
|
236
|
+
composed schema that is
|
|
237
|
+
is traveled through is added to this set.
|
|
238
|
+
For example if Animal has a discriminator
|
|
239
|
+
petType and we pass in "Dog", and the class Dog
|
|
240
|
+
allOf includes Animal, we move through Animal
|
|
241
|
+
once using the discriminator, and pick Dog.
|
|
242
|
+
Then in Dog, we will make an instance of the
|
|
243
|
+
Animal class but this time we won't travel
|
|
244
|
+
through its discriminator because we passed in
|
|
245
|
+
_visited_composed_classes = (Animal,)
|
|
246
|
+
error (Error): [optional] # noqa: E501
|
|
247
|
+
loyalty_tiers ([str]): [optional] # noqa: E501
|
|
248
|
+
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
249
|
+
success (bool): Indicates if API call was successful. [optional] # noqa: E501
|
|
250
|
+
warning (Warning): [optional] # noqa: E501
|
|
251
|
+
"""
|
|
252
|
+
|
|
253
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
254
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
|
255
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
256
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
257
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
258
|
+
|
|
259
|
+
if args:
|
|
260
|
+
for arg in args:
|
|
261
|
+
if isinstance(arg, dict):
|
|
262
|
+
kwargs.update(arg)
|
|
263
|
+
else:
|
|
264
|
+
raise ApiTypeError(
|
|
265
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
266
|
+
args,
|
|
267
|
+
self.__class__.__name__,
|
|
268
|
+
),
|
|
269
|
+
path_to_item=_path_to_item,
|
|
270
|
+
valid_classes=(self.__class__,),
|
|
271
|
+
)
|
|
272
|
+
|
|
273
|
+
self._data_store = {}
|
|
274
|
+
self._check_type = _check_type
|
|
275
|
+
self._spec_property_naming = _spec_property_naming
|
|
276
|
+
self._path_to_item = _path_to_item
|
|
277
|
+
self._configuration = _configuration
|
|
278
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
279
|
+
|
|
280
|
+
for var_name, var_value in kwargs.items():
|
|
281
|
+
if var_name not in self.attribute_map and \
|
|
282
|
+
self._configuration is not None and \
|
|
283
|
+
self._configuration.discard_unknown_keys and \
|
|
284
|
+
self.additional_properties_type is None:
|
|
285
|
+
# discard variable.
|
|
286
|
+
continue
|
|
287
|
+
setattr(self, var_name, var_value)
|
|
288
|
+
if var_name in self.read_only_vars:
|
|
289
|
+
raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
|
|
290
|
+
f"class with read only attributes.")
|
ultracart/models/__init__.py
CHANGED
|
@@ -313,16 +313,25 @@ 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_dashboard import CustomDashboard
|
|
317
|
+
from ultracart.model.custom_dashboard_page import CustomDashboardPage
|
|
318
|
+
from ultracart.model.custom_dashboard_page_report import CustomDashboardPageReport
|
|
319
|
+
from ultracart.model.custom_dashboard_response import CustomDashboardResponse
|
|
320
|
+
from ultracart.model.custom_dashboards_response import CustomDashboardsResponse
|
|
316
321
|
from ultracart.model.custom_report import CustomReport
|
|
317
322
|
from ultracart.model.custom_report_account_config import CustomReportAccountConfig
|
|
318
323
|
from ultracart.model.custom_report_account_config_response import CustomReportAccountConfigResponse
|
|
319
324
|
from ultracart.model.custom_report_execution_parameter import CustomReportExecutionParameter
|
|
320
325
|
from ultracart.model.custom_report_execution_request import CustomReportExecutionRequest
|
|
326
|
+
from ultracart.model.custom_report_execution_response import CustomReportExecutionResponse
|
|
321
327
|
from ultracart.model.custom_report_parameter import CustomReportParameter
|
|
322
328
|
from ultracart.model.custom_report_parameter_option import CustomReportParameterOption
|
|
323
329
|
from ultracart.model.custom_report_query import CustomReportQuery
|
|
324
330
|
from ultracart.model.custom_report_response import CustomReportResponse
|
|
325
331
|
from ultracart.model.custom_report_tooltip import CustomReportTooltip
|
|
332
|
+
from ultracart.model.custom_reports_execution_report_data import CustomReportsExecutionReportData
|
|
333
|
+
from ultracart.model.custom_reports_execution_request import CustomReportsExecutionRequest
|
|
334
|
+
from ultracart.model.custom_reports_execution_response import CustomReportsExecutionResponse
|
|
326
335
|
from ultracart.model.custom_reports_response import CustomReportsResponse
|
|
327
336
|
from ultracart.model.customer import Customer
|
|
328
337
|
from ultracart.model.customer_activity import CustomerActivity
|
|
@@ -406,6 +415,7 @@ from ultracart.model.email_dashboard_activity_response import EmailDashboardActi
|
|
|
406
415
|
from ultracart.model.email_dashboard_stats_response import EmailDashboardStatsResponse
|
|
407
416
|
from ultracart.model.email_domain import EmailDomain
|
|
408
417
|
from ultracart.model.email_editor_token_response import EmailEditorTokenResponse
|
|
418
|
+
from ultracart.model.email_editor_values_response import EmailEditorValuesResponse
|
|
409
419
|
from ultracart.model.email_flow import EmailFlow
|
|
410
420
|
from ultracart.model.email_flow_back_populate_request import EmailFlowBackPopulateRequest
|
|
411
421
|
from ultracart.model.email_flow_back_populate_response import EmailFlowBackPopulateResponse
|
|
@@ -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=lX0XUlxZ_Vb_X4jOgWVyvoFIhapLbDJdyt9HJbAfnC8,698
|
|
2
|
+
ultracart/api_client.py,sha256=rs1ojXTEBJQfPcDvf4FN0rNbpIVGBCVyGIPnhDRjLRU,39071
|
|
3
|
+
ultracart/configuration.py,sha256=cU6bZDR6dtrCMvNcJGgHwR8qCfkhxMG8HpMMmtnHtmY,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,7 +13,7 @@ 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
|
|
16
|
+
ultracart/api/datawarehouse_api.py,sha256=-2_riiaMluMV_RLQlYGgFuW6LPDcWFpqhgAOE7Xn-kw,127081
|
|
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
|
|
@@ -21,7 +21,7 @@ ultracart/api/item_api.py,sha256=Mig0efruQ_KXKqqATbQAYmynq_Rwj1FcejQd_iq8mlc,134
|
|
|
21
21
|
ultracart/api/oauth_api.py,sha256=ZgwVvUNQybiol1gdS8OjQY60ElUsEPmtFgSSb5Ys5SI,13633
|
|
22
22
|
ultracart/api/order_api.py,sha256=TbypsoBWldwgrEB-kxYXicAKpARLp2iMw3EXiKiMRj0,172011
|
|
23
23
|
ultracart/api/sso_api.py,sha256=Ct9oau71nCUKecojo_1kkXRcIqPxhlVZiST2bdjLJJ8,21632
|
|
24
|
-
ultracart/api/storefront_api.py,sha256=
|
|
24
|
+
ultracart/api/storefront_api.py,sha256=KW7I4BrwG8V_lnu2qsRr5GsMWYDRjIA-LpgcPxcEi6I,1023048
|
|
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
27
|
ultracart/api/webhook_api.py,sha256=YCauQnRNn13DZ9StEaSItzhOztXjzOUC-ipcnK8Ag58,46732
|
|
@@ -332,16 +332,25 @@ 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_dashboard.py,sha256=UZgQngAhBPBtQH_QaoHymAVUVAs5KDTpwcl087ixl1Y,12374
|
|
336
|
+
ultracart/model/custom_dashboard_page.py,sha256=QiveXu9kmnWCWJP4W8j9Oee-H3oCzKsyaPhMRxxi_jI,12218
|
|
337
|
+
ultracart/model/custom_dashboard_page_report.py,sha256=C5Xy7ypi6fIXKzBKi_OMxZTMpf1g2yyscUvXz6E9Dn8,12361
|
|
338
|
+
ultracart/model/custom_dashboard_response.py,sha256=nNreAn3qdHuVc53EcT2A1TNIo4JsgWiTK23c4DwgWz0,12840
|
|
339
|
+
ultracart/model/custom_dashboards_response.py,sha256=A2wb6vQ6dZ9SIDLJSoKmnnCs5MjYOOHEEWNObnPutvw,12872
|
|
335
340
|
ultracart/model/custom_report.py,sha256=notiYnmefTaKCNDprqQYTB2YismSRq6h0Lkk5vqh0vg,14112
|
|
336
341
|
ultracart/model/custom_report_account_config.py,sha256=oCjAsAHFq_am0zCwgO03ThgFGhXJio7UDvBc5sVVhQw,13607
|
|
337
342
|
ultracart/model/custom_report_account_config_response.py,sha256=zh3oqi7Pt90rXJ9MUiCNbLq90zBZEVQ2Mek9yF6OQ-g,12967
|
|
338
343
|
ultracart/model/custom_report_execution_parameter.py,sha256=SkPErOb6F6A2xaJrKmv5K-tLMH7UbgkN_l7nkp8AAMI,11800
|
|
339
344
|
ultracart/model/custom_report_execution_request.py,sha256=0FUDMMQDYDSe5sdM4NxQElcGg2orYKeS0ymSCQ-zWOU,11792
|
|
345
|
+
ultracart/model/custom_report_execution_response.py,sha256=xvtvswpEyJV6kDVuZX2leJRVId3SKmWlXFS247nv2d8,13751
|
|
340
346
|
ultracart/model/custom_report_parameter.py,sha256=yx3zZJBCGUxqeP2v1_hLkK9YfSxfoRNVtb_2vvalzhc,12688
|
|
341
347
|
ultracart/model/custom_report_parameter_option.py,sha256=evtUYP8rkmD8i26e1b-e_0sJWUAjvmt3QHFXw_zyCEA,11648
|
|
342
348
|
ultracart/model/custom_report_query.py,sha256=r4CgFzK-Ilx9EAoJl0MHcCrG3aJ7Ba0VfGYB-YJqNZ8,12576
|
|
343
349
|
ultracart/model/custom_report_response.py,sha256=TJzALSmjMp2mXisUEjbljqw92v8grVhi8anpTFBEhiI,12795
|
|
344
350
|
ultracart/model/custom_report_tooltip.py,sha256=X68kCck4tsfU2CQbZCKsuJmuIxVCGMUCB1qX3WBZs8Q,11634
|
|
351
|
+
ultracart/model/custom_reports_execution_report_data.py,sha256=M0eFl1W0jJ7Sd5E_zZyno5YPhMnP_iGSDqyELP75jso,12016
|
|
352
|
+
ultracart/model/custom_reports_execution_request.py,sha256=y2skvUgw7X8whMWAjsAnI6R86NK8sc4DYJkmxrjSW4Q,12124
|
|
353
|
+
ultracart/model/custom_reports_execution_response.py,sha256=Ntk03s3ANP2UngJVkbEo2YvMs4ohlC0hUbvjKfLqv6Q,13452
|
|
345
354
|
ultracart/model/custom_reports_response.py,sha256=0siuxCxjdqkqbKdQFFE7_hHuXUafAbcepFWj9CQ72bY,12827
|
|
346
355
|
ultracart/model/customer.py,sha256=4IFDo1fb_WO2b2mXTwFZZ7pXOLPcfsyAgQ6jul3Sr7U,33232
|
|
347
356
|
ultracart/model/customer_activity.py,sha256=kf557fU6WEsJWIXpMM569JG8D4g3aJIcgsQJejkmyKw,13685
|
|
@@ -425,6 +434,7 @@ ultracart/model/email_dashboard_activity_response.py,sha256=cs2-tlep6LYepoLg83RK
|
|
|
425
434
|
ultracart/model/email_dashboard_stats_response.py,sha256=taFLjZqH5MSJCmXvALzQlyVe8XKZip3zncKCRCWYlpU,12796
|
|
426
435
|
ultracart/model/email_domain.py,sha256=HH-QUaOXIHlc-SyByLXlC0ZcCjSe4HLTMYgYt-aeMZs,14341
|
|
427
436
|
ultracart/model/email_editor_token_response.py,sha256=YOUxgdSUzIahQcWRntIpkKhzKhgtxccGvYO6oz9EjRs,12671
|
|
437
|
+
ultracart/model/email_editor_values_response.py,sha256=iaenZOfhsJOf9srT1sMp1s9c5EBViwsOfPWI3PYINj8,12720
|
|
428
438
|
ultracart/model/email_flow.py,sha256=Rr7ZVU3JhQwp532mEWOhyuEA1pyzYYn68eMJlvq-Wus,21649
|
|
429
439
|
ultracart/model/email_flow_back_populate_request.py,sha256=lmmJEUKwHBjzXJQoIfY4YKTu11nsThfjp1xX4yKWVgE,12051
|
|
430
440
|
ultracart/model/email_flow_back_populate_response.py,sha256=Huz_Aux8HnJVX47FnbF0xvzKTU8ait8g9aPAsGg0kc0,12503
|
|
@@ -902,9 +912,9 @@ ultracart/model/workflow_tasks_response.py,sha256=KmHe72xKnZiS9CemBr5hluY5EsU9_x
|
|
|
902
912
|
ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE41k,11903
|
|
903
913
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
904
914
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
905
|
-
ultracart/models/__init__.py,sha256=
|
|
906
|
-
ultracart_rest_sdk-4.1.
|
|
907
|
-
ultracart_rest_sdk-4.1.
|
|
908
|
-
ultracart_rest_sdk-4.1.
|
|
909
|
-
ultracart_rest_sdk-4.1.
|
|
910
|
-
ultracart_rest_sdk-4.1.
|
|
915
|
+
ultracart/models/__init__.py,sha256=7ECRa8ulgErwEDhqKwAK3VH-rUkfCrON9ZEc9awZydo,68422
|
|
916
|
+
ultracart_rest_sdk-4.1.18.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
917
|
+
ultracart_rest_sdk-4.1.18.dist-info/METADATA,sha256=7nSFpG5N-0xWN_72SH4Sf17wsP4_oKLWJ2_SSjb_5Ew,402
|
|
918
|
+
ultracart_rest_sdk-4.1.18.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
919
|
+
ultracart_rest_sdk-4.1.18.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
920
|
+
ultracart_rest_sdk-4.1.18.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|