ultracart-rest-sdk 4.1.7__py3-none-any.whl → 4.1.9__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.7"
14
+ __version__ = "4.1.9"
15
15
 
16
16
  # import ApiClient
17
17
  from ultracart.api_client import ApiClient
@@ -22,6 +22,7 @@ from ultracart.model_utils import ( # noqa: F401
22
22
  none_type,
23
23
  validate_and_convert_types
24
24
  )
25
+ from ultracart.model.chanel_partner_reason_codes_response import ChanelPartnerReasonCodesResponse
25
26
  from ultracart.model.channel_partner_cancel_response import ChannelPartnerCancelResponse
26
27
  from ultracart.model.channel_partner_estimate_shipping_response import ChannelPartnerEstimateShippingResponse
27
28
  from ultracart.model.channel_partner_estimate_tax_response import ChannelPartnerEstimateTaxResponse
@@ -440,6 +441,58 @@ class ChannelPartnerApi(object):
440
441
  },
441
442
  api_client=api_client
442
443
  )
444
+ self.get_channel_partner_reason_codes_endpoint = _Endpoint(
445
+ settings={
446
+ 'response_type': (ChanelPartnerReasonCodesResponse,),
447
+ 'auth': [
448
+ 'ultraCartOauth',
449
+ 'ultraCartSimpleApiKey'
450
+ ],
451
+ 'endpoint_path': '/channel_partner/channel_partners/{channel_partner_oid}/reason_codes',
452
+ 'operation_id': 'get_channel_partner_reason_codes',
453
+ 'http_method': 'GET',
454
+ 'servers': None,
455
+ },
456
+ params_map={
457
+ 'all': [
458
+ 'channel_partner_oid',
459
+ ],
460
+ 'required': [
461
+ 'channel_partner_oid',
462
+ ],
463
+ 'nullable': [
464
+ ],
465
+ 'enum': [
466
+ ],
467
+ 'validation': [
468
+ ]
469
+ },
470
+ root_map={
471
+ 'validations': {
472
+ },
473
+ 'allowed_values': {
474
+ },
475
+ 'openapi_types': {
476
+ 'channel_partner_oid':
477
+ (int,),
478
+ },
479
+ 'attribute_map': {
480
+ 'channel_partner_oid': 'channel_partner_oid',
481
+ },
482
+ 'location_map': {
483
+ 'channel_partner_oid': 'path',
484
+ },
485
+ 'collection_format_map': {
486
+ }
487
+ },
488
+ headers_map={
489
+ 'accept': [
490
+ 'application/json'
491
+ ],
492
+ 'content_type': [],
493
+ },
494
+ api_client=api_client
495
+ )
443
496
  self.get_channel_partner_ship_to_preference_endpoint = _Endpoint(
444
497
  settings={
445
498
  'response_type': (ChannelPartnerShipToPreferenceResponse,),
@@ -1459,6 +1512,89 @@ class ChannelPartnerApi(object):
1459
1512
  order_id
1460
1513
  return self.get_channel_partner_order_by_channel_partner_order_id_endpoint.call_with_http_info(**kwargs)
1461
1514
 
1515
+ def get_channel_partner_reason_codes(
1516
+ self,
1517
+ channel_partner_oid,
1518
+ **kwargs
1519
+ ):
1520
+ """Retrieve reject and refund reason codes. # noqa: E501
1521
+
1522
+ Retrieve reject and refund reason codes. # noqa: E501
1523
+ This method makes a synchronous HTTP request by default. To make an
1524
+ asynchronous HTTP request, please pass async_req=True
1525
+
1526
+ >>> thread = api.get_channel_partner_reason_codes(channel_partner_oid, async_req=True)
1527
+ >>> result = thread.get()
1528
+
1529
+ Args:
1530
+ channel_partner_oid (int):
1531
+
1532
+ Keyword Args:
1533
+ _return_http_data_only (bool): response data without head status
1534
+ code and headers. Default is True.
1535
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
1536
+ will be returned without reading/decoding response data.
1537
+ Default is True.
1538
+ _request_timeout (int/float/tuple): timeout setting for this request. If
1539
+ one number provided, it will be total request timeout. It can also
1540
+ be a pair (tuple) of (connection, read) timeouts.
1541
+ Default is None.
1542
+ _check_input_type (bool): specifies if type checking
1543
+ should be done one the data sent to the server.
1544
+ Default is True.
1545
+ _check_return_type (bool): specifies if type checking
1546
+ should be done one the data received from the server.
1547
+ Default is True.
1548
+ _spec_property_naming (bool): True if the variable names in the input data
1549
+ are serialized names, as specified in the OpenAPI document.
1550
+ False if the variable names in the input data
1551
+ are pythonic names, e.g. snake case (default)
1552
+ _content_type (str/None): force body content-type.
1553
+ Default is None and content-type will be predicted by allowed
1554
+ content-types and body.
1555
+ _host_index (int/None): specifies the index of the server
1556
+ that we want to use.
1557
+ Default is read from the configuration.
1558
+ _request_auths (list): set to override the auth_settings for an a single
1559
+ request; this effectively ignores the authentication
1560
+ in the spec for a single request.
1561
+ Default is None
1562
+ async_req (bool): execute request asynchronously
1563
+
1564
+ Returns:
1565
+ ChanelPartnerReasonCodesResponse
1566
+ If the method is called asynchronously, returns the request
1567
+ thread.
1568
+ """
1569
+ kwargs['async_req'] = kwargs.get(
1570
+ 'async_req', False
1571
+ )
1572
+ kwargs['_return_http_data_only'] = kwargs.get(
1573
+ '_return_http_data_only', True
1574
+ )
1575
+ kwargs['_preload_content'] = kwargs.get(
1576
+ '_preload_content', True
1577
+ )
1578
+ kwargs['_request_timeout'] = kwargs.get(
1579
+ '_request_timeout', None
1580
+ )
1581
+ kwargs['_check_input_type'] = kwargs.get(
1582
+ '_check_input_type', True
1583
+ )
1584
+ kwargs['_check_return_type'] = kwargs.get(
1585
+ '_check_return_type', True
1586
+ )
1587
+ kwargs['_spec_property_naming'] = kwargs.get(
1588
+ '_spec_property_naming', False
1589
+ )
1590
+ kwargs['_content_type'] = kwargs.get(
1591
+ '_content_type')
1592
+ kwargs['_host_index'] = kwargs.get('_host_index')
1593
+ kwargs['_request_auths'] = kwargs.get('_request_auths', None)
1594
+ kwargs['channel_partner_oid'] = \
1595
+ channel_partner_oid
1596
+ return self.get_channel_partner_reason_codes_endpoint.call_with_http_info(**kwargs)
1597
+
1462
1598
  def get_channel_partner_ship_to_preference(
1463
1599
  self,
1464
1600
  channel_partner_oid,
@@ -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.7/python'
80
+ self.user_agent = 'OpenAPI-Generator/4.1.9/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.7".\
425
+ "SDK Package Version: 4.1.9".\
426
426
  format(env=sys.platform, pyversion=sys.version)
427
427
 
428
428
  def get_host_settings(self):
@@ -0,0 +1,316 @@
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.order_reason import OrderReason
36
+ from ultracart.model.response_metadata import ResponseMetadata
37
+ from ultracart.model.warning import Warning
38
+ globals()['Error'] = Error
39
+ globals()['OrderReason'] = OrderReason
40
+ globals()['ResponseMetadata'] = ResponseMetadata
41
+ globals()['Warning'] = Warning
42
+
43
+
44
+ class ChanelPartnerReasonCodesResponse(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
+ 'item_level_refund_reason_required': (bool,), # noqa: E501
99
+ 'item_level_refund_reasons': ([OrderReason],), # noqa: E501
100
+ 'item_level_return_reasons': ([OrderReason],), # noqa: E501
101
+ 'metadata': (ResponseMetadata,), # noqa: E501
102
+ 'order_level_refund_reason_required': (bool,), # noqa: E501
103
+ 'order_level_refund_reasons': ([OrderReason],), # noqa: E501
104
+ 'order_level_reject_reason_required': (bool,), # noqa: E501
105
+ 'order_level_reject_reasons': ([OrderReason],), # noqa: E501
106
+ 'success': (bool,), # noqa: E501
107
+ 'warning': (Warning,), # noqa: E501
108
+ }
109
+
110
+ @cached_property
111
+ def discriminator():
112
+ return None
113
+
114
+
115
+ attribute_map = {
116
+ 'error': 'error', # noqa: E501
117
+ 'item_level_refund_reason_required': 'item_level_refund_reason_required', # noqa: E501
118
+ 'item_level_refund_reasons': 'item_level_refund_reasons', # noqa: E501
119
+ 'item_level_return_reasons': 'item_level_return_reasons', # noqa: E501
120
+ 'metadata': 'metadata', # noqa: E501
121
+ 'order_level_refund_reason_required': 'order_level_refund_reason_required', # noqa: E501
122
+ 'order_level_refund_reasons': 'order_level_refund_reasons', # noqa: E501
123
+ 'order_level_reject_reason_required': 'order_level_reject_reason_required', # noqa: E501
124
+ 'order_level_reject_reasons': 'order_level_reject_reasons', # noqa: E501
125
+ 'success': 'success', # noqa: E501
126
+ 'warning': 'warning', # noqa: E501
127
+ }
128
+
129
+ read_only_vars = {
130
+ }
131
+
132
+ _composed_schemas = {}
133
+
134
+ @classmethod
135
+ @convert_js_args_to_python_args
136
+ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
137
+ """ChanelPartnerReasonCodesResponse - a model defined in OpenAPI
138
+
139
+ Keyword Args:
140
+ _check_type (bool): if True, values for parameters in openapi_types
141
+ will be type checked and a TypeError will be
142
+ raised if the wrong type is input.
143
+ Defaults to True
144
+ _path_to_item (tuple/list): This is a list of keys or values to
145
+ drill down to the model in received_data
146
+ when deserializing a response
147
+ _spec_property_naming (bool): True if the variable names in the input data
148
+ are serialized names, as specified in the OpenAPI document.
149
+ False if the variable names in the input data
150
+ are pythonic names, e.g. snake case (default)
151
+ _configuration (Configuration): the instance to use when
152
+ deserializing a file_type parameter.
153
+ If passed, type conversion is attempted
154
+ If omitted no type conversion is done.
155
+ _visited_composed_classes (tuple): This stores a tuple of
156
+ classes that we have traveled through so that
157
+ if we see that class again we will not use its
158
+ discriminator again.
159
+ When traveling through a discriminator, the
160
+ composed schema that is
161
+ is traveled through is added to this set.
162
+ For example if Animal has a discriminator
163
+ petType and we pass in "Dog", and the class Dog
164
+ allOf includes Animal, we move through Animal
165
+ once using the discriminator, and pick Dog.
166
+ Then in Dog, we will make an instance of the
167
+ Animal class but this time we won't travel
168
+ through its discriminator because we passed in
169
+ _visited_composed_classes = (Animal,)
170
+ error (Error): [optional] # noqa: E501
171
+ item_level_refund_reason_required (bool): True if the item level refund reason is required. [optional] # noqa: E501
172
+ item_level_refund_reasons ([OrderReason]): Reason codes available at the item level.. [optional] # noqa: E501
173
+ item_level_return_reasons ([OrderReason]): Return codes available at the item level.. [optional] # noqa: E501
174
+ metadata (ResponseMetadata): [optional] # noqa: E501
175
+ order_level_refund_reason_required (bool): True if the order level refund reason is required. [optional] # noqa: E501
176
+ order_level_refund_reasons ([OrderReason]): Reason codes available at the order level.. [optional] # noqa: E501
177
+ order_level_reject_reason_required (bool): True if the order level reject reason is required. [optional] # noqa: E501
178
+ order_level_reject_reasons ([OrderReason]): Reject codes available at the order level.. [optional] # noqa: E501
179
+ success (bool): Indicates if API call was successful. [optional] # noqa: E501
180
+ warning (Warning): [optional] # noqa: E501
181
+ """
182
+
183
+ _check_type = kwargs.pop('_check_type', True)
184
+ _spec_property_naming = kwargs.pop('_spec_property_naming', True)
185
+ _path_to_item = kwargs.pop('_path_to_item', ())
186
+ _configuration = kwargs.pop('_configuration', None)
187
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
188
+
189
+ self = super(OpenApiModel, cls).__new__(cls)
190
+
191
+ if args:
192
+ for arg in args:
193
+ if isinstance(arg, dict):
194
+ kwargs.update(arg)
195
+ else:
196
+ raise ApiTypeError(
197
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
198
+ args,
199
+ self.__class__.__name__,
200
+ ),
201
+ path_to_item=_path_to_item,
202
+ valid_classes=(self.__class__,),
203
+ )
204
+
205
+ self._data_store = {}
206
+ self._check_type = _check_type
207
+ self._spec_property_naming = _spec_property_naming
208
+ self._path_to_item = _path_to_item
209
+ self._configuration = _configuration
210
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
211
+
212
+ for var_name, var_value in kwargs.items():
213
+ if var_name not in self.attribute_map and \
214
+ self._configuration is not None and \
215
+ self._configuration.discard_unknown_keys and \
216
+ self.additional_properties_type is None:
217
+ # discard variable.
218
+ continue
219
+ setattr(self, var_name, var_value)
220
+ return self
221
+
222
+ required_properties = set([
223
+ '_data_store',
224
+ '_check_type',
225
+ '_spec_property_naming',
226
+ '_path_to_item',
227
+ '_configuration',
228
+ '_visited_composed_classes',
229
+ ])
230
+
231
+ @convert_js_args_to_python_args
232
+ def __init__(self, *args, **kwargs): # noqa: E501
233
+ """ChanelPartnerReasonCodesResponse - a model defined in OpenAPI
234
+
235
+ Keyword Args:
236
+ _check_type (bool): if True, values for parameters in openapi_types
237
+ will be type checked and a TypeError will be
238
+ raised if the wrong type is input.
239
+ Defaults to True
240
+ _path_to_item (tuple/list): This is a list of keys or values to
241
+ drill down to the model in received_data
242
+ when deserializing a response
243
+ _spec_property_naming (bool): True if the variable names in the input data
244
+ are serialized names, as specified in the OpenAPI document.
245
+ False if the variable names in the input data
246
+ are pythonic names, e.g. snake case (default)
247
+ _configuration (Configuration): the instance to use when
248
+ deserializing a file_type parameter.
249
+ If passed, type conversion is attempted
250
+ If omitted no type conversion is done.
251
+ _visited_composed_classes (tuple): This stores a tuple of
252
+ classes that we have traveled through so that
253
+ if we see that class again we will not use its
254
+ discriminator again.
255
+ When traveling through a discriminator, the
256
+ composed schema that is
257
+ is traveled through is added to this set.
258
+ For example if Animal has a discriminator
259
+ petType and we pass in "Dog", and the class Dog
260
+ allOf includes Animal, we move through Animal
261
+ once using the discriminator, and pick Dog.
262
+ Then in Dog, we will make an instance of the
263
+ Animal class but this time we won't travel
264
+ through its discriminator because we passed in
265
+ _visited_composed_classes = (Animal,)
266
+ error (Error): [optional] # noqa: E501
267
+ item_level_refund_reason_required (bool): True if the item level refund reason is required. [optional] # noqa: E501
268
+ item_level_refund_reasons ([OrderReason]): Reason codes available at the item level.. [optional] # noqa: E501
269
+ item_level_return_reasons ([OrderReason]): Return codes available at the item level.. [optional] # noqa: E501
270
+ metadata (ResponseMetadata): [optional] # noqa: E501
271
+ order_level_refund_reason_required (bool): True if the order level refund reason is required. [optional] # noqa: E501
272
+ order_level_refund_reasons ([OrderReason]): Reason codes available at the order level.. [optional] # noqa: E501
273
+ order_level_reject_reason_required (bool): True if the order level reject reason is required. [optional] # noqa: E501
274
+ order_level_reject_reasons ([OrderReason]): Reject codes available at the order level.. [optional] # noqa: E501
275
+ success (bool): Indicates if API call was successful. [optional] # noqa: E501
276
+ warning (Warning): [optional] # noqa: E501
277
+ """
278
+
279
+ _check_type = kwargs.pop('_check_type', True)
280
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
281
+ _path_to_item = kwargs.pop('_path_to_item', ())
282
+ _configuration = kwargs.pop('_configuration', None)
283
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
284
+
285
+ if args:
286
+ for arg in args:
287
+ if isinstance(arg, dict):
288
+ kwargs.update(arg)
289
+ else:
290
+ raise ApiTypeError(
291
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
292
+ args,
293
+ self.__class__.__name__,
294
+ ),
295
+ path_to_item=_path_to_item,
296
+ valid_classes=(self.__class__,),
297
+ )
298
+
299
+ self._data_store = {}
300
+ self._check_type = _check_type
301
+ self._spec_property_naming = _spec_property_naming
302
+ self._path_to_item = _path_to_item
303
+ self._configuration = _configuration
304
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
305
+
306
+ for var_name, var_value in kwargs.items():
307
+ if var_name not in self.attribute_map and \
308
+ self._configuration is not None and \
309
+ self._configuration.discard_unknown_keys and \
310
+ self.additional_properties_type is None:
311
+ # discard variable.
312
+ continue
313
+ setattr(self, var_name, var_value)
314
+ if var_name in self.read_only_vars:
315
+ raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
316
+ 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.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.")
@@ -59,6 +59,9 @@ class OrderProperty(ModelNormal):
59
59
  }
