ultracart-rest-sdk 4.1.24__py3-none-any.whl → 4.1.27__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 +1 -1
- ultracart/api_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/model/conversation_insert_knowledge_base_document_request.py +4 -0
- ultracart/model/conversation_knowledge_base_document.py +4 -0
- ultracart/model/conversation_knowledge_base_document_upload_url_response.py +4 -4
- ultracart/model/order_payment.py +1 -0
- {ultracart_rest_sdk-4.1.24.dist-info → ultracart_rest_sdk-4.1.27.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.1.24.dist-info → ultracart_rest_sdk-4.1.27.dist-info}/RECORD +12 -12
- {ultracart_rest_sdk-4.1.24.dist-info → ultracart_rest_sdk-4.1.27.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.1.24.dist-info → ultracart_rest_sdk-4.1.27.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.1.24.dist-info → ultracart_rest_sdk-4.1.27.dist-info}/top_level.txt +0 -0
ultracart/__init__.py
CHANGED
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.
|
|
80
|
+
self.user_agent = 'OpenAPI-Generator/4.1.27/python'
|
|
81
81
|
|
|
82
82
|
def __enter__(self):
|
|
83
83
|
return self
|
ultracart/configuration.py
CHANGED
|
@@ -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.
|
|
425
|
+
"SDK Package Version: 4.1.27".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
|
@@ -82,6 +82,7 @@ class ConversationInsertKnowledgeBaseDocumentRequest(ModelNormal):
|
|
|
82
82
|
and the value is attribute type.
|
|
83
83
|
"""
|
|
84
84
|
return {
|
|
85
|
+
'original_file_name': (str,), # noqa: E501
|
|
85
86
|
'presigned_url': (str,), # noqa: E501
|
|
86
87
|
}
|
|
87
88
|
|
|
@@ -91,6 +92,7 @@ class ConversationInsertKnowledgeBaseDocumentRequest(ModelNormal):
|
|
|
91
92
|
|
|
92
93
|
|
|
93
94
|
attribute_map = {
|
|
95
|
+
'original_file_name': 'original_file_name', # noqa: E501
|
|
94
96
|
'presigned_url': 'presigned_url', # noqa: E501
|
|
95
97
|
}
|
|
96
98
|
|
|
@@ -135,6 +137,7 @@ class ConversationInsertKnowledgeBaseDocumentRequest(ModelNormal):
|
|
|
135
137
|
Animal class but this time we won't travel
|
|
136
138
|
through its discriminator because we passed in
|
|
137
139
|
_visited_composed_classes = (Animal,)
|
|
140
|
+
original_file_name (str): [optional] # noqa: E501
|
|
138
141
|
presigned_url (str): [optional] # noqa: E501
|
|
139
142
|
"""
|
|
140
143
|
|
|
@@ -221,6 +224,7 @@ class ConversationInsertKnowledgeBaseDocumentRequest(ModelNormal):
|
|
|
221
224
|
Animal class but this time we won't travel
|
|
222
225
|
through its discriminator because we passed in
|
|
223
226
|
_visited_composed_classes = (Animal,)
|
|
227
|
+
original_file_name (str): [optional] # noqa: E501
|
|
224
228
|
presigned_url (str): [optional] # noqa: E501
|
|
225
229
|
"""
|
|
226
230
|
|
|
@@ -89,6 +89,7 @@ class ConversationKnowledgeBaseDocument(ModelNormal):
|
|
|
89
89
|
'metadata': (str,), # noqa: E501
|
|
90
90
|
'mime_type': (str,), # noqa: E501
|
|
91
91
|
's3_key': (str,), # noqa: E501
|
|
92
|
+
's3_url': (str,), # noqa: E501
|
|
92
93
|
}
|
|
93
94
|
|
|
94
95
|
@cached_property
|
|
@@ -104,6 +105,7 @@ class ConversationKnowledgeBaseDocument(ModelNormal):
|
|
|
104
105
|
'metadata': 'metadata', # noqa: E501
|
|
105
106
|
'mime_type': 'mime_type', # noqa: E501
|
|
106
107
|
's3_key': 's3_key', # noqa: E501
|
|
108
|
+
's3_url': 's3_url', # noqa: E501
|
|
107
109
|
}
|
|
108
110
|
|
|
109
111
|
read_only_vars = {
|
|
@@ -154,6 +156,7 @@ class ConversationKnowledgeBaseDocument(ModelNormal):
|
|
|
154
156
|
metadata (str): [optional] # noqa: E501
|
|
155
157
|
mime_type (str): [optional] # noqa: E501
|
|
156
158
|
s3_key (str): [optional] # noqa: E501
|
|
159
|
+
s3_url (str): [optional] # noqa: E501
|
|
157
160
|
"""
|
|
158
161
|
|
|
159
162
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -246,6 +249,7 @@ class ConversationKnowledgeBaseDocument(ModelNormal):
|
|
|
246
249
|
metadata (str): [optional] # noqa: E501
|
|
247
250
|
mime_type (str): [optional] # noqa: E501
|
|
248
251
|
s3_key (str): [optional] # noqa: E501
|
|
252
|
+
s3_url (str): [optional] # noqa: E501
|
|
249
253
|
"""
|
|
250
254
|
|
|
251
255
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -94,7 +94,7 @@ class ConversationKnowledgeBaseDocumentUploadUrlResponse(ModelNormal):
|
|
|
94
94
|
"""
|
|
95
95
|
lazy_import()
|
|
96
96
|
return {
|
|
97
|
-
'
|
|
97
|
+
'conversation_knowledge_base_document_upload_url': (ConversationKnowledgeBaseDocumentUploadUrl,), # noqa: E501
|
|
98
98
|
'error': (Error,), # noqa: E501
|
|
99
99
|
'metadata': (ResponseMetadata,), # noqa: E501
|
|
100
100
|
'success': (bool,), # noqa: E501
|
|
@@ -107,7 +107,7 @@ class ConversationKnowledgeBaseDocumentUploadUrlResponse(ModelNormal):
|
|
|
107
107
|
|
|
108
108
|
|
|
109
109
|
attribute_map = {
|
|
110
|
-
'
|
|
110
|
+
'conversation_knowledge_base_document_upload_url': 'conversation_knowledge_base_document_upload_url', # noqa: E501
|
|
111
111
|
'error': 'error', # noqa: E501
|
|
112
112
|
'metadata': 'metadata', # noqa: E501
|
|
113
113
|
'success': 'success', # noqa: E501
|
|
@@ -155,7 +155,7 @@ class ConversationKnowledgeBaseDocumentUploadUrlResponse(ModelNormal):
|
|
|
155
155
|
Animal class but this time we won't travel
|
|
156
156
|
through its discriminator because we passed in
|
|
157
157
|
_visited_composed_classes = (Animal,)
|
|
158
|
-
|
|
158
|
+
conversation_knowledge_base_document_upload_url (ConversationKnowledgeBaseDocumentUploadUrl): [optional] # noqa: E501
|
|
159
159
|
error (Error): [optional] # noqa: E501
|
|
160
160
|
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
161
161
|
success (bool): Indicates if API call was successful. [optional] # noqa: E501
|
|
@@ -245,7 +245,7 @@ class ConversationKnowledgeBaseDocumentUploadUrlResponse(ModelNormal):
|
|
|
245
245
|
Animal class but this time we won't travel
|
|
246
246
|
through its discriminator because we passed in
|
|
247
247
|
_visited_composed_classes = (Animal,)
|
|
248
|
-
|
|
248
|
+
conversation_knowledge_base_document_upload_url (ConversationKnowledgeBaseDocumentUploadUrl): [optional] # noqa: E501
|
|
249
249
|
error (Error): [optional] # noqa: E501
|
|
250
250
|
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
251
251
|
success (bool): Indicates if API call was successful. [optional] # noqa: E501
|
ultracart/model/order_payment.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
ultracart/__init__.py,sha256=
|
|
2
|
-
ultracart/api_client.py,sha256=
|
|
3
|
-
ultracart/configuration.py,sha256=
|
|
1
|
+
ultracart/__init__.py,sha256=JkTsq8VHAxhO0ognZaC7v3YpqZhPNZwagDzGQTM56oA,698
|
|
2
|
+
ultracart/api_client.py,sha256=65tuEdhGvsTR_T2LKBpd1TTUyuUAZ6sKyjItQ-Z_ehs,39071
|
|
3
|
+
ultracart/configuration.py,sha256=5t3tojxKrppuLTukC1AAYy7cstCm7XvwXB-JSMKS_SY,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
|
|
@@ -186,12 +186,12 @@ ultracart/model/conversation_event_read_message.py,sha256=_UsyV4pe5_vylkJ7hJtFM6
|
|
|
186
186
|
ultracart/model/conversation_event_rr_web.py,sha256=P4N3gg9jDjWkh0fL2K87gxrHUw7FzuXCl37YJK7aR9g,12825
|
|
187
187
|
ultracart/model/conversation_event_typing.py,sha256=fI0mk2dx5kpjcXiRAcmmNFCyQVThbOFUXTDJXlSvzbo,12094
|
|
188
188
|
ultracart/model/conversation_event_webchat_context.py,sha256=JPKE8r11HGtprkIbooPHjGN4xZkt802FdsqvJ374Xak,11818
|
|
189
|
-
ultracart/model/conversation_insert_knowledge_base_document_request.py,sha256=
|
|
189
|
+
ultracart/model/conversation_insert_knowledge_base_document_request.py,sha256=MzbNPUmRbClJf2fHMBRE44WECutGSit9tNqLYB8Rbzo,11780
|
|
190
190
|
ultracart/model/conversation_insert_knowledge_base_document_response.py,sha256=dxaSZvspBQ6r1hqlSQdN5wuoTZSTDW8agX77mDSPbqU,13187
|
|
191
191
|
ultracart/model/conversation_join_request.py,sha256=tc7_mNuTTPcPzMGCRYMNxzmrRTV75qDgjyYmV9naVeM,11543
|
|
192
|
-
ultracart/model/conversation_knowledge_base_document.py,sha256=
|
|
192
|
+
ultracart/model/conversation_knowledge_base_document.py,sha256=2tZWetfAoA_f7FcpMlW-PFyL7-AAGHuY_A578NENz90,13017
|
|
193
193
|
ultracart/model/conversation_knowledge_base_document_upload_url.py,sha256=cIcYIhwhsVIFCWQtpS_h_BAJUs6pvG5C_mfOqAE4PpQ,11643
|
|
194
|
-
ultracart/model/conversation_knowledge_base_document_upload_url_response.py,sha256=
|
|
194
|
+
ultracart/model/conversation_knowledge_base_document_upload_url_response.py,sha256=fFJKmVyBN25wepReXBwsD6weBqIXueOZF6cxBaNMN44,13304
|
|
195
195
|
ultracart/model/conversation_knowledge_base_documents_response.py,sha256=Al50FnBKVwAoj4_suOR3CFMpUuC89b8DgWtc4YFKexA,13053
|
|
196
196
|
ultracart/model/conversation_location_country.py,sha256=ZL5torozpHC8M2tjyhXHm70010L7rBi1cCqUUMwYrU4,12191
|
|
197
197
|
ultracart/model/conversation_location_state_province.py,sha256=j1bGc7D--OWTGTMFg8BuZ3GuFZalS3wvajc4IRo-S4M,11666
|
|
@@ -710,7 +710,7 @@ ultracart/model/order_item_tag.py,sha256=IGO8fQmXZ_MoREh8GiTLKd8T-DVn1KAefiSXXnb
|
|
|
710
710
|
ultracart/model/order_linked_shipment.py,sha256=8J3ed4L48ebAgC61koZJXnipe7YVcTKWoyy8CR4-s_M,13149
|
|
711
711
|
ultracart/model/order_marketing.py,sha256=x4VPy4XOKl7RLjiMnroIeFlWKKHfLEgSezIKNZOqKuo,12596
|
|
712
712
|
ultracart/model/order_packing_slip_response.py,sha256=acLnSb5t-nZ1NQe3A8MSkgA-htWGCafmPi-c2cqzgkE,12719
|
|
713
|
-
ultracart/model/order_payment.py,sha256=
|
|
713
|
+
ultracart/model/order_payment.py,sha256=Avl3gVCJ4eYWXV_LUOatFmmssN1HbUSWg5vPtNhquRI,20513
|
|
714
714
|
ultracart/model/order_payment_check.py,sha256=a-OAp4zyWwa-iNP5ukFQFc5Xi1xodnzwdvfn7BM2ivs,11468
|
|
715
715
|
ultracart/model/order_payment_credit_card.py,sha256=eh__M764v83trWIKaq2to3L7dIQdAYDjXBoREXIjfcY,15912
|
|
716
716
|
ultracart/model/order_payment_credit_card_dual_vaulted.py,sha256=BLE9zSsUsVjuddLhSJnrHmF6k2GDxtyeIG2y1ATCvck,12428
|
|
@@ -926,8 +926,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
|
|
|
926
926
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
927
927
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
928
928
|
ultracart/models/__init__.py,sha256=Vw1AXohge8TidVh7-ooBLW_h27T3agW8CU--N3GUPhY,70005
|
|
929
|
-
ultracart_rest_sdk-4.1.
|
|
930
|
-
ultracart_rest_sdk-4.1.
|
|
931
|
-
ultracart_rest_sdk-4.1.
|
|
932
|
-
ultracart_rest_sdk-4.1.
|
|
933
|
-
ultracart_rest_sdk-4.1.
|
|
929
|
+
ultracart_rest_sdk-4.1.27.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
930
|
+
ultracart_rest_sdk-4.1.27.dist-info/METADATA,sha256=UqZOS50Y0IVg0cLp9xUmbY2qhDMUGMxUiOKM8Eivhh4,402
|
|
931
|
+
ultracart_rest_sdk-4.1.27.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
932
|
+
ultracart_rest_sdk-4.1.27.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
933
|
+
ultracart_rest_sdk-4.1.27.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|