syllable-sdk 0.44.4__py3-none-any.whl → 0.44.12__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.
@@ -172,7 +172,7 @@ class Pronunciations(BaseSDK):
172
172
  server_url: Optional[str] = None,
173
173
  timeout_ms: Optional[int] = None,
174
174
  http_headers: Optional[Mapping[str, str]] = None,
175
- ) -> models.SchemasTtsV1PronunciationsDictionaryMetadata:
175
+ ) -> models.DictionaryMetadata:
176
176
  r"""Get Pronunciations Metadata
177
177
 
178
178
  :param retries: Override the default retry configuration for this method
@@ -230,9 +230,7 @@ class Pronunciations(BaseSDK):
230
230
  )
231
231
 
232
232
  if utils.match_response(http_res, "200", "application/json"):
233
- return unmarshal_json_response(
234
- models.SchemasTtsV1PronunciationsDictionaryMetadata, http_res
235
- )
233
+ return unmarshal_json_response(models.DictionaryMetadata, http_res)
236
234
  if utils.match_response(http_res, "4XX", "*"):
237
235
  http_res_text = utils.stream_to_text(http_res)
238
236
  raise errors.APIError("API error occurred", http_res, http_res_text)
@@ -249,7 +247,7 @@ class Pronunciations(BaseSDK):
249
247
  server_url: Optional[str] = None,
250
248
  timeout_ms: Optional[int] = None,
251
249
  http_headers: Optional[Mapping[str, str]] = None,
252
- ) -> models.SchemasTtsV1PronunciationsDictionaryMetadata:
250
+ ) -> models.DictionaryMetadata:
253
251
  r"""Get Pronunciations Metadata
254
252
 
255
253
  :param retries: Override the default retry configuration for this method
@@ -307,9 +305,7 @@ class Pronunciations(BaseSDK):
307
305
  )
308
306
 
309
307
  if utils.match_response(http_res, "200", "application/json"):
310
- return unmarshal_json_response(
311
- models.SchemasTtsV1PronunciationsDictionaryMetadata, http_res
312
- )
308
+ return unmarshal_json_response(models.DictionaryMetadata, http_res)
313
309
  if utils.match_response(http_res, "4XX", "*"):
314
310
  http_res_text = await utils.stream_to_text_async(http_res)
315
311
  raise errors.APIError("API error occurred", http_res, http_res_text)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: syllable-sdk
3
- Version: 0.44.4
3
+ Version: 0.44.12
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Syllable
6
6
  Requires-Python: >=3.9.2