60
60
 
61
61
  validations = {
62
+ ('created_by',): {
63
+ 'max_length': 20,
64
+ },
62
65
  ('name',): {
63
66
  'max_length': 100,
64
67
  },
@@ -88,6 +91,8 @@ class OrderProperty(ModelNormal):
88
91
  and the value is attribute type.
89
92
  """
90
93
  return {
94
+ 'created_by': (str,), # noqa: E501
95
+ 'created_dts': (str,), # noqa: E501
91
96
  'display': (bool,), # noqa: E501
92
97
  'expiration_dts': (str,), # noqa: E501
93
98
  'name': (str,), # noqa: E501
@@ -100,6 +105,8 @@ class OrderProperty(ModelNormal):
100
105
 
101
106
 
102
107
  attribute_map = {
108
+ 'created_by': 'created_by', # noqa: E501
109
+ 'created_dts': 'created_dts', # noqa: E501
103
110
  'display': 'display', # noqa: E501
104
111
  'expiration_dts': 'expiration_dts', # noqa: E501
105
112
  'name': 'name', # noqa: E501
@@ -147,6 +154,8 @@ class OrderProperty(ModelNormal):
147
154
  Animal class but this time we won't travel
148
155
  through its discriminator because we passed in
149
156
  _visited_composed_classes = (Animal,)
157
+ created_by (str): Created by user. [optional] # noqa: E501
158
+ created_dts (str): The date/time that the property was created by the user. [optional] # noqa: E501
150
159
  display (bool): True if this property is displayed to the customer. [optional] # noqa: E501
151
160
  expiration_dts (str): The date/time that the property expires and is deleted. [optional] # noqa: E501
152
161
  name (str): Name. [optional] # noqa: E501
@@ -236,6 +245,8 @@ class OrderProperty(ModelNormal):
236
245
  Animal class but this time we won't travel
237
246
  through its discriminator because we passed in
238
247
  _visited_composed_classes = (Animal,)
248
+ created_by (str): Created by user. [optional] # noqa: E501
249
+ created_dts (str): The date/time that the property was created by the user. [optional] # noqa: E501
239
250
  display (bool): True if this property is displayed to the customer. [optional] # noqa: E501
240
251
  expiration_dts (str): The date/time that the property expires and is deleted. [optional] # noqa: E501
241
252
  name (str): Name. [optional] # noqa: E501
@@ -112,6 +112,7 @@ from ultracart.model.cart_taxes import CartTaxes
112
112
  from ultracart.model.cart_upsell_after import CartUpsellAfter
113
113
  from ultracart.model.cart_validation_request import CartValidationRequest
114
114
  from ultracart.model.cart_validation_response import CartValidationResponse
115
+ from ultracart.model.chanel_partner_reason_codes_response import ChanelPartnerReasonCodesResponse
115
116
  from ultracart.model.channel_partner import ChannelPartner
116
117
  from ultracart.model.channel_partner_cancel_response import ChannelPartnerCancelResponse
117
118
  from ultracart.model.channel_partner_estimate_shipping_response import ChannelPartnerEstimateShippingResponse
@@ -143,6 +144,7 @@ from ultracart.model.conversation_agent_auth import ConversationAgentAuth
143
144
  from ultracart.model.conversation_agent_auth_response import ConversationAgentAuthResponse
144
145
  from ultracart.model.conversation_agent_profile import ConversationAgentProfile
145
146
  from ultracart.model.conversation_agent_profile_response import ConversationAgentProfileResponse
147
+ from ultracart.model.conversation_agent_profiles_response import ConversationAgentProfilesResponse
146
148
  from ultracart.model.conversation_autocomplete_request import ConversationAutocompleteRequest
147
149
  from ultracart.model.conversation_autocomplete_response import ConversationAutocompleteResponse
148
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.7
3
+ Version: 4.1.9
4
4
  Summary: UltraCart Rest API V2
5
5
  Home-page: UNKNOWN
6
6
  Author: UltraCart Support
@@ -1,16 +1,16 @@
1
- ultracart/__init__.py,sha256=3fTe9QT-N7lIpRrGFu4ySkgrlKKBZHzSpriCR_gFIL8,697
2
- ultracart/api_client.py,sha256=h6cdfVLGdzxGIt-DLBqMbtqZXOMUiOV-7BqnJycUx_I,39070
3
- ultracart/configuration.py,sha256=YOhQl9_LqsNm57oi7QtCsQt5uflaN2SO25gOwKxn6Qc,17840
1
+ ultracart/__init__.py,sha256=FYhJjBRK0t0U88m_FUfWZzQu-9Qm07rfgSrAwTlH4g0,697
2
+ ultracart/api_client.py,sha256=C8EVy9jofGH4I__Wy4h9rOC7HfmFHAD_dIN8FX-IzSs,39070
3
+ ultracart/configuration.py,sha256=palikcZN68K3PLiM8aoanhyG95hSiUQ7TvJSrQfzD80,17840
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
7
7
  ultracart/api/__init__.py,sha256=M5v24jKFBCCBje15G0udcVQwqNCZsFU_-JgIf55tAP8,215
8
8
  ultracart/api/affiliate_api.py,sha256=Rq7y9AAmN2gOT57qTulnMkr-W4SBboMrzKyM2SXT6R8,14519
9
9
  ultracart/api/auto_order_api.py,sha256=Fxh8jqvSKGeVDod9pWGV9z6mgzP1cVS2hvqQA1bLNnI,72000
10
- ultracart/api/channel_partner_api.py,sha256=CGEcolptRq79Wvkrd9FFe5Cp5ekHV0mLITHYLMVkOnE,84137
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
@@ -131,6 +131,7 @@ ultracart/model/cart_taxes.py,sha256=kyaaigzZVn4gkaI8ynhJ9Lh05VNb9OQfhOYTqMzS2KY
131
131
  ultracart/model/cart_upsell_after.py,sha256=FW72bbr4rlQ6J8UAMN33WxgJc_GgA16iQOMJ2Lmcu-I,12497
132
132
  ultracart/model/cart_validation_request.py,sha256=n_UJMsC4LKR0C7NSXELwi4aF1McbkuNppvcM_LC2uOE,11782
133
133
  ultracart/model/cart_validation_response.py,sha256=ENGgzQdIPkXAKM6yNk9LyOKyu2YrLr9dzCGYyfCniqE,11909
134
+ ultracart/model/chanel_partner_reason_codes_response.py,sha256=QAkNinQyhSuv41nf8BXgwSBUrDBcxEffv74V5fC2rVs,15514
134
135
  ultracart/model/channel_partner.py,sha256=bqNPbNXFjUO7gyVCYw4wIvPUbHo49inuN4Zr_7zor5Y,13730
135
136
  ultracart/model/channel_partner_cancel_response.py,sha256=jUOeYsm5CqtHInXWujdpHJF3z-EY2WAEDt0SurRxSdM,12801
136
137
  ultracart/model/channel_partner_estimate_shipping_response.py,sha256=Y1mG1FK9UEoTaYBvGwt2Eiod4r0oabWfUbUnY_Hfuwc,13090
@@ -162,6 +163,7 @@ ultracart/model/conversation_agent_auth.py,sha256=OKvY61hG-vpVOtSzVOqXeBy-b5feJu
162
163
  ultracart/model/conversation_agent_auth_response.py,sha256=boVaC_JNOUGPlmxX2E-QdQWFLAJMS8GC4OWMRYaCjNM,12906
163
164
  ultracart/model/conversation_agent_profile.py,sha256=5iVdmQ9Sx_D0LkO4LO4PblUuQq2uAXpKog247rPFJJg,15039
164
165
  ultracart/model/conversation_agent_profile_response.py,sha256=vlWWfOZOgHoUuA74xY23jQ9bk4yBZkBbhFWAKiv1mq0,12951
166
+ ultracart/model/conversation_agent_profiles_response.py,sha256=xLkOQiO2jaByY0mAG9ctZQLVu641ZE57f-COKLnc4Zc,12965
165
167
  ultracart/model/conversation_autocomplete_request.py,sha256=OjTA7kT3wMyv8E63wwoxai_E5baFIWerzWOl-xn2RB8,11625
166
168
  ultracart/model/conversation_autocomplete_response.py,sha256=6SJ3yMnmCdVtQfSkmVfrNRoTEWi1ywIzOOswFSMGIZQ,13323
167
169
  ultracart/model/conversation_autocomplete_value.py,sha256=tuV-57IOBcdKlakwCwN4XFCO6eE30annpqKN4gJjM_U,11654
@@ -686,7 +688,7 @@ ultracart/model/order_payment_transaction_detail.py,sha256=vS0VqkWoC-D43OqNKaGEp
686
688
  ultracart/model/order_point_of_sale.py,sha256=5PcsqLiP1BR7nePLXEqSF1jIFid0eco2dcVHXPul5b0,12399
687
689
  ultracart/model/order_process_payment_request.py,sha256=J9_DP7vtyLyvyAMxoUc2s5e49DrYsAP7hSYBasUc4pU,12147
688
690
  ultracart/model/order_process_payment_response.py,sha256=mp3Jdx6-Rp5DXPhUpja2jKArwsgYCsTpYuKuds7MLKs,12959
689
- ultracart/model/order_property.py,sha256=TTwNAPFD0xn200o_d9xJnLVIOw2F_Kgs8veYbx7JD1Q,12365
691
+ ultracart/model/order_property.py,sha256=BVFk0TkQhTUVNSV6F8zbqXrVLfNZFSKhogPRoxy_LZ0,13002
690
692
  ultracart/model/order_query.py,sha256=ieD1zsPkQQjPmQchx-jInN_JaGpTpV9NzmGN0KlCdsM,25462
691
693
  ultracart/model/order_query_batch.py,sha256=LgS-ewYKfDvu5xxyHDMc7IWc7PrEFKGZjapC9P4mSbM,11795
692
694
  ultracart/model/order_quote.py,sha256=rearxF0qL6u7uhstszLj2iajryy7om5nGc_LiFgtZuI,12012
@@ -885,9 +887,9 @@ ultracart/model/workflow_tasks_response.py,sha256=KmHe72xKnZiS9CemBr5hluY5EsU9_x
885
887
  ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE41k,11903
886
888
  ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
887
889
  ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
888
- ultracart/models/__init__.py,sha256=wAZZhiqX114o5CigFRt6h0F3xqGgBhuAJWasT4khLgM,66104
889
- ultracart_rest_sdk-4.1.7.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
890
- ultracart_rest_sdk-4.1.7.dist-info/METADATA,sha256=wNtDuhTGqwogfB6GFkLXMIerJWgd49DeQ2DmVWuCqtA,401
891
- ultracart_rest_sdk-4.1.7.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
892
- ultracart_rest_sdk-4.1.7.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
893
- ultracart_rest_sdk-4.1.7.dist-info/RECORD,,
890
+ ultracart/models/__init__.py,sha256=9nbV6GFKWCIcJ78EBR_Ir3h0VKU_ZHlh7QvEIyteaBE,66301
891
+ ultracart_rest_sdk-4.1.9.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
892
+ ultracart_rest_sdk-4.1.9.dist-info/METADATA,sha256=dujVdRxe11ehpxHwLpbVK92BTaYQW9IRMUnUBFFEin4,401
893
+ ultracart_rest_sdk-4.1.9.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
894
+ ultracart_rest_sdk-4.1.9.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
895
+ ultracart_rest_sdk-4.1.9.dist-info/RECORD,,