ultracart-rest-sdk 4.1.37__py3-none-any.whl → 4.1.41__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,270 @@
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_update import ItemInventoryUpdate
35
+ globals()['ItemInventoryUpdate'] = ItemInventoryUpdate
36
+
37
+
38
+ class ItemInventoryUpdateRequest(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
+ 'inventory_updates': ([ItemInventoryUpdate],), # noqa: E501
92
+ }
93
+
94
+ @cached_property
95
+ def discriminator():
96
+ return None
97
+
98
+
99
+ attribute_map = {
100
+ 'inventory_updates': 'inventory_updates', # noqa: E501
101
+ }
102
+
103
+ read_only_vars = {
104
+ }
105
+
106
+ _composed_schemas = {}
107
+
108
+ @classmethod
109
+ @convert_js_args_to_python_args
110
+ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
111
+ """ItemInventoryUpdateRequest - a model defined in OpenAPI
112
+
113
+ Keyword Args:
114
+ _check_type (bool): if True, values for parameters in openapi_types
115
+ will be type checked and a TypeError will be
116
+ raised if the wrong type is input.
117
+ Defaults to True
118
+ _path_to_item (tuple/list): This is a list of keys or values to
119
+ drill down to the model in received_data
120
+ when deserializing a response
121
+ _spec_property_naming (bool): True if the variable names in the input data
122
+ are serialized names, as specified in the OpenAPI document.
123
+ False if the variable names in the input data
124
+ are pythonic names, e.g. snake case (default)
125
+ _configuration (Configuration): the instance to use when
126
+ deserializing a file_type parameter.
127
+ If passed, type conversion is attempted
128
+ If omitted no type conversion is done.
129
+ _visited_composed_classes (tuple): This stores a tuple of
130
+ classes that we have traveled through so that
131
+ if we see that class again we will not use its
132
+ discriminator again.
133
+ When traveling through a discriminator, the
134
+ composed schema that is
135
+ is traveled through is added to this set.
136
+ For example if Animal has a discriminator
137
+ petType and we pass in "Dog", and the class Dog
138
+ allOf includes Animal, we move through Animal
139
+ once using the discriminator, and pick Dog.
140
+ Then in Dog, we will make an instance of the
141
+ Animal class but this time we won't travel
142
+ through its discriminator because we passed in
143
+ _visited_composed_classes = (Animal,)
144
+ inventory_updates ([ItemInventoryUpdate]): Inventory updates array. [optional] # noqa: E501
145
+ """
146
+
147
+ _check_type = kwargs.pop('_check_type', True)
148
+ _spec_property_naming = kwargs.pop('_spec_property_naming', True)
149
+ _path_to_item = kwargs.pop('_path_to_item', ())
150
+ _configuration = kwargs.pop('_configuration', None)
151
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
152
+
153
+ self = super(OpenApiModel, cls).__new__(cls)
154
+
155
+ if args:
156
+ for arg in args:
157
+ if isinstance(arg, dict):
158
+ kwargs.update(arg)
159
+ else:
160
+ raise ApiTypeError(
161
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
162
+ args,
163
+ self.__class__.__name__,
164
+ ),
165
+ path_to_item=_path_to_item,
166
+ valid_classes=(self.__class__,),
167
+ )
168
+
169
+ self._data_store = {}
170
+ self._check_type = _check_type
171
+ self._spec_property_naming = _spec_property_naming
172
+ self._path_to_item = _path_to_item
173
+ self._configuration = _configuration
174
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
175
+
176
+ for var_name, var_value in kwargs.items():
177
+ if var_name not in self.attribute_map and \
178
+ self._configuration is not None and \
179
+ self._configuration.discard_unknown_keys and \
180
+ self.additional_properties_type is None:
181
+ # discard variable.
182
+ continue
183
+ setattr(self, var_name, var_value)
184
+ return self
185
+
186
+ required_properties = set([
187
+ '_data_store',
188
+ '_check_type',
189
+ '_spec_property_naming',
190
+ '_path_to_item',
191
+ '_configuration',
192
+ '_visited_composed_classes',
193
+ ])
194
+
195
+ @convert_js_args_to_python_args
196
+ def __init__(self, *args, **kwargs): # noqa: E501
197
+ """ItemInventoryUpdateRequest - a model defined in OpenAPI
198
+
199
+ Keyword Args:
200
+ _check_type (bool): if True, values for parameters in openapi_types
201
+ will be type checked and a TypeError will be
202
+ raised if the wrong type is input.
203
+ Defaults to True
204
+ _path_to_item (tuple/list): This is a list of keys or values to
205
+ drill down to the model in received_data
206
+ when deserializing a response
207
+ _spec_property_naming (bool): True if the variable names in the input data
208
+ are serialized names, as specified in the OpenAPI document.
209
+ False if the variable names in the input data
210
+ are pythonic names, e.g. snake case (default)
211
+ _configuration (Configuration): the instance to use when
212
+ deserializing a file_type parameter.
213
+ If passed, type conversion is attempted
214
+ If omitted no type conversion is done.
215
+ _visited_composed_classes (tuple): This stores a tuple of
216
+ classes that we have traveled through so that
217
+ if we see that class again we will not use its
218
+ discriminator again.
219
+ When traveling through a discriminator, the
220
+ composed schema that is
221
+ is traveled through is added to this set.
222
+ For example if Animal has a discriminator
223
+ petType and we pass in "Dog", and the class Dog
224
+ allOf includes Animal, we move through Animal
225
+ once using the discriminator, and pick Dog.
226
+ Then in Dog, we will make an instance of the
227
+ Animal class but this time we won't travel
228
+ through its discriminator because we passed in
229
+ _visited_composed_classes = (Animal,)
230
+ inventory_updates ([ItemInventoryUpdate]): Inventory updates array. [optional] # noqa: E501
231
+ """
232
+
233
+ _check_type = kwargs.pop('_check_type', True)
234
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
235
+ _path_to_item = kwargs.pop('_path_to_item', ())
236
+ _configuration = kwargs.pop('_configuration', None)
237
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
238
+
239
+ if args:
240
+ for arg in args:
241
+ if isinstance(arg, dict):
242
+ kwargs.update(arg)
243
+ else:
244
+ raise ApiTypeError(
245
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
246
+ args,
247
+ self.__class__.__name__,
248
+ ),
249
+ path_to_item=_path_to_item,
250
+ valid_classes=(self.__class__,),
251
+ )
252
+
253
+ self._data_store = {}
254
+ self._check_type = _check_type
255
+ self._spec_property_naming = _spec_property_naming
256
+ self._path_to_item = _path_to_item
257
+ self._configuration = _configuration
258
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
259
+
260
+ for var_name, var_value in kwargs.items():
261
+ if var_name not in self.attribute_map and \
262
+ self._configuration is not None and \
263
+ self._configuration.discard_unknown_keys and \
264
+ self.additional_properties_type is None:
265
+ # discard variable.
266
+ continue
267
+ setattr(self, var_name, var_value)
268
+ if var_name in self.read_only_vars:
269
+ raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
270
+ f"class with read only attributes.")
@@ -189,6 +189,9 @@ from ultracart.model.conversation_messages_response import ConversationMessagesR
189
189
  from ultracart.model.conversation_multimedia_upload_url import ConversationMultimediaUploadUrl
