ultracart-rest-sdk 4.0.228__py3-none-any.whl → 4.0.229__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_pbx_menu.py +11 -0
- ultracart/model/conversation_pbx_voicemail_mailbox.py +8 -0
- {ultracart_rest_sdk-4.0.228.dist-info → ultracart_rest_sdk-4.0.229.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.228.dist-info → ultracart_rest_sdk-4.0.229.dist-info}/RECORD +10 -10
- {ultracart_rest_sdk-4.0.228.dist-info → ultracart_rest_sdk-4.0.229.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.228.dist-info → ultracart_rest_sdk-4.0.229.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.228.dist-info → ultracart_rest_sdk-4.0.229.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.229/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.229".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
|
@@ -60,6 +60,10 @@ class ConversationPbxMenu(ModelNormal):
|
|
|
60
60
|
"""
|
|
61
61
|
|
|
62
62
|
allowed_values = {
|
|
63
|
+
('say_voice',): {
|
|
64
|
+
'MAN': "man",
|
|
65
|
+
'WOMAN': "woman",
|
|
66
|
+
},
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
validations = {
|
|
@@ -81,6 +85,9 @@ class ConversationPbxMenu(ModelNormal):
|
|
|
81
85
|
('play_audio_uuid',): {
|
|
82
86
|
'max_length': 50,
|
|
83
87
|
},
|
|
88
|
+
('say_voice',): {
|
|
89
|
+
'max_length': 50,
|
|
90
|
+
},
|
|
84
91
|
}
|
|
85
92
|
|
|
86
93
|
@cached_property
|
|
@@ -115,6 +122,7 @@ class ConversationPbxMenu(ModelNormal):
|
|
|
115
122
|
'name': (str,), # noqa: E501
|
|
116
123
|
'play_audio_uuid': (str,), # noqa: E501
|
|
117
124
|
'say': (str,), # noqa: E501
|
|
125
|
+
'say_voice': (str,), # noqa: E501
|
|
118
126
|
'timeout': (int,), # noqa: E501
|
|
119
127
|
}
|
|
120
128
|
|
|
@@ -133,6 +141,7 @@ class ConversationPbxMenu(ModelNormal):
|
|
|
133
141
|
'name': 'name', # noqa: E501
|
|
134
142
|
'play_audio_uuid': 'play_audio_uuid', # noqa: E501
|
|
135
143
|
'say': 'say', # noqa: E501
|
|
144
|
+
'say_voice': 'say_voice', # noqa: E501
|
|
136
145
|
'timeout': 'timeout', # noqa: E501
|
|
137
146
|
}
|
|
138
147
|
|
|
@@ -186,6 +195,7 @@ class ConversationPbxMenu(ModelNormal):
|
|
|
186
195
|
name (str): Menu name. [optional] # noqa: E501
|
|
187
196
|
play_audio_uuid (str): An optional audio clip that plays when a customer enters this menu. [optional] # noqa: E501
|
|
188
197
|
say (str): An optional saying that plays when a customer enters this menu. [optional] # noqa: E501
|
|
198
|
+
say_voice (str): say voice. [optional] # noqa: E501
|
|
189
199
|
timeout (int): The idle seconds before this menu times out. [optional] # noqa: E501
|
|
190
200
|
"""
|
|
191
201
|
|
|
@@ -281,6 +291,7 @@ class ConversationPbxMenu(ModelNormal):
|
|
|
281
291
|
name (str): Menu name. [optional] # noqa: E501
|
|
282
292
|
play_audio_uuid (str): An optional audio clip that plays when a customer enters this menu. [optional] # noqa: E501
|
|
283
293
|
say (str): An optional saying that plays when a customer enters this menu. [optional] # noqa: E501
|
|
294
|
+
say_voice (str): say voice. [optional] # noqa: E501
|
|
284
295
|
timeout (int): The idle seconds before this menu times out. [optional] # noqa: E501
|
|
285
296
|
"""
|
|
286
297
|
|
|
@@ -56,10 +56,18 @@ class ConversationPbxVoicemailMailbox(ModelNormal):
|
|
|
56
56
|
"""
|
|
57
57
|
|
|
58
58
|
allowed_values = {
|
|
59
|
+
('voicemail_followup_say_voice',): {
|
|
60
|
+
'MAN': "man",
|
|
61
|
+
'WOMAN': "woman",
|
|
62
|
+
},
|
|
59
63
|
('voicemail_mailbox_type',): {
|
|
60
64
|
'AGENT': "agent",
|
|
61
65
|
'SHARED': "shared",
|
|
62
66
|
},
|
|
67
|
+
('voicemail_prompt_say_voice',): {
|
|
68
|
+
'MAN': "man",
|
|
69
|
+
'WOMAN': "woman",
|
|
70
|
+
},
|
|
63
71
|
}
|
|
64
72
|
|
|
65
73
|
validations = {
|
|
@@ -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=W78z1ZEYbk5pDMIq78q4oHyXie_i8yODlohC66X2UlE,699
|
|
2
|
+
ultracart/api_client.py,sha256=muyyoklovezCpWFWJg9B_oq5XXw-CXLl_qBlwTfH7oM,39072
|
|
3
|
+
ultracart/configuration.py,sha256=q3WgCUX6tghdJLYl5py8AHBgrSHkd3uruB7jL4yJRMw,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
|
|
@@ -208,7 +208,7 @@ ultracart/model/conversation_pbx_audio_usage_response.py,sha256=tNc1ZTFkkUKvRiIc
|
|
|
208
208
|
ultracart/model/conversation_pbx_audios_response.py,sha256=llnOyuMCddIzgEzHTVHSKHeA7aha8ns6w2NDViqR8cY,12885
|
|
209
209
|
ultracart/model/conversation_pbx_customer_snapshot_request.py,sha256=NX_L4Dnn2vkE0LJWKuHU_s_opzpzxVvoZIyuULwH7bo,13442
|
|
210
210
|
ultracart/model/conversation_pbx_customer_snapshot_response.py,sha256=altaQBJHMquhMUViFRjvXY8c8BmPLs6KHRCzW_Ek0tg,13448
|
|
211
|
-
ultracart/model/conversation_pbx_menu.py,sha256=
|
|
211
|
+
ultracart/model/conversation_pbx_menu.py,sha256=Rc8FHYvtAppQYGBCNOdfVz5S4ouV4SVU6pQXxhPHHrg,15421
|
|
212
212
|
ultracart/model/conversation_pbx_menu_mapping.py,sha256=-00uET0jZHl1gFjTfWCwGTVDiOM23Snx5zxJQOGvq7M,12619
|
|
213
213
|
ultracart/model/conversation_pbx_menu_response.py,sha256=NknPaIxn5Xtbit9zmMoB5ri2TfUCdDiLqKi-4j3dYjI,12856
|
|
214
214
|
ultracart/model/conversation_pbx_menus_response.py,sha256=b7aNcBBXfAlXGxlX0LXcHqZRMSTFattGtNxJqZ6Ciz4,12870
|
|
@@ -228,7 +228,7 @@ ultracart/model/conversation_pbx_time_range.py,sha256=ATh0Uy99whFNo2QaWOOwLMufvr
|
|
|
228
228
|
ultracart/model/conversation_pbx_time_range_config.py,sha256=dkfz0zeN3DyOI9KjlEwycGdl6syvClBrJB1vM1J0KjU,12709
|
|
229
229
|
ultracart/model/conversation_pbx_time_range_response.py,sha256=Y_b5Z6AHw_-LE7v5nDTHVIDYzkVqcDBwrJx2JQME1yY,12937
|
|
230
230
|
ultracart/model/conversation_pbx_time_ranges_response.py,sha256=BEzjr2Jz-m_n_0P20nHLDug1H0i1K2L58ROqF-6P9ys,12951
|
|
231
|
-
ultracart/model/conversation_pbx_voicemail_mailbox.py,sha256=
|
|
231
|
+
ultracart/model/conversation_pbx_voicemail_mailbox.py,sha256=BtAtFiA8kcart0ZF97Kmj-QzRnXrN3dMNK2nXIlf2RA,16267
|
|
232
232
|
ultracart/model/conversation_pbx_voicemail_mailbox_response.py,sha256=XQrcrz8AmgBKFNe0kIVFhDEJilRVMKx3k8TTRHgEArE,13042
|
|
233
233
|
ultracart/model/conversation_pbx_voicemail_mailboxes_response.py,sha256=2xuNY5oA3mOEFID3CYJwpsEVCjVpfZ4mf9cxuaB6OiU,13064
|
|
234
234
|
ultracart/model/conversation_pbx_voicemail_message.py,sha256=FO6FKxd-_85HyX9JR4ELDog4vERjKylHs_5DJv7z1z4,15025
|
|
@@ -882,8 +882,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
|
|
|
882
882
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
883
883
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
884
884
|
ultracart/models/__init__.py,sha256=JOyD4oTrVKrwdSgBUPAcyMnm_9hmWMw9aPK7u8ppvak,65794
|
|
885
|
-
ultracart_rest_sdk-4.0.
|
|
886
|
-
ultracart_rest_sdk-4.0.
|
|
887
|
-
ultracart_rest_sdk-4.0.
|
|
888
|
-
ultracart_rest_sdk-4.0.
|
|
889
|
-
ultracart_rest_sdk-4.0.
|
|
885
|
+
ultracart_rest_sdk-4.0.229.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
886
|
+
ultracart_rest_sdk-4.0.229.dist-info/METADATA,sha256=bVTgEIivaiwjZEnNJ3u3KjjbL5R8wj94aKdjIbYtTCo,403
|
|
887
|
+
ultracart_rest_sdk-4.0.229.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
888
|
+
ultracart_rest_sdk-4.0.229.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
889
|
+
ultracart_rest_sdk-4.0.229.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|