syllable-sdk 1.0.13 → 1.0.14-rc.1

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.
Files changed (100) hide show
  1. package/README.md +7 -0
  2. package/bin/mcp-server.js +1319 -989
  3. package/bin/mcp-server.js.map +19 -11
  4. package/examples/package-lock.json +1 -1
  5. package/funcs/conversationConfigGetBridgePhrasesConfig.d.ts +19 -0
  6. package/funcs/conversationConfigGetBridgePhrasesConfig.d.ts.map +1 -0
  7. package/funcs/conversationConfigGetBridgePhrasesConfig.js +123 -0
  8. package/funcs/conversationConfigGetBridgePhrasesConfig.js.map +1 -0
  9. package/funcs/conversationConfigUpdateBridgePhrasesConfig.d.ts +19 -0
  10. package/funcs/conversationConfigUpdateBridgePhrasesConfig.d.ts.map +1 -0
  11. package/funcs/conversationConfigUpdateBridgePhrasesConfig.js +126 -0
  12. package/funcs/conversationConfigUpdateBridgePhrasesConfig.js.map +1 -0
  13. package/funcs/pronunciationsPronunciationsGetMetadata.d.ts +1 -1
  14. package/funcs/pronunciationsPronunciationsGetMetadata.d.ts.map +1 -1
  15. package/funcs/pronunciationsPronunciationsGetMetadata.js +1 -1
  16. package/funcs/pronunciationsPronunciationsGetMetadata.js.map +1 -1
  17. package/jsr.json +1 -1
  18. package/lib/config.d.ts +2 -2
  19. package/lib/config.js +2 -2
  20. package/lib/config.js.map +1 -1
  21. package/mcp-server/mcp-server.js +1 -1
  22. package/mcp-server/mcp-server.js.map +1 -1
  23. package/mcp-server/server.d.ts.map +1 -1
  24. package/mcp-server/server.js +5 -1
  25. package/mcp-server/server.js.map +1 -1
  26. package/mcp-server/tools/conversationConfigGetBridgePhrasesConfig.d.ts +8 -0
  27. package/mcp-server/tools/conversationConfigGetBridgePhrasesConfig.d.ts.map +1 -0
  28. package/mcp-server/tools/conversationConfigGetBridgePhrasesConfig.js +64 -0
  29. package/mcp-server/tools/conversationConfigGetBridgePhrasesConfig.js.map +1 -0
  30. package/mcp-server/tools/conversationConfigUpdateBridgePhrasesConfig.d.ts +8 -0
  31. package/mcp-server/tools/conversationConfigUpdateBridgePhrasesConfig.d.ts.map +1 -0
  32. package/mcp-server/tools/conversationConfigUpdateBridgePhrasesConfig.js +64 -0
  33. package/mcp-server/tools/conversationConfigUpdateBridgePhrasesConfig.js.map +1 -0
  34. package/models/components/bridgephrasesconfig.d.ts +39 -0
  35. package/models/components/bridgephrasesconfig.d.ts.map +1 -0
  36. package/models/components/bridgephrasesconfig.js +80 -0
  37. package/models/components/bridgephrasesconfig.js.map +1 -0
  38. package/models/components/index.d.ts +3 -1
  39. package/models/components/index.d.ts.map +1 -1
  40. package/models/components/index.js +3 -1
  41. package/models/components/index.js.map +1 -1
  42. package/models/components/pronunciationoverridesdictionary.d.ts +3 -3
  43. package/models/components/pronunciationoverridesdictionary.d.ts.map +1 -1
  44. package/models/components/pronunciationoverridesdictionary.js +3 -3
  45. package/models/components/pronunciationoverridesdictionary.js.map +1 -1
  46. package/models/components/schemascortexv1bridgephrasesdictionarymetadata.d.ts +33 -0
  47. package/models/components/schemascortexv1bridgephrasesdictionarymetadata.d.ts.map +1 -0
  48. package/models/components/schemascortexv1bridgephrasesdictionarymetadata.js +62 -0
  49. package/models/components/schemascortexv1bridgephrasesdictionarymetadata.js.map +1 -0
  50. package/models/components/schemasttsv1pronunciationsdictionarymetadata.d.ts +24 -0
  51. package/models/components/schemasttsv1pronunciationsdictionarymetadata.d.ts.map +1 -0
  52. package/models/components/{dictionarymetadata.js → schemasttsv1pronunciationsdictionarymetadata.js} +10 -10
  53. package/models/components/schemasttsv1pronunciationsdictionarymetadata.js.map +1 -0
  54. package/models/operations/getbridgephrasesconfig.d.ts +25 -0
  55. package/models/operations/getbridgephrasesconfig.d.ts.map +1 -0
  56. package/models/operations/getbridgephrasesconfig.js +71 -0
  57. package/models/operations/getbridgephrasesconfig.js.map +1 -0
  58. package/models/operations/index.d.ts +2 -0
  59. package/models/operations/index.d.ts.map +1 -1
  60. package/models/operations/index.js +2 -0
  61. package/models/operations/index.js.map +1 -1
  62. package/models/operations/updatebridgephrasesconfig.d.ts +28 -0
  63. package/models/operations/updatebridgephrasesconfig.d.ts.map +1 -0
  64. package/models/operations/updatebridgephrasesconfig.js +76 -0
  65. package/models/operations/updatebridgephrasesconfig.js.map +1 -0
  66. package/openapi.json +290 -60
  67. package/package.json +1 -1
  68. package/sdk/conversationconfig.d.ts +20 -0
  69. package/sdk/conversationconfig.d.ts.map +1 -0
  70. package/sdk/conversationconfig.js +32 -0
  71. package/sdk/conversationconfig.js.map +1 -0
  72. package/sdk/pronunciations.d.ts +1 -1
  73. package/sdk/pronunciations.d.ts.map +1 -1
  74. package/sdk/sdk.d.ts +3 -0
  75. package/sdk/sdk.d.ts.map +1 -1
  76. package/sdk/sdk.js +4 -0
  77. package/sdk/sdk.js.map +1 -1
  78. package/src/funcs/conversationConfigGetBridgePhrasesConfig.ts +176 -0
  79. package/src/funcs/conversationConfigUpdateBridgePhrasesConfig.ts +179 -0
  80. package/src/funcs/pronunciationsPronunciationsGetMetadata.ts +7 -4
  81. package/src/lib/config.ts +2 -2
  82. package/src/mcp-server/mcp-server.ts +1 -1
  83. package/src/mcp-server/server.ts +5 -1
  84. package/src/mcp-server/tools/conversationConfigGetBridgePhrasesConfig.ts +39 -0
  85. package/src/mcp-server/tools/conversationConfigUpdateBridgePhrasesConfig.ts +39 -0
  86. package/src/models/components/bridgephrasesconfig.ts +101 -0
  87. package/src/models/components/index.ts +3 -1
  88. package/src/models/components/pronunciationoverridesdictionary.ts +10 -10
  89. package/src/models/components/schemascortexv1bridgephrasesdictionarymetadata.ts +82 -0
  90. package/src/models/components/schemasttsv1pronunciationsdictionarymetadata.ts +73 -0
  91. package/src/models/operations/getbridgephrasesconfig.ts +74 -0
  92. package/src/models/operations/index.ts +2 -0
  93. package/src/models/operations/updatebridgephrasesconfig.ts +81 -0
  94. package/src/sdk/conversationconfig.ts +46 -0
  95. package/src/sdk/pronunciations.ts +1 -1
  96. package/src/sdk/sdk.ts +6 -0
  97. package/models/components/dictionarymetadata.d.ts +0 -24
  98. package/models/components/dictionarymetadata.d.ts.map +0 -1
  99. package/models/components/dictionarymetadata.js.map +0 -1
  100. package/src/models/components/dictionarymetadata.ts +0 -62
