ultracart-rest-sdk 4.1.8__py3-none-any.whl → 4.1.10__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ultracart/__init__.py CHANGED
@@ -11,7 +11,7 @@
11
11
  """
12
12
 
13
13
 
14
- __version__ = "4.1.8"
14
+ __version__ = "4.1.10"
15
15
 
16
16
  # import ApiClient
17
17
  from ultracart.api_client import ApiClient
@@ -25,6 +25,7 @@ from ultracart.model_utils import ( # noqa: F401
25
25
  from ultracart.model.conversation_agent_auth_response import ConversationAgentAuthResponse
26
26
  from ultracart.model.conversation_agent_profile import ConversationAgentProfile
27
27
  from ultracart.model.conversation_agent_profile_response import ConversationAgentProfileResponse
28
+ from ultracart.model.conversation_agent_profiles_response import ConversationAgentProfilesResponse
28
29
  from ultracart.model.conversation_autocomplete_request import ConversationAutocompleteRequest
29
30
  from ultracart.model.conversation_autocomplete_response import ConversationAutocompleteResponse
30
31
  from ultracart.model.conversation_canned_message import ConversationCannedMessage
@@ -775,6 +776,51 @@ class ConversationApi(object):
775
776
  },
776
777
  api_client=api_client
777
778
  )
779
+ self.get_agent_profiles_endpoint = _Endpoint(
780
+ settings={
781
+ 'response_type': (ConversationAgentProfilesResponse,),
782
+ 'auth': [
783
+ 'ultraCartOauth',
784
+ 'ultraCartSimpleApiKey'
785
+ ],
786
+ 'endpoint_path': '/conversation/agent/profiles',
787
+ 'operation_id': 'get_agent_profiles',
788
+ 'http_method': 'GET',
789
+ 'servers': None,
790
+ },
791
+ params_map={
792
+ 'all': [
793
+ ],
794
+ 'required': [],
795
+ 'nullable': [
796
+ ],
797
+ 'enum': [
798
+ ],
799
+ 'validation': [
800
+ ]
801
+ },
802
+ root_map={
803
+ 'validations': {
804
+ },
805
+ 'allowed_values': {
806
+ },
807
+ 'openapi_types': {
808
+ },
809
+ 'attribute_map': {
810
+ },
811
+ 'location_map': {
812
+ },
813
+ 'collection_format_map': {
814
+ }
815
+ },
816
+ headers_map={
817
+ 'accept': [
818
+ 'application/json'
819
+ ],
820
+ 'content_type': [],
821
+ },
822
+ api_client=api_client
823
+ )
778
824
  self.get_agent_websocket_authorization_endpoint = _Endpoint(
779
825
  settings={
780
826
  'response_type': (ConversationAgentAuthResponse,),
@@ -5516,6 +5562,84 @@ class ConversationApi(object):
5516
5562
  kwargs['_request_auths'] = kwargs.get('_request_auths', None)
5517
5563
  return self.get_agent_profile_endpoint.call_with_http_info(**kwargs)
5518
5564
 
5565
+ def get_agent_profiles(
5566
+ self,
5567
+ **kwargs
5568
+ ):
5569
+ """Get agent profiles # noqa: E501
5570
+
5571
+ Retrieve the agents profile # noqa: E501
5572
+ This method makes a synchronous HTTP request by default. To make an
5573
+ asynchronous HTTP request, please pass async_req=True
5574
+
5575
+ >>> thread = api.get_agent_profiles(async_req=True)
5576
+ >>> result = thread.get()
5577
+
5578
+
5579
+ Keyword Args:
5580
+ _return_http_data_only (bool): response data without head status
5581
+ code and headers. Default is True.
5582
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
5583
+ will be returned without reading/decoding response data.
5584
+ Default is True.
5585
+ _request_timeout (int/float/tuple): timeout setting for this request. If
5586
+ one number provided, it will be total request timeout. It can also
5587
+ be a pair (tuple) of (connection, read) timeouts.
5588
+ Default is None.
5589
+ _check_input_type (bool): specifies if type checking
5590
+ should be done one the data sent to the server.
5591
+ Default is True.
5592
+ _check_return_type (bool): specifies if type checking
5593
+ should be done one the data received from the server.
5594
+ Default is True.
5595
+ _spec_property_naming (bool): True if the variable names in the input data
5596
+ are serialized names, as specified in the OpenAPI document.
5597
+ False if the variable names in the input data
5598
+ are pythonic names, e.g. snake case (default)
5599
+ _content_type (str/None): force body content-type.
5600
+ Default is None and content-type will be predicted by allowed
5601
+ content-types and body.
5602
+ _host_index (int/None): specifies the index of the server
5603
+ that we want to use.
5604
+ Default is read from the configuration.
5605
+ _request_auths (list): set to override the auth_settings for an a single
5606
+ request; this effectively ignores the authentication
5607
+ in the spec for a single request.
5608
+ Default is None
5609
+ async_req (bool): execute request asynchronously
5610
+
5611
+ Returns:
5612
+ ConversationAgentProfilesResponse
5613
+ If the method is called asynchronously, returns the request
5614
+ thread.
5615
+ """
5616
+ kwargs['async_req'] = kwargs.get(
5617
+ 'async_req', False
5618
+ )
5619
+ kwargs['_return_http_data_only'] = kwargs.get(
5620
+ '_return_http_data_only', True
5621
+ )
5622
+ kwargs['_preload_content'] = kwargs.get(
5623
+ '_preload_content', True
5624
+ )
5625
+ kwargs['_request_timeout'] = kwargs.get(
5626
+ '_request_timeout', None
5627
+ )
5628
+ kwargs['_check_input_type'] = kwargs.get(
5629
+ '_check_input_type', True
5630
+ )
5631
+ kwargs['_check_return_type'] = kwargs.get(
5632
+ '_check_return_type', True
5633
+ )
5634
+ kwargs['_spec_property_naming'] = kwargs.get(
5635
+ '_spec_property_naming', False
5636
+ )
5637
+ kwargs['_content_type'] = kwargs.get(
5638
+ '_content_type')
5639
+ kwargs['_host_index'] = kwargs.get('_host_index')
5640
+ kwargs['_request_auths'] = kwargs.get('_request_auths', None)
5641
+ return self.get_agent_profiles_endpoint.call_with_http_info(**kwargs)
5642
+
5519
5643
  def get_agent_websocket_authorization(
5520
5644
  self,
5521
5645
  **kwargs
@@ -231,6 +231,14 @@ class WebhookApi(object):
231
231
  params_map={
232
232
  'all': [
233
233
  'webhook_oid',
234
+ 'request_id',
235
+ 'begin_date',
236
+ 'end_date',
237
+ 'status',
238
+ 'event',
239
+ 'order_id',
240
+ 'request',
241
+ 'duration',
234
242
  'limit',
235
243
  'offset',
236
244
  'since',
@@ -253,6 +261,22 @@ class WebhookApi(object):
253
261
  'openapi_types': {
254
262
  'webhook_oid':
255
263
  (int,),
264
+ 'request_id':
265
+ (str,),
266
+ 'begin_date':
267
+ (str,),
268
+ 'end_date':
269
+ (str,),
270
+ 'status':
271
+ (str,),
272
+ 'event':
273
+ (str,),
274
+ 'order_id':
275
+ (str,),
276
+ 'request':
277
+ (str,),
278
+ 'duration':
279
+ (int,),
256
280
  'limit':
257
281
  (int,),
258
282
  'offset':
@@ -262,12 +286,28 @@ class WebhookApi(object):
262
286
  },
263
287
  'attribute_map': {
264
288
  'webhook_oid': 'webhookOid',
289
+ 'request_id': 'requestId',
290
+ 'begin_date': 'beginDate',
291
+ 'end_date': 'endDate',
292
+ 'status': 'status',
293
+ 'event': 'event',
294
+ 'order_id': 'orderId',
295
+ 'request': 'request',
296
+ 'duration': 'duration',
265
297
  'limit': '_limit',
266
298
  'offset': '_offset',
267
299
  'since': '_since',
268
300
  },
269
301
  'location_map': {
270
302
  'webhook_oid': 'path',
303
+ 'request_id': 'query',
304
+ 'begin_date': 'query',
305
+ 'end_date': 'query',
306
+ 'status': 'query',
307
+ 'event': 'query',
308
+ 'order_id': 'query',
309
+ 'request': 'query',
310
+ 'duration': 'query',
271
311
  'limit': 'query',
272
312
  'offset': 'query',
273
313
  'since': 'query',
@@ -800,6 +840,14 @@ class WebhookApi(object):
800
840
  webhook_oid (int): The webhook oid to retrieve log summaries for.
801
841
 
802
842
  Keyword Args:
843
+ request_id (str): [optional]
844
+ begin_date (str): [optional]
845
+ end_date (str): [optional]
846
+ status (str): [optional]
847
+ event (str): [optional]
848
+ order_id (str): [optional]
849
+ request (str): [optional]
850
+ duration (int): [optional]
803
851
  limit (int): The maximum number of records to return on this one API call.. [optional] if omitted the server will use the default value of 100
804
852
  offset (int): Pagination of the record set. Offset is a zero based index.. [optional] if omitted the server will use the default value of 0
805
853
  since (str): Fetch log summaries that have been delivered since this date/time.. [optional]
ultracart/api_client.py CHANGED
@@ -77,7 +77,7 @@ class ApiClient(object):
77
77
  self.default_headers[header_name] = header_value
78
78
  self.cookie = cookie
79
79
  # Set default User-Agent.
80
- self.user_agent = 'OpenAPI-Generator/4.1.8/python'
80
+ self.user_agent = 'OpenAPI-Generator/4.1.10/python'
81
81
 
82
82
  def __enter__(self):
83
83
  return self
@@ -422,7 +422,7 @@ conf = ultracart.Configuration(
422
422
  "OS: {env}\n"\
423
423
  "Python Version: {pyversion}\n"\
424
424
  "Version of the API: 2.0.0\n"\
425
- "SDK Package Version: 4.1.8".\
425
+ "SDK Package Version: 4.1.10".\
426
426
  format(env=sys.platform, pyversion=sys.version)
427
427
 
428
428
  def get_host_settings(self):
@@ -98,6 +98,7 @@ class ConversationAgentProfile(ModelNormal):
98
98
  'name': (str,), # noqa: E501
99
99
  'profile_image_upload_key': (str,), # noqa: E501
100
100
  'profile_image_url': (str,), # noqa: E501
101
+ 'user_id': (int,), # noqa: E501
101
102
  }
102
103
 
103
104
  @cached_property
@@ -117,6 +118,7 @@ class ConversationAgentProfile(ModelNormal):
117
118
  'name': 'name', # noqa: E501
118
119
  'profile_image_upload_key': 'profile_image_upload_key', # noqa: E501
119
120
  'profile_image_url': 'profile_image_url', # noqa: E501
121
+ 'user_id': 'user_id', # noqa: E501
120
122
  }
121
123
 
122
124
  read_only_vars = {
@@ -171,6 +173,7 @@ class ConversationAgentProfile(ModelNormal):
171
173
  name (str): Their actual user name for profile settings display as placeholder test. [optional] # noqa: E501
172
174
  profile_image_upload_key (str): An upload key used to update the profile image.. [optional] # noqa: E501
173
175
  profile_image_url (str): Their current profile image URL. [optional] # noqa: E501
176
+ user_id (int): User ID associated with the agent. Populated by getAgentProfiles call only.. [optional] # noqa: E501
174
177
  """
