ultracart-rest-sdk 4.1.6__py3-none-any.whl → 4.1.7__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_profile.py +16 -0
- {ultracart_rest_sdk-4.1.6.dist-info → ultracart_rest_sdk-4.1.7.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.1.6.dist-info → ultracart_rest_sdk-4.1.7.dist-info}/RECORD +9 -9
- {ultracart_rest_sdk-4.1.6.dist-info → ultracart_rest_sdk-4.1.7.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.1.6.dist-info → ultracart_rest_sdk-4.1.7.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.1.6.dist-info → ultracart_rest_sdk-4.1.7.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.7/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.7".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
|
@@ -87,6 +87,10 @@ class ConversationAgentProfile(ModelNormal):
|
|
|
87
87
|
and the value is attribute type.
|
|
88
88
|
"""
|
|
89
89
|
return {
|
|
90
|
+
'ai': (bool,), # noqa: E501
|
|
91
|
+
'ai_chat_instructions': (str,), # noqa: E501
|
|
92
|
+
'ai_persona': (str,), # noqa: E501
|
|
93
|
+
'ai_sms_instructions': (str,), # noqa: E501
|
|
90
94
|
'chat_limit': (int,), # noqa: E501
|
|
91
95
|
'default_language_iso_code': (str,), # noqa: E501
|
|
92
96
|
'default_status': (str,), # noqa: E501
|
|
@@ -102,6 +106,10 @@ class ConversationAgentProfile(ModelNormal):
|
|
|
102
106
|
|
|
103
107
|
|
|
104
108
|
attribute_map = {
|
|
109
|
+
'ai': 'ai', # noqa: E501
|
|
110
|
+
'ai_chat_instructions': 'ai_chat_instructions', # noqa: E501
|
|
111
|
+
'ai_persona': 'ai_persona', # noqa: E501
|
|
112
|
+
'ai_sms_instructions': 'ai_sms_instructions', # noqa: E501
|
|
105
113
|
'chat_limit': 'chat_limit', # noqa: E501
|
|
106
114
|
'default_language_iso_code': 'default_language_iso_code', # noqa: E501
|
|
107
115
|
'default_status': 'default_status', # noqa: E501
|
|
@@ -152,6 +160,10 @@ class ConversationAgentProfile(ModelNormal):
|
|
|
152
160
|
Animal class but this time we won't travel
|
|
153
161
|
through its discriminator because we passed in
|
|
154
162
|
_visited_composed_classes = (Animal,)
|
|
163
|
+
ai (bool): AI powered chat bot. [optional] # noqa: E501
|
|
164
|
+
ai_chat_instructions (str): Additional instructions for this AI when handle web chats. [optional] # noqa: E501
|
|
165
|
+
ai_persona (str): Persona of this AI agent. [optional] # noqa: E501
|
|
166
|
+
ai_sms_instructions (str): Additional instructions for this AI when handle SMS messages. [optional] # noqa: E501
|
|
155
167
|
chat_limit (int): The number of engagement chats that can be pushed on them at any given time.. [optional] # noqa: E501
|
|
156
168
|
default_language_iso_code (str): The default language the agent is chatting in. [optional] # noqa: E501
|
|
157
169
|
default_status (str): Default status when the agent loads conversations app.. [optional] # noqa: E501
|
|
@@ -244,6 +256,10 @@ class ConversationAgentProfile(ModelNormal):
|
|
|
244
256
|
Animal class but this time we won't travel
|
|
245
257
|
through its discriminator because we passed in
|
|
246
258
|
_visited_composed_classes = (Animal,)
|
|
259
|
+
ai (bool): AI powered chat bot. [optional] # noqa: E501
|
|
260
|
+
ai_chat_instructions (str): Additional instructions for this AI when handle web chats. [optional] # noqa: E501
|
|
261
|
+
ai_persona (str): Persona of this AI agent. [optional] # noqa: E501
|
|
262
|
+
ai_sms_instructions (str): Additional instructions for this AI when handle SMS messages. [optional] # noqa: E501
|
|
247
263
|
chat_limit (int): The number of engagement chats that can be pushed on them at any given time.. [optional] # noqa: E501
|
|
248
264
|
default_language_iso_code (str): The default language the agent is chatting in. [optional] # noqa: E501
|
|
249
265
|
default_status (str): Default status when the agent loads conversations app.. [optional] # noqa: E501
|
|
@@ -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=3fTe9QT-N7lIpRrGFu4ySkgrlKKBZHzSpriCR_gFIL8,697
|
|
2
|
+
ultracart/api_client.py,sha256=h6cdfVLGdzxGIt-DLBqMbtqZXOMUiOV-7BqnJycUx_I,39070
|
|
3
|
+
ultracart/configuration.py,sha256=YOhQl9_LqsNm57oi7QtCsQt5uflaN2SO25gOwKxn6Qc,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
|
|
@@ -160,7 +160,7 @@ ultracart/model/city_state_zip.py,sha256=goGnlh4nzcsV1p8iNeFm4y6LP2TrtHIVjBPrHCD
|
|
|
160
160
|
ultracart/model/conversation.py,sha256=GzwEq5ZCV02WfWPE7zyJvbZz-MX1KIdBxij-zelOfYc,17213
|
|
161
161
|
ultracart/model/conversation_agent_auth.py,sha256=OKvY61hG-vpVOtSzVOqXeBy-b5feJuglN53Ovcl0Co0,15038
|
|
162
162
|
ultracart/model/conversation_agent_auth_response.py,sha256=boVaC_JNOUGPlmxX2E-QdQWFLAJMS8GC4OWMRYaCjNM,12906
|
|
163
|
-
ultracart/model/conversation_agent_profile.py,sha256=
|
|
163
|
+
ultracart/model/conversation_agent_profile.py,sha256=5iVdmQ9Sx_D0LkO4LO4PblUuQq2uAXpKog247rPFJJg,15039
|
|
164
164
|
ultracart/model/conversation_agent_profile_response.py,sha256=vlWWfOZOgHoUuA74xY23jQ9bk4yBZkBbhFWAKiv1mq0,12951
|
|
165
165
|
ultracart/model/conversation_autocomplete_request.py,sha256=OjTA7kT3wMyv8E63wwoxai_E5baFIWerzWOl-xn2RB8,11625
|
|
166
166
|
ultracart/model/conversation_autocomplete_response.py,sha256=6SJ3yMnmCdVtQfSkmVfrNRoTEWi1ywIzOOswFSMGIZQ,13323
|
|
@@ -886,8 +886,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
|
|
|
886
886
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
887
887
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
888
888
|
ultracart/models/__init__.py,sha256=wAZZhiqX114o5CigFRt6h0F3xqGgBhuAJWasT4khLgM,66104
|
|
889
|
-
ultracart_rest_sdk-4.1.
|
|
890
|
-
ultracart_rest_sdk-4.1.
|
|
891
|
-
ultracart_rest_sdk-4.1.
|
|
892
|
-
ultracart_rest_sdk-4.1.
|
|
893
|
-
ultracart_rest_sdk-4.1.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|