190
190
  from ultracart.model.conversation_multimedia_upload_url_response import ConversationMultimediaUploadUrlResponse
191
191
  from ultracart.model.conversation_participant import ConversationParticipant
192
+ from ultracart.model.conversation_pbx_address import ConversationPbxAddress
193
+ from ultracart.model.conversation_pbx_address_response import ConversationPbxAddressResponse
194
+ from ultracart.model.conversation_pbx_addresses_response import ConversationPbxAddressesResponse
192
195
  from ultracart.model.conversation_pbx_agent import ConversationPbxAgent
193
196
  from ultracart.model.conversation_pbx_agent_response import ConversationPbxAgentResponse
194
197
  from ultracart.model.conversation_pbx_agents_response import ConversationPbxAgentsResponse
@@ -198,6 +201,8 @@ from ultracart.model.conversation_pbx_audio_upload_url import ConversationPbxAud
198
201
  from ultracart.model.conversation_pbx_audio_upload_url_response import ConversationPbxAudioUploadUrlResponse
199
202
  from ultracart.model.conversation_pbx_audio_usage_response import ConversationPbxAudioUsageResponse
200
203
  from ultracart.model.conversation_pbx_audios_response import ConversationPbxAudiosResponse
204
+ from ultracart.model.conversation_pbx_available_phone_number import ConversationPbxAvailablePhoneNumber
205
+ from ultracart.model.conversation_pbx_available_phone_numbers_response import ConversationPbxAvailablePhoneNumbersResponse
201
206
  from ultracart.model.conversation_pbx_customer_snapshot_request import ConversationPbxCustomerSnapshotRequest