package/openapi.json CHANGED
@@ -1340,6 +1340,164 @@
1340
1340
  }
1341
1341
  }
1342
1342
  },
1343
+ "/api/v1/conversation-config/bridges": {
1344
+ "get": {
1345
+ "tags": [
1346
+ "conversation-config"
1347
+ ],
1348
+ "summary": "Get Bridge Phrases Config",
1349
+ "description": "Get the bridge phrases configuration.",
1350
+ "operationId": "get_bridge_phrases_config",
1351
+ "security": [
1352
+ {
1353
+ "APIKeyHeader": []
1354
+ }
1355
+ ],
1356
+ "parameters": [
1357
+ {
1358
+ "name": "agent_id",
1359
+ "in": "query",
1360
+ "required": false,
1361
+ "schema": {
1362
+ "anyOf": [
1363
+ {
1364
+ "type": "integer"
1365
+ },
1366
+ {
1367
+ "type": "null"
1368
+ }
1369
+ ],
1370
+ "description": "Agent ID to fetch config for",
1371
+ "title": "Agent Id"
1372
+ },
1373
+ "description": "Agent ID to fetch config for"
1374
+ },
1375
+ {
1376
+ "name": "tool_name",
1377
+ "in": "query",
1378
+ "required": false,
1379
+ "schema": {
1380
+ "anyOf": [
1381
+ {
1382
+ "type": "string"
1383
+ },
1384
+ {
1385
+ "type": "null"
1386
+ }
1387
+ ],
1388
+ "description": "Tool name to fetch config for",
1389
+ "title": "Tool Name"
1390
+ },
1391
+ "description": "Tool name to fetch config for"
1392
+ }
1393
+ ],
1394
+ "responses": {
1395
+ "200": {
1396
+ "description": "Successful Response",
1397
+ "content": {
1398
+ "application/json": {
1399
+ "schema": {
1400
+ "$ref": "#/components/schemas/BridgePhrasesConfig"
1401
+ }
1402
+ }
1403
+ }
1404
+ },
1405
+ "422": {
1406
+ "description": "Validation Error",
1407
+ "content": {
1408
+ "application/json": {
1409
+ "schema": {
1410
+ "$ref": "#/components/schemas/HTTPValidationError"
1411
+ }
1412
+ }
1413
+ }
1414
+ }
1415
+ }
1416
+ },
1417
+ "put": {
1418
+ "tags": [
1419
+ "conversation-config"
1420
+ ],
1421
+ "summary": "Update Bridge Phrases Config",
1422
+ "description": "Update the bridge phrases configuration.",
1423
+ "operationId": "update_bridge_phrases_config",
1424
+ "security": [
1425
+ {
1426
+ "APIKeyHeader": []
1427
+ }
1428
+ ],
1429
+ "parameters": [
1430
+ {
1431
+ "name": "agent_id",
1432
+ "in": "query",
1433
+ "required": false,
1434
+ "schema": {
1435
+ "anyOf": [
1436
+ {
1437
+ "type": "integer"
1438
+ },
1439
+ {
1440
+ "type": "null"
1441
+ }
1442
+ ],
1443
+ "description": "Agent ID to update config for",
1444
+ "title": "Agent Id"
1445
+ },
1446
+ "description": "Agent ID to update config for"
1447
+ },
1448
+ {
1449
+ "name": "tool_name",
1450
+ "in": "query",
1451
+ "required": false,
1452
+ "schema": {
1453
+ "anyOf": [
1454
+ {
1455
+ "type": "string"
1456
+ },
1457
+ {
1458
+ "type": "null"
1459
+ }
1460
+ ],
1461
+ "description": "Tool name to update config for",
1462
+ "title": "Tool Name"
1463
+ },
1464
+ "description": "Tool name to update config for"
1465
+ }
1466
+ ],
1467
+ "requestBody": {
1468
+ "required": true,
1469
+ "content": {
1470
+ "application/json": {
1471
+ "schema": {
1472
+ "$ref": "#/components/schemas/BridgePhrasesConfig"
1473
+ }
1474
+ }
1475
+ }
1476
+ },
1477
+ "responses": {
1478
+ "200": {
1479
+ "description": "Successful Response",
1480
+ "content": {
1481
+ "application/json": {
1482
+ "schema": {
1483
+ "$ref": "#/components/schemas/BridgePhrasesConfig"
1484
+ }
1485
+ }
1486
+ }
1487
+ },
1488
+ "422": {
1489
+ "description": "Validation Error",
1490
+ "content": {
1491
+ "application/json": {
1492
+ "schema": {
1493
+ "$ref": "#/components/schemas/HTTPValidationError"
1494
+ }
1495
+ }
1496
+ }
1497
+ }
1498
+ }
1499
+ }
1500
+ },
1343
1501
  "/api/v1/data_sources/": {
1344
1502
  "get": {
1345
1503
  "tags": [
@@ -5594,7 +5752,7 @@
5594
5752
  "content": {
5595
5753
  "application/json": {
5596
5754
  "schema": {
5597
- "$ref": "#/components/schemas/DictionaryMetadata"
5755
+ "$ref": "#/components/schemas/schemas__tts__v1__pronunciations__DictionaryMetadata"
5598
5756
  }
5599
5757
  }
5600
5758
  }
@@ -13781,7 +13939,7 @@
13781
13939
  "title": "Batch Id",
13782
13940
  "description": "Unique ID for conversation batch",
13783
13941
  "examples": [
13784
- "20251124.9"
13942
+ "20251126.9"
13785
13943
  ]
13786
13944
  },
13787
13945
  "campaign_id": {
@@ -13805,7 +13963,7 @@
13805
13963
  "title": "Expires On",
13806
13964
  "description": "Timestamp of batch expiration",
13807
13965
  "examples": [
13808
- "2025-11-25T00:00:00Z"
13966
+ "2025-11-27T00:00:00Z"
13809
13967
  ]
13810
13968
  },
13811
13969
  "paused": {
@@ -13858,7 +14016,7 @@
13858
14016
  "title": "Created At",
13859
14017
  "description": "Timestamp of batch creation",
13860
14018
  "examples": [
13861
- "2025-11-24T00:00:00Z"
14019
+ "2025-11-26T00:00:00Z"
13862
14020
  ]
13863
14021
  },
13864
14022
  "deleted_at": {
@@ -13874,7 +14032,7 @@
13874
14032
  "title": "Deleted At",
13875
14033
  "description": "Timestamp of batch deletion",
13876
14034
  "examples": [
13877
- "2025-11-24T00:00:00Z"
14035
+ "2025-11-26T00:00:00Z"
13878
14036
  ]
13879
14037
  },
13880
14038
  "deleted_reason": {
@@ -13905,7 +14063,7 @@
13905
14063
  "title": "Last Updated At",
13906
14064
  "description": "Timestamp of last change to batch",
13907
14065
  "examples": [
13908
- "2025-11-24T00:00:00Z"
14066
+ "2025-11-26T00:00:00Z"
13909
14067
  ]
13910
14068
  },
13911
14069
  "last_updated_by": {
@@ -14231,6 +14389,41 @@
14231
14389
  ],
14232
14390
  "title": "Body_pronunciations_upload_csv"
14233
14391
  },
14392
+ "BridgePhrasesConfig": {
14393
+ "properties": {
14394
+ "first_slow_messages": {
14395
+ "items": {
14396
+ "type": "string"
14397
+ },
14398
+ "type": "array",
14399
+ "title": "First Slow Messages",
14400
+ "description": "Messages to say when the agent is first delayed."
14401
+ },
14402
+ "very_slow_messages": {
14403
+ "items": {
14404
+ "type": "string"
14405
+ },
14406
+ "type": "array",
14407
+ "title": "Very Slow Messages",
14408
+ "description": "Messages to say when the agent is significantly delayed."
14409
+ },
14410
+ "tool_responses": {
14411
+ "items": {
14412
+ "type": "string"
14413
+ },
14414
+ "type": "array",
14415
+ "title": "Tool Responses",
14416
+ "description": "Messages to say when a tool call is in progress."
14417
+ },
14418
+ "metadata": {
14419
+ "$ref": "#/components/schemas/schemas__cortex__v1__bridge_phrases__DictionaryMetadata",
14420
+ "description": "Metadata about the configuration."
14421
+ }
14422
+ },
14423
+ "type": "object",
14424
+ "title": "BridgePhrasesConfig",
14425
+ "description": "Configuration for conversational bridge phrases."
14426
+ },
14234
14427
  "CallAction": {
14235
14428
  "properties": {
14236
14429
  "if": {
@@ -14781,7 +14974,7 @@
14781
14974
  "title": "Batch Id",
14782
14975
  "description": "Unique ID for conversation batch",
14783
14976
  "examples": [
14784
- "20251124.9"
14977
+ "20251126.9"
14785
14978
  ]
14786
14979
  },
14787
14980
  "campaign_id": {
@@ -14805,7 +14998,7 @@
14805
14998
  "title": "Expires On",
14806
14999
  "description": "Timestamp of batch expiration",
14807
15000
  "examples": [
14808
- "2025-11-25T00:00:00Z"
15001
+ "2025-11-27T00:00:00Z"
14809
15002
  ]
14810
15003
  },
14811
15004
  "paused": {
@@ -14858,7 +15051,7 @@
14858
15051
  "title": "Created At",
14859
15052
  "description": "Timestamp of batch creation",
14860
15053
  "examples": [
14861
- "2025-11-24T00:00:00Z"
15054
+ "2025-11-26T00:00:00Z"
14862
15055
  ]
14863
15056
  },
14864
15057
  "deleted_at": {
@@ -14874,7 +15067,7 @@
14874
15067
  "title": "Deleted At",
14875
15068
  "description": "Timestamp of batch deletion",
14876
15069
  "examples": [
14877
- "2025-11-24T00:00:00Z"
15070
+ "2025-11-26T00:00:00Z"
14878
15071
  ]
14879
15072
  },
14880
15073
  "deleted_reason": {
@@ -14905,7 +15098,7 @@
14905
15098
  "title": "Last Updated At",
14906
15099
  "description": "Timestamp of last change to batch",
14907
15100
  "examples": [
14908
- "2025-11-24T00:00:00Z"
15101
+ "2025-11-26T00:00:00Z"
14909
15102
  ]
14910
15103
  },
14911
15104
  "last_updated_by": {
@@ -14948,7 +15141,7 @@
14948
15141
  "title": "Batch Id",
14949
15142
  "description": "Unique ID for conversation batch",
14950
15143
  "examples": [
14951
- "20251124.9"
15144
+ "20251126.9"
14952
15145
  ]
14953
15146
  },
14954
15147
  "campaign_id": {
@@ -14972,7 +15165,7 @@
14972
15165
  "title": "Expires On",
14973
15166
  "description": "Timestamp of batch expiration",
14974
15167
  "examples": [
14975
- "2025-11-25T00:00:00Z"
15168
+ "2025-11-27T00:00:00Z"
14976
15169
  ]
14977
15170
  },
14978
15171
  "paused": {
@@ -15121,7 +15314,7 @@
15121
15314
  "title": "Created At",
15122
15315
  "description": "Timestamp of request creation",
15123
15316
  "examples": [
15124
- "2025-11-23T00:00:00Z"
15317
+ "2025-11-25T00:00:00Z"
15125
15318
  ]
15126
15319
  },
15127
15320
  "sent_at": {
@@ -15137,7 +15330,7 @@
15137
15330
  "title": "Sent At",
15138
15331
  "description": "Timestamp at which request was sent",
15139
15332
  "examples": [
15140
- "2025-11-24T00:00:00Z"
15333
+ "2025-11-26T00:00:00Z"
15141
15334
  ]
15142
15335
  },
15143
15336
  "attempt_count": {
@@ -17016,31 +17209,6 @@
17016
17209
  ],
17017
17210
  "title": "DialogToolCall"
17018
17211
  },
17019
- "DictionaryMetadata": {
17020
- "properties": {
17021
- "entries": {
17022
- "type": "integer",
17023
- "title": "Entries"
17024
- },
17025
- "hash": {
17026
- "type": "string",
17027
- "title": "Hash"
17028
- },
17029
- "source": {
17030
- "type": "string",
17031
- "title": "Source",
17032
- "default": ""
17033
- }
17034
- },
17035
- "additionalProperties": false,
17036
- "type": "object",
17037
- "required": [
17038
- "entries",
17039
- "hash"
17040
- ],
17041
- "title": "DictionaryMetadata",
17042
- "description": "Audit metadata associated with a dictionary."
17043
- },
17044
17212
  "DirectoryExtension": {
17045
17213
  "properties": {
17046
17214
  "name": {
@@ -18008,7 +18176,7 @@
18008
18176
  "title": "Created At",
18009
18177
  "description": "Timestamp at which insight upload folder was created",
18010
18178
  "examples": [
18011
- "2025-11-23T00:00:00Z"
18179
+ "2025-11-25T00:00:00Z"
18012
18180
  ]
18013
18181
  },
18014
18182
  "updated_at": {
@@ -18017,7 +18185,7 @@
18017
18185
  "title": "Updated At",
18018
18186
  "description": "Timestamp at which insight upload folder was last updated",
18019
18187
  "examples": [
18020
- "2025-11-24T00:00:00Z"
18188
+ "2025-11-26T00:00:00Z"
18021
18189
  ]
18022
18190
  },
18023
18191
  "last_updated_by": {
@@ -18873,7 +19041,7 @@
18873
19041
  "title": "Created At",
18874
19042
  "description": "Timestamp of at which insight tool configuration was created",
18875
19043
  "examples": [
18876
- "2025-11-23T00:00:00Z"
19044
+ "2025-11-25T00:00:00Z"
18877
19045
  ]
18878
19046
  },
18879
19047
  "updated_at": {
@@ -18882,7 +19050,7 @@
18882
19050
  "title": "Updated At",
18883
19051
  "description": "Timestamp at which insight tool configuration was last updated",
18884
19052
  "examples": [
18885
- "2025-11-24T00:00:00Z"
19053
+ "2025-11-26T00:00:00Z"
18886
19054
  ]
18887
19055
  },
18888
19056
  "last_updated_by": {
@@ -19263,7 +19431,7 @@
19263
19431
  "title": "Start Datetime",
19264
19432
  "description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
19265
19433
  "examples": [
19266
- "2025-11-23T00:00:00Z"
19434
+ "2025-11-25T00:00:00Z"
19267
19435
  ]
19268
19436
  },
19269
19437
  "end_datetime": {
@@ -19279,7 +19447,7 @@
19279
19447
  "title": "End Datetime",
19280
19448
  "description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
19281
19449
  "examples": [
19282
- "2025-11-24T00:00:00Z"
19450
+ "2025-11-26T00:00:00Z"
19283
19451
  ]
19284
19452
  }
19285
19453
  },
@@ -19354,7 +19522,7 @@
19354
19522
  "title": "Start Datetime",
19355
19523
  "description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
19356
19524
  "examples": [
19357
- "2025-11-23T00:00:00Z"
19525
+ "2025-11-25T00:00:00Z"
19358
19526
  ]
19359
19527
  },
19360
19528
  "end_datetime": {
@@ -19370,7 +19538,7 @@
19370
19538
  "title": "End Datetime",
19371
19539
  "description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
19372
19540
  "examples": [
19373
- "2025-11-24T00:00:00Z"
19541
+ "2025-11-26T00:00:00Z"
19374
19542
  ]
19375
19543
  },
19376
19544
  "id": {
@@ -19423,7 +19591,7 @@
19423
19591
  "title": "Created At",
19424
19592
  "description": "Timestamp at which the insight workflow was created",
19425
19593
  "examples": [
19426
- "2025-11-23T00:00:00Z"
19594
+ "2025-11-25T00:00:00Z"
19427
19595
  ]
19428
19596
  },
19429
19597
  "updated_at": {
@@ -19432,7 +19600,7 @@
19432
19600
  "title": "Updated At",
19433
19601
  "description": "Timestamp of most recent update to the insight workflow",
19434
19602
  "examples": [
19435
- "2025-11-24T00:00:00Z"
19603
+ "2025-11-26T00:00:00Z"
19436
19604
  ]
19437
19605
  },
19438
19606
  "last_updated_by": {
@@ -19528,7 +19696,7 @@
19528
19696
  "title": "Created At",
19529
19697
  "description": "Timestamp at which insight upload folder was created",
19530
19698
  "examples": [
19531
- "2025-11-23T00:00:00Z"
19699
+ "2025-11-25T00:00:00Z"
19532
19700
  ]
19533
19701
  },
19534
19702
  "updated_at": {
@@ -19537,7 +19705,7 @@
19537
19705
  "title": "Updated At",
19538
19706
  "description": "Timestamp at which insight upload folder was last updated",
19539
19707
  "examples": [
19540
- "2025-11-24T00:00:00Z"
19708
+ "2025-11-26T00:00:00Z"
19541
19709
  ]
19542
19710
  },
19543
19711
  "last_updated_by": {
@@ -19772,7 +19940,7 @@
19772
19940
  "title": "Created At",
19773
19941
  "description": "Timestamp at which insight tool result was created",
19774
19942
  "examples": [
19775
- "2025-11-23T00:00:00Z"
19943
+ "2025-11-25T00:00:00Z"
19776
19944
  ]
19777
19945
  },
19778
19946
  "updated_at": {
@@ -19781,7 +19949,7 @@
19781
19949
  "title": "Updated At",
19782
19950
  "description": "Timestamp at which insight tool result was last updated",
19783
19951
  "examples": [
19784
- "2025-11-24T00:00:00Z"
19952
+ "2025-11-26T00:00:00Z"
19785
19953
  ]
19786
19954
  },
19787
19955
  "upload_file_metadata": {
@@ -19926,7 +20094,7 @@
19926
20094
  "title": "Start Time",
19927
20095
  "description": "Start time of the uploaded file",
19928
20096
  "examples": [
19929
- "2025-11-23T00:00:00Z"
20097
+ "2025-11-25T00:00:00Z"
19930
20098
  ]
19931
20099
  },
19932
20100
  "end_time": {
@@ -19942,7 +20110,7 @@
19942
20110
  "title": "End Time",
19943
20111
  "description": "End time of the uploaded file",
19944
20112
  "examples": [
19945
- "2025-11-24T00:00:00Z"
20113
+ "2025-11-26T00:00:00Z"
19946
20114
  ]
19947
20115
  },
19948
20116
  "error_message": {
@@ -19997,7 +20165,7 @@
19997
20165
  "title": "Created At",
19998
20166
  "description": "Timestamp at which insight upload file was created",
19999
20167
  "examples": [
20000
- "2025-11-23T00:00:00Z"
20168
+ "2025-11-25T00:00:00Z"
20001
20169
  ]
20002
20170
  }
20003
20171
  },
@@ -23356,7 +23524,7 @@
23356
23524
  "title": "Created At",
23357
23525
  "description": "Timestamp of campaign creation",
23358
23526
  "examples": [
23359
- "2025-11-24T00:00:00Z"
23527
+ "2025-11-26T00:00:00Z"
23360
23528
  ]
23361
23529
  },