@@ -247,7 +247,7 @@ with SyllableSDK(
247
247
  <details open>
248
248
  <summary>Available methods</summary>
249
249
 
250
- ### [agents](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/agents/README.md)
250
+ ### [Agents](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/agents/README.md)
251
251
 
252
252
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/agents/README.md#list) - Agent List
253
253
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/agents/README.md#create) - Create Agent
@@ -256,18 +256,18 @@ with SyllableSDK(
256
256
  * [delete](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/agents/README.md#delete) - Delete Agent
257
257
  * [agent_get_available_voices](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/agents/README.md#agent_get_available_voices) - Get Available Agent Voices
258
258
 
259
- #### [agents.test](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/test/README.md)
259
+ #### [Agents.Test](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/test/README.md)
260
260
 
261
261
  * [send_test_message](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/test/README.md#send_test_message) - Send New Message
262
262
 
263
- ### [channels](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/channels/README.md)
263
+ ### [Channels](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/channels/README.md)
264
264
 
265
265
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/channels/README.md#list) - Get Channels
266
266
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/channels/README.md#create) - Create Channel
267
267
  * [update](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/channels/README.md#update) - Update Channel
268
268
  * [delete](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/channels/README.md#delete) - Delete Channel Target
269
269
 
270
- #### [channels.targets](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/targets/README.md)
270
+ #### [Channels.Targets](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/targets/README.md)
271
271
 
272
272
  * [available_targets](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/targets/README.md#available_targets) - Available Targets List
273
273
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/targets/README.md#list) - Get Channel Targets
@@ -275,28 +275,28 @@ with SyllableSDK(
275
275
  * [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/targets/README.md#get_by_id) - Get A Channel Target
276
276
  * [update](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/targets/README.md#update) - Edit Channel Target
277
277
 
278
- #### [channels.twilio](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/twilio/README.md)
278
+ #### [Channels.Twilio](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/twilio/README.md)
279
279
 
280
280
  * [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/twilio/README.md#get_by_id) - Get Twilio Channel By Id
281
281
  * [~~update~~](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/twilio/README.md#update) - Update Twilio Channel :warning: **Deprecated**
282
282
  * [~~create~~](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/twilio/README.md#create) - Create Twilio Channel :warning: **Deprecated**
283
283
 
284
- #### [channels.twilio.numbers](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/numbers/README.md)
284
+ ##### [Channels.Twilio.Numbers](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/numbers/README.md)
285
285
 
286
286
  * [add](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/numbers/README.md#add) - Add Twilio Number
287
287
  * [update](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/numbers/README.md#update) - Update Twilio Number
288
288
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/numbers/README.md#list) - List Twilio Phone Numbers
289
289
 
290
- ### [conversation_config](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/conversationconfig/README.md)
290
+ ### [ConversationConfig](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/conversationconfig/README.md)
291
291
 
292
292
  * [get_bridge_phrases_config](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/conversationconfig/README.md#get_bridge_phrases_config) - Get Bridge Phrases Config
293
293
  * [update_bridge_phrases_config](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/conversationconfig/README.md#update_bridge_phrases_config) - Update Bridge Phrases Config
294
294
 
295
- ### [conversations](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/conversations/README.md)
295
+ ### [Conversations](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/conversations/README.md)
296
296
 
297
297
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/conversations/README.md#list) - Conversations List
298
298
 
299
- ### [custom_messages](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/custommessages/README.md)
299
+ ### [CustomMessages](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/custommessages/README.md)
300
300
 
301
301
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/custommessages/README.md#list) - Custom Messages List
302
302
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/custommessages/README.md#create) - Create Custom Message
@@ -304,7 +304,7 @@ with SyllableSDK(
304
304
  * [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/custommessages/README.md#get_by_id) - Get Custom Message By Id
305
305
  * [delete](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/custommessages/README.md#delete) - Delete Custom Message
306
306
 
307
- ### [dashboards](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/dashboards/README.md)
307
+ ### [Dashboards](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/dashboards/README.md)
308
308
 
309
309
  * [post_list_dashboard](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/dashboards/README.md#post_list_dashboard) - Post List Dashboards
310
310
  * [post_get_dashboard](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/dashboards/README.md#post_get_dashboard) - Post Fetch Info
@@ -313,7 +313,7 @@ with SyllableSDK(
313
313
  * [~~post_session_transfers_dashboard~~](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/dashboards/README.md#post_session_transfers_dashboard) - Post Session Transfers :warning: **Deprecated**
314
314
  * [~~post_sessions_dashboard~~](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/dashboards/README.md#post_sessions_dashboard) - Post Sessions :warning: **Deprecated**
315
315
 
316
- ### [data_sources](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/datasources/README.md)
316
+ ### [DataSources](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/datasources/README.md)
317
317
 
318
318
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/datasources/README.md#list) - List Data Sources
319
319
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/datasources/README.md#create) - Create Data Source
@@ -321,7 +321,7 @@ with SyllableSDK(
321
321
  * [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/datasources/README.md#get_by_id) - Get Data Source
322
322
  * [delete](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/datasources/README.md#delete) - Delete Data Source
323
323
 
324
- ### [directory](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md)
324
+ ### [Directory](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md)
325
325
 
326
326
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#list) - Directory Member List
327
327
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#create) - Create Directory Member
@@ -332,11 +332,11 @@ with SyllableSDK(
332
332
  * [directory_member_bulk_load](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#directory_member_bulk_load) - Bulk Load Directory Members
333
333
  * [directory_member_download](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/directory/README.md#directory_member_download) - Download Directory Members
334
334
 
335
- ### [events](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/events/README.md)
335
+ ### [Events](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/events/README.md)
336
336
 
337
337
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/events/README.md#list) - Events List
338
338
 
339
- ### [incidents](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/incidents/README.md)
339
+ ### [Incidents](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/incidents/README.md)
340
340
 
341
341
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/incidents/README.md#list) - List Incidents
342
342
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/incidents/README.md#create) - Create Incident
@@ -345,11 +345,11 @@ with SyllableSDK(
345
345
  * [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/incidents/README.md#get_by_id) - Get Incident By Id
346
346
  * [delete](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/incidents/README.md#delete) - Delete Incident
347
347
 
348
- ### [insights](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/insightssdk/README.md)
348
+ ### [Insights](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/insightssdk/README.md)
349
349
 
350
350
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/insightssdk/README.md#list) - Insights List
351
351
 
352
- #### [insights.folders](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/folders/README.md)
352
+ #### [Insights.Folders](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/folders/README.md)
353
353
 
354
354
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/folders/README.md#list) - List Insights Upload Folders
355
355
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/folders/README.md#create) - Create Insights Upload Folder
@@ -360,7 +360,7 @@ with SyllableSDK(
360
360
  * [list_files](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/folders/README.md#list_files) - Fetch Insights Upload Files
361
361
  * [move_files](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/folders/README.md#move_files) - Move Insights Upload Files
362
362
 
363
- #### [insights.tools](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/insightstools/README.md)
363
+ #### [Insights.Tools](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/insightstools/README.md)
364
364
 
365
365
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/insightstools/README.md#list) - List Insight Tool Configurations
366
366
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/insightstools/README.md#create) - Create Insight Tool Configuration
@@ -370,7 +370,7 @@ with SyllableSDK(
370
370
  * [insights_tool_test](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/insightstools/README.md#insights_tool_test) - Test Insights Tool
371
371
  * [insight_tool_get_definitions](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/insightstools/README.md#insight_tool_get_definitions) - Get Insight Tool Definitions
372
372
 
373
- #### [insights.workflows](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/workflows/README.md)
373
+ #### [Insights.Workflows](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/workflows/README.md)
374
374
 
375
375
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/workflows/README.md#list) - Insight Workflow List
376
376
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/workflows/README.md#create) - Create Insight Workflow
@@ -381,7 +381,7 @@ with SyllableSDK(
381
381
  * [activate](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/workflows/README.md#activate) - Activate Insights Workflow
382
382
  * [queue_work](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/workflows/README.md#queue_work) - Queue Insights Workflow For Sessions/Files
383
383
 
384
- ### [~~language_groups~~](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/languagegroups/README.md)
384
+ ### [~~LanguageGroups~~](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/languagegroups/README.md)
385
385
 
386
386
  * [~~list~~](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/languagegroups/README.md#list) - List Language Groups :warning: **Deprecated**
387
387
  * [~~create~~](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/languagegroups/README.md#create) - Create Language Group :warning: **Deprecated**
@@ -390,14 +390,14 @@ with SyllableSDK(
390
390
  * [~~delete~~](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/languagegroups/README.md#delete) - Delete Language Group :warning: **Deprecated**
391
391
  * [~~language_groups_create_voice_sample~~](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/languagegroups/README.md#language_groups_create_voice_sample) - Create Voice Sample :warning: **Deprecated**
392
392
 
393
- ### [organizations](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/organizations/README.md)
393
+ ### [Organizations](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/organizations/README.md)
394
394
 
395
395
  * [organizations_get](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/organizations/README.md#organizations_get) - Get Current Organization
396
396
  * [update](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/organizations/README.md#update) - Update Current Organization
397
397
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/organizations/README.md#create) - Create Organization
398
398
  * [delete](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/organizations/README.md#delete) - Delete Current Organization
399
399
 
400
- #### [outbound.batches](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/batches/README.md)
400
+ ### [Outbound.Batches](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/batches/README.md)
401
401
 
402
402
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/batches/README.md#list) - List Outbound Communication Batches
403
403
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/batches/README.md#create) - Create Outbound Communication Batch
@@ -409,7 +409,7 @@ with SyllableSDK(
409
409
  * [add](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/batches/README.md#add) - Create Outbound Communication Request
410
410
  * [remove](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/batches/README.md#remove) - Delete Requests By List Of Reference Ids
411
411
 
412
- #### [outbound.campaigns](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/campaigns/README.md)
412
+ ### [Outbound.Campaigns](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/campaigns/README.md)
413
413
 
414
414
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/campaigns/README.md#list) - List Outbound Communication Campaigns
415
415
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/campaigns/README.md#create) - Create Outbound Communication Campaign
@@ -417,11 +417,11 @@ with SyllableSDK(
417
417
  * [update](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/campaigns/README.md#update) - Update Outbound Communication Campaign
418
418
  * [delete](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/campaigns/README.md#delete) - Delete Outbound Communication Campaign
419
419
 
420
- ### [permissions](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/permissions/README.md)
420
+ ### [Permissions](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/permissions/README.md)
421
421
 
422
422
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/permissions/README.md#list) - List Permissions
423
423
 
424
- ### [prompts](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/prompts/README.md)
424
+ ### [Prompts](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/prompts/README.md)
425
425
 
426
426
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/prompts/README.md#list) - Prompt List
427
427
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/prompts/README.md#create) - Create Prompt
@@ -431,7 +431,7 @@ with SyllableSDK(
431
431
  * [prompts_history](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/prompts/README.md#prompts_history) - Get Prompt History
432
432
  * [prompt_get_supported_llms](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/prompts/README.md#prompt_get_supported_llms) - Get Supported Llm Configs
433
433
 
434
- ### [pronunciations](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/pronunciations/README.md)
434
+ ### [Pronunciations](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/pronunciations/README.md)
435
435
 
436
436
  * [pronunciations_get](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/pronunciations/README.md#pronunciations_get) - Get Pronunciations Dictionary
437
437
  * [pronunciations_get_metadata](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/pronunciations/README.md#pronunciations_get_metadata) - Get Pronunciations Metadata
@@ -439,7 +439,7 @@ with SyllableSDK(
439
439
  * [pronunciations_upload_csv](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/pronunciations/README.md#pronunciations_upload_csv) - Upload Pronunciations Csv
440
440
  * [pronunciations_delete_csv](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/pronunciations/README.md#pronunciations_delete_csv) - Delete Pronunciations Dictionary
441
441
 
442
- ### [roles](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/roles/README.md)
442
+ ### [Roles](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/roles/README.md)
443
443
 
444
444
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/roles/README.md#list) - List Roles
445
445
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/roles/README.md#create) - Create Role
@@ -447,7 +447,7 @@ with SyllableSDK(
447
447
  * [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/roles/README.md#get_by_id) - Get Role
448
448
  * [delete](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/roles/README.md#delete) - Delete Role
449
449
 
450
- ### [services](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/services/README.md)
450
+ ### [Services](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/services/README.md)
451
451
 
452
452
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/services/README.md#list) - Service List
453
453
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/services/README.md#create) - Create Service
@@ -455,44 +455,44 @@ with SyllableSDK(
455
455
  * [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/services/README.md#get_by_id) - Get Service By Id
456
456
  * [delete](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/services/README.md#delete) - Delete Service
457
457
 
458
- ### [session_debug](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessiondebug/README.md)
458
+ ### [SessionDebug](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessiondebug/README.md)
459
459
 
460
460
  * [get_session_data_by_sid](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessiondebug/README.md#get_session_data_by_sid) - Get Session Data By Sid
461
461
  * [get_session_data_by_session_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessiondebug/README.md#get_session_data_by_session_id) - Get Session Data By Session Id
462
462
  * [get_session_tool_call_result_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessiondebug/README.md#get_session_tool_call_result_by_id) - Get Session Tool Call Result By Id
463
463
 
464
- ### [session_labels](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessionlabels/README.md)
464
+ ### [SessionLabels](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessionlabels/README.md)
465
465
 
466
466
  * [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessionlabels/README.md#get_by_id) - Get Label By Id
467
467
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessionlabels/README.md#create) - Create Label
468
468
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessionlabels/README.md#list) - Session Labels List
469
469
 
470
- ### [sessions](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessions/README.md)
470
+ ### [Sessions](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessions/README.md)
471
471
 
472
472
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessions/README.md#list) - Sessions List
473
473
  * [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessions/README.md#get_by_id) - Get A Single Session By Id
474
474
  * [generate_session_recording_urls](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessions/README.md#generate_session_recording_urls) - Generate Recording Urls
475
475
  * [session_recording_stream](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/sessions/README.md#session_recording_stream) - Stream Recording
476
476
 
477
- #### [sessions.full_summary](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/fullsummary/README.md)
477
+ #### [Sessions.FullSummary](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/fullsummary/README.md)
478
478
 
479
479
  * [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/fullsummary/README.md#get_by_id) - Get Full Session Summary By Id
480
480
 
481
- #### [sessions.latency](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/latency/README.md)
481
+ #### [Sessions.Latency](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/latency/README.md)
482
482
 
483
483
  * [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/latency/README.md#get_by_id) - Inspect Latency For Session
484
484
 
485
- #### [sessions.transcript](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/transcript/README.md)
485
+ #### [Sessions.Transcript](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/transcript/README.md)
486
486
 
487
487
  * [get_by_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/transcript/README.md#get_by_id) - Get Session Transcript By Id
488
488
 
489
- ### [takeouts](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/takeouts/README.md)
489
+ ### [Takeouts](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/takeouts/README.md)
490
490
 
491
491
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/takeouts/README.md#create) - Create Takeout
492
492
  * [takeouts_get_by_job_id](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/takeouts/README.md#takeouts_get_by_job_id) - Get Takeout
493
493
  * [takeouts_get_file](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/takeouts/README.md#takeouts_get_file) - Get File
494
494
 
495
- ### [tools](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/tools/README.md)
495
+ ### [Tools](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/tools/README.md)
496
496
 
497
497
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/tools/README.md#list) - Tool List
498
498
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/tools/README.md#create) - Create Tool
@@ -500,7 +500,7 @@ with SyllableSDK(
500
500
  * [get_by_name](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/tools/README.md#get_by_name) - Tool Info
501
501
  * [delete](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/tools/README.md#delete) - Delete Tool
502
502
 
503
- ### [users](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/users/README.md)
503
+ ### [Users](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/users/README.md)
504
504
 
505
505
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/users/README.md#list) - List Users
506
506
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/users/README.md#create) - Create User
@@ -510,7 +510,7 @@ with SyllableSDK(
510
510
  * [users_send_email](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/users/README.md#users_send_email) - Send User Email
511
511
  * [users_delete_account](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/users/README.md#users_delete_account) - Request Removal Of This Account
512
512
 
513
- ### [v1](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/v1/README.md)
513
+ ### [V1](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/v1/README.md)
514
514
 
515
515
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/v1/README.md#list) - List Users
516
516
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/v1/README.md#create) - Create User
@@ -520,7 +520,7 @@ with SyllableSDK(
520
520
  * [users_send_email](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/v1/README.md#users_send_email) - Send User Email
521
521
  * [users_delete_account](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/v1/README.md#users_delete_account) - Request Removal Of This Account
522
522
 
523
- ### [voice_groups](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/voicegroups/README.md)
523
+ ### [VoiceGroups](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/voicegroups/README.md)
524
524
 
525
525
  * [list](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/voicegroups/README.md#list) - List Voice Groups
526
526
  * [create](https://github.com/asksyllable/syllable-sdk-python/blob/master/docs/sdks/voicegroups/README.md#create) - Create Voice Group
@@ -3,7 +3,7 @@ syllable_sdk/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU
3
3
  syllable_sdk/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
4
  syllable_sdk/_hooks/sdkhooks.py,sha256=aRu2TMpxilLKDrG6EIy6uQd6IrBH7kaHOoVkd7GIcus,2562
5
5
  syllable_sdk/_hooks/types.py,sha256=uwJkn18g4_rLZhVtKdE6Ed5YcCjGWSqVgN9-PWqV7Ho,3053
6
- syllable_sdk/_version.py,sha256=hv8aaxhmL0UwVjAas6VQtktgfOgH4qSHXGI9CVAbJnM,468
6
+ syllable_sdk/_version.py,sha256=NYrzBihFXoa4M_CT3JsPM6pW5DXoJFaEpTopwxBg3ZM,470
7
7
  syllable_sdk/agents.py,sha256=5X4d7rstMwWCUTmNH76eX3dTFLGvUtO5fb36hYtXo9w,47252
8
8
  syllable_sdk/basesdk.py,sha256=OZv9Uydmc41Bm5rsLYX8yZdHFZxLCS8f0lABAZkQNs0,12473
9
9
  syllable_sdk/batches.py,sha256=jAL-2jfZqhuVGWd6gG7hzPk7mG_X1M1AuLsO14QRzM8,73743
@@ -14,7 +14,7 @@ syllable_sdk/conversations.py,sha256=eWhgxIRVKExgQX5T8CMmaoB8fofDBpaJ7i-hPGdMkRE
14
14
  syllable_sdk/custom_messages.py,sha256=5YML3nlDzL7RE4pGyuDtPMLS5A7RR_1RKhDv0GWbOzw,41687
15
15
  syllable_sdk/dashboards.py,sha256=OU_67kdhwhYnjM1PCyA-2zRBRgc7_RoNo3NCVV7UkYE,45898
16
16
  syllable_sdk/data_sources.py,sha256=lSAXR9TV1L8DEH7T762-5NFNeWKyJ_oyhwDMz5hllbE,41289
17
- syllable_sdk/directory.py,sha256=qkl-o_udxs6x4Cu_gaS1mJ4Lgg0TNIfckSJ2xwy_640,63507
17
+ syllable_sdk/directory.py,sha256=jn4vbWYSMJnPxtrLUAwdj-zTuLVVxe52hJv0-b_pOwI,66661
18
18
  syllable_sdk/errors/__init__.py,sha256=b7YCOOsKA0VcV2bgdwU0w8lITftThPQ5QHX8sTisILk,2098
19
19
  syllable_sdk/errors/apierror.py,sha256=-LoYmnlQmN0_BBJU1vWCEvA3QDeag_x4lbw7u4R6pfk,1297
20
20
  syllable_sdk/errors/httpvalidationerror.py,sha256=ZsPoNUMwj4CdGcDRWmljjBmg_a9UkpoKSBFFylM9Pu0,906
@@ -30,7 +30,7 @@ syllable_sdk/insights_sdk.py,sha256=7MbgyjFA17XG_J7rPBZMeUvATjuJJvubejZG1siUNW8,
30
30
  syllable_sdk/insights_tools.py,sha256=Y-zbNX2dGKVnzpIIWsFfEmtKE9dQgncwKxoEv_4OlvY,55647
31
31
  syllable_sdk/language_groups.py,sha256=h60ON5r46mOyfqpibnT9YRoXhr97AVP0moybjbUFmKA,51963
32
32
  syllable_sdk/latency.py,sha256=qq7krAv4YkqfsGgUYGBot9gnABkK8ySiL7pVDlCsH5k,7525
33
- syllable_sdk/models/__init__.py,sha256=nmlbWq4y5KlYI7fklf6ZRe_nRqAqDZgLLyfReguMZpw,111397
33
+ syllable_sdk/models/__init__.py,sha256=7oJgUQfb9KvGL3xUb7PWJmaeeJPvAqLG6-7FQUONzWA,112843
34
34
  syllable_sdk/models/agent_deleteop.py,sha256=tUbi-gwd4chf2Ba9O9lCvqDQw6YOnn7aheu8OPDzptc,629
35
35
  syllable_sdk/models/agent_get_by_idop.py,sha256=vj_xEbhOv3c8n3-B3uQnfTwHWdxYSE4k3Zvr58Yc9A4,484
36
36
  syllable_sdk/models/agent_listop.py,sha256=dJdQuIst1TF4xMol9XVdX4xOw8z06jyAQpm46_u0Ysk,5007
@@ -38,7 +38,7 @@ syllable_sdk/models/agentcreate.py,sha256=Yfvu4U3Q0prMFDFSTQPalr7FaVbTKoChcGofc_
38
38
  syllable_sdk/models/agentlanguage.py,sha256=NkquRaZj2cPpm5bDSf2AuhHsL8NxDOYSDEO8YePUE4o,650
39
39
  syllable_sdk/models/agentproperties.py,sha256=r7acQPPWRA7gZUMbhSrQMyDFw_A7RSRZdKo7yvgGQY0,792
40
40
  syllable_sdk/models/agentresponse.py,sha256=pa6qBcPUF7LlK1Au29uuT6AN5dDiPDl8q1S1cc6LOqg,9689
41
- syllable_sdk/models/agentsttprovider.py,sha256=OPZ1f18o_PyJ3xBbAJaP-dQDCT082uE1sllWQzrfB5o,432
41
+ syllable_sdk/models/agentsttprovider.py,sha256=WiCxgCdl7x1E9xSLpUm3KmwMoT09TNfm00hr6oMlP7Y,491
42
42
  syllable_sdk/models/agenttooldefaults.py,sha256=grephhXpDNRoteEjin5eOFqe2pqh2WHs80wO9As87S4,903
43
43
  syllable_sdk/models/agenttoolfielddefault.py,sha256=80ANVtg-F04tDjWvMj55g2xUujUIx-XtT-_lIQOiYnY,788
44
44
  syllable_sdk/models/agentupdate.py,sha256=JyNM5fEMKzsrsk1Ydbr3pu0RyJdQZmv80gvsHm9miL8,6767
@@ -62,7 +62,7 @@ syllable_sdk/models/body_organizations_update.py,sha256=8Ofb8sQ3T4XxBqC1yBzPmxO6
62
62
  syllable_sdk/models/body_outbound_batch_delete.py,sha256=c-3MzefgLGTnZiYtLKb28AkOMwtCImkMLJg932g5PLY,425
63
63
  syllable_sdk/models/body_outbound_batch_upload.py,sha256=_W1aXZOpZX1KO1GaUJhMAkjEgV1v9nLQazyWcQ6AjYY,1313
64
64
  syllable_sdk/models/body_pronunciations_upload_csv.py,sha256=oPftqGS1prHDhBu5zslvk_SqmnuPH-gSV4hsCPoWdCM,1417
65
- syllable_sdk/models/bridgephrasesconfig.py,sha256=PYjs1jrbFn11TVbBWSdkURaKIcznz3UFRZhEVwUCe1A,1567
65
+ syllable_sdk/models/bridgephrasesconfig.py,sha256=1hYjLifcJMdAxPAOJDHTb7mJuNQ8w3VzeaB2GOUr2Bw,1113
66
66
  syllable_sdk/models/callaction.py,sha256=U7uWhgZv2YrPrvXj8yvQ4EyLsE_knWt6GIL0sV5YHSc,4356
67
67
  syllable_sdk/models/campaignproperties.py,sha256=hAIMEG3skfQqE-uDIYu9196EhfHgpEemuhZj4_f0oWo,533
68
68
  syllable_sdk/models/caseexpression.py,sha256=0QF07C5yxRTe-rDmUGmkS5T3schAXHCQdW4e6yZ25p0,483
@@ -125,11 +125,14 @@ syllable_sdk/models/daysofweek.py,sha256=UEc5ZnNNXLmCTYLDqJQBFkkQ286Bx-jK04BbDki
125
125
  syllable_sdk/models/dialogmessage.py,sha256=MlB4omxykh8oFlt-UuIJ4YN91YOGTM4K1i8EvbIp8Dw,356
126
126
  syllable_sdk/models/dialogrole.py,sha256=KAsvAMkeFhkv4JDsTM0Bw8XctAbtcUhq5DU1CFMOhpc,226
127
127
  syllable_sdk/models/dialogtoolcall.py,sha256=hDdnuQQNrB4Vzb--R_v3ze_p9McQszzyQG9JwWrGmZo,1904
128
+ syllable_sdk/models/dictionarymetadata.py,sha256=aXEVP6T0vNXh85_LYdvOqhtwzGvTyuyEhC-kleI3D9M,555
129
+ syllable_sdk/models/directory_member_createop.py,sha256=n8Y3lm8IMZanYMVuFP0It5mt17gsIj6M3lnr3DZ9JKw,1272
128
130
  syllable_sdk/models/directory_member_deleteop.py,sha256=a6T1MBc0ZUBaQFQ3ugRMs_E8Ic0p9zCWs9FmdWp-MHg,504
129
- syllable_sdk/models/directory_member_get_by_idop.py,sha256=5IvyVMM4Ykm-_75QYbe3ljxatQUvO2sQHtQ5Xt98NE8,506
130
- syllable_sdk/models/directory_member_listop.py,sha256=568u6zJ86cE45I9mF4dzRd4dRn-EHTlppdtazmx5W2c,5107
131
+ syllable_sdk/models/directory_member_downloadop.py,sha256=LhpvFA3sI0Rq7BWbji8QdhneARNYHHZRpH30h-vnWUY,953
132
+ syllable_sdk/models/directory_member_get_by_idop.py,sha256=thc-fl1wnGl_102Z51uVXN7LtzjLcLopUpQcLqbV9lE,1104
133
+ syllable_sdk/models/directory_member_listop.py,sha256=ulXhXJzYy0DNBXIsQIh6SqHZuHqw_htKspZ8exnALww,5177
131
134
  syllable_sdk/models/directory_member_test_extensionop.py,sha256=rEvgizAHk0nBrRumhZzAW0kriiogWfpwrXhQlJ_zDj8,2216
132
- syllable_sdk/models/directory_member_updateop.py,sha256=KjeakJR0tdUfUnPVm-NJduca3xgD5hfeGSeg-LI_tCE,827
135
+ syllable_sdk/models/directory_member_updateop.py,sha256=AFI4eY2GrRHGCH8oZ88F-t1ImJHuJfGcM3-H3O3hPB8,1446
133
136
  syllable_sdk/models/directoryextension.py,sha256=37hSpmuwYovZ7AuO3-FajBLr9_i_ardVG20fYHuDF4I,1775
134
137
  syllable_sdk/models/directoryextensionnumber.py,sha256=P7u9CtS1N4k0b0XLD4AD9HnrXY2GcE8D65M8Uwsu6DE,1789
135
138
  syllable_sdk/models/directorymember.py,sha256=l3aOb-qS92dQQKU3A2y4dTPPpfRsIOwxTqiGEpkRHSc,2809
@@ -137,19 +140,21 @@ syllable_sdk/models/directorymembercreate.py,sha256=uJbTXLxb5g6uX4kJphChQzy9EZr2
137
140
  syllable_sdk/models/directorymemberproperties.py,sha256=qX6Ln1OABBc26wgdAiYfZFK0yvYRARgIWaw6RxyUaLg,350
138
141
  syllable_sdk/models/directorymembertestresponse.py,sha256=B4M-uMWjcj_AgOt4uxXuljkuD4wvMD5Z8ODw0MJrjb8,1930
139
142
  syllable_sdk/models/directorymemberupdate.py,sha256=LTWsH5J1gbWiRUs565C38ez9XF8-nVsOV_jKKZaaALI,2376
143
+ syllable_sdk/models/directoryresponseformat.py,sha256=3i2m7lWSgje7ewE1h4_NwojBn4tqRHftPIUq1fQrV5w,283
140
144
  syllable_sdk/models/event.py,sha256=qFvXId06MfWSPW3SnFyy4_rvvqknzoAo0TSQy3F38Jo,4151
141
145
  syllable_sdk/models/eventproperties.py,sha256=9_5DIkk5RtQsa52IxCkffSG0livH8baPSCdhzRKz48I,444
142
146
  syllable_sdk/models/events_listop.py,sha256=eIXJRB3dZpc0DQAOzgfmls2OIgR8vpn_J-_AspXVUBY,5009
143
147
  syllable_sdk/models/eventtask.py,sha256=w-95HB-vmQVaCN1eOvCul9oTUBR9BMfFCkjJns90ZR4,3096
144
- syllable_sdk/models/eventtaskevents.py,sha256=lHvL4xA3bbZ90UaX0ptRza0_lShVtwNF6tYWZfLpgow,2606
145
- syllable_sdk/models/expressiontask.py,sha256=JOJk5tVqLsW9iIqc4uSc1vibpwZthHz8ABszRTtltig,4759
146
- syllable_sdk/models/expressiontaskevents.py,sha256=1k81b5Z168KdzI55gZ5b63GuP1ELyQkDK1s8p3TcWz0,3719
148
+ syllable_sdk/models/eventtaskevents.py,sha256=0jm4RUZLkOlZr7KPN654tSUzExkErpb5Q0RkeprJMIo,2477
149
+ syllable_sdk/models/expressiontask.py,sha256=FJvfIUkbwtk3CE3Ss3S68okdBt1HJJFVE-ss1OjrLa4,4759
150
+ syllable_sdk/models/expressiontaskevents.py,sha256=zP60hCNyvCw65HrTaTF6Su6to08-I7XHI-shp9I69-g,3646
147
151
  syllable_sdk/models/folderdetails.py,sha256=Vl-nTVjQDLtozLmm4HA_Hw4hPcIY-HO5rwwsrQfa6PE,3161
148
152
  syllable_sdk/models/generate_session_recording_urlsop.py,sha256=gQ0CIWLaOB-gSlyVXUELXumzXo4jSxYZquinwl1D5J4,520
149
153
  syllable_sdk/models/get_bridge_phrases_configop.py,sha256=S_9-nIioWaEYDtkeL2JQGuQv3Ca1FW9zb-5iiBktUFE,1980
150
154
  syllable_sdk/models/get_session_data_by_session_idop.py,sha256=8IEsII6_AZjc8E52t0rfmlLC5Z8L4mDeJ7jzxlMx4aQ,514
151
155
  syllable_sdk/models/get_session_data_by_sidop.py,sha256=hy1WQAdwx3p9h39iEMLGdaaXlQkHqcTvnh2aq0aNBQ4,682
152
156
  syllable_sdk/models/get_session_tool_call_result_by_idop.py,sha256=203xSqn0_eJKomS4DVP8HeLt28wQiDQRfEdLwnvpaDo,660
157
+ syllable_sdk/models/getvalueaction.py,sha256=N3d6LiSoqRXHhjpqIsP93mbXtr4xisHkObCdxHz6oKk,5106
153
158
  syllable_sdk/models/incident_deleteop.py,sha256=sF9f9ISsZ4LkAxSJF_8EhLA1XSdcsEUb3DiSe-ZCWhk,641
154
159
  syllable_sdk/models/incident_get_by_idop.py,sha256=g_WK1vlPPNfCkXovtcYfriQASEYON2spyi5ql2D9nLk,496
155
160
  syllable_sdk/models/incident_listop.py,sha256=0Plvi_l59L7mA2hlXUAsgS9Yh8beiUneKK-gxlCCmtM,5037
@@ -282,7 +287,7 @@ syllable_sdk/models/prompts_historyop.py,sha256=psp95NjtZ-G1ItE6AUgNO8OgZ0nh2vu8
282
287
  syllable_sdk/models/prompts_listop.py,sha256=s9iHPBo_MDmtVvwh3bqEFSgxmNVUqjNebO83MARe_W0,5019
283
288
  syllable_sdk/models/promptupdaterequest.py,sha256=H-PEJ_C9DbHEjwpkyDfbehKPd6OyLmPPBdK11GqtXqM,4221
284
289
  syllable_sdk/models/pronunciationoverride.py,sha256=hh40Pm5_foJuS57H-umDw55KMFnYxM_fai5NbLFVu_Y,1120
285
- syllable_sdk/models/pronunciationoverridesdictionary.py,sha256=7ewNv1-kCx6_6hb0L1_SK99fgSnWn1YTaJypMEJgRdw,2840
290
+ syllable_sdk/models/pronunciationoverridesdictionary.py,sha256=VAVif2n6qV2xIYNugb9DT52U33PwW1YXFDIGcFPWuPQ,2693
286
291
  syllable_sdk/models/pronunciationscsvuploadresponse.py,sha256=SjHZfk0je0BPUlYCU5BkO8eR7fup9B1EpKkafjra0JU,773
287
292
  syllable_sdk/models/requeststatus.py,sha256=zvE_ov3uTsDY0R2MAMrl2YCVvwkMLO1qREEogFcT5wQ,429
288
293
  syllable_sdk/models/rolecreaterequest.py,sha256=6p4WSFxwIeQrDvAy5hqu2_bSMC5o2IvgkX6I3_Tn_iY,1990
@@ -294,8 +299,6 @@ syllable_sdk/models/roles_listop.py,sha256=VlDKBfR5-dn8z6ioDSc8dbe6cziaBPLXUnkCK
294
299
  syllable_sdk/models/roleupdaterequest.py,sha256=0POkwVJolChgU9uQeiEPnvk-b3vj-OwSvhjLbzuW4Qk,2393
295
300
  syllable_sdk/models/saveaction.py,sha256=JwNzih0a1xkSSdf5G6597m7JcMhaf4Xa_GYPLxoZKbM,3519
296
301
  syllable_sdk/models/sayaction.py,sha256=rOCzoK28fOALr8WUWR_rm9bUKp30Jfy59pf_7840IoA,3417
297
- syllable_sdk/models/schemas_cortex_v1_bridge_phrases_dictionarymetadata.py,sha256=0EeWakmLE-pwkNiGYclrzlqix4gV7HOkfH5Ab4rM9Oc,2043
298
- syllable_sdk/models/schemas_tts_v1_pronunciations_dictionarymetadata.py,sha256=9D36othFQIjxk3eZhBtjOc_UKiksF9Nr9B73WyligEk,607
299
302
  syllable_sdk/models/security.py,sha256=cmcb8jzAhbaN9jiBBNy4BcT9cOXogAwTIbkC4BDe7o8,711
300
303
  syllable_sdk/models/service_deleteop.py,sha256=xoOwlMCY2tHhDFRsWM7NUMrh5HUwiexssrUrq8DdfTk,637
301
304
  syllable_sdk/models/service_listop.py,sha256=4y4IacaGYPLQTeApQvOO4GLk1J1liEddOdKxZx5tShs,5027
@@ -328,7 +331,7 @@ syllable_sdk/models/setvalueaction.py,sha256=2NDXF_NMynKKPi7y8eCtuK3kDw5e5BJtxoq
328
331
  syllable_sdk/models/statictoolparameter.py,sha256=xPxdGR0kfh1WyjVfOAmYBYBi06KLM-NYRpj5kkfh6fo,2869
329
332
  syllable_sdk/models/statictoolparametertype.py,sha256=bR7qhWReaMcdPvehVFfhHkJFp1p841hbebjbpcJ19Ek,337
330
333
  syllable_sdk/models/step.py,sha256=L2fvqCnO2FFbK8Zcb98NL2jbMp2hcfAC-_H4mLLSDEk,2126
331
- syllable_sdk/models/stepeventactions.py,sha256=l6hfaDVUjQMAzAXVaQWP7b7yYs4aX_O7q0xXwRlNVpU,5441
334
+ syllable_sdk/models/stepeventactions.py,sha256=rR-WfxnxM9KLDhTlcr3DiXYg5zUEpfr8LawTa73IHic,5650
332
335
  syllable_sdk/models/stepstask.py,sha256=6Omen1D2r74ybbfZYJnctgsc5vtGhZLfh-JUr50W3CY,3062
333
336
  syllable_sdk/models/steptools.py,sha256=-6b2SXwKdroURrNHwhUvuGsrGm8PqyfqyNgG9mCGO3Y,2196
334
337
  syllable_sdk/models/summaryentry.py,sha256=f-1pluTulgvUObiyDwYrjlPNPI0vPY_yVf4gQmSLmbo,2043
@@ -355,7 +358,7 @@ syllable_sdk/models/toolhttpendpoint.py,sha256=Q54Fpith2qyO1MyJ6JZ8JpyWUphdZJPgM
355
358
  syllable_sdk/models/toolhttpmethod.py,sha256=_9dJZ4seimNvLiYhC3Y-6U-jELgG0DN6v_QWXnv_rJo,297
356
359
  syllable_sdk/models/tooloptions.py,sha256=SYIjUy-NnTjZsr7_J7CjGsBqwkzyCLa78tIs4pSTuWM,632
357
360
  syllable_sdk/models/toolparameterdefault.py,sha256=iurkZxYBya9rqjs-cTNNzLV9TBLDcZuo2AvNGMhxBkQ,1124
358
- syllable_sdk/models/toolparametertransform.py,sha256=ZrwH9GR52oe7Ldb9lOLKcHMJYOtJmkKoyD5ZMdcJz5w,3950
361
+ syllable_sdk/models/toolparametertransform.py,sha256=vU8G3STQ_BY3otYlzqaXXOHuHnfL9EYIuekFIlIwZsg,4054
359
362
  syllable_sdk/models/toolparametertransformcondition.py,sha256=FFrej6djQ8VUEtWj2hF7qRmA9sODWS1udRc7jnCBvSM,2304
360
363
  syllable_sdk/models/toolpromptinfo.py,sha256=OLhVDCJH11J1ejF7piV2Kup1gjXraeXCCCK2iapIzSE,567
361
364
  syllable_sdk/models/toolproperties.py,sha256=Lwb9_PE8zrIkc27O6eB3cpAXb5YUG2GDipB2qHirMwk,448
@@ -399,7 +402,7 @@ syllable_sdk/organizations.py,sha256=pKhKSw8UxWKTrRzKOMYF1aagB7JGmtpH4a_L3E7i_nc
399
402
  syllable_sdk/outbound.py,sha256=SKcqICw_VNT4vGDdu6b4TFh55hdA4Nh3QbZHbTs3MIc,902
400
403
  syllable_sdk/permissions.py,sha256=_ieq7qI486pgApFjt8Wg2kz5TKKNPKsJVR2VQER038E,6967
401
404
  syllable_sdk/prompts.py,sha256=MoRs0Nwe3im0_Vd0dtXvWpWqYk3dGyfZwfKoZavhYlI,53876
402
- syllable_sdk/pronunciations.py,sha256=BMAXb3V2H4qvNj1IgY61tkOP3hADfx0VYUXJWGFl_ec,33191
405
+ syllable_sdk/pronunciations.py,sha256=OxwXj25NErIzR5ajbxVLX1kZyTlA3kMjaWa451o3nWA,33027
403
406
  syllable_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
404
407
  syllable_sdk/roles.py,sha256=X3_XO3Q482tAW4lFQ29G-Jm_2KPCrDCXmrFPQT8U-pY,40754
405
408
  syllable_sdk/sdk.py,sha256=qZzGTkXRd9o49gmiR1bytFtQ4NVSCuSEHchxpKAepO8,17055
@@ -437,6 +440,6 @@ syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,
437
440
  syllable_sdk/v1.py,sha256=dA67n3aRVr-3VqqW4sFcIAqPRpEwsQqStv9EfJ-EPCc,53980
438
441
  syllable_sdk/voice_groups.py,sha256=ChjGJJW1n7IHfiSenzi-HiIa51jHFjUAO5L5yzNMPFY,48944
439
442
  syllable_sdk/workflows.py,sha256=vXaEaw29tOeMqUIBiJqN9S2XW4B3NP_ZDoUPMVDh_Ck,65385
440
- syllable_sdk-0.44.4.dist-info/METADATA,sha256=oXcBj6EElIRjeL1QX7CGAoOmEf2d68RnEuicIryTLeg,50242
441
- syllable_sdk-0.44.4.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
442
- syllable_sdk-0.44.4.dist-info/RECORD,,
443
+ syllable_sdk-0.44.12.dist-info/METADATA,sha256=_UlQEKSfBUSGvJ-PEfdj6Q3lMKcexiuZiOv2Ad8yFxE,50234
444
+ syllable_sdk-0.44.12.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
445
+ syllable_sdk-0.44.12.dist-info/RECORD,,
@@ -1,67 +0,0 @@
1
- """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
-
3
- from __future__ import annotations
4
- from pydantic import model_serializer
5
- from syllable_sdk.types import (
6
- BaseModel,
7
- Nullable,
8
- OptionalNullable,
9
- UNSET,
10
- UNSET_SENTINEL,
11
- )
12
- from typing import Optional
13
- from typing_extensions import NotRequired, TypedDict
14
-
15
-
16
- class SchemasCortexV1BridgePhrasesDictionaryMetadataTypedDict(TypedDict):
17
- r"""Metadata for the bridge phrases dictionary."""
18
-
19
- hash: NotRequired[Nullable[str]]
20
- r"""Hash of the dictionary content."""
21
- source: NotRequired[Nullable[str]]
22
- r"""Source of the dictionary (e.g. filename)."""
23
- entries: NotRequired[int]
24
- r"""Number of entries in the dictionary."""
25
-
26
-
27
- class SchemasCortexV1BridgePhrasesDictionaryMetadata(BaseModel):
28
- r"""Metadata for the bridge phrases dictionary."""
29
-
30
- hash: OptionalNullable[str] = UNSET
31
- r"""Hash of the dictionary content."""
32
-
33
- source: OptionalNullable[str] = UNSET
34
- r"""Source of the dictionary (e.g. filename)."""
35
-
36
- entries: Optional[int] = 0
37
- r"""Number of entries in the dictionary."""
38
-
39
- @model_serializer(mode="wrap")
40
- def serialize_model(self, handler):
41
- optional_fields = ["hash", "source", "entries"]
42
- nullable_fields = ["hash", "source"]
43
- null_default_fields = []
44
-
45
- serialized = handler(self)
46
-
47
- m = {}
48
-
49
- for n, f in type(self).model_fields.items():
50
- k = f.alias or n
51
- val = serialized.get(k)
52
- serialized.pop(k, None)
53
-
54
- optional_nullable = k in optional_fields and k in nullable_fields
55
- is_set = (
56
- self.__pydantic_fields_set__.intersection({n})
57
- or k in null_default_fields
58
- ) # pylint: disable=no-member
59
-
60
- if val is not None and val != UNSET_SENTINEL:
61
- m[k] = val
62
- elif val != UNSET_SENTINEL and (
63
- not k in optional_fields or (optional_nullable and is_set)
64
- ):
65
- m[k] = val
66
-
67
- return m