ultracart-rest-sdk 4.0.225__py3-none-any.whl → 4.0.226__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.0.225"
14
+ __version__ = "4.0.226"
15
15
 
16
16
  # import ApiClient
17
17
  from ultracart.api_client import ApiClient
ultracart/api/item_api.py CHANGED
@@ -28,6 +28,7 @@ from ultracart.model.item_content_attribute import ItemContentAttribute
28
28
  from ultracart.model.item_digital_item import ItemDigitalItem
29
29
  from ultracart.model.item_digital_item_response import ItemDigitalItemResponse
30
30
  from ultracart.model.item_digital_items_response import ItemDigitalItemsResponse
31
+ from ultracart.model.item_inventory_snapshot_response import ItemInventorySnapshotResponse
31
32
  from ultracart.model.item_response import ItemResponse
32
33
  from ultracart.model.item_review import ItemReview
33
34
  from ultracart.model.item_review_response import ItemReviewResponse
@@ -1079,6 +1080,51 @@ class ItemApi(object):
1079
1080
  },
1080
1081
  api_client=api_client
1081
1082
  )
1083
+ self.rest_item_inventory_snapshot_response_endpoint = _Endpoint(
1084
+ settings={
1085
+ 'response_type': (ItemInventorySnapshotResponse,),
1086
+ 'auth': [
1087
+ 'ultraCartOauth',
1088
+ 'ultraCartSimpleApiKey'
1089
+ ],
1090
+ 'endpoint_path': '/item/items/inventory_snapshot',
1091
+ 'operation_id': 'rest_item_inventory_snapshot_response',
1092
+ 'http_method': 'GET',
1093
+ 'servers': None,
1094
+ },
1095
+ params_map={
1096
+ 'all': [
1097
+ ],
1098
+ 'required': [],
1099
+ 'nullable': [
1100
+ ],
1101
+ 'enum': [
1102
+ ],
1103
+ 'validation': [
1104
+ ]
1105
+ },
1106
+ root_map={
1107
+ 'validations': {
1108
+ },
1109
+ 'allowed_values': {
1110
+ },
1111
+ 'openapi_types': {
1112
+ },
1113
+ 'attribute_map': {
1114
+ },
1115
+ 'location_map': {
1116
+ },
1117
+ 'collection_format_map': {
1118
+ }
1119
+ },
1120
+ headers_map={
1121
+ 'accept': [
1122
+ 'application/json'
1123
+ ],
1124
+ 'content_type': [],
1125
+ },
1126
+ api_client=api_client
1127
+ )
1082
1128
  self.update_digital_item_endpoint = _Endpoint(
1083
1129
  settings={
1084
1130
  'response_type': (ItemDigitalItemResponse,),
@@ -2829,6 +2875,84 @@ class ItemApi(object):
2829
2875
  item_attribute
2830
2876
  return self.insert_update_item_content_attribute_endpoint.call_with_http_info(**kwargs)
2831
2877
 
2878
+ def rest_item_inventory_snapshot_response(
2879
+ self,
2880
+ **kwargs
2881
+ ):
2882
+ """Retrieve a list of item inventories # noqa: E501
2883
+
2884
+ Retrieves a list of item inventories. # noqa: E501
2885
+ This method makes a synchronous HTTP request by default. To make an
2886
+ asynchronous HTTP request, please pass async_req=True
2887
+
2888
+ >>> thread = api.rest_item_inventory_snapshot_response(async_req=True)
2889
+ >>> result = thread.get()
2890
+
2891
+
2892
+ Keyword Args:
2893
+ _return_http_data_only (bool): response data without head status
2894
+ code and headers. Default is True.
2895
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
2896
+ will be returned without reading/decoding response data.
2897
+ Default is True.
2898
+ _request_timeout (int/float/tuple): timeout setting for this request. If
2899
+ one number provided, it will be total request timeout. It can also
2900
+ be a pair (tuple) of (connection, read) timeouts.
2901
+ Default is None.
2902
+ _check_input_type (bool): specifies if type checking
2903
+ should be done one the data sent to the server.
2904
+ Default is True.
2905
+ _check_return_type (bool): specifies if type checking
2906
+ should be done one the data received from the server.
2907
+ Default is True.
2908
+ _spec_property_naming (bool): True if the variable names in the input data
2909
+ are serialized names, as specified in the OpenAPI document.
2910
+ False if the variable names in the input data
2911
+ are pythonic names, e.g. snake case (default)
2912
+ _content_type (str/None): force body content-type.
2913
+ Default is None and content-type will be predicted by allowed
2914
+ content-types and body.
2915
+ _host_index (int/None): specifies the index of the server
2916
+ that we want to use.
2917
+ Default is read from the configuration.
2918
+ _request_auths (list): set to override the auth_settings for an a single
2919
+ request; this effectively ignores the authentication
2920
+ in the spec for a single request.
2921
+ Default is None
2922
+ async_req (bool): execute request asynchronously
2923
+
2924
+ Returns:
2925
+ ItemInventorySnapshotResponse
2926
+ If the method is called asynchronously, returns the request
2927
+ thread.
2928
+ """
2929
+ kwargs['async_req'] = kwargs.get(
2930
+ 'async_req', False
2931
+ )
2932
+ kwargs['_return_http_data_only'] = kwargs.get(
2933
+ '_return_http_data_only', True
2934
+ )
2935
+ kwargs['_preload_content'] = kwargs.get(
2936
+ '_preload_content', True
2937
+ )
2938
+ kwargs['_request_timeout'] = kwargs.get(
2939
+ '_request_timeout', None
2940
+ )
2941
+ kwargs['_check_input_type'] = kwargs.get(
2942
+ '_check_input_type', True
2943
+ )
2944
+ kwargs['_check_return_type'] = kwargs.get(
2945
+ '_check_return_type', True
2946
+ )
2947
+ kwargs['_spec_property_naming'] = kwargs.get(
2948
+ '_spec_property_naming', False
2949
+ )
2950
+ kwargs['_content_type'] = kwargs.get(
2951
+ '_content_type')
2952
+ kwargs['_host_index'] = kwargs.get('_host_index')
2953
+ kwargs['_request_auths'] = kwargs.get('_request_auths', None)
2954
+ return self.rest_item_inventory_snapshot_response_endpoint.call_with_http_info(**kwargs)
2955
+
2832
2956
  def update_digital_item(
2833
2957
  self,
2834
2958
  digital_item_oid,
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.225/python'
80
+ self.user_agent = 'OpenAPI-Generator/4.0.226/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.0.225".\
425
+ "SDK Package Version: 4.0.226".\
426
426
  format(env=sys.platform, pyversion=sys.version)
427
427
 
428
428
  def get_host_settings(self):
@@ -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.item_inventory_snapshot_distribution_center import ItemInventorySnapshotDistributionCenter
35
+ globals()['ItemInventorySnapshotDistributionCenter'] = ItemInventorySnapshotDistributionCenter
36
+
37
+
38
+ class ItemInventorySnapshot(ModelNormal):
39
+ """NOTE: This class is auto generated by OpenAPI Generator.
40
+ Ref: https://openapi-generator.tech
41
+
42
+ Do not edit the class manually.
43
+
44
+ Attributes:
45
+ allowed_values (dict): The key is the tuple path to the attribute
46
+ and the for var_name this is (var_name,). The value is a dict
47
+ with a capitalized key describing the allowed value and an allowed
48
+ value. These dicts store the allowed enum values.
49
+ attribute_map (dict): The key is attribute name
50
+ and the value is json key in definition.
51
+ discriminator_value_class_map (dict): A dict to go from the discriminator
52
+ variable value to the discriminator class name.
53
+ validations (dict): The key is the tuple path to the attribute
54
+ and the for var_name this is (var_name,). The value is a dict
55
+ that stores validations for max_length, min_length, max_items,
56
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
57
+ inclusive_minimum, and regex.
58
+ additional_properties_type (tuple): A tuple of classes accepted
59
+ as additional properties values.
60
+ """
61
+
62
+ allowed_values = {
63
+ }
64
+
65
+ validations = {
66
+ }
67
+
68
+ @cached_property
69
+ def additional_properties_type():
70
+ """
71
+ This must be a method because a model may have properties that are
72
+ of type self, this must run after the class is loaded
73
+ """
74
+ lazy_import()
75
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
76
+
77
+ _nullable = False
78
+
79
+ @cached_property
80
+ def openapi_types():
81
+ """
82
+ This must be a method because a model may have properties that are
83
+ of type self, this must run after the class is loaded
84
+
85
+ Returns
86
+ openapi_types (dict): The key is attribute name
87
+ and the value is attribute type.
88
+ """
89
+ lazy_import()
90
+ return {
91
+ 'allocated_to_placed_orders': (int,), # noqa: E501
92
+ 'allocated_to_shopping_carts': (int,), # noqa: E501
93
+ 'available_to_allocate': (int,), # noqa: E501
94
+ 'distribution_centers': ([ItemInventorySnapshotDistributionCenter],), # noqa: E501
95
+ 'merchant_item_id': (str,), # noqa: E501
96
+ 'quantity': (int,), # noqa: E501
97
+ }
98
+
99
+ @cached_property
100
+ def discriminator():
101
+ return None
102
+
103
+
104
+ attribute_map = {
105
+ 'allocated_to_placed_orders': 'allocated_to_placed_orders', # noqa: E501
106
+ 'allocated_to_shopping_carts': 'allocated_to_shopping_carts', # noqa: E501
107
+ 'available_to_allocate': 'available_to_allocate', # noqa: E501
108
+ 'distribution_centers': 'distribution_centers', # noqa: E501
109
+ 'merchant_item_id': 'merchant_item_id', # noqa: E501
110
+ 'quantity': 'quantity', # noqa: E501
111
+ }
112
+
113
+ read_only_vars = {
114
+ }
115
+
116
+ _composed_schemas = {}
117
+
118
+ @classmethod
119
+ @convert_js_args_to_python_args
120
+ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
121
+ """ItemInventorySnapshot - a model defined in OpenAPI
122
+
123
+ Keyword Args:
124
+ _check_type (bool): if True, values for parameters in openapi_types
125
+ will be type checked and a TypeError will be
126
+ raised if the wrong type is input.
127
+ Defaults to True
128
+ _path_to_item (tuple/list): This is a list of keys or values to
129
+ drill down to the model in received_data
130
+ when deserializing a response
131
+ _spec_property_naming (bool): True if the variable names in the input data
132
+ are serialized names, as specified in the OpenAPI document.
133
+ False if the variable names in the input data
134
+ are pythonic names, e.g. snake case (default)
135
+ _configuration (Configuration): the instance to use when
136
+ deserializing a file_type parameter.
137
+ If passed, type conversion is attempted
138
+ If omitted no type conversion is done.
139
+ _visited_composed_classes (tuple): This stores a tuple of
140
+ classes that we have traveled through so that
141
+ if we see that class again we will not use its
142
+ discriminator again.
143
+ When traveling through a discriminator, the
144
+ composed schema that is
145
+ is traveled through is added to this set.
146
+ For example if Animal has a discriminator
147
+ petType and we pass in "Dog", and the class Dog
148
+ allOf includes Animal, we move through Animal
149
+ once using the discriminator, and pick Dog.
150
+ Then in Dog, we will make an instance of the
151
+ Animal class but this time we won't travel
152
+ through its discriminator because we passed in
153
+ _visited_composed_classes = (Animal,)
154
+ allocated_to_placed_orders (int): [optional] # noqa: E501
155
+ allocated_to_shopping_carts (int): [optional] # noqa: E501
156
+ available_to_allocate (int): [optional] # noqa: E501
157
+ distribution_centers ([ItemInventorySnapshotDistributionCenter]): [optional] # noqa: E501
158
+ merchant_item_id (str): [optional] # noqa: E501
159
+ quantity (int): [optional] # noqa: E501
160
+ """
161
+
162
+ _check_type = kwargs.pop('_check_type', True)
163
+ _spec_property_naming = kwargs.pop('_spec_property_naming', True)
164
+ _path_to_item = kwargs.pop('_path_to_item', ())
165
+ _configuration = kwargs.pop('_configuration', None)
166
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
167
+
168
+ self = super(OpenApiModel, cls).__new__(cls)
169
+
170
+ if args:
171
+ for arg in args:
172
+ if isinstance(arg, dict):
173
+ kwargs.update(arg)
174
+ else:
175
+ raise ApiTypeError(
176
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
177
+ args,
178
+ self.__class__.__name__,
179
+ ),
180
+ path_to_item=_path_to_item,
181
+ valid_classes=(self.__class__,),
182
+ )
183
+
184
+ self._data_store = {}
185
+ self._check_type = _check_type
186
+ self._spec_property_naming = _spec_property_naming
187
+ self._path_to_item = _path_to_item
188
+ self._configuration = _configuration
189
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
190
+
191
+ for var_name, var_value in kwargs.items():
192
+ if var_name not in self.attribute_map and \
193
+ self._configuration is not None and \
194
+ self._configuration.discard_unknown_keys and \
195
+ self.additional_properties_type is None:
196
+ # discard variable.
197
+ continue
198
+ setattr(self, var_name, var_value)
199
+ return self
200
+
201
+ required_properties = set([
202
+ '_data_store',
203
+ '_check_type',
204
+ '_spec_property_naming',
205
+ '_path_to_item',
206
+ '_configuration',
207
+ '_visited_composed_classes',
208
+ ])
209
+
210
+ @convert_js_args_to_python_args
211
+ def __init__(self, *args, **kwargs): # noqa: E501
212
+ """ItemInventorySnapshot - a model defined in OpenAPI
213
+
214
+ Keyword Args:
215
+ _check_type (bool): if True, values for parameters in openapi_types
216
+ will be type checked and a TypeError will be
217
+ raised if the wrong type is input.
218
+ Defaults to True
219
+ _path_to_item (tuple/list): This is a list of keys or values to
220
+ drill down to the model in received_data
221
+ when deserializing a response
222
+ _spec_property_naming (bool): True if the variable names in the input data
223
+ are serialized names, as specified in the OpenAPI document.
224
+ False if the variable names in the input data
225
+ are pythonic names, e.g. snake case (default)
226
+ _configuration (Configuration): the instance to use when
227
+ deserializing a file_type parameter.
228
+ If passed, type conversion is attempted
229
+ If omitted no type conversion is done.
230
+ _visited_composed_classes (tuple): This stores a tuple of
231
+ classes that we have traveled through so that
232
+ if we see that class again we will not use its
233
+ discriminator again.
234
+ When traveling through a discriminator, the
235
+ composed schema that is
236
+ is traveled through is added to this set.
237
+ For example if Animal has a discriminator
238
+ petType and we pass in "Dog", and the class Dog
239
+ allOf includes Animal, we move through Animal
240
+ once using the discriminator, and pick Dog.
241
+ Then in Dog, we will make an instance of the
242
+ Animal class but this time we won't travel
243
+ through its discriminator because we passed in
244
+ _visited_composed_classes = (Animal,)
245
+ allocated_to_placed_orders (int): [optional] # noqa: E501
246
+ allocated_to_shopping_carts (int): [optional] # noqa: E501
247
+ available_to_allocate (int): [optional] # noqa: E501
248
+ distribution_centers ([ItemInventorySnapshotDistributionCenter]): [optional] # noqa: E501
249
+ merchant_item_id (str): [optional] # noqa: E501
250
+ quantity (int): [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.")
@@ -0,0 +1,280 @@
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
+
34
+ class ItemInventorySnapshotDistributionCenter(ModelNormal):
35
+ """NOTE: This class is auto generated by OpenAPI Generator.
36
+ Ref: https://openapi-generator.tech
37
+
38
+ Do not edit the class manually.
39
+
40
+ Attributes:
41
+ allowed_values (dict): The key is the tuple path to the attribute
42
+ and the for var_name this is (var_name,). The value is a dict
43
+ with a capitalized key describing the allowed value and an allowed
44
+ value. These dicts store the allowed enum values.
45
+ attribute_map (dict): The key is attribute name
46
+ and the value is json key in definition.
47
+ discriminator_value_class_map (dict): A dict to go from the discriminator
48
+ variable value to the discriminator class name.
49
+ validations (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
+ that stores validations for max_length, min_length, max_items,
52
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
53
+ inclusive_minimum, and regex.
54
+ additional_properties_type (tuple): A tuple of classes accepted
55
+ as additional properties values.
56
+ """
57
+
58
+ allowed_values = {
59
+ }
60
+
61
+ validations = {
62
+ }
63
+
64
+ @cached_property
65
+ def additional_properties_type():
66
+ """
67
+ This must be a method because a model may have properties that are
68
+ of type self, this must run after the class is loaded
69
+ """
70
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
71
+
72
+ _nullable = False
73
+
74
+ @cached_property
75
+ def openapi_types():
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
+ Returns
81
+ openapi_types (dict): The key is attribute name
82
+ and the value is attribute type.
83
+ """
84
+ return {
85
+ 'allocated_to_placed_orders': (int,), # noqa: E501
86
+ 'allocated_to_shopping_carts': (int,), # noqa: E501
87
+ 'available_to_allocate': (int,), # noqa: E501
88
+ 'code': (str,), # noqa: E501
89
+ 'quantity': (int,), # noqa: E501
90
+ }
91
+
92
+ @cached_property
93
+ def discriminator():
94
+ return None
95
+
96
+
97
+ attribute_map = {
98
+ 'allocated_to_placed_orders': 'allocated_to_placed_orders', # noqa: E501
99
+ 'allocated_to_shopping_carts': 'allocated_to_shopping_carts', # noqa: E501
100
+ 'available_to_allocate': 'available_to_allocate', # noqa: E501
101
+ 'code': 'code', # noqa: E501
102
+ 'quantity': 'quantity', # noqa: E501
103
+ }
104
+
105
+ read_only_vars = {
106
+ }
107
+
108
+ _composed_schemas = {}
109
+
110
+ @classmethod
111
+ @convert_js_args_to_python_args
112
+ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
113
+ """ItemInventorySnapshotDistributionCenter - a model defined in OpenAPI
114
+
115
+ Keyword Args:
116
+ _check_type (bool): if True, values for parameters in openapi_types
117
+ will be type checked and a TypeError will be
118
+ raised if the wrong type is input.
119
+ Defaults to True
120
+ _path_to_item (tuple/list): This is a list of keys or values to
121
+ drill down to the model in received_data
122
+ when deserializing a response
123
+ _spec_property_naming (bool): True if the variable names in the input data
124
+ are serialized names, as specified in the OpenAPI document.
125
+ False if the variable names in the input data
126
+ are pythonic names, e.g. snake case (default)
127
+ _configuration (Configuration): the instance to use when
128
+ deserializing a file_type parameter.
129
+ If passed, type conversion is attempted
130
+ If omitted no type conversion is done.
131
+ _visited_composed_classes (tuple): This stores a tuple of
132
+ classes that we have traveled through so that
133
+ if we see that class again we will not use its
134
+ discriminator again.
135
+ When traveling through a discriminator, the
136
+ composed schema that is
137
+ is traveled through is added to this set.
138
+ For example if Animal has a discriminator
139
+ petType and we pass in "Dog", and the class Dog
140
+ allOf includes Animal, we move through Animal
141
+ once using the discriminator, and pick Dog.
142
+ Then in Dog, we will make an instance of the
143
+ Animal class but this time we won't travel
144
+ through its discriminator because we passed in
145
+ _visited_composed_classes = (Animal,)
146
+ allocated_to_placed_orders (int): [optional] # noqa: E501
147
+ allocated_to_shopping_carts (int): [optional] # noqa: E501
148
+ available_to_allocate (int): [optional] # noqa: E501
149
+ code (str): [optional] # noqa: E501
150
+ quantity (int): [optional] # noqa: E501
151
+ """
152
+
153
+ _check_type = kwargs.pop('_check_type', True)
154
+ _spec_property_naming = kwargs.pop('_spec_property_naming', True)
155
+ _path_to_item = kwargs.pop('_path_to_item', ())
156
+ _configuration = kwargs.pop('_configuration', None)
157
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
158
+
159
+ self = super(OpenApiModel, cls).__new__(cls)
160
+
161
+ if args:
162
+ for arg in args:
163
+ if isinstance(arg, dict):
164
+ kwargs.update(arg)
165
+ else:
166
+ raise ApiTypeError(
167
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
168
+ args,
169
+ self.__class__.__name__,
170
+ ),
171
+ path_to_item=_path_to_item,
172
+ valid_classes=(self.__class__,),
173
+ )
174
+
175
+ self._data_store = {}
176
+ self._check_type = _check_type
177
+ self._spec_property_naming = _spec_property_naming
178
+ self._path_to_item = _path_to_item
179
+ self._configuration = _configuration
180
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
181
+
182
+ for var_name, var_value in kwargs.items():
183
+ if var_name not in self.attribute_map and \
184
+ self._configuration is not None and \
185
+ self._configuration.discard_unknown_keys and \
186
+ self.additional_properties_type is None:
187
+ # discard variable.
188
+ continue
189
+ setattr(self, var_name, var_value)
190
+ return self
191
+
192
+ required_properties = set([
193
+ '_data_store',
194
+ '_check_type',
195
+ '_spec_property_naming',
196
+ '_path_to_item',
197
+ '_configuration',
198
+ '_visited_composed_classes',
199
+ ])
200
+
201
+ @convert_js_args_to_python_args
202
+ def __init__(self, *args, **kwargs): # noqa: E501
203
+ """ItemInventorySnapshotDistributionCenter - a model defined in OpenAPI
204
+
205
+ Keyword Args:
206
+ _check_type (bool): if True, values for parameters in openapi_types
207
+ will be type checked and a TypeError will be
208
+ raised if the wrong type is input.
209
+ Defaults to True
210
+ _path_to_item (tuple/list): This is a list of keys or values to
211
+ drill down to the model in received_data
212
+ when deserializing a response
213
+ _spec_property_naming (bool): True if the variable names in the input data
214
+ are serialized names, as specified in the OpenAPI document.
215
+ False if the variable names in the input data
216
+ are pythonic names, e.g. snake case (default)
217
+ _configuration (Configuration): the instance to use when
218
+ deserializing a file_type parameter.
219
+ If passed, type conversion is attempted
220
+ If omitted no type conversion is done.
221
+ _visited_composed_classes (tuple): This stores a tuple of
222
+ classes that we have traveled through so that
223
+ if we see that class again we will not use its
224
+ discriminator again.
225
+ When traveling through a discriminator, the
226
+ composed schema that is
227
+ is traveled through is added to this set.
228
+ For example if Animal has a discriminator
229
+ petType and we pass in "Dog", and the class Dog
230
+ allOf includes Animal, we move through Animal
231
+ once using the discriminator, and pick Dog.
232
+ Then in Dog, we will make an instance of the
233
+ Animal class but this time we won't travel
234
+ through its discriminator because we passed in
235
+ _visited_composed_classes = (Animal,)
236
+ allocated_to_placed_orders (int): [optional] # noqa: E501
237
+ allocated_to_shopping_carts (int): [optional] # noqa: E501
238
+ available_to_allocate (int): [optional] # noqa: E501
239
+ code (str): [optional] # noqa: E501
240
+ quantity (int): [optional] # noqa: E501
241
+ """
242
+
243
+ _check_type = kwargs.pop('_check_type', True)
244
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
245
+ _path_to_item = kwargs.pop('_path_to_item', ())
246
+ _configuration = kwargs.pop('_configuration', None)
247
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
248
+
249
+ if args:
250
+ for arg in args:
251
+ if isinstance(arg, dict):
252
+ kwargs.update(arg)
253
+ else:
254
+ raise ApiTypeError(
255
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
256
+ args,
257
+ self.__class__.__name__,
258
+ ),
259
+ path_to_item=_path_to_item,
260
+ valid_classes=(self.__class__,),
261
+ )
262
+
263
+ self._data_store = {}
264
+ self._check_type = _check_type
265
+ self._spec_property_naming = _spec_property_naming
266
+ self._path_to_item = _path_to_item
267
+ self._configuration = _configuration
268
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
269
+
270
+ for var_name, var_value in kwargs.items():
271
+ if var_name not in self.attribute_map and \
272
+ self._configuration is not None and \
273
+ self._configuration.discard_unknown_keys and \
274
+ self.additional_properties_type is None:
275
+ # discard variable.
276
+ continue
277
+ setattr(self, var_name, var_value)
278
+ if var_name in self.read_only_vars:
279
+ raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
280
+ f"class with read only attributes.")
@@ -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.error import Error
35
+ from ultracart.model.item_inventory_snapshot import ItemInventorySnapshot
36
+ from ultracart.model.response_metadata import ResponseMetadata
37
+ from ultracart.model.warning import Warning
38
+ globals()['Error'] = Error
39
+ globals()['ItemInventorySnapshot'] = ItemInventorySnapshot
40
+ globals()['ResponseMetadata'] = ResponseMetadata
41
+ globals()['Warning'] = Warning
42
+
43
+
44
+ class ItemInventorySnapshotResponse(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
+ 'inventories': ([ItemInventorySnapshot],), # noqa: E501
99
+ 'metadata': (ResponseMetadata,), # 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
+ 'inventories': 'inventories', # noqa: E501
112
+ 'metadata': 'metadata', # 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
+ """ItemInventorySnapshotResponse - 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
+ inventories ([ItemInventorySnapshot]): inventories. [optional] # noqa: E501
160
+ metadata (ResponseMetadata): [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
+ """ItemInventorySnapshotResponse - 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
+ inventories ([ItemInventorySnapshot]): inventories. [optional] # noqa: E501
250
+ metadata (ResponseMetadata): [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.")
@@ -546,6 +546,9 @@ from ultracart.model.item_identifiers import ItemIdentifiers
546
546
  from ultracart.model.item_instant_payment_notification import ItemInstantPaymentNotification
547
547
  from ultracart.model.item_instant_payment_notifications import ItemInstantPaymentNotifications
548
548
  from ultracart.model.item_internal import ItemInternal
549
+ from ultracart.model.item_inventory_snapshot import ItemInventorySnapshot
550
+ from ultracart.model.item_inventory_snapshot_distribution_center import ItemInventorySnapshotDistributionCenter
551
+ from ultracart.model.item_inventory_snapshot_response import ItemInventorySnapshotResponse
549
552
  from ultracart.model.item_kit_component import ItemKitComponent
550
553
  from ultracart.model.item_kit_definition import ItemKitDefinition
551
554
  from ultracart.model.item_option import ItemOption
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ultracart-rest-sdk
3
- Version: 4.0.225
3
+ Version: 4.0.226
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=pwFeuyUW7TPlmfQics58QnYcsq3WBp33PLgohqGr2-g,699
2
- ultracart/api_client.py,sha256=4Ux5tDmDBlc3g-DO0H4-GVAOZS9WyisNvsfIB8a0RK0,39072
3
- ultracart/configuration.py,sha256=tvY3tTpNdN3UB6kz6inwNtUHI_16kjTxNoQtUo_Orck,17842
1
+ ultracart/__init__.py,sha256=QpAxZujzlcybiNY2XKAPomnqBuQT1Ol0E5DbbgiKJKE,699
2
+ ultracart/api_client.py,sha256=ktbxhtxFsn963bXlUa_qQjM7wCFTgFScehyhMWTyXBk,39072
3
+ ultracart/configuration.py,sha256=s8pdk49FfLzZQiuZQ9Z78_xiswZT025J5hMindSmDpY,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
@@ -17,7 +17,7 @@ ultracart/api/datawarehouse_api.py,sha256=4UdypzYNcDwgHeyWqK1x6WARC62u9CmbfVTGhr
17
17
  ultracart/api/fulfillment_api.py,sha256=2MN_iugqFk4gwz-ZhrOgB9iIQHnzQ5qNcv9pweOvXro,35183
18
18
  ultracart/api/gift_certificate_api.py,sha256=2TkzQhqCMcPf8Ro14eRycy0LtPxfC7n67GSMRrMcNuc,46858
19
19
  ultracart/api/integration_log_api.py,sha256=t8spQtDERkGKISq7JtDNkA1MsQXp8qV8lSuXIhy0lEc,30164
20
- ultracart/api/item_api.py,sha256=RSJzispf9uhcHsYQDI4SM20Yx9Kpze7292XxkXcNpq8,129632
20
+ ultracart/api/item_api.py,sha256=n_zgws5qiEFwosm8-VLATKaBE76UxfAESQ3LwkKxr9A,134557
21
21
  ultracart/api/oauth_api.py,sha256=oYx-F4WFF3LgMlHP-4x_gcSwS95-9Lowiwcgr5Rziyw,13636
22
22
  ultracart/api/order_api.py,sha256=Mc1Mru5z7-BrN0fhnQs3xEjxwICrFkk4dIIuGraKy44,161058
23
23
  ultracart/api/sso_api.py,sha256=Ct9oau71nCUKecojo_1kkXRcIqPxhlVZiST2bdjLJJ8,21632
@@ -565,6 +565,9 @@ ultracart/model/item_identifiers.py,sha256=wBXKtYrNr8ueNp3OTm_k1_tvV419RhJXqR96t
565
565
  ultracart/model/item_instant_payment_notification.py,sha256=LnaVGcF0ossN_ol78jhD39vQEBXe16eronV7OQChZ2c,12222
566
566
  ultracart/model/item_instant_payment_notifications.py,sha256=AqYw2xFb8ZYLtMLIq-XwR1dXdkSq4vvQPPS1y-0DSBY,11846
567
567
  ultracart/model/item_internal.py,sha256=6x0ERI_1dCcd37mKyLAS-PZSNO9MzvTXahXOhgIttnE,11460
568
+ ultracart/model/item_inventory_snapshot.py,sha256=MeIKQOCkXJPpEJdjdw5GNR6ELxoB8eC5-Z-KfouB87U,13165
569
+ ultracart/model/item_inventory_snapshot_distribution_center.py,sha256=3juTnuKG63b9aj22Z_59nbju1J-HccnjFDB8lwAMPTk,12508
570
+ ultracart/model/item_inventory_snapshot_response.py,sha256=WO4TySnG3weZVaKSwhncFmkCuFiGsa3aRJfdLjn4vaM,12943
568
571
  ultracart/model/item_kit_component.py,sha256=1FbXgAWkh93eLhSkWsexyecERT21RK827lOIy0Gf_VU,12719
569
572
  ultracart/model/item_kit_definition.py,sha256=yG0ISvk8hZHHNLqqpsxst-S5ekl2xDT8_soB5bAqoeU,11684
570
573
  ultracart/model/item_option.py,sha256=hUC09m7-n1XMhUBKiiGWyUDrpB3lNmgu0FCOoNSD-uE,15728
@@ -878,9 +881,9 @@ ultracart/model/workflow_tasks_response.py,sha256=KmHe72xKnZiS9CemBr5hluY5EsU9_x
878
881
  ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE41k,11903
879
882
  ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
880
883
  ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
881
- ultracart/models/__init__.py,sha256=I2Mi2O700v6AG_0ofAKCYHoioXCFOuY2mrEEz-_28Ck,65517
882
- ultracart_rest_sdk-4.0.225.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
883
- ultracart_rest_sdk-4.0.225.dist-info/METADATA,sha256=Nhk4k-_EMiPH7QIxz7CbYVJmX4nknQrjXAULBPBl7dc,403
884
- ultracart_rest_sdk-4.0.225.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
885
- ultracart_rest_sdk-4.0.225.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
886
- ultracart_rest_sdk-4.0.225.dist-info/RECORD,,
884
+ ultracart/models/__init__.py,sha256=JOyD4oTrVKrwdSgBUPAcyMnm_9hmWMw9aPK7u8ppvak,65794
885
+ ultracart_rest_sdk-4.0.226.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
886
+ ultracart_rest_sdk-4.0.226.dist-info/METADATA,sha256=XG0u7zkEH09KBkM5nljw3PDvWvwCRGWOZQsQY2zTO60,403
887
+ ultracart_rest_sdk-4.0.226.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
888
+ ultracart_rest_sdk-4.0.226.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
889
+ ultracart_rest_sdk-4.0.226.dist-info/RECORD,,