23362
23530
  "updated_at": {
@@ -23365,7 +23533,7 @@
23365
23533
  "title": "Updated At",
23366
23534
  "description": "Timestamp of campaign update",
23367
23535
  "examples": [
23368
- "2025-11-24T00:00:00Z"
23536
+ "2025-11-26T00:00:00Z"
23369
23537
  ]
23370
23538
  },
23371
23539
  "last_updated_by": {
@@ -24582,7 +24750,7 @@
24582
24750
  "title": "Voices"
24583
24751
  },
24584
24752
  "metadata": {
24585
- "$ref": "#/components/schemas/DictionaryMetadata"
24753
+ "$ref": "#/components/schemas/schemas__tts__v1__pronunciations__DictionaryMetadata"
24586
24754
  }
24587
24755
  },
24588
24756
  "additionalProperties": false,
@@ -29219,6 +29387,68 @@
29219
29387
  ],
29220
29388
  "title": "VoiceSampleCreateRequest",
29221
29389
  "description": "Request model to generate a sample audio file for a given voice and language."
29390
+ },
29391
+ "schemas__cortex__v1__bridge_phrases__DictionaryMetadata": {
29392
+ "properties": {
29393
+ "hash": {
29394
+ "anyOf": [
29395
+ {
29396
+ "type": "string"
29397
+ },
29398
+ {
29399
+ "type": "null"
29400
+ }
29401
+ ],
29402
+ "title": "Hash",
29403
+ "description": "Hash of the dictionary content."
29404
+ },
29405
+ "source": {
29406
+ "anyOf": [
29407
+ {
29408
+ "type": "string"
29409
+ },
29410
+ {
29411
+ "type": "null"
29412
+ }
29413
+ ],
29414
+ "title": "Source",
29415
+ "description": "Source of the dictionary (e.g. filename)."
29416
+ },
29417
+ "entries": {
29418
+ "type": "integer",
29419
+ "title": "Entries",
29420
+ "description": "Number of entries in the dictionary.",
29421
+ "default": 0
29422
+ }
29423
+ },
29424
+ "type": "object",
29425
+ "title": "DictionaryMetadata",
29426
+ "description": "Metadata for the bridge phrases dictionary."
29427
+ },
29428
+ "schemas__tts__v1__pronunciations__DictionaryMetadata": {
29429
+ "properties": {
29430
+ "entries": {
29431
+ "type": "integer",
29432
+ "title": "Entries"
29433
+ },
29434
+ "hash": {
29435
+ "type": "string",
29436
+ "title": "Hash"
29437
+ },
29438
+ "source": {
29439
+ "type": "string",
29440
+ "title": "Source",
29441
+ "default": ""
29442
+ }
29443
+ },
29444
+ "additionalProperties": false,
29445
+ "type": "object",
29446
+ "required": [
29447
+ "entries",
29448
+ "hash"
29449
+ ],
29450
+ "title": "DictionaryMetadata",
29451
+ "description": "Audit metadata associated with a dictionary."
29222
29452
  }
