ultracart-rest-sdk 4.0.237__py3-none-any.whl → 4.0.238__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_agent_auth.py +8 -0
- {ultracart_rest_sdk-4.0.237.dist-info → ultracart_rest_sdk-4.0.238.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.237.dist-info → ultracart_rest_sdk-4.0.238.dist-info}/RECORD +9 -9
- {ultracart_rest_sdk-4.0.237.dist-info → ultracart_rest_sdk-4.0.238.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.237.dist-info → ultracart_rest_sdk-4.0.238.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.237.dist-info → ultracart_rest_sdk-4.0.238.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.0.
|
|
80
|
+
self.user_agent = 'OpenAPI-Generator/4.0.238/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.0.
|
|
425
|
+
"SDK Package Version: 4.0.238".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
|
@@ -90,6 +90,7 @@ class ConversationAgentAuth(ModelNormal):
|
|
|
90
90
|
return {
|
|
91
91
|
'conversation_participant_arn': (str,), # noqa: E501
|
|
92
92
|
'conversation_participant_name': (str,), # noqa: E501
|
|
93
|
+
'group_ids': ([int],), # noqa: E501
|
|
93
94
|
'jwt': (str,), # noqa: E501
|
|
94
95
|
'merchant_id': (str,), # noqa: E501
|
|
95
96
|
'pbx_admin': (bool,), # noqa: E501
|
|
@@ -100,6 +101,7 @@ class ConversationAgentAuth(ModelNormal):
|
|
|
100
101
|
'pbx_voice_token': (str,), # noqa: E501
|
|
101
102
|
'pbx_worker_token': (str,), # noqa: E501
|
|
102
103
|
'twilio_accounts': ([ConversationTwilioAccount],), # noqa: E501
|
|
104
|
+
'user_id': (int,), # noqa: E501
|
|
103
105
|
'websocket_url': (str,), # noqa: E501
|
|
104
106
|
}
|
|
105
107
|
|
|
@@ -111,6 +113,7 @@ class ConversationAgentAuth(ModelNormal):
|
|
|
111
113
|
attribute_map = {
|
|
112
114
|
'conversation_participant_arn': 'conversation_participant_arn', # noqa: E501
|
|
113
115
|
'conversation_participant_name': 'conversation_participant_name', # noqa: E501
|
|
116
|
+
'group_ids': 'group_ids', # noqa: E501
|
|
114
117
|
'jwt': 'jwt', # noqa: E501
|
|
115
118
|
'merchant_id': 'merchant_id', # noqa: E501
|
|
116
119
|
'pbx_admin': 'pbx_admin', # noqa: E501
|
|
@@ -121,6 +124,7 @@ class ConversationAgentAuth(ModelNormal):
|
|
|
121
124
|
'pbx_voice_token': 'pbx_voice_token', # noqa: E501
|
|
122
125
|
'pbx_worker_token': 'pbx_worker_token', # noqa: E501
|
|
123
126
|
'twilio_accounts': 'twilio_accounts', # noqa: E501
|
|
127
|
+
'user_id': 'user_id', # noqa: E501
|
|
124
128
|
'websocket_url': 'websocket_url', # noqa: E501
|
|
125
129
|
}
|
|
126
130
|
|
|
@@ -167,6 +171,7 @@ class ConversationAgentAuth(ModelNormal):
|
|
|
167
171
|
_visited_composed_classes = (Animal,)
|
|
168
172
|
conversation_participant_arn (str): [optional] # noqa: E501
|
|
169
173
|
conversation_participant_name (str): [optional] # noqa: E501
|
|
174
|
+
group_ids ([int]): UltraCart Groups this user belongs to. [optional] # noqa: E501
|
|
170
175
|
jwt (str): [optional] # noqa: E501
|
|
171
176
|
merchant_id (str): [optional] # noqa: E501
|
|
172
177
|
pbx_admin (bool): [optional] # noqa: E501
|
|
@@ -177,6 +182,7 @@ class ConversationAgentAuth(ModelNormal):
|
|
|
177
182
|
pbx_voice_token (str): [optional] # noqa: E501
|
|
178
183
|
pbx_worker_token (str): [optional] # noqa: E501
|
|
179
184
|
twilio_accounts ([ConversationTwilioAccount]): [optional] # noqa: E501
|
|
185
|
+
user_id (int): UltraCart User ID. [optional] # noqa: E501
|
|
180
186
|
websocket_url (str): [optional] # noqa: E501
|
|
181
187
|
"""
|
|
182
188
|
|
|
@@ -265,6 +271,7 @@ class ConversationAgentAuth(ModelNormal):
|
|
|
265
271
|
_visited_composed_classes = (Animal,)
|
|
266
272
|
conversation_participant_arn (str): [optional] # noqa: E501
|
|
267
273
|
conversation_participant_name (str): [optional] # noqa: E501
|
|
274
|
+
group_ids ([int]): UltraCart Groups this user belongs to. [optional] # noqa: E501
|
|
268
275
|
jwt (str): [optional] # noqa: E501
|
|
269
276
|
merchant_id (str): [optional] # noqa: E501
|
|
270
277
|
pbx_admin (bool): [optional] # noqa: E501
|
|
@@ -275,6 +282,7 @@ class ConversationAgentAuth(ModelNormal):
|
|
|
275
282
|
pbx_voice_token (str): [optional] # noqa: E501
|
|
276
283
|
pbx_worker_token (str): [optional] # noqa: E501
|
|
277
284
|
twilio_accounts ([ConversationTwilioAccount]): [optional] # noqa: E501
|
|
285
|
+
user_id (int): UltraCart User ID. [optional] # noqa: E501
|
|
278
286
|
websocket_url (str): [optional] # noqa: E501
|
|
279
287
|
"""
|
|
280
288
|
|
|
@@ -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=Q8TZZtdp2MuIqfXwFAHcVdUhGzuSptj9h_A_QquDdb4,699
|
|
2
|
+
ultracart/api_client.py,sha256=mnzyeqMClX3FC4fMCO_zczWngv2Th4Djpzo-H8Q8z8g,39072
|
|
3
|
+
ultracart/configuration.py,sha256=kS9BuKXPCBM0jM3JHZa_QmixAMQi1CnwwgI0Q4UbJEs,17842
|
|
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
|
|
@@ -157,7 +157,7 @@ ultracart/model/checkout_setup_browser_key_response.py,sha256=HHkfgHDcOps7jAp8RB
|
|
|
157
157
|
ultracart/model/checkout_state_province_response.py,sha256=QD6yupUWG_6ocSN83krfw7-eaN0YzxtLvatnUuci10Y,11698
|
|
158
158
|
ultracart/model/city_state_zip.py,sha256=goGnlh4nzcsV1p8iNeFm4y6LP2TrtHIVjBPrHCDNBas,12129
|
|
159
159
|
ultracart/model/conversation.py,sha256=GzwEq5ZCV02WfWPE7zyJvbZz-MX1KIdBxij-zelOfYc,17213
|
|
160
|
-
ultracart/model/conversation_agent_auth.py,sha256=
|
|
160
|
+
ultracart/model/conversation_agent_auth.py,sha256=OKvY61hG-vpVOtSzVOqXeBy-b5feJuglN53Ovcl0Co0,15038
|
|
161
161
|
ultracart/model/conversation_agent_auth_response.py,sha256=boVaC_JNOUGPlmxX2E-QdQWFLAJMS8GC4OWMRYaCjNM,12906
|
|
162
162
|
ultracart/model/conversation_agent_profile.py,sha256=vqIOHdbPLr3tgNMwe_Ufx_disp3Q_80aOStSZSXwAEQ,13813
|
|
163
163
|
ultracart/model/conversation_agent_profile_response.py,sha256=vlWWfOZOgHoUuA74xY23jQ9bk4yBZkBbhFWAKiv1mq0,12951
|
|
@@ -883,8 +883,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
|
|
|
883
883
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
884
884
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
885
885
|
ultracart/models/__init__.py,sha256=5w0sm-4hP3O2vuflMmlb19tOWigMwoSgdhRPItFqPAQ,65888
|
|
886
|
-
ultracart_rest_sdk-4.0.
|
|
887
|
-
ultracart_rest_sdk-4.0.
|
|
888
|
-
ultracart_rest_sdk-4.0.
|
|
889
|
-
ultracart_rest_sdk-4.0.
|
|
890
|
-
ultracart_rest_sdk-4.0.
|
|
886
|
+
ultracart_rest_sdk-4.0.238.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
887
|
+
ultracart_rest_sdk-4.0.238.dist-info/METADATA,sha256=m--5D2JfXo5s-MjkRV_1JYXyeJAjg8c9dPTkKavBj10,403
|
|
888
|
+
ultracart_rest_sdk-4.0.238.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
889
|
+
ultracart_rest_sdk-4.0.238.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
890
|
+
ultracart_rest_sdk-4.0.238.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|