ultracart-rest-sdk 4.0.227__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 CHANGED
@@ -11,7 +11,7 @@
11
11
  """
12
12
 
13
13
 
14
- __version__ = "4.0.227"
14
+ __version__ = "4.0.229"
15
15
 
16
16
  # import ApiClient
17
17
  from ultracart.api_client import ApiClient
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.227/python'
80
+ self.user_agent = 'OpenAPI-Generator/4.0.229/python'
81
81
 
82
82
  def __enter__(self):
83
83
  return self
@@ -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.227".\
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):
@@ -62,12 +62,15 @@ class ConversationPbxAgent(ModelNormal):
62
62
  ('cellphone',): {
63
63
  'max_length': 50,
64
64
  },
65
- ('conversation_pbx_voicemail_mailbox_uuid',): {
66
- 'max_length': 50,
67
- },
68
65
  ('merchant_id',): {
69
66
  'max_length': 5,
70
67
  },
68
+ ('personal_conversation_pbx_voicemail_mailbox_uuid',): {
69
+ 'max_length': 50,
70
+ },
71
+ ('shared_conversation_pbx_voicemail_mailbox_uuid',): {
72
+ 'max_length': 50,
73
+ },
71
74
  ('twilio_taskrouter_worker_id',): {
72
75
  'max_length': 100,
73
76
  },
@@ -102,13 +105,14 @@ class ConversationPbxAgent(ModelNormal):
102
105
  return {
103
106
  'cellphone': (str,), # noqa: E501
104
107
  'conversation_pbx_agent_uuid': (str,), # noqa: E501
105
- 'conversation_pbx_voicemail_mailbox_uuid': (str,), # noqa: E501
106
108
  'extension': (int,), # noqa: E501
107
109
  'forward_calls_to_cellphone': (bool,), # noqa: E501
108
110
  'full_name': (str,), # noqa: E501
109
111
  'login': (str,), # noqa: E501
110
112
  'merchant_id': (str,), # noqa: E501
113
+ 'personal_conversation_pbx_voicemail_mailbox_uuid': (str,), # noqa: E501
111
114
  'record_outgoing_automatically': (bool,), # noqa: E501
115
+ 'shared_conversation_pbx_voicemail_mailbox_uuid': (str,), # noqa: E501
112
116
  'twilio_taskrouter_worker_id': (str,), # noqa: E501
113
117
  'unavailable_play_audio_uuid': (str,), # noqa: E501
114
118
  'unavailable_say': (str,), # noqa: E501
@@ -125,13 +129,14 @@ class ConversationPbxAgent(ModelNormal):
125
129
  attribute_map = {
126
130
  'cellphone': 'cellphone', # noqa: E501
127
131
  'conversation_pbx_agent_uuid': 'conversation_pbx_agent_uuid', # noqa: E501
128
- 'conversation_pbx_voicemail_mailbox_uuid': 'conversation_pbx_voicemail_mailbox_uuid', # noqa: E501
129
132
  'extension': 'extension', # noqa: E501
130
133
  'forward_calls_to_cellphone': 'forward_calls_to_cellphone', # noqa: E501
131
134
  'full_name': 'full_name', # noqa: E501
132
135
  'login': 'login', # noqa: E501
133
136
  'merchant_id': 'merchant_id', # noqa: E501
137
+ 'personal_conversation_pbx_voicemail_mailbox_uuid': 'personal_conversation_pbx_voicemail_mailbox_uuid', # noqa: E501
134
138
  'record_outgoing_automatically': 'record_outgoing_automatically', # noqa: E501
139
+ 'shared_conversation_pbx_voicemail_mailbox_uuid': 'shared_conversation_pbx_voicemail_mailbox_uuid', # noqa: E501
135
140
  'twilio_taskrouter_worker_id': 'twilio_taskrouter_worker_id', # noqa: E501
136
141
  'unavailable_play_audio_uuid': 'unavailable_play_audio_uuid', # noqa: E501
137
142
  'unavailable_say': 'unavailable_say', # noqa: E501
@@ -183,13 +188,14 @@ class ConversationPbxAgent(ModelNormal):
183
188
  _visited_composed_classes = (Animal,)
184
189
  cellphone (str): Cellphone number of agent in E.164 format. [optional] # noqa: E501
185
190
  conversation_pbx_agent_uuid (str): Conversation Pbx Agent unique identifier. [optional] # noqa: E501
186
- conversation_pbx_voicemail_mailbox_uuid (str): Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
187
191
  extension (int): Extension. [optional] # noqa: E501
188
192
  forward_calls_to_cellphone (bool): True if calls to this agent should be forwarded to their cellphone. [optional] # noqa: E501
189
193
  full_name (str): Full name. [optional] # noqa: E501
190
194
  login (str): Agent login. [optional] # noqa: E501
191
195
  merchant_id (str): Merchant Id. [optional] # noqa: E501
196
+ personal_conversation_pbx_voicemail_mailbox_uuid (str): Personal Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
192
197
  record_outgoing_automatically (bool): True if outgoing calls should be automatically recorded. [optional] # noqa: E501
198
+ shared_conversation_pbx_voicemail_mailbox_uuid (str): Shared Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
193
199
  twilio_taskrouter_worker_id (str): Twilio taskrouter worker Id. [optional] # noqa: E501
194
200
  unavailable_play_audio_uuid (str): Unavailable play audio UUID. [optional] # noqa: E501
195
201
  unavailable_say (str): Unavailable say. [optional] # noqa: E501
@@ -283,13 +289,14 @@ class ConversationPbxAgent(ModelNormal):
283
289
  _visited_composed_classes = (Animal,)
284
290
  cellphone (str): Cellphone number of agent in E.164 format. [optional] # noqa: E501
285
291
  conversation_pbx_agent_uuid (str): Conversation Pbx Agent unique identifier. [optional] # noqa: E501
286
- conversation_pbx_voicemail_mailbox_uuid (str): Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
287
292
  extension (int): Extension. [optional] # noqa: E501
288
293
  forward_calls_to_cellphone (bool): True if calls to this agent should be forwarded to their cellphone. [optional] # noqa: E501
289
294
  full_name (str): Full name. [optional] # noqa: E501
290
295
  login (str): Agent login. [optional] # noqa: E501
291
296
  merchant_id (str): Merchant Id. [optional] # noqa: E501
297
+ personal_conversation_pbx_voicemail_mailbox_uuid (str): Personal Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
292
298
  record_outgoing_automatically (bool): True if outgoing calls should be automatically recorded. [optional] # noqa: E501
299
+ shared_conversation_pbx_voicemail_mailbox_uuid (str): Shared Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
293
300
  twilio_taskrouter_worker_id (str): Twilio taskrouter worker Id. [optional] # noqa: E501
294
301
  unavailable_play_audio_uuid (str): Unavailable play audio UUID. [optional] # noqa: E501
295
302
  unavailable_say (str): Unavailable say. [optional] # noqa: E501
@@ -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 = {
@@ -138,7 +138,7 @@ class ItemReporting(ModelNormal):
138
138
  through its discriminator because we passed in
139
139
  _visited_composed_classes = (Animal,)
140
140
  report_as_upsell (bool): Report as an upsell. [optional] # noqa: E501
141
- report_pickable_quantities ([int]): Report pickable quantities. [optional] # noqa: E501
141
+ report_pickable_quantities ([int]): Report pickable quantities (deprecated). [optional] # noqa: E501
142
142
  """
