ultracart-rest-sdk 3.11.45__py3-none-any.whl → 3.11.49__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 +7 -0
- ultracart/api/conversation_api.py +722 -29
- ultracart/api_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/models/__init__.py +7 -0
- ultracart/models/cart.py +31 -3
- ultracart/models/cart_utm.py +923 -0
- ultracart/models/conversation_agent_auth.py +53 -1
- ultracart/models/conversation_pbx_hardware_phone.py +473 -0
- ultracart/models/conversation_pbx_hardware_phone_response.py +221 -0
- ultracart/models/conversation_pbx_hardware_phones_response.py +115 -0
- ultracart/models/conversation_pbx_phone_manufacturer.py +167 -0
- ultracart/models/conversation_pbx_phone_manufacturers_response.py +221 -0
- ultracart/models/conversation_pbx_phone_model.py +141 -0
- {ultracart_rest_sdk-3.11.45.dist-info → ultracart_rest_sdk-3.11.49.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-3.11.45.dist-info → ultracart_rest_sdk-3.11.49.dist-info}/RECORD +19 -12
- {ultracart_rest_sdk-3.11.45.dist-info → ultracart_rest_sdk-3.11.49.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-3.11.45.dist-info → ultracart_rest_sdk-3.11.49.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-3.11.45.dist-info → ultracart_rest_sdk-3.11.49.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
UltraCart Rest API V2
|
|
5
|
+
|
|
6
|
+
UltraCart REST API Version 2 # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: 2.0.0
|
|
9
|
+
Contact: support@ultracart.com
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
import pprint
|
|
15
|
+
import re # noqa: F401
|
|
16
|
+
|
|
17
|
+
import six
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ConversationPbxPhoneManufacturersResponse(object):
|
|
21
|
+
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
22
|
+
|
|
23
|
+
Do not edit the class manually.
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
"""
|
|
27
|
+
Attributes:
|
|
28
|
+
swagger_types (dict): The key is attribute name
|
|
29
|
+
and the value is attribute type.
|
|
30
|
+
attribute_map (dict): The key is attribute name
|
|
31
|
+
and the value is json key in definition.
|
|
32
|
+
"""
|
|
33
|
+
swagger_types = {
|
|
34
|
+
'error': 'Error',
|
|
35
|
+
'manufacturers': 'list[ConversationPbxPhoneManufacturer]',
|
|
36
|
+
'metadata': 'ResponseMetadata',
|
|
37
|
+
'success': 'bool',
|
|
38
|
+
'warning': 'Warning'
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
attribute_map = {
|
|
42
|
+
'error': 'error',
|
|
43
|
+
'manufacturers': 'manufacturers',
|
|
44
|
+
'metadata': 'metadata',
|
|
45
|
+
'success': 'success',
|
|
46
|
+
'warning': 'warning'
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
def __init__(self, error=None, manufacturers=None, metadata=None, success=None, warning=None): # noqa: E501
|
|
50
|
+
"""ConversationPbxPhoneManufacturersResponse - a model defined in Swagger""" # noqa: E501
|
|
51
|
+
|
|
52
|
+
self._error = None
|
|
53
|
+
self._manufacturers = None
|
|
54
|
+
self._metadata = None
|
|
55
|
+
self._success = None
|
|
56
|
+
self._warning = None
|
|
57
|
+
self.discriminator = None
|
|
58
|
+
|
|
59
|
+
if error is not None:
|
|
60
|
+
self.error = error
|
|
61
|
+
if manufacturers is not None:
|
|
62
|
+
self.manufacturers = manufacturers
|
|
63
|
+
if metadata is not None:
|
|
64
|
+
self.metadata = metadata
|
|
65
|
+
if success is not None:
|
|
66
|
+
self.success = success
|
|
67
|
+
if warning is not None:
|
|
68
|
+
self.warning = warning
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
def error(self):
|
|
72
|
+
"""Gets the error of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
:return: The error of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
76
|
+
:rtype: Error
|
|
77
|
+
"""
|
|
78
|
+
return self._error
|
|
79
|
+
|
|
80
|
+
@error.setter
|
|
81
|
+
def error(self, error):
|
|
82
|
+
"""Sets the error of this ConversationPbxPhoneManufacturersResponse.
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
:param error: The error of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
86
|
+
:type: Error
|
|
87
|
+
"""
|
|
88
|
+
|
|
89
|
+
self._error = error
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
def manufacturers(self):
|
|
93
|
+
"""Gets the manufacturers of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
:return: The manufacturers of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
97
|
+
:rtype: list[ConversationPbxPhoneManufacturer]
|
|
98
|
+
"""
|
|
99
|
+
return self._manufacturers
|
|
100
|
+
|
|
101
|
+
@manufacturers.setter
|
|
102
|
+
def manufacturers(self, manufacturers):
|
|
103
|
+
"""Sets the manufacturers of this ConversationPbxPhoneManufacturersResponse.
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
:param manufacturers: The manufacturers of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
107
|
+
:type: list[ConversationPbxPhoneManufacturer]
|
|
108
|
+
"""
|
|
109
|
+
|
|
110
|
+
self._manufacturers = manufacturers
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
def metadata(self):
|
|
114
|
+
"""Gets the metadata of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
:return: The metadata of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
118
|
+
:rtype: ResponseMetadata
|
|
119
|
+
"""
|
|
120
|
+
return self._metadata
|
|
121
|
+
|
|
122
|
+
@metadata.setter
|
|
123
|
+
def metadata(self, metadata):
|
|
124
|
+
"""Sets the metadata of this ConversationPbxPhoneManufacturersResponse.
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
:param metadata: The metadata of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
128
|
+
:type: ResponseMetadata
|
|
129
|
+
"""
|
|
130
|
+
|
|
131
|
+
self._metadata = metadata
|
|
132
|
+
|
|
133
|
+
@property
|
|
134
|
+
def success(self):
|
|
135
|
+
"""Gets the success of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
136
|
+
|
|
137
|
+
Indicates if API call was successful # noqa: E501
|
|
138
|
+
|
|
139
|
+
:return: The success of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
140
|
+
:rtype: bool
|
|
141
|
+
"""
|
|
142
|
+
return self._success
|
|
143
|
+
|
|
144
|
+
@success.setter
|
|
145
|
+
def success(self, success):
|
|
146
|
+
"""Sets the success of this ConversationPbxPhoneManufacturersResponse.
|
|
147
|
+
|
|
148
|
+
Indicates if API call was successful # noqa: E501
|
|
149
|
+
|
|
150
|
+
:param success: The success of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
151
|
+
:type: bool
|
|
152
|
+
"""
|
|
153
|
+
|
|
154
|
+
self._success = success
|
|
155
|
+
|
|
156
|
+
@property
|
|
157
|
+
def warning(self):
|
|
158
|
+
"""Gets the warning of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
:return: The warning of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
162
|
+
:rtype: Warning
|
|
163
|
+
"""
|
|
164
|
+
return self._warning
|
|
165
|
+
|
|
166
|
+
@warning.setter
|
|
167
|
+
def warning(self, warning):
|
|
168
|
+
"""Sets the warning of this ConversationPbxPhoneManufacturersResponse.
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
:param warning: The warning of this ConversationPbxPhoneManufacturersResponse. # noqa: E501
|
|
172
|
+
:type: Warning
|
|
173
|
+
"""
|
|
174
|
+
|
|
175
|
+
self._warning = warning
|
|
176
|
+
|
|
177
|
+
def to_dict(self):
|
|
178
|
+
"""Returns the model properties as a dict"""
|
|
179
|
+
result = {}
|
|
180
|
+
|
|
181
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
182
|
+
value = getattr(self, attr)
|
|
183
|
+
if isinstance(value, list):
|
|
184
|
+
result[attr] = list(map(
|
|
185
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
186
|
+
value
|
|
187
|
+
))
|
|
188
|
+
elif hasattr(value, "to_dict"):
|
|
189
|
+
result[attr] = value.to_dict()
|
|
190
|
+
elif isinstance(value, dict):
|
|
191
|
+
result[attr] = dict(map(
|
|
192
|
+
lambda item: (item[0], item[1].to_dict())
|
|
193
|
+
if hasattr(item[1], "to_dict") else item,
|
|
194
|
+
value.items()
|
|
195
|
+
))
|
|
196
|
+
else:
|
|
197
|
+
result[attr] = value
|
|
198
|
+
if issubclass(ConversationPbxPhoneManufacturersResponse, dict):
|
|
199
|
+
for key, value in self.items():
|
|
200
|
+
result[key] = value
|
|
201
|
+
|
|
202
|
+
return result
|
|
203
|
+
|
|
204
|
+
def to_str(self):
|
|
205
|
+
"""Returns the string representation of the model"""
|
|
206
|
+
return pprint.pformat(self.to_dict())
|
|
207
|
+
|
|
208
|
+
def __repr__(self):
|
|
209
|
+
"""For `print` and `pprint`"""
|
|
210
|
+
return self.to_str()
|
|
211
|
+
|
|
212
|
+
def __eq__(self, other):
|
|
213
|
+
"""Returns true if both objects are equal"""
|
|
214
|
+
if not isinstance(other, ConversationPbxPhoneManufacturersResponse):
|
|
215
|
+
return False
|
|
216
|
+
|
|
217
|
+
return self.__dict__ == other.__dict__
|
|
218
|
+
|
|
219
|
+
def __ne__(self, other):
|
|
220
|
+
"""Returns true if both objects are not equal"""
|
|
221
|
+
return not self == other
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
UltraCart Rest API V2
|
|
5
|
+
|
|
6
|
+
UltraCart REST API Version 2 # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: 2.0.0
|
|
9
|
+
Contact: support@ultracart.com
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
import pprint
|
|
15
|
+
import re # noqa: F401
|
|
16
|
+
|
|
17
|
+
import six
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ConversationPbxPhoneModel(object):
|
|
21
|
+
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
22
|
+
|
|
23
|
+
Do not edit the class manually.
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
"""
|
|
27
|
+
Attributes:
|
|
28
|
+
swagger_types (dict): The key is attribute name
|
|
29
|
+
and the value is attribute type.
|
|
30
|
+
attribute_map (dict): The key is attribute name
|
|
31
|
+
and the value is json key in definition.
|
|
32
|
+
"""
|
|
33
|
+
swagger_types = {
|
|
34
|
+
'model_id': 'str',
|
|
35
|
+
'name': 'str'
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
attribute_map = {
|
|
39
|
+
'model_id': 'model_id',
|
|
40
|
+
'name': 'name'
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
def __init__(self, model_id=None, name=None): # noqa: E501
|
|
44
|
+
"""ConversationPbxPhoneModel - a model defined in Swagger""" # noqa: E501
|
|
45
|
+
|
|
46
|
+
self._model_id = None
|
|
47
|
+
self._name = None
|
|
48
|
+
self.discriminator = None
|
|
49
|
+
|
|
50
|
+
if model_id is not None:
|
|
51
|
+
self.model_id = model_id
|
|
52
|
+
if name is not None:
|
|
53
|
+
self.name = name
|
|
54
|
+
|
|
55
|
+
@property
|
|
56
|
+
def model_id(self):
|
|
57
|
+
"""Gets the model_id of this ConversationPbxPhoneModel. # noqa: E501
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
:return: The model_id of this ConversationPbxPhoneModel. # noqa: E501
|
|
61
|
+
:rtype: str
|
|
62
|
+
"""
|
|
63
|
+
return self._model_id
|
|
64
|
+
|
|
65
|
+
@model_id.setter
|
|
66
|
+
def model_id(self, model_id):
|
|
67
|
+
"""Sets the model_id of this ConversationPbxPhoneModel.
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
:param model_id: The model_id of this ConversationPbxPhoneModel. # noqa: E501
|
|
71
|
+
:type: str
|
|
72
|
+
"""
|
|
73
|
+
|
|
74
|
+
self._model_id = model_id
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
def name(self):
|
|
78
|
+
"""Gets the name of this ConversationPbxPhoneModel. # noqa: E501
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
:return: The name of this ConversationPbxPhoneModel. # noqa: E501
|
|
82
|
+
:rtype: str
|
|
83
|
+
"""
|
|
84
|
+
return self._name
|
|
85
|
+
|
|
86
|
+
@name.setter
|
|
87
|
+
def name(self, name):
|
|
88
|
+
"""Sets the name of this ConversationPbxPhoneModel.
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
:param name: The name of this ConversationPbxPhoneModel. # noqa: E501
|
|
92
|
+
:type: str
|
|
93
|
+
"""
|
|
94
|
+
|
|
95
|
+
self._name = name
|
|
96
|
+
|
|
97
|
+
def to_dict(self):
|
|
98
|
+
"""Returns the model properties as a dict"""
|
|
99
|
+
result = {}
|
|
100
|
+
|
|
101
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
102
|
+
value = getattr(self, attr)
|
|
103
|
+
if isinstance(value, list):
|
|
104
|
+
result[attr] = list(map(
|
|
105
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
106
|
+
value
|
|
107
|
+
))
|
|
108
|
+
elif hasattr(value, "to_dict"):
|
|
109
|
+
result[attr] = value.to_dict()
|
|
110
|
+
elif isinstance(value, dict):
|
|
111
|
+
result[attr] = dict(map(
|
|
112
|
+
lambda item: (item[0], item[1].to_dict())
|
|
113
|
+
if hasattr(item[1], "to_dict") else item,
|
|
114
|
+
value.items()
|
|
115
|
+
))
|
|
116
|
+
else:
|
|
117
|
+
result[attr] = value
|
|
118
|
+
if issubclass(ConversationPbxPhoneModel, dict):
|
|
119
|
+
for key, value in self.items():
|
|
120
|
+
result[key] = value
|
|
121
|
+
|
|
122
|
+
return result
|
|
123
|
+
|
|
124
|
+
def to_str(self):
|
|
125
|
+
"""Returns the string representation of the model"""
|
|
126
|
+
return pprint.pformat(self.to_dict())
|
|
127
|
+
|
|
128
|
+
def __repr__(self):
|
|
129
|
+
"""For `print` and `pprint`"""
|
|
130
|
+
return self.to_str()
|
|
131
|
+
|
|
132
|
+
def __eq__(self, other):
|
|
133
|
+
"""Returns true if both objects are equal"""
|
|
134
|
+
if not isinstance(other, ConversationPbxPhoneModel):
|
|
135
|
+
return False
|
|
136
|
+
|
|
137
|
+
return self.__dict__ == other.__dict__
|
|
138
|
+
|
|
139
|
+
def __ne__(self, other):
|
|
140
|
+
"""Returns true if both objects are not equal"""
|
|
141
|
+
return not self == other
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
ultracart/__init__.py,sha256=
|
|
2
|
-
ultracart/api_client.py,sha256=
|
|
3
|
-
ultracart/configuration.py,sha256=
|
|
1
|
+
ultracart/__init__.py,sha256=pbIsDVdinnrFHYzG5gvgRaQDKC_zsl11YGTiAN7lnUI,75091
|
|
2
|
+
ultracart/api_client.py,sha256=kZQMAOshqixs_O6dk0ubSBh7eRSYDPVdiPJFdloVSSU,25613
|
|
3
|
+
ultracart/configuration.py,sha256=yNvbBBtNMNk8RfC0Pns6ZuFF7DoR7cjE1kjZfoIPi1s,8999
|
|
4
4
|
ultracart/rest.py,sha256=SykJPRivLOJgoq4Rnyp117sB8lU0tGvwd2Cai8fN3J8,13489
|
|
5
5
|
ultracart/api/__init__.py,sha256=gtOBD2-NGsYYDuerfiCfjqLJql44d50lAlaxpAqd7tI,1152
|
|
6
6
|
ultracart/api/affiliate_api.py,sha256=BfkCqA8ayOggBtV24g8yZyTxTNPiUJMYgqbBEbnWrJQ,12785
|
|
7
7
|
ultracart/api/auto_order_api.py,sha256=t6ModQVgNiFJfBod28Si5-YJ1mUMz_dbKtW2HzEqKUI,62523
|
|
8
8
|
ultracart/api/channel_partner_api.py,sha256=2xP0-T01CwIUEujt087SZQpWtMRC7Z0VreqvOfVL6b8,77038
|
|
9
9
|
ultracart/api/checkout_api.py,sha256=PUjb9rkpeoePYhMlUQDL6jSMudTLmlZZUtdHW_TPggg,85863
|
|
10
|
-
ultracart/api/conversation_api.py,sha256=
|
|
10
|
+
ultracart/api/conversation_api.py,sha256=7W6YTDx9L_wrKk9CR753s-N5SZhxMLFYs_roy7Y82X4,495142
|
|
11
11
|
ultracart/api/coupon_api.py,sha256=avg8Y5dxgFF2s9KJsnKA_LCCdZAUxQq2iX72W0eSOLY,90036
|
|
12
12
|
ultracart/api/customer_api.py,sha256=wE_Z1WnJXnpTOQljhGxtLQTc4Ov4p8a4d34Vij8TGrE,131392
|
|
13
13
|
ultracart/api/datawarehouse_api.py,sha256=xisc2JJ01NvrmfM8wg7qclsqCTY1w7VF3aUcyH4LAMY,132037
|
|
@@ -23,7 +23,7 @@ ultracart/api/tax_api.py,sha256=E25mBiLSrrPxs2ZGAUClrsqeJExe5V0bUINZehjSVN8,1204
|
|
|
23
23
|
ultracart/api/user_api.py,sha256=bzjR5cLuH1m7Z5y7hjxb-B2_eFmC8u8xRN12ucF3VyE,44221
|
|
24
24
|
ultracart/api/webhook_api.py,sha256=p5_tjVH1jvaNOFYUdm2qc0gU2WR8qDlIdSr-qm4WWEg,39283
|
|
25
25
|
ultracart/api/workflow_api.py,sha256=tdsz4hRuuC0a7HwRvtwpK9ggKU8-9z9-0NZrwmoxljg,51449
|
|
26
|
-
ultracart/models/__init__.py,sha256=
|
|
26
|
+
ultracart/models/__init__.py,sha256=GHEyWY8plmsaakLCuY58Qjn1bCVB_2rQSJvnvi6z-RE,73882
|
|
27
27
|
ultracart/models/accounts_receivable_retry_config.py,sha256=ab7tLSoUqChrqtS2pkNZhRnLsgFCWA_xJobhVvaSLxo,21323
|
|
28
28
|
ultracart/models/accounts_receivable_retry_config_response.py,sha256=NziJy87K9HQUXDGIe_DHDqxw2uRZPvKsUDzD9heDHgU,9281
|
|
29
29
|
ultracart/models/accounts_receivable_retry_day_activity.py,sha256=0etwp6LI6y-J9B7LP5m4O5aEQQ-TPLeyXiotCLtPQjU,5416
|
|
@@ -67,7 +67,7 @@ ultracart/models/browser.py,sha256=_KsZKBUs4rjqgL1gEHN6g3GObdUV_drt1unBWnwxPko,4
|
|
|
67
67
|
ultracart/models/browser_device.py,sha256=DKiZEGV_b5Qq9vt7GaNrF5nMgnl43mxcZuMAQzDQgoQ,3151
|
|
68
68
|
ultracart/models/browser_os.py,sha256=4E1OflTIyJGdSvPoOr2nOvJSZcE3vHh0CrTu6M3Iz9k,5683
|
|
69
69
|
ultracart/models/browser_user_agent.py,sha256=N74ylAiVNb-FN2NYTWwMjK4sWY3A2IIjLcticYt8ujg,5092
|
|
70
|
-
ultracart/models/cart.py,sha256=
|
|
70
|
+
ultracart/models/cart.py,sha256=SJ7eAfQGfC_98g8eA-X-VdVgbCtw3GYg29WI7O8gdJM,24430
|
|
71
71
|
ultracart/models/cart_affiliate.py,sha256=KRaaVtrdcYxlUiPKTGQP9kfKrXi-kLLHojne038eOLw,4570
|
|
72
72
|
ultracart/models/cart_affirm_checkout_response.py,sha256=U9cR6wneMtNsiykzxKJujqEfXrGeTAp8msZsVZrKg-M,4342
|
|
73
73
|
ultracart/models/cart_billing.py,sha256=3FwmnC4sRl8cCVa4H9ie5hMpcK1AESbTaJ2wOS4Bw28,18960
|
|
@@ -125,6 +125,7 @@ ultracart/models/cart_shipping.py,sha256=8q1PmCRgP2QwYTpnF29IrYWaLAAZdoHFH9f-d9O
|
|
|
125
125
|
ultracart/models/cart_summary.py,sha256=V4iDgHjexbn96e7mgAMfzD5RpG66eP986bp-ok4KPnM,21593
|
|
126
126
|
ultracart/models/cart_taxes.py,sha256=1URG5X3kFTnB9pvhFytIqpzh53YRz84fyKT6G4g7beE,4788
|
|
127
127
|
ultracart/models/cart_upsell_after.py,sha256=SJ-5oo4Kl0CRgZUIHKQNMJw5lLycwmK6O34f8quHK4c,8395
|
|
128
|
+
ultracart/models/cart_utm.py,sha256=9hb44k2122Biad6IpPg-ESd9dCS18jbnVkjf4yCOsGo,27861
|
|
128
129
|
ultracart/models/cart_validation_request.py,sha256=m6nDduMFZWBrGhoZdSbL9EHQetD-A8xQ-7g5N5G5OIc,3957
|
|
129
130
|
ultracart/models/cart_validation_response.py,sha256=yzp0yl8LneQ-dzrlhCVRTefPIGuJH5r1giER4F7gEgE,4093
|
|
130
131
|
ultracart/models/chanel_partner_reason_codes_response.py,sha256=x7kRACxCW5aLRasRVOxLxZuto6iQnnOIpE6gA7VKK98,15130
|
|
@@ -152,7 +153,7 @@ ultracart/models/checkout_setup_browser_key_response.py,sha256=cf5gb76e1hl1Zbz6o
|
|
|
152
153
|
ultracart/models/checkout_state_province_response.py,sha256=V4kjJdByOpXGLAQquOSDDuKTazEbB6MazotwDTQkEk8,3506
|
|
153
154
|
ultracart/models/city_state_zip.py,sha256=Ntzqg6yGIIHSzzrDwV0E-yG9pAD6BiMtWhtj26lJWCg,5637
|
|
154
155
|
ultracart/models/conversation.py,sha256=K0nGr-unKL2fH9t1roU-PsfbWRpgSmkQcWXipBooioY,22415
|
|
155
|
-
ultracart/models/conversation_agent_auth.py,sha256=
|
|
156
|
+
ultracart/models/conversation_agent_auth.py,sha256=LUPUdvztllYBJQBQVq1yUEMVoCOgJMRKSX09qyy6YFo,17719
|
|
156
157
|
ultracart/models/conversation_agent_auth_response.py,sha256=Qe9CzBu2s1WqvE2nJ1coOT6MPpRybz2v2eYB6BUFhA0,6497
|
|
157
158
|
ultracart/models/conversation_agent_profile.py,sha256=l0CnWGDZyc1kl9rWQUjqwLIVq88M0Nbf2LOvlJiQUEo,22081
|
|
158
159
|
ultracart/models/conversation_agent_profile_response.py,sha256=5fqrqj8holJqG9PDphSwNmqCkcLrcQ9glw8uJKeQDpg,6638
|
|
@@ -221,10 +222,16 @@ ultracart/models/conversation_pbx_available_phone_number.py,sha256=yvWHvUVeVhRRz
|
|
|
221
222
|
ultracart/models/conversation_pbx_available_phone_numbers_response.py,sha256=N2ZcUu7DI1z8qKY6FEPDAA66uan9D1U_-fbuJ8YQs7w,7177
|
|
222
223
|
ultracart/models/conversation_pbx_customer_snapshot_request.py,sha256=qyCjmYp_7ExeECiohskgjZ_gGrWd5Qq-KTZ3IsVnU-o,9460
|
|
223
224
|
ultracart/models/conversation_pbx_customer_snapshot_response.py,sha256=i0SayNu_b0wAttxhPTdU45g3TT6K74-RuUoc8k9WFpU,8358
|
|
225
|
+
ultracart/models/conversation_pbx_hardware_phone.py,sha256=eL4BvQSJE-8Z6evFctlPQmPM08icyBUnomnAQOjqkGI,16319
|
|
226
|
+
ultracart/models/conversation_pbx_hardware_phone_response.py,sha256=Y2yXHMa2u2_mfHgHfk7V627hXj-3YXe3CrqCSmvvkgk,6766
|
|
227
|
+
ultracart/models/conversation_pbx_hardware_phones_response.py,sha256=Yp4LXMPoorOvWPOJnGaYOCArbO9HTa_MW6r8zk-woXo,3616
|
|
224
228
|
ultracart/models/conversation_pbx_menu.py,sha256=sTSBnR1oc1ucEJwTao3XETIrHJgbqZ3bzIunrY5ft1M,14303
|
|
225
229
|
ultracart/models/conversation_pbx_menu_mapping.py,sha256=OBpNRNVdCF-u59ZpmgbDoEgUvBRxwwrdlBlxalNHPYM,6424
|
|
226
230
|
ultracart/models/conversation_pbx_menu_response.py,sha256=EuZlzPnidhQ0ZqzoPd3MHoaJPg5iBSw63si_wIj9F-c,6323
|
|
227
231
|
ultracart/models/conversation_pbx_menus_response.py,sha256=2IWlaQJPtfq79tKHYYstmkljdCPZB9cAWjHNZQqQK3w,6385
|
|
232
|
+
ultracart/models/conversation_pbx_phone_manufacturer.py,sha256=UA3vCeG28OtXDOhzsK0Eo5Og1k7hLCLKO9fAvLDeQfU,4973
|
|
233
|
+
ultracart/models/conversation_pbx_phone_manufacturers_response.py,sha256=o_KdH7ME_e5LtVYG6_zOfnk21_fzmd-YEsofA64u2_s,6896
|
|
234
|
+
ultracart/models/conversation_pbx_phone_model.py,sha256=FkzSpjedFIA8ccGbBWmAXixQ9hQOmmCIx0kUS1zuhu4,3942
|
|
228
235
|
ultracart/models/conversation_pbx_phone_number.py,sha256=cfo9Vupfcx2F-aMP3AGA8bcRnvcwoywfFB09RmWY9SQ,11040
|
|
229
236
|
ultracart/models/conversation_pbx_phone_number_purchase_request.py,sha256=vfUVMMi8DCUNqb4iVdtZUKCoTd1QEa88Ky_fxBy_P9s,8631
|
|
230
237
|
ultracart/models/conversation_pbx_phone_number_response.py,sha256=DxE8z0OM03g8_dMPF1LkMoUZynpPjSzy9ym76ul0YhQ,6672
|
|
@@ -937,8 +944,8 @@ ultracart/models/workflow_tasks_response.py,sha256=2CELun_Yz00Ww8MLo3pqfx7oCJLMZ
|
|
|
937
944
|
ultracart/models/workflow_user.py,sha256=dS5Oj_e5KeruK8WnxZFrx4tL-86B-ImggasTQLm7q6s,4783
|
|
938
945
|
ultracart/models/workflow_user_response.py,sha256=tqt9Bo6KqrvkcW9weFeC6nu5wAqYQBx--Yi4RQzditI,6134
|
|
939
946
|
ultracart/models/workflow_users_response.py,sha256=t1UP-nG8gOoyFGcf5dTTqk6zFapBrJBH63ddrJgP-tM,7095
|
|
940
|
-
ultracart_rest_sdk-3.11.
|
|
941
|
-
ultracart_rest_sdk-3.11.
|
|
942
|
-
ultracart_rest_sdk-3.11.
|
|
943
|
-
ultracart_rest_sdk-3.11.
|
|
944
|
-
ultracart_rest_sdk-3.11.
|
|
947
|
+
ultracart_rest_sdk-3.11.49.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
948
|
+
ultracart_rest_sdk-3.11.49.dist-info/METADATA,sha256=WXr4qhj7ORQXJ4izVWPslslQfXN85uKc-dr84kpJQ_k,423
|
|
949
|
+
ultracart_rest_sdk-3.11.49.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
950
|
+
ultracart_rest_sdk-3.11.49.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
951
|
+
ultracart_rest_sdk-3.11.49.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|