ultracart-rest-sdk 4.0.216__py3-none-any.whl → 4.0.218__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_mapping.py +15 -2
- ultracart/model/conversation_pbx_phone_number.py +9 -2
- ultracart/model/conversation_pbx_time_based.py +4 -4
- ultracart/model/conversation_pbx_time_based_mapping.py +9 -2
- {ultracart_rest_sdk-4.0.216.dist-info → ultracart_rest_sdk-4.0.218.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.216.dist-info → ultracart_rest_sdk-4.0.218.dist-info}/RECORD +12 -12
- {ultracart_rest_sdk-4.0.216.dist-info → ultracart_rest_sdk-4.0.218.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.216.dist-info → ultracart_rest_sdk-4.0.218.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.216.dist-info → ultracart_rest_sdk-4.0.218.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.218/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.218".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
|
@@ -56,9 +56,22 @@ class ConversationPbxMenuMapping(ModelNormal):
|
|
|
56
56
|
"""
|
|
57
57
|
|
|
58
58
|
allowed_values = {
|
|
59
|
+
('action',): {
|
|
60
|
+
'TIME_BASED': "time based",
|
|
61
|
+
'MENU': "menu",
|
|
62
|
+
'QUEUE': "queue",
|
|
63
|
+
'VOICEMAIL': "voicemail",
|
|
64
|
+
'AGENT': "agent",
|
|
65
|
+
},
|
|
59
66
|
}
|
|
60
67
|
|
|
61
68
|
validations = {
|
|
69
|
+
('action',): {
|
|
70
|
+
'max_length': 30,
|
|
71
|
+
},
|
|
72
|
+
('action_target',): {
|
|
73
|
+
'max_length': 50,
|
|
74
|
+
},
|
|
62
75
|
}
|
|
63
76
|
|
|
64
77
|
@cached_property
|
|
@@ -142,7 +155,7 @@ class ConversationPbxMenuMapping(ModelNormal):
|
|
|
142
155
|
through its discriminator because we passed in
|
|
143
156
|
_visited_composed_classes = (Animal,)
|
|
144
157
|
action (str): Action. [optional] # noqa: E501
|
|
145
|
-
action_target (str): Action target. [optional] # noqa: E501
|
|
158
|
+
action_target (str): Action target. This is the UUID associated with the configuration object of that particular type.. [optional] # noqa: E501
|
|
146
159
|
digits (int): Digits. [optional] # noqa: E501
|
|
147
160
|
speech (str): Speech. [optional] # noqa: E501
|
|
148
161
|
"""
|
|
@@ -231,7 +244,7 @@ class ConversationPbxMenuMapping(ModelNormal):
|
|
|
231
244
|
through its discriminator because we passed in
|
|
232
245
|
_visited_composed_classes = (Animal,)
|
|
233
246
|
action (str): Action. [optional] # noqa: E501
|
|
234
|
-
action_target (str): Action target. [optional] # noqa: E501
|
|
247
|
+
action_target (str): Action target. This is the UUID associated with the configuration object of that particular type.. [optional] # noqa: E501
|
|
235
248
|
digits (int): Digits. [optional] # noqa: E501
|
|
236
249
|
speech (str): Speech. [optional] # noqa: E501
|
|
237
250
|
"""
|
|
@@ -56,6 +56,13 @@ class ConversationPbxPhoneNumber(ModelNormal):
|
|
|
56
56
|
"""
|
|
57
57
|
|
|
58
58
|
allowed_values = {
|
|
59
|
+
('action',): {
|
|
60
|
+
'TIME_BASED': "time based",
|
|
61
|
+
'MENU': "menu",
|
|
62
|
+
'QUEUE': "queue",
|
|
63
|
+
'VOICEMAIL': "voicemail",
|
|
64
|
+
'AGENT': "agent",
|
|
65
|
+
},
|
|
59
66
|
}
|
|
60
67
|
|
|
61
68
|
validations = {
|
|
@@ -159,7 +166,7 @@ class ConversationPbxPhoneNumber(ModelNormal):
|
|
|
159
166
|
through its discriminator because we passed in
|
|
160
167
|
_visited_composed_classes = (Animal,)
|
|
161
168
|
action (str): Action. [optional] # noqa: E501
|
|
162
|
-
action_target (str): Action target. [optional] # noqa: E501
|
|
169
|
+
action_target (str): Action target. This is the UUID associated with the configuration object of that particular type.. [optional] # noqa: E501
|
|
163
170
|
conversation_pbx_time_range_uuid (str): Conversation Pbx Phone Number UUID. [optional] # noqa: E501
|
|
164
171
|
merchant_id (str): Merchant Id. [optional] # noqa: E501
|
|
165
172
|
phone_number (str): Phone number. [optional] # noqa: E501
|
|
@@ -249,7 +256,7 @@ class ConversationPbxPhoneNumber(ModelNormal):
|
|
|
249
256
|
through its discriminator because we passed in
|
|
250
257
|
_visited_composed_classes = (Animal,)
|
|
251
258
|
action (str): Action. [optional] # noqa: E501
|
|
252
|
-
action_target (str): Action target. [optional] # noqa: E501
|
|
259
|
+
action_target (str): Action target. This is the UUID associated with the configuration object of that particular type.. [optional] # noqa: E501
|
|
253
260
|
conversation_pbx_time_range_uuid (str): Conversation Pbx Phone Number UUID. [optional] # noqa: E501
|
|
254
261
|
merchant_id (str): Merchant Id. [optional] # noqa: E501
|
|
255
262
|
phone_number (str): Phone number. [optional] # noqa: E501
|
|
@@ -100,10 +100,10 @@ class ConversationPbxTimeBased(ModelNormal):
|
|
|
100
100
|
|
|
101
101
|
|
|
102
102
|
attribute_map = {
|
|
103
|
-
'conversation_pbx_time_based_uuid': '
|
|
104
|
-
'mapping_config': '
|
|
105
|
-
'merchant_id': '
|
|
106
|
-
'time_based_name': '
|
|
103
|
+
'conversation_pbx_time_based_uuid': 'conversation_pbx_time_based_uuid', # noqa: E501
|
|
104
|
+
'mapping_config': 'mapping_config', # noqa: E501
|
|
105
|
+
'merchant_id': 'merchant_id', # noqa: E501
|
|
106
|
+
'time_based_name': 'time_based_name', # noqa: E501
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
read_only_vars = {
|
|
@@ -56,6 +56,13 @@ class ConversationPbxTimeBasedMapping(ModelNormal):
|
|
|
56
56
|
"""
|
|
57
57
|
|
|
58
58
|
allowed_values = {
|
|
59
|
+
('action',): {
|
|
60
|
+
'TIME_BASED': "time based",
|
|
61
|
+
'MENU': "menu",
|
|
62
|
+
'QUEUE': "queue",
|
|
63
|
+
'VOICEMAIL': "voicemail",
|
|
64
|
+
'AGENT': "agent",
|
|
65
|
+
},
|
|
59
66
|
}
|
|
60
67
|
|
|
61
68
|
validations = {
|
|
@@ -154,7 +161,7 @@ class ConversationPbxTimeBasedMapping(ModelNormal):
|
|
|
154
161
|
through its discriminator because we passed in
|
|
155
162
|
_visited_composed_classes = (Animal,)
|
|
156
163
|
action (str): Action. [optional] # noqa: E501
|
|
157
|
-
action_target (str): Action target. [optional] # noqa: E501
|
|
164
|
+
action_target (str): Action target. This is the UUID associated with the configuration object of that particular type.. [optional] # noqa: E501
|
|
158
165
|
name (str): Name. [optional] # noqa: E501
|
|
159
166
|
time_range_uuid (str): Time range UUID. [optional] # noqa: E501
|
|
160
167
|
"""
|
|
@@ -243,7 +250,7 @@ class ConversationPbxTimeBasedMapping(ModelNormal):
|
|
|
243
250
|
through its discriminator because we passed in
|
|
244
251
|
_visited_composed_classes = (Animal,)
|
|
245
252
|
action (str): Action. [optional] # noqa: E501
|
|
246
|
-
action_target (str): Action target. [optional] # noqa: E501
|
|
253
|
+
action_target (str): Action target. This is the UUID associated with the configuration object of that particular type.. [optional] # noqa: E501
|
|
247
254
|
name (str): Name. [optional] # noqa: E501
|
|
248
255
|
time_range_uuid (str): Time range UUID. [optional] # noqa: E501
|
|
249
256
|
"""
|
|
@@ -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=_0tBs9ju4uhRPMfdym6wu2hIwqljEXxsxrhtPhXdOXs,699
|
|
2
|
+
ultracart/api_client.py,sha256=B2kg3S85adb0yDQoG2m74fVgUokRC0HDJCGngZ-r-ps,39072
|
|
3
|
+
ultracart/configuration.py,sha256=_2aAkLbShGmH7Sesv5FpeTTzi4vJb-WYIYdavgr4WzA,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
|
|
@@ -209,18 +209,18 @@ ultracart/model/conversation_pbx_audios_response.py,sha256=llnOyuMCddIzgEzHTVHSK
|
|
|
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
211
|
ultracart/model/conversation_pbx_menu.py,sha256=E8--K06lUL63sO8fnFbotg-iLkVLPCjmGC0Cg_oRzK8,15036
|
|
212
|
-
ultracart/model/conversation_pbx_menu_mapping.py,sha256
|
|
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
|
|
215
|
-
ultracart/model/conversation_pbx_phone_number.py,sha256=
|
|
215
|
+
ultracart/model/conversation_pbx_phone_number.py,sha256=mS3gFxRilEeiQ_MW0IJ25jgzq6riaPuI1ZznYbreWpE,13314
|
|
216
216
|
ultracart/model/conversation_pbx_phone_number_response.py,sha256=FjbU6Rqy6J3eT3Jkhm32Wt47V0DxgR9-TPL4vq7k-hs,12967
|
|
217
217
|
ultracart/model/conversation_pbx_phone_numbers_response.py,sha256=rYihQnA17xnRi69J5HL8A8WPPhpEsis9cPvWmXRbJVQ,12981
|
|
218
218
|
ultracart/model/conversation_pbx_queue.py,sha256=uJtAgBj0_tnyqIdJK6RxG7pc32yfSD7AlqvqwSZ_QgY,19440
|
|
219
219
|
ultracart/model/conversation_pbx_queue_members.py,sha256=05KtH79B4H8imx-lfd4hlrrrcbCoXrpK2p0JmHUOr9c,11635
|
|
220
220
|
ultracart/model/conversation_pbx_queue_response.py,sha256=xzYGTLoM4wtTuxNOu_pabjyM3qKxTGwX3p4cC3imGhs,12871
|
|
221
221
|
ultracart/model/conversation_pbx_queues_response.py,sha256=TYpY1yzuSZnjgzNoWudPEAyqWIHzsmWvYdVBGcQZwxc,12885
|
|
222
|
-
ultracart/model/conversation_pbx_time_based.py,sha256=
|
|
223
|
-
ultracart/model/conversation_pbx_time_based_mapping.py,sha256=
|
|
222
|
+
ultracart/model/conversation_pbx_time_based.py,sha256=ZmH_WDQyPUCHFFkDfqt8FkCPHDYt-2R2gHpQ1EShvQA,12609
|
|
223
|
+
ultracart/model/conversation_pbx_time_based_mapping.py,sha256=Cb8yz0NLtK8WEp1uMMnKh4so_5kyNsXVWfKAgWiZGG4,12818
|
|
224
224
|
ultracart/model/conversation_pbx_time_based_mapping_config.py,sha256=RiQaUPBmf0aqbLVE34VAVWniX2tsDbQt0WrzryVgRzM,12114
|
|
225
225
|
ultracart/model/conversation_pbx_time_based_response.py,sha256=1yBIe10xqdgUrzYlShSoPcOrJ_2vrX6lUQ5zlvkZptA,12937
|
|
226
226
|
ultracart/model/conversation_pbx_time_baseds_response.py,sha256=Lk-cJ1ftRIZNCdACkIamSYHyovak4zl9MeA7tno4qXE,12951
|
|
@@ -877,8 +877,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
|
|
|
877
877
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
878
878
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
879
879
|
ultracart/models/__init__.py,sha256=0VZcMHj-u6Zc6EOw-mQH_PPHT2FtR1T1Lzjalm0RbLI,65370
|
|
880
|
-
ultracart_rest_sdk-4.0.
|
|
881
|
-
ultracart_rest_sdk-4.0.
|
|
882
|
-
ultracart_rest_sdk-4.0.
|
|
883
|
-
ultracart_rest_sdk-4.0.
|
|
884
|
-
ultracart_rest_sdk-4.0.
|
|
880
|
+
ultracart_rest_sdk-4.0.218.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
881
|
+
ultracart_rest_sdk-4.0.218.dist-info/METADATA,sha256=wt3jYjU5Po55SIb7tllK8IcQ7qu2WDr0n0ZkhBNQ86o,403
|
|
882
|
+
ultracart_rest_sdk-4.0.218.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
883
|
+
ultracart_rest_sdk-4.0.218.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
884
|
+
ultracart_rest_sdk-4.0.218.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|