202
207
  from ultracart.model.conversation_pbx_customer_snapshot_response import ConversationPbxCustomerSnapshotResponse
203
208
  from ultracart.model.conversation_pbx_menu import ConversationPbxMenu
@@ -205,6 +210,7 @@ from ultracart.model.conversation_pbx_menu_mapping import ConversationPbxMenuMap
205
210
  from ultracart.model.conversation_pbx_menu_response import ConversationPbxMenuResponse
206
211
  from ultracart.model.conversation_pbx_menus_response import ConversationPbxMenusResponse
207
212
  from ultracart.model.conversation_pbx_phone_number import ConversationPbxPhoneNumber
213
+ from ultracart.model.conversation_pbx_phone_number_purchase_request import ConversationPbxPhoneNumberPurchaseRequest
208
214
  from ultracart.model.conversation_pbx_phone_number_response import ConversationPbxPhoneNumberResponse
209
215
  from ultracart.model.conversation_pbx_phone_numbers_response import ConversationPbxPhoneNumbersResponse
210
216
  from ultracart.model.conversation_pbx_queue import ConversationPbxQueue
@@ -594,6 +600,8 @@ from ultracart.model.item_internal import ItemInternal
594
600
  from ultracart.model.item_inventory_snapshot import ItemInventorySnapshot
595
601
  from ultracart.model.item_inventory_snapshot_distribution_center import ItemInventorySnapshotDistributionCenter
596
602
  from ultracart.model.item_inventory_snapshot_response import ItemInventorySnapshotResponse
603
+ from ultracart.model.item_inventory_update import ItemInventoryUpdate
604
+ from ultracart.model.item_inventory_update_request import ItemInventoryUpdateRequest
597
605
  from ultracart.model.item_kit_component import ItemKitComponent
598
606
  from ultracart.model.item_kit_definition import ItemKitDefinition
599
607
  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.1.37
3
+ Version: 4.1.41
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=sKiyGQMaIj3Y6_JZ7Q03BnfnP6zzfNeix-MayY_LuHs,698
2
- ultracart/api_client.py,sha256=QVUDV7WUkO9byqsWprddVYZCOVx-b14r3heMy9VQbrk,39071
3
- ultracart/configuration.py,sha256=yvVtyGbFaFQ_rS1cVA8LPs4S2kC52buk5LWzB4oqSCQ,17841
1
+ ultracart/__init__.py,sha256=SWz6PiJs8-bfD7hhb3NYFZiP6Kinm-2TLZR6iRPb3vI,698
2
+ ultracart/api_client.py,sha256=6fQ5nICLxiYkSlLl-ItnR9soa-EaY9Zl8MNFTRNfCeo,39071
3
+ ultracart/configuration.py,sha256=wzuqzvtMJHhumAUQzt9yJkjAezCBzeCOUkfgO7lcDAY,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
@@ -9,14 +9,14 @@ ultracart/api/affiliate_api.py,sha256=Rq7y9AAmN2gOT57qTulnMkr-W4SBboMrzKyM2SXT6R
9
9
  ultracart/api/auto_order_api.py,sha256=Fxh8jqvSKGeVDod9pWGV9z6mgzP1cVS2hvqQA1bLNnI,72000
10
10
  ultracart/api/channel_partner_api.py,sha256=EbAPFtaF8E38jrD7JgDaD-rGU3DM86O3lBPhDuq_fw4,89568
11
11
  ultracart/api/checkout_api.py,sha256=KLZAsTMiY55AHDhubbNZYipBPGwihQbEsLDjIDzkLkQ,105889
12
- ultracart/api/conversation_api.py,sha256=QWHHXnuC-ycE9zZ82TzGM_AiLAP1VPWadqi1q-2wAMs,524871
12
+ ultracart/api/conversation_api.py,sha256=Db2UEjeFxaAQ6AN-PsICFwdf6bJpNEHh-Aeo6t8VTrA,574749
13
13
  ultracart/api/coupon_api.py,sha256=voBpCzDhuBog_0WKSj9J-2zKSI8LyJINjUneeLAwlHg,109039