143
143
 
144
144
  _check_type = kwargs.pop('_check_type', True)
@@ -225,7 +225,7 @@ class ItemReporting(ModelNormal):
225
225
  through its discriminator because we passed in
226
226
  _visited_composed_classes = (Animal,)
227
227
  report_as_upsell (bool): Report as an upsell. [optional] # noqa: E501
228
- report_pickable_quantities ([int]): Report pickable quantities. [optional] # noqa: E501
228
+ report_pickable_quantities ([int]): Report pickable quantities (deprecated). [optional] # noqa: E501
229
229
  """
230
230
 
231
231
  _check_type = kwargs.pop('_check_type', True)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ultracart-rest-sdk
3
- Version: 4.0.227
3
+ Version: 4.0.229
4
4
  Summary: UltraCart Rest API V2
5
5
  Home-page: UNKNOWN
6
6
  Author: UltraCart Support
@@ -1,6 +1,6 @@
1
- ultracart/__init__.py,sha256=bWeso_u7U4c_3WiMZfKG1y81WhetqTndYkFfimdBfz4,699
2
- ultracart/api_client.py,sha256=QEbWDnUC_wZGZ4786iW9oGovULchnE4ZeViXnMCYTYs,39072
3
- ultracart/configuration.py,sha256=lRqCWhQUB41Bqp96MZP_F-Fg4WJqxhwtmw9KHsvfMtU,17842
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
@@ -197,7 +197,7 @@ ultracart/model/conversation_messages_response.py,sha256=wKaD-ZyZz4PGDSRUw-cDmZ3
197
197
  ultracart/model/conversation_multimedia_upload_url.py,sha256=b83yz8vwDJCcmrlnzKrMmoIzWV85YXc9JvigpxpRchc,11610
198
198
  ultracart/model/conversation_multimedia_upload_url_response.py,sha256=I9GW0IiHrN8XbkV9-m9RvJI9QE39EHmGoXxei_LQ-DY,13127
199
199
  ultracart/model/conversation_participant.py,sha256=AL9wPJxm2TozPN31HbUisIv6AhvTL6DqPuG5VIqY7_4,14482
200
- ultracart/model/conversation_pbx_agent.py,sha256=SQxSf0o9kvD9eQzlmgVBM8_Txsyu-ic2UsYj3wvPwXg,16344
200
+ ultracart/model/conversation_pbx_agent.py,sha256=_qTlzQAoUk3dI_jBCVnN3160HuXJoAH1lOWlfqzxIKc,17004
201
201
  ultracart/model/conversation_pbx_agent_response.py,sha256=ExYxi_fMSjPzyaBA1U9OODt0Ktn8DSMHlRFiq8vfQ04,12871
202
202
  ultracart/model/conversation_pbx_agents_response.py,sha256=DsJzAkoq_3y8maXw3rlGTfshJnZK9gG0sdVO5WnFjTQ,12885
203
203
  ultracart/model/conversation_pbx_audio.py,sha256=0SF54E2KA7HeOb8szFIeydhTuilStBu7cbE3A0GX_JA,14218
@@ -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=E8--K06lUL63sO8fnFbotg-iLkVLPCjmGC0Cg_oRzK8,15036
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=xPZ9LyJLKnyNReXSVRHhCrZGmalfC4ge47f9SV6sqDg,16045
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
@@ -584,7 +584,7 @@ ultracart/model/item_property.py,sha256=moPghPxE3j9MPcKwnjDXQuATsauY7-YHq6yam1cb
584
584
  ultracart/model/item_realtime_pricing.py,sha256=UO5qVBvkVyKAazKGB24YJ8vRYLUAzv3Osf4z-Adv8j8,12336
585
585
  ultracart/model/item_related.py,sha256=-XnQ7S6KNujNhXOf0rnPhkzbKF5L5wtP8DojmYFYKEY,12367
586
586
  ultracart/model/item_related_item.py,sha256=6ahwZdUhhBb_7ukTefTHwoJPHT0ooioRiPW4AcZbXZU,12197
587
- ultracart/model/item_reporting.py,sha256=D3adO9uiFjFU2k4N2uL0IJ0lDEQZ2pd2C89onw6zIp8,11843
587
+ ultracart/model/item_reporting.py,sha256=aNXTDDwx3XWBJoEgaW6IE3CUNJqh7bKiNpgBQw5I3uM,11869
588
588
  ultracart/model/item_response.py,sha256=qWGe4Zznnhc23QYv9Aq4yuBQ4YzA2AeN2YwiIYqeSo8,12704
589
589
  ultracart/model/item_restriction.py,sha256=ZTNz8HEcs7RCVSboE-5IatYzHqmQN-Nn0FbSpUgmdHA,13725
590
590
  ultracart/model/item_restriction_item.py,sha256=NiZfriRqi3bO2RaSfOXK_Zo6EG_qTIcpIO6cmoGgq2Y,12353
@@ -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.227.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
886
- ultracart_rest_sdk-4.0.227.dist-info/METADATA,sha256=1Jegv6YsKyVhrUjIR59flVHAC-sna-SyuI03kDnYaME,403
887
- ultracart_rest_sdk-4.0.227.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
888
- ultracart_rest_sdk-4.0.227.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
889
- ultracart_rest_sdk-4.0.227.dist-info/RECORD,,
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,,