29223
29453
  },
29224
29454
  "securitySchemes": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syllable-sdk",
3
- "version": "1.0.13",
3
+ "version": "1.0.14-rc.1",
4
4
  "author": "Syllable",
5
5
  "bin": {
6
6
  "mcp": "bin/mcp-server.js"
@@ -0,0 +1,20 @@
1
+ import { ClientSDK, RequestOptions } from "../lib/sdks.js";
2
+ import * as components from "../models/components/index.js";
3
+ import * as operations from "../models/operations/index.js";
4
+ export declare class ConversationConfig extends ClientSDK {
5
+ /**
6
+ * Get Bridge Phrases Config
7
+ *
8
+ * @remarks
9
+ * Get the bridge phrases configuration.
10
+ */
11
+ getBridgePhrasesConfig(request: operations.GetBridgePhrasesConfigRequest, options?: RequestOptions): Promise<components.BridgePhrasesConfig>;
12
+ /**
13
+ * Update Bridge Phrases Config
14
+ *
15
+ * @remarks
16
+ * Update the bridge phrases configuration.
17
+ */
18
+ updateBridgePhrasesConfig(request: operations.UpdateBridgePhrasesConfigRequest, options?: RequestOptions): Promise<components.BridgePhrasesConfig>;
19
+ }
20
+ //# sourceMappingURL=conversationconfig.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"conversationconfig.d.ts","sourceRoot":"","sources":["../src/sdk/conversationconfig.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,kBAAmB,SAAQ,SAAS;IAC/C;;;;;OAKG;IACG,sBAAsB,CAC1B,OAAO,EAAE,UAAU,CAAC,6BAA6B,EACjD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,mBAAmB,CAAC;IAQ1C;;;;;OAKG;IACG,yBAAyB,CAC7B,OAAO,EAAE,UAAU,CAAC,gCAAgC,EACpD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,mBAAmB,CAAC;CAO3C"}
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ConversationConfig = void 0;
7
+ const conversationConfigGetBridgePhrasesConfig_js_1 = require("../funcs/conversationConfigGetBridgePhrasesConfig.js");
8
+ const conversationConfigUpdateBridgePhrasesConfig_js_1 = require("../funcs/conversationConfigUpdateBridgePhrasesConfig.js");
9
+ const sdks_js_1 = require("../lib/sdks.js");
10
+ const fp_js_1 = require("../types/fp.js");
11
+ class ConversationConfig extends sdks_js_1.ClientSDK {
12
+ /**
13
+ * Get Bridge Phrases Config
14
+ *
15
+ * @remarks
16
+ * Get the bridge phrases configuration.
17
+ */
18
+ async getBridgePhrasesConfig(request, options) {
19
+ return (0, fp_js_1.unwrapAsync)((0, conversationConfigGetBridgePhrasesConfig_js_1.conversationConfigGetBridgePhrasesConfig)(this, request, options));
20
+ }
21
+ /**
22
+ * Update Bridge Phrases Config
23
+ *
24
+ * @remarks
25
+ * Update the bridge phrases configuration.
26
+ */
27
+ async updateBridgePhrasesConfig(request, options) {
28
+ return (0, fp_js_1.unwrapAsync)((0, conversationConfigUpdateBridgePhrasesConfig_js_1.conversationConfigUpdateBridgePhrasesConfig)(this, request, options));
29
+ }
30
+ }
31
+ exports.ConversationConfig = ConversationConfig;
32
+ //# sourceMappingURL=conversationconfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"conversationconfig.js","sourceRoot":"","sources":["../src/sdk/conversationconfig.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,sHAAgH;AAChH,4HAAsH;AACtH,4CAA2D;AAG3D,0CAA6C;AAE7C,MAAa,kBAAmB,SAAQ,mBAAS;IAC/C;;;;;OAKG;IACH,KAAK,CAAC,sBAAsB,CAC1B,OAAiD,EACjD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sFAAwC,EACzD,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,yBAAyB,CAC7B,OAAoD,EACpD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,4FAA2C,EAC5D,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;AAlCD,gDAkCC"}
@@ -8,7 +8,7 @@ export declare class Pronunciations extends ClientSDK {
8
8
  /**
9
9
  * Get Pronunciations Metadata
10
10
  */
11
- pronunciationsGetMetadata(options?: RequestOptions): Promise<components.DictionaryMetadata>;
11
+ pronunciationsGetMetadata(options?: RequestOptions): Promise<components.SchemasTtsV1PronunciationsDictionaryMetadata>;
12
12
  /**
13
13
  * Download Pronunciations Csv
14
14
  */