14
14
  ultracart/api/customer_api.py,sha256=vOM1GTsUFMfEwp9pYF2H_efZbZgMk-L1hlq4qA0CqZ8,153900
15
15
  ultracart/api/datawarehouse_api.py,sha256=QkXb1rXOjjsmVcpP5epPnmmxo-w2GRA1Z0xrnfGtftE,162366
16
16
  ultracart/api/fulfillment_api.py,sha256=JD4uwms4Mz5XWmLBnOo-nDT6GHKW-uI2xt_YjwieJLU,35275
17
17
  ultracart/api/gift_certificate_api.py,sha256=2TkzQhqCMcPf8Ro14eRycy0LtPxfC7n67GSMRrMcNuc,46858
18
18
  ultracart/api/integration_log_api.py,sha256=t8spQtDERkGKISq7JtDNkA1MsQXp8qV8lSuXIhy0lEc,30164
19
- ultracart/api/item_api.py,sha256=JcN-aqKPetvPvjlF1UKYWn769ZnUeFM4tfl9EnYWfag,148022
19
+ ultracart/api/item_api.py,sha256=FMYaUlOz_eWpCW-Ptg9bxKjCIcIWTWgH94NWTnNSP_k,153484
20
20
  ultracart/api/oauth_api.py,sha256=ZgwVvUNQybiol1gdS8OjQY60ElUsEPmtFgSSb5Ys5SI,13633
21
21
  ultracart/api/order_api.py,sha256=tOwn6B6U_v0ph0joJqmiHg4koGQVrSyWawUZvfYxf_g,184504
22
22
  ultracart/api/sso_api.py,sha256=Ct9oau71nCUKecojo_1kkXRcIqPxhlVZiST2bdjLJJ8,21632
@@ -157,7 +157,7 @@ ultracart/model/city_state_zip.py,sha256=goGnlh4nzcsV1p8iNeFm4y6LP2TrtHIVjBPrHCD
157
157
  ultracart/model/conversation.py,sha256=RXA0sxxk_lMdX98mSbU0xXYzRkZjRI_XRtHBaOoLP14,17919
158
158
  ultracart/model/conversation_agent_auth.py,sha256=J-rWsga02x5zuPOG_gDNxG31HRVULBAXjn_T_dZn8mU,15291
159
159
  ultracart/model/conversation_agent_auth_response.py,sha256=boVaC_JNOUGPlmxX2E-QdQWFLAJMS8GC4OWMRYaCjNM,12906
160
- ultracart/model/conversation_agent_profile.py,sha256=bo3fHuNJ8mecWcQfOjw5HubEJRFhANBsUiF3_eZXbBw,16656
160
+ ultracart/model/conversation_agent_profile.py,sha256=V1VYtDzKxVuulgOyeLM8bZAc2rB609GfEltJdZ0sInU,18209
161
161
  ultracart/model/conversation_agent_profile_response.py,sha256=vlWWfOZOgHoUuA74xY23jQ9bk4yBZkBbhFWAKiv1mq0,12951
162
162
  ultracart/model/conversation_agent_profiles_response.py,sha256=xLkOQiO2jaByY0mAG9ctZQLVu641ZE57f-COKLnc4Zc,12965
163
163
  ultracart/model/conversation_autocomplete_request.py,sha256=OjTA7kT3wMyv8E63wwoxai_E5baFIWerzWOl-xn2RB8,11625
@@ -207,6 +207,9 @@ ultracart/model/conversation_messages_response.py,sha256=wKaD-ZyZz4PGDSRUw-cDmZ3
207
207
  ultracart/model/conversation_multimedia_upload_url.py,sha256=b83yz8vwDJCcmrlnzKrMmoIzWV85YXc9JvigpxpRchc,11610
208
208
  ultracart/model/conversation_multimedia_upload_url_response.py,sha256=I9GW0IiHrN8XbkV9-m9RvJI9QE39EHmGoXxei_LQ-DY,13127
209
209
  ultracart/model/conversation_participant.py,sha256=AL9wPJxm2TozPN31HbUisIv6AhvTL6DqPuG5VIqY7_4,14482