175
178
 
176
179
  _check_type = kwargs.pop('_check_type', True)
@@ -267,6 +270,7 @@ class ConversationAgentProfile(ModelNormal):
267
270
  name (str): Their actual user name for profile settings display as placeholder test. [optional] # noqa: E501
268
271
  profile_image_upload_key (str): An upload key used to update the profile image.. [optional] # noqa: E501
269
272
  profile_image_url (str): Their current profile image URL. [optional] # noqa: E501
273
+ user_id (int): User ID associated with the agent. Populated by getAgentProfiles call only.. [optional] # noqa: E501
270
274
  """
271
275
 
272
276
  _check_type = kwargs.pop('_check_type', True)
@@ -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.conversation_agent_profile import ConversationAgentProfile
35
+ from ultracart.model.error import Error
36
+ from ultracart.model.response_metadata import ResponseMetadata
37
+ from ultracart.model.warning import Warning
38
+ globals()['ConversationAgentProfile'] = ConversationAgentProfile
39
+ globals()['Error'] = Error
40
+ globals()['ResponseMetadata'] = ResponseMetadata
41
+ globals()['Warning'] = Warning
42
+
43
+
44
+ class ConversationAgentProfilesResponse(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
+ 'agent_profiles': ([ConversationAgentProfile],), # noqa: E501
98
+ 'error': (Error,), # 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
+ 'agent_profiles': 'agent_profiles', # noqa: E501
111
+ 'error': 'error', # 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
+ """ConversationAgentProfilesResponse - 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
+ agent_profiles ([ConversationAgentProfile]): [optional] # noqa: E501
159
+ error (Error): [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
+ """ConversationAgentProfilesResponse - 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
+ agent_profiles ([ConversationAgentProfile]): [optional] # noqa: E501
249
+ error (Error): [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.")
@@ -144,6 +144,7 @@ from ultracart.model.conversation_agent_auth import ConversationAgentAuth
144
144
  from ultracart.model.conversation_agent_auth_response import ConversationAgentAuthResponse
145
145
  from ultracart.model.conversation_agent_profile import ConversationAgentProfile
146
146
  from ultracart.model.conversation_agent_profile_response import ConversationAgentProfileResponse
147
+ from ultracart.model.conversation_agent_profiles_response import ConversationAgentProfilesResponse
147
148
  from ultracart.model.conversation_autocomplete_request import ConversationAutocompleteRequest
148
149
  from ultracart.model.conversation_autocomplete_response import ConversationAutocompleteResponse
149
150
  from ultracart.model.conversation_autocomplete_value import ConversationAutocompleteValue
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ultracart-rest-sdk
3
- Version: 4.1.8
3
+ Version: 4.1.10
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=3fHNem5hfoNrSPeh0-xa809eSikouJbZd8ek7WKsekc,697
2
- ultracart/api_client.py,sha256=9rB9d6IT_TVAzeDwLjMVDLuTZVGDKAh6IQDG2pkxI1g,39070
3
- ultracart/configuration.py,sha256=GoxKvqkA6VDeSkE7JfF6Nl270_1u4yWw86TdUpOQS04,17840
1
+ ultracart/__init__.py,sha256=OuOKHFE-lByUGJry9QLYCNdnG9Rui5QjwpNKLcNwty8,698
2
+ ultracart/api_client.py,sha256=AL4H65AQL1deToEd2X11XTRbEt7dVmpesVwKeRU8W0A,39071
3
+ ultracart/configuration.py,sha256=c22WJWLoJCasxgzsypKUbsmeB7Iaxm_X9CTLINscR9c,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
@@ -10,7 +10,7 @@ ultracart/api/auto_order_api.py,sha256=Fxh8jqvSKGeVDod9pWGV9z6mgzP1cVS2hvqQA1bLN
10
10
  ultracart/api/channel_partner_api.py,sha256=EbAPFtaF8E38jrD7JgDaD-rGU3DM86O3lBPhDuq_fw4,89568
11
11
  ultracart/api/chargeback_api.py,sha256=bC5LfbV1DuVMZhfCvkkog33VACDVk7W74JvlaXy5Nuc,32295
12
12
  ultracart/api/checkout_api.py,sha256=KLZAsTMiY55AHDhubbNZYipBPGwihQbEsLDjIDzkLkQ,105889
13
- ultracart/api/conversation_api.py,sha256=fwFvhCeMBGguLqXHZQF1UsKxIzgsCfrKPGDDOKl-llM,442575
13
+ ultracart/api/conversation_api.py,sha256=Su3QJtCkxOkArvvH69uBZrALtk_dajoTT8d-mkG13HQ,447392
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
16
  ultracart/api/datawarehouse_api.py,sha256=4UdypzYNcDwgHeyWqK1x6WARC62u9CmbfVTGhryOq5I,52975
@@ -24,7 +24,7 @@ ultracart/api/sso_api.py,sha256=Ct9oau71nCUKecojo_1kkXRcIqPxhlVZiST2bdjLJJ8,2163
24
24
  ultracart/api/storefront_api.py,sha256=tItFugj94AYHHfGJLbhMlMkErGP1ItZoiOeqtdRafGw,1017735
25
25
  ultracart/api/tax_api.py,sha256=aQZaRsIXlFNDPwXYAykApv3KaAGfV-ZHB6QPBbEK-P0,148671
26
26
  ultracart/api/user_api.py,sha256=LrzuXSpBa5V_rS8iRDRRhFYnUZN9fR2Y54FRnJ_fpiI,56627
27
- ultracart/api/webhook_api.py,sha256=YCauQnRNn13DZ9StEaSItzhOztXjzOUC-ipcnK8Ag58,46732
27
+ ultracart/api/webhook_api.py,sha256=G3dR3EmddQABH5S1LoIJMIczDhoF2YWFQcw7maFg3s0,48476
28
28
  ultracart/api/workflow_api.py,sha256=R9FwRKXTwilS9hKnDYGtjTeTj4jnZln3QHQxh1JH-JU,64957
29
29
  ultracart/apis/__init__.py,sha256=34qpEkWA4o5K2-EOU97Cv8OiaFpey9RrjxQ4tr-hIX4,1521
30
30
  ultracart/model/__init__.py,sha256=suxHGMXD01EjVybiiQCxwC2UxGr-ARfz-MQPkowHO6w,343
@@ -161,8 +161,9 @@ ultracart/model/city_state_zip.py,sha256=goGnlh4nzcsV1p8iNeFm4y6LP2TrtHIVjBPrHCD
161
161
  ultracart/model/conversation.py,sha256=GzwEq5ZCV02WfWPE7zyJvbZz-MX1KIdBxij-zelOfYc,17213
162
162
  ultracart/model/conversation_agent_auth.py,sha256=OKvY61hG-vpVOtSzVOqXeBy-b5feJuglN53Ovcl0Co0,15038
163
163
  ultracart/model/conversation_agent_auth_response.py,sha256=boVaC_JNOUGPlmxX2E-QdQWFLAJMS8GC4OWMRYaCjNM,12906
164
- ultracart/model/conversation_agent_profile.py,sha256=5iVdmQ9Sx_D0LkO4LO4PblUuQq2uAXpKog247rPFJJg,15039
164
+ ultracart/model/conversation_agent_profile.py,sha256=SnD0oPpT7o8RvJAvewx0XslW56SHwV0JIqPEqtyF8nU,15388
165
165
  ultracart/model/conversation_agent_profile_response.py,sha256=vlWWfOZOgHoUuA74xY23jQ9bk4yBZkBbhFWAKiv1mq0,12951
166
+ ultracart/model/conversation_agent_profiles_response.py,sha256=xLkOQiO2jaByY0mAG9ctZQLVu641ZE57f-COKLnc4Zc,12965
166
167
  ultracart/model/conversation_autocomplete_request.py,sha256=OjTA7kT3wMyv8E63wwoxai_E5baFIWerzWOl-xn2RB8,11625
167
168
  ultracart/model/conversation_autocomplete_response.py,sha256=6SJ3yMnmCdVtQfSkmVfrNRoTEWi1ywIzOOswFSMGIZQ,13323
168
169
  ultracart/model/conversation_autocomplete_value.py,sha256=tuV-57IOBcdKlakwCwN4XFCO6eE30annpqKN4gJjM_U,11654
@@ -886,9 +887,9 @@ ultracart/model/workflow_tasks_response.py,sha256=KmHe72xKnZiS9CemBr5hluY5EsU9_x
886
887
  ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE41k,11903
887
888
  ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
888
889
  ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
889
- ultracart/models/__init__.py,sha256=mjPo2YARDrqLB_gk2EXIvNrvHlhKvZ2pJ2XfHQ47ahM,66202
890
- ultracart_rest_sdk-4.1.8.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
891
- ultracart_rest_sdk-4.1.8.dist-info/METADATA,sha256=8lQdoo84K4Q1ts6IIn4D_nKfdw4pfD26mEvkAjRzGWo,401
892
- ultracart_rest_sdk-4.1.8.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
893
- ultracart_rest_sdk-4.1.8.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
894
- ultracart_rest_sdk-4.1.8.dist-info/RECORD,,
890
+ ultracart/models/__init__.py,sha256=9nbV6GFKWCIcJ78EBR_Ir3h0VKU_ZHlh7QvEIyteaBE,66301
891
+ ultracart_rest_sdk-4.1.10.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
892
+ ultracart_rest_sdk-4.1.10.dist-info/METADATA,sha256=RK_2_z-MSSgZXl7nwcv8uZZsVVCebReQV43MUDY5yIE,402
893
+ ultracart_rest_sdk-4.1.10.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
894
+ ultracart_rest_sdk-4.1.10.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
895
+ ultracart_rest_sdk-4.1.10.dist-info/RECORD,,