210
+ ultracart/model/conversation_pbx_address.py,sha256=uNc0AqB1pq05L6UGotAmPJkuUhH20QzY6l8U18othVc,15102
211
+ ultracart/model/conversation_pbx_address_response.py,sha256=bRPz3PD7drTc5NcigJsE27NZ3iYe7Yy5w4NiVY7ssrY,12901
212
+ ultracart/model/conversation_pbx_addresses_response.py,sha256=s32DRvLOnNu_Nkmqs_YAHHnzJyyzfCrV0QqxNJFk4ug,11742
210
213
  ultracart/model/conversation_pbx_agent.py,sha256=zRsqJ9Xiaqw0yyN5KrHLi8n7uocYsWNE2OuQ18bMO00,17249
211
214
  ultracart/model/conversation_pbx_agent_response.py,sha256=ExYxi_fMSjPzyaBA1U9OODt0Ktn8DSMHlRFiq8vfQ04,12871
212
215
  ultracart/model/conversation_pbx_agents_response.py,sha256=DsJzAkoq_3y8maXw3rlGTfshJnZK9gG0sdVO5WnFjTQ,12885
@@ -216,16 +219,19 @@ ultracart/model/conversation_pbx_audio_upload_url.py,sha256=h3KlzvgL2QkDEdx6-55q
216
219
  ultracart/model/conversation_pbx_audio_upload_url_response.py,sha256=gXXooQs_zWA_qwMEJoFywCcZedNzFXbNyKkfhaeukF0,13103
217
220
  ultracart/model/conversation_pbx_audio_usage_response.py,sha256=tNc1ZTFkkUKvRiIc6ZMZMqdcGVTWlzuqV8YuFfhteQc,13792
218
221
  ultracart/model/conversation_pbx_audios_response.py,sha256=llnOyuMCddIzgEzHTVHSKHeA7aha8ns6w2NDViqR8cY,12885
222
+ ultracart/model/conversation_pbx_available_phone_number.py,sha256=CjiPxfHI1009HSDc968mtmWTCSa0gKeiaxoo3jBgxY4,13976
223
+ ultracart/model/conversation_pbx_available_phone_numbers_response.py,sha256=O9BC6M9WeYvxn8UlSmrplZozi7zp9hUr9p6MtKmPtTs,13122
219
224
  ultracart/model/conversation_pbx_customer_snapshot_request.py,sha256=NX_L4Dnn2vkE0LJWKuHU_s_opzpzxVvoZIyuULwH7bo,13442
220
225
  ultracart/model/conversation_pbx_customer_snapshot_response.py,sha256=altaQBJHMquhMUViFRjvXY8c8BmPLs6KHRCzW_Ek0tg,13448
221
226
  ultracart/model/conversation_pbx_menu.py,sha256=Rc8FHYvtAppQYGBCNOdfVz5S4ouV4SVU6pQXxhPHHrg,15421
222
227
  ultracart/model/conversation_pbx_menu_mapping.py,sha256=-00uET0jZHl1gFjTfWCwGTVDiOM23Snx5zxJQOGvq7M,12619
223
228
  ultracart/model/conversation_pbx_menu_response.py,sha256=NknPaIxn5Xtbit9zmMoB5ri2TfUCdDiLqKi-4j3dYjI,12856
224
229
  ultracart/model/conversation_pbx_menus_response.py,sha256=b7aNcBBXfAlXGxlX0LXcHqZRMSTFattGtNxJqZ6Ciz4,12870
225
- ultracart/model/conversation_pbx_phone_number.py,sha256=3sOTjxCcQ-HhihvWw07LnvWVS3fUcLMoczhtZnGbXMc,13326
230
+ ultracart/model/conversation_pbx_phone_number.py,sha256=ApvrFznTPJZhHlpwFBDlLhXypTEJK0Scw_QWLUSv4H8,13789
231
+ ultracart/model/conversation_pbx_phone_number_purchase_request.py,sha256=nw2gAGvlZ7RDRskGdJU8w391UHUnNE1CCrVG5NfnqgI,13332
226
232
  ultracart/model/conversation_pbx_phone_number_response.py,sha256=FjbU6Rqy6J3eT3Jkhm32Wt47V0DxgR9-TPL4vq7k-hs,12967
227
233
  ultracart/model/conversation_pbx_phone_numbers_response.py,sha256=rYihQnA17xnRi69J5HL8A8WPPhpEsis9cPvWmXRbJVQ,12981
228
- ultracart/model/conversation_pbx_queue.py,sha256=uJtAgBj0_tnyqIdJK6RxG7pc32yfSD7AlqvqwSZ_QgY,19440
234
+ ultracart/model/conversation_pbx_queue.py,sha256=ldTyjekKV9yG43FygWYdaJBpDnG3e7QUVsZLvkGUZ-g,20164
229
235
  ultracart/model/conversation_pbx_queue_members.py,sha256=05KtH79B4H8imx-lfd4hlrrrcbCoXrpK2p0JmHUOr9c,11635
230
236
  ultracart/model/conversation_pbx_queue_response.py,sha256=xzYGTLoM4wtTuxNOu_pabjyM3qKxTGwX3p4cC3imGhs,12871
231
237
  ultracart/model/conversation_pbx_queues_response.py,sha256=TYpY1yzuSZnjgzNoWudPEAyqWIHzsmWvYdVBGcQZwxc,12885
@@ -612,6 +618,8 @@ ultracart/model/item_internal.py,sha256=6x0ERI_1dCcd37mKyLAS-PZSNO9MzvTXahXOhgIt
612
618
  ultracart/model/item_inventory_snapshot.py,sha256=MeIKQOCkXJPpEJdjdw5GNR6ELxoB8eC5-Z-KfouB87U,13165
613
619
  ultracart/model/item_inventory_snapshot_distribution_center.py,sha256=3juTnuKG63b9aj22Z_59nbju1J-HccnjFDB8lwAMPTk,12508
614
620
  ultracart/model/item_inventory_snapshot_response.py,sha256=WO4TySnG3weZVaKSwhncFmkCuFiGsa3aRJfdLjn4vaM,12943
621
+ ultracart/model/item_inventory_update.py,sha256=cTbfpGcsfQiqP2E_8-l-xNNSionE8ouy7rtKR1urlOk,12105
622
+ ultracart/model/item_inventory_update_request.py,sha256=ZwNpXtA76www0qZuYaQArSP3z8U8souoN0agzWfzbcs,11793
615
623
  ultracart/model/item_kit_component.py,sha256=1FbXgAWkh93eLhSkWsexyecERT21RK827lOIy0Gf_VU,12719
616
624
  ultracart/model/item_kit_definition.py,sha256=yG0ISvk8hZHHNLqqpsxst-S5ekl2xDT8_soB5bAqoeU,11684
617
625
  ultracart/model/item_option.py,sha256=hUC09m7-n1XMhUBKiiGWyUDrpB3lNmgu0FCOoNSD-uE,15728
@@ -931,9 +939,9 @@ ultracart/model/workflow_tasks_response.py,sha256=KmHe72xKnZiS9CemBr5hluY5EsU9_x
931
939
  ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE41k,11903
932
940
  ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
933
941
  ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
934
- ultracart/models/__init__.py,sha256=MEeUnTl9r5bfNUfVhnzdkiV0hEbd5VnqR00GYAVuGeU,70567
935
- ultracart_rest_sdk-4.1.37.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
936
- ultracart_rest_sdk-4.1.37.dist-info/METADATA,sha256=5UcGl_pNhbkqajpASycTOjjjhdsU2GyJMcp4gin2XSo,402
937
- ultracart_rest_sdk-4.1.37.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
938
- ultracart_rest_sdk-4.1.37.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
939
- ultracart_rest_sdk-4.1.37.dist-info/RECORD,,
942
+ ultracart/models/__init__.py,sha256=xGo2VdXmyUoLgnmuuaDaOoA0VMgWJ2dtPDq4rA3GFO0,71332
943
+ ultracart_rest_sdk-4.1.41.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
944
+ ultracart_rest_sdk-4.1.41.dist-info/METADATA,sha256=Jrpmx7FUBfjEMoyfmoFpVj5BHXYqLKotkOVSqQ4C_tM,402
945
+ ultracart_rest_sdk-4.1.41.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
946
+ ultracart_rest_sdk-4.1.41.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
947
+ ultracart_rest_sdk-4.1.41.dist-info/RECORD,,