@elevenlabs/elevenlabs-js 2.46.0 → 2.47.0

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 (568) hide show
  1. package/.fern/metadata.json +1 -1
  2. package/BaseClient.js +2 -2
  3. package/Client.d.ts +3 -0
  4. package/Client.js +31 -26
  5. package/README.md +92 -0
  6. package/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +2 -2
  7. package/api/resources/conversationalAi/resources/conversations/client/Client.js +2 -2
  8. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +2 -2
  9. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetWebrtcTokenRequest.d.ts +2 -2
  10. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +1 -1
  11. package/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesSearchRequest.d.ts +1 -1
  12. package/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesTextSearchRequest.d.ts +1 -1
  13. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +17 -0
  14. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +65 -0
  15. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/BodyUpdateFileDocumentV1ConvaiKnowledgeBaseDocumentationIdUpdateFilePatch.d.ts +11 -0
  16. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/index.d.ts +1 -0
  17. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.d.ts +16 -0
  18. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
  19. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +1 -0
  20. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +6 -5
  21. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +12 -9
  22. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.d.ts +4 -4
  23. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/Client.d.ts +31 -0
  24. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/Client.js +131 -0
  25. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/index.d.ts +1 -0
  26. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/index.js +17 -0
  27. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/ChunksListRequest.d.ts +17 -0
  28. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/ChunksListRequest.js +3 -0
  29. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/index.d.ts +1 -0
  30. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/index.js +2 -0
  31. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/index.d.ts +1 -0
  32. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/index.js +17 -0
  33. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +2 -0
  34. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +3 -1
  35. package/api/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +4 -0
  36. package/api/resources/conversationalAi/resources/users/client/requests/UsersListRequest.d.ts +1 -1
  37. package/api/resources/index.d.ts +2 -0
  38. package/api/resources/index.js +3 -1
  39. package/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.d.ts +2 -0
  40. package/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.d.ts +2 -0
  41. package/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.d.ts +4 -0
  42. package/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.js +3 -0
  43. package/api/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +1 -0
  44. package/api/resources/serviceAccounts/resources/apiKeys/types/index.js +1 -0
  45. package/api/resources/speechEngine/client/Client.d.ts +89 -0
  46. package/api/resources/speechEngine/client/Client.js +363 -0
  47. package/api/resources/speechEngine/client/index.d.ts +1 -0
  48. package/api/resources/speechEngine/client/index.js +17 -0
  49. package/api/resources/speechEngine/client/requests/CreateSpeechEngineRequest.d.ts +31 -0
  50. package/api/resources/speechEngine/client/requests/CreateSpeechEngineRequest.js +3 -0
  51. package/api/resources/speechEngine/client/requests/SpeechEngineListRequest.d.ts +23 -0
  52. package/api/resources/speechEngine/client/requests/SpeechEngineListRequest.js +3 -0
  53. package/api/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.d.ts +17 -0
  54. package/api/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.js +3 -0
  55. package/api/resources/speechEngine/client/requests/index.d.ts +3 -0
  56. package/api/resources/speechEngine/client/requests/index.js +2 -0
  57. package/api/resources/speechEngine/index.d.ts +1 -0
  58. package/api/resources/speechEngine/index.js +17 -0
  59. package/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost.d.ts +1 -1
  60. package/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.d.ts +17 -10
  61. package/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.js +17 -10
  62. package/api/resources/voices/client/Client.js +3 -0
  63. package/api/resources/voices/client/requests/BodyEditVoiceV1VoicesVoiceIdEditPost.d.ts +2 -0
  64. package/api/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.d.ts +2 -0
  65. package/api/resources/workspace/client/Client.d.ts +3 -0
  66. package/api/resources/workspace/client/Client.js +19 -14
  67. package/api/resources/workspace/resources/analytics/client/Client.d.ts +12 -0
  68. package/api/resources/workspace/resources/analytics/client/Client.js +16 -0
  69. package/api/resources/workspace/resources/analytics/client/index.d.ts +1 -0
  70. package/api/resources/workspace/resources/analytics/client/index.js +2 -0
  71. package/api/resources/workspace/resources/analytics/index.d.ts +2 -0
  72. package/api/resources/workspace/resources/analytics/index.js +18 -0
  73. package/api/resources/workspace/resources/analytics/resources/index.d.ts +3 -0
  74. package/api/resources/workspace/resources/analytics/resources/index.js +42 -0
  75. package/api/resources/workspace/resources/analytics/resources/requests/client/Client.d.ts +26 -0
  76. package/api/resources/workspace/resources/analytics/resources/requests/client/Client.js +118 -0
  77. package/api/resources/workspace/resources/analytics/resources/requests/client/index.d.ts +1 -0
  78. package/api/resources/workspace/resources/analytics/resources/requests/client/index.js +17 -0
  79. package/api/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.d.ts +16 -0
  80. package/api/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.js +3 -0
  81. package/api/resources/workspace/resources/analytics/resources/requests/client/requests/index.d.ts +1 -0
  82. package/api/resources/workspace/resources/analytics/resources/requests/client/requests/index.js +2 -0
  83. package/api/resources/workspace/resources/analytics/resources/requests/index.d.ts +2 -0
  84. package/api/resources/workspace/resources/analytics/resources/requests/index.js +18 -0
  85. package/api/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.d.ts +5 -0
  86. package/api/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.js +8 -0
  87. package/api/resources/workspace/resources/analytics/resources/requests/types/index.d.ts +1 -0
  88. package/api/resources/workspace/resources/analytics/resources/requests/types/index.js +17 -0
  89. package/api/resources/workspace/resources/index.d.ts +1 -0
  90. package/api/resources/workspace/resources/index.js +2 -1
  91. package/api/types/AgentAlertingMonitorConfig.d.ts +4 -0
  92. package/api/types/AgentAlertingMonitorConfig.js +3 -0
  93. package/api/types/AgentAlertingSettings.d.ts +5 -0
  94. package/api/types/AgentAlertingSettings.js +3 -0
  95. package/api/types/AgentMetadataDbModel.d.ts +7 -0
  96. package/api/types/AgentMetadataDbModel.js +3 -0
  97. package/api/types/AgentPlatformSettingsRequestModel.d.ts +1 -0
  98. package/api/types/AgentPlatformSettingsResponseModel.d.ts +1 -0
  99. package/api/types/AgentTopicResponseModel.d.ts +3 -0
  100. package/api/types/BackgroundMusicPresetId.d.ts +4 -0
  101. package/api/types/BackgroundMusicPresetId.js +4 -0
  102. package/api/types/BaseTurnConfig.d.ts +17 -0
  103. package/api/types/BaseTurnConfig.js +3 -0
  104. package/api/types/ClientEvent.d.ts +1 -0
  105. package/api/types/ClientEvent.js +1 -0
  106. package/api/types/CodeToolAllowedDomain.d.ts +6 -0
  107. package/api/types/CodeToolAllowedDomain.js +3 -0
  108. package/api/types/{ConversationTokenDbModel.d.ts → ConversationTokenResponseModel.d.ts} +2 -2
  109. package/api/types/ConversationTokenResponseModel.js +3 -0
  110. package/api/types/CreateSpeechEngineResponse.d.ts +4 -0
  111. package/api/types/CreateSpeechEngineResponse.js +3 -0
  112. package/api/types/GetAgentLinkResponseModel.d.ts +1 -1
  113. package/api/types/KnowledgeBaseDocumentChunksResponseModel.d.ts +5 -0
  114. package/api/types/KnowledgeBaseDocumentChunksResponseModel.js +3 -0
  115. package/api/types/ListSpeechEnginesResponse.d.ts +8 -0
  116. package/api/types/ListSpeechEnginesResponse.js +3 -0
  117. package/api/types/Llm.d.ts +4 -0
  118. package/api/types/Llm.js +4 -0
  119. package/api/types/LlmInfoModelInput.d.ts +2 -0
  120. package/api/types/LlmInfoModelOutput.d.ts +2 -0
  121. package/api/types/Monitor.d.ts +5 -0
  122. package/api/types/Monitor.js +8 -0
  123. package/api/types/PhoneNumberAgentInfo.d.ts +4 -0
  124. package/api/types/ProcedureCompilerMode.d.ts +1 -5
  125. package/api/types/ProcedureCompilerMode.js +0 -5
  126. package/api/types/PromptAgentApiModelInput.d.ts +1 -1
  127. package/api/types/PromptAgentApiModelOutput.d.ts +1 -1
  128. package/api/types/PromptAgentApiModelWorkflowOverrideInput.d.ts +1 -1
  129. package/api/types/PromptAgentApiModelWorkflowOverrideOutput.d.ts +1 -1
  130. package/api/types/ReadMetadataChapterDbModel.d.ts +1 -0
  131. package/api/types/RegionalProcessingSurchargeInfo.d.ts +4 -0
  132. package/api/types/RegionalProcessingSurchargeInfo.js +3 -0
  133. package/api/types/ReportKnowledgeGapParams.d.ts +3 -0
  134. package/api/types/ReportKnowledgeGapParams.js +3 -0
  135. package/api/types/SpeechEngineResponse.d.ts +16 -0
  136. package/api/types/SpeechEngineResponse.js +3 -0
  137. package/api/types/SpeechEngineSummaryResponse.d.ts +8 -0
  138. package/api/types/SpeechEngineSummaryResponse.js +3 -0
  139. package/api/types/TurnConfig.d.ts +2 -2
  140. package/api/types/TurnConfigWorkflowOverride.d.ts +2 -2
  141. package/api/types/WebhookHmacSettings.d.ts +2 -0
  142. package/api/types/WorkspaceApiKeyResponseModel.d.ts +1 -0
  143. package/api/types/WorkspaceGroupPermission.d.ts +2 -0
  144. package/api/types/WorkspaceGroupPermission.js +2 -0
  145. package/api/types/index.d.ts +14 -1
  146. package/api/types/index.js +14 -1
  147. package/dist/BaseClient.js +2 -2
  148. package/dist/Client.d.ts +3 -0
  149. package/dist/Client.js +31 -26
  150. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +2 -2
  151. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +2 -2
  152. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +2 -2
  153. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetWebrtcTokenRequest.d.ts +2 -2
  154. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +1 -1
  155. package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesSearchRequest.d.ts +1 -1
  156. package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesTextSearchRequest.d.ts +1 -1
  157. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +17 -0
  158. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +65 -0
  159. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/BodyUpdateFileDocumentV1ConvaiKnowledgeBaseDocumentationIdUpdateFilePatch.d.ts +11 -0
  160. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/BodyUpdateFileDocumentV1ConvaiKnowledgeBaseDocumentationIdUpdateFilePatch.js +3 -0
  161. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/index.d.ts +1 -0
  162. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.d.ts +16 -0
  163. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.js +3 -0
  164. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
  165. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +1 -0
  166. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +6 -5
  167. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +12 -9
  168. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.d.ts +4 -4
  169. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/Client.d.ts +31 -0
  170. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/Client.js +131 -0
  171. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/index.d.ts +1 -0
  172. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/index.js +17 -0
  173. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/ChunksListRequest.d.ts +17 -0
  174. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/ChunksListRequest.js +3 -0
  175. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/index.d.ts +1 -0
  176. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/index.js +2 -0
  177. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/index.d.ts +1 -0
  178. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/index.js +17 -0
  179. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +2 -0
  180. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +3 -1
  181. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +4 -0
  182. package/dist/api/resources/conversationalAi/resources/users/client/requests/UsersListRequest.d.ts +1 -1
  183. package/dist/api/resources/index.d.ts +2 -0
  184. package/dist/api/resources/index.js +3 -1
  185. package/dist/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.d.ts +2 -0
  186. package/dist/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.d.ts +2 -0
  187. package/dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.d.ts +4 -0
  188. package/dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.js +3 -0
  189. package/dist/api/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +1 -0
  190. package/dist/api/resources/serviceAccounts/resources/apiKeys/types/index.js +1 -0
  191. package/dist/api/resources/speechEngine/client/Client.d.ts +89 -0
  192. package/dist/api/resources/speechEngine/client/Client.js +363 -0
  193. package/dist/api/resources/speechEngine/client/index.d.ts +1 -0
  194. package/dist/api/resources/speechEngine/client/index.js +17 -0
  195. package/dist/api/resources/speechEngine/client/requests/CreateSpeechEngineRequest.d.ts +31 -0
  196. package/dist/api/resources/speechEngine/client/requests/CreateSpeechEngineRequest.js +3 -0
  197. package/dist/api/resources/speechEngine/client/requests/SpeechEngineListRequest.d.ts +23 -0
  198. package/dist/api/resources/speechEngine/client/requests/SpeechEngineListRequest.js +3 -0
  199. package/dist/api/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.d.ts +17 -0
  200. package/dist/api/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.js +3 -0
  201. package/dist/api/resources/speechEngine/client/requests/index.d.ts +3 -0
  202. package/dist/api/resources/speechEngine/client/requests/index.js +2 -0
  203. package/dist/api/resources/speechEngine/index.d.ts +1 -0
  204. package/dist/api/resources/speechEngine/index.js +17 -0
  205. package/dist/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost.d.ts +1 -1
  206. package/dist/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.d.ts +17 -10
  207. package/dist/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.js +17 -10
  208. package/dist/api/resources/voices/client/Client.js +3 -0
  209. package/dist/api/resources/voices/client/requests/BodyEditVoiceV1VoicesVoiceIdEditPost.d.ts +2 -0
  210. package/dist/api/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.d.ts +2 -0
  211. package/dist/api/resources/workspace/client/Client.d.ts +3 -0
  212. package/dist/api/resources/workspace/client/Client.js +19 -14
  213. package/dist/api/resources/workspace/resources/analytics/client/Client.d.ts +12 -0
  214. package/dist/api/resources/workspace/resources/analytics/client/Client.js +16 -0
  215. package/dist/api/resources/workspace/resources/analytics/client/index.d.ts +1 -0
  216. package/dist/api/resources/workspace/resources/analytics/client/index.js +2 -0
  217. package/dist/api/resources/workspace/resources/analytics/index.d.ts +2 -0
  218. package/dist/api/resources/workspace/resources/analytics/index.js +18 -0
  219. package/dist/api/resources/workspace/resources/analytics/resources/index.d.ts +3 -0
  220. package/dist/api/resources/workspace/resources/analytics/resources/index.js +42 -0
  221. package/dist/api/resources/workspace/resources/analytics/resources/requests/client/Client.d.ts +26 -0
  222. package/dist/api/resources/workspace/resources/analytics/resources/requests/client/Client.js +118 -0
  223. package/dist/api/resources/workspace/resources/analytics/resources/requests/client/index.d.ts +1 -0
  224. package/dist/api/resources/workspace/resources/analytics/resources/requests/client/index.js +17 -0
  225. package/dist/api/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.d.ts +16 -0
  226. package/dist/api/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.js +3 -0
  227. package/dist/api/resources/workspace/resources/analytics/resources/requests/client/requests/index.d.ts +1 -0
  228. package/dist/api/resources/workspace/resources/analytics/resources/requests/client/requests/index.js +2 -0
  229. package/dist/api/resources/workspace/resources/analytics/resources/requests/index.d.ts +2 -0
  230. package/dist/api/resources/workspace/resources/analytics/resources/requests/index.js +18 -0
  231. package/dist/api/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.d.ts +5 -0
  232. package/dist/api/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.js +8 -0
  233. package/dist/api/resources/workspace/resources/analytics/resources/requests/types/index.d.ts +1 -0
  234. package/dist/api/resources/workspace/resources/analytics/resources/requests/types/index.js +17 -0
  235. package/dist/api/resources/workspace/resources/index.d.ts +1 -0
  236. package/dist/api/resources/workspace/resources/index.js +2 -1
  237. package/dist/api/types/AgentAlertingMonitorConfig.d.ts +4 -0
  238. package/dist/api/types/AgentAlertingMonitorConfig.js +3 -0
  239. package/dist/api/types/AgentAlertingSettings.d.ts +5 -0
  240. package/dist/api/types/AgentAlertingSettings.js +3 -0
  241. package/dist/api/types/AgentMetadataDbModel.d.ts +7 -0
  242. package/dist/api/types/AgentMetadataDbModel.js +3 -0
  243. package/dist/api/types/AgentPlatformSettingsRequestModel.d.ts +1 -0
  244. package/dist/api/types/AgentPlatformSettingsResponseModel.d.ts +1 -0
  245. package/dist/api/types/AgentTopicResponseModel.d.ts +3 -0
  246. package/dist/api/types/BackgroundMusicPresetId.d.ts +4 -0
  247. package/dist/api/types/BackgroundMusicPresetId.js +4 -0
  248. package/dist/api/types/BaseTurnConfig.d.ts +17 -0
  249. package/dist/api/types/BaseTurnConfig.js +3 -0
  250. package/dist/api/types/ClientEvent.d.ts +1 -0
  251. package/dist/api/types/ClientEvent.js +1 -0
  252. package/dist/api/types/CodeToolAllowedDomain.d.ts +6 -0
  253. package/dist/api/types/CodeToolAllowedDomain.js +3 -0
  254. package/dist/api/types/{ConversationTokenDbModel.d.ts → ConversationTokenResponseModel.d.ts} +2 -2
  255. package/dist/api/types/ConversationTokenResponseModel.js +3 -0
  256. package/dist/api/types/CreateSpeechEngineResponse.d.ts +4 -0
  257. package/dist/api/types/CreateSpeechEngineResponse.js +3 -0
  258. package/dist/api/types/GetAgentLinkResponseModel.d.ts +1 -1
  259. package/dist/api/types/KnowledgeBaseDocumentChunksResponseModel.d.ts +5 -0
  260. package/dist/api/types/KnowledgeBaseDocumentChunksResponseModel.js +3 -0
  261. package/dist/api/types/ListSpeechEnginesResponse.d.ts +8 -0
  262. package/dist/api/types/ListSpeechEnginesResponse.js +3 -0
  263. package/dist/api/types/Llm.d.ts +4 -0
  264. package/dist/api/types/Llm.js +4 -0
  265. package/dist/api/types/LlmInfoModelInput.d.ts +2 -0
  266. package/dist/api/types/LlmInfoModelOutput.d.ts +2 -0
  267. package/dist/api/types/Monitor.d.ts +5 -0
  268. package/dist/api/types/Monitor.js +8 -0
  269. package/dist/api/types/PhoneNumberAgentInfo.d.ts +4 -0
  270. package/dist/api/types/ProcedureCompilerMode.d.ts +1 -5
  271. package/dist/api/types/ProcedureCompilerMode.js +0 -5
  272. package/dist/api/types/PromptAgentApiModelInput.d.ts +1 -1
  273. package/dist/api/types/PromptAgentApiModelOutput.d.ts +1 -1
  274. package/dist/api/types/PromptAgentApiModelWorkflowOverrideInput.d.ts +1 -1
  275. package/dist/api/types/PromptAgentApiModelWorkflowOverrideOutput.d.ts +1 -1
  276. package/dist/api/types/ReadMetadataChapterDbModel.d.ts +1 -0
  277. package/dist/api/types/RegionalProcessingSurchargeInfo.d.ts +4 -0
  278. package/dist/api/types/RegionalProcessingSurchargeInfo.js +3 -0
  279. package/dist/api/types/ReportKnowledgeGapParams.d.ts +3 -0
  280. package/dist/api/types/ReportKnowledgeGapParams.js +3 -0
  281. package/dist/api/types/SpeechEngineResponse.d.ts +16 -0
  282. package/dist/api/types/SpeechEngineResponse.js +3 -0
  283. package/dist/api/types/SpeechEngineSummaryResponse.d.ts +8 -0
  284. package/dist/api/types/SpeechEngineSummaryResponse.js +3 -0
  285. package/dist/api/types/TurnConfig.d.ts +2 -2
  286. package/dist/api/types/TurnConfigWorkflowOverride.d.ts +2 -2
  287. package/dist/api/types/WebhookHmacSettings.d.ts +2 -0
  288. package/dist/api/types/WorkspaceApiKeyResponseModel.d.ts +1 -0
  289. package/dist/api/types/WorkspaceGroupPermission.d.ts +2 -0
  290. package/dist/api/types/WorkspaceGroupPermission.js +2 -0
  291. package/dist/api/types/index.d.ts +14 -1
  292. package/dist/api/types/index.js +14 -1
  293. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.d.ts +23 -0
  294. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.js +53 -0
  295. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
  296. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +1 -0
  297. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.d.ts +2 -1
  298. package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.js +2 -1
  299. package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +2 -0
  300. package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.js +2 -0
  301. package/dist/serialization/resources/index.d.ts +2 -0
  302. package/dist/serialization/resources/index.js +3 -1
  303. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.d.ts +1 -0
  304. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.js +1 -0
  305. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.d.ts +2 -0
  306. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.js +2 -0
  307. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.d.ts +7 -0
  308. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.js +43 -0
  309. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +1 -0
  310. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/index.js +1 -0
  311. package/dist/serialization/resources/speechEngine/client/index.d.ts +1 -0
  312. package/dist/serialization/resources/speechEngine/client/index.js +17 -0
  313. package/dist/serialization/resources/speechEngine/client/requests/CreateSpeechEngineRequest.d.ts +25 -0
  314. package/dist/serialization/resources/speechEngine/client/requests/CreateSpeechEngineRequest.js +57 -0
  315. package/dist/serialization/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.d.ts +25 -0
  316. package/dist/serialization/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.js +57 -0
  317. package/dist/serialization/resources/speechEngine/client/requests/index.d.ts +2 -0
  318. package/dist/serialization/resources/speechEngine/client/requests/index.js +7 -0
  319. package/dist/serialization/resources/speechEngine/index.d.ts +1 -0
  320. package/dist/serialization/resources/speechEngine/index.js +17 -0
  321. package/dist/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.d.ts +1 -1
  322. package/dist/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.js +16 -9
  323. package/dist/serialization/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.d.ts +1 -0
  324. package/dist/serialization/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.js +1 -0
  325. package/dist/serialization/resources/workspace/resources/analytics/index.d.ts +1 -0
  326. package/dist/serialization/resources/workspace/resources/analytics/index.js +17 -0
  327. package/dist/serialization/resources/workspace/resources/analytics/resources/index.d.ts +3 -0
  328. package/dist/serialization/resources/workspace/resources/analytics/resources/index.js +42 -0
  329. package/dist/serialization/resources/workspace/resources/analytics/resources/requests/client/index.d.ts +1 -0
  330. package/dist/serialization/resources/workspace/resources/analytics/resources/requests/client/index.js +17 -0
  331. package/dist/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.d.ts +16 -0
  332. package/dist/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.js +48 -0
  333. package/dist/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/index.d.ts +1 -0
  334. package/dist/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/index.js +5 -0
  335. package/dist/serialization/resources/workspace/resources/analytics/resources/requests/index.d.ts +2 -0
  336. package/dist/serialization/resources/workspace/resources/analytics/resources/requests/index.js +18 -0
  337. package/dist/serialization/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.d.ts +7 -0
  338. package/dist/serialization/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.js +39 -0
  339. package/dist/serialization/resources/workspace/resources/analytics/resources/requests/types/index.d.ts +1 -0
  340. package/dist/serialization/resources/workspace/resources/analytics/resources/requests/types/index.js +17 -0
  341. package/dist/serialization/resources/workspace/resources/index.d.ts +1 -0
  342. package/dist/serialization/resources/workspace/resources/index.js +2 -1
  343. package/dist/serialization/types/AgentAlertingMonitorConfig.d.ts +9 -0
  344. package/dist/serialization/types/AgentAlertingMonitorConfig.js +41 -0
  345. package/dist/serialization/types/AgentAlertingSettings.d.ts +10 -0
  346. package/dist/serialization/types/AgentAlertingSettings.js +42 -0
  347. package/dist/serialization/types/AgentMetadataDbModel.d.ts +13 -0
  348. package/dist/serialization/types/AgentMetadataDbModel.js +45 -0
  349. package/dist/serialization/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
  350. package/dist/serialization/types/AgentPlatformSettingsRequestModel.js +2 -0
  351. package/dist/serialization/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
  352. package/dist/serialization/types/AgentPlatformSettingsResponseModel.js +2 -0
  353. package/dist/serialization/types/AgentTopicResponseModel.d.ts +3 -0
  354. package/dist/serialization/types/AgentTopicResponseModel.js +3 -0
  355. package/dist/serialization/types/BackgroundMusicPresetId.d.ts +1 -1
  356. package/dist/serialization/types/BackgroundMusicPresetId.js +11 -1
  357. package/dist/serialization/types/BaseTurnConfig.d.ts +17 -0
  358. package/dist/serialization/types/BaseTurnConfig.js +49 -0
  359. package/dist/serialization/types/ClientEvent.d.ts +1 -1
  360. package/dist/serialization/types/ClientEvent.js +1 -0
  361. package/dist/serialization/types/CodeToolAllowedDomain.d.ts +10 -0
  362. package/dist/serialization/types/CodeToolAllowedDomain.js +42 -0
  363. package/dist/serialization/types/{ConversationTokenDbModel.d.ts → ConversationTokenResponseModel.d.ts} +3 -3
  364. package/dist/serialization/types/{ConversationTokenDbModel.js → ConversationTokenResponseModel.js} +3 -3
  365. package/dist/serialization/types/CreateSpeechEngineResponse.d.ts +9 -0
  366. package/dist/serialization/types/CreateSpeechEngineResponse.js +41 -0
  367. package/dist/serialization/types/GetAgentLinkResponseModel.d.ts +2 -2
  368. package/dist/serialization/types/GetAgentLinkResponseModel.js +2 -2
  369. package/dist/serialization/types/KnowledgeBaseDocumentChunksResponseModel.d.ts +11 -0
  370. package/dist/serialization/types/KnowledgeBaseDocumentChunksResponseModel.js +43 -0
  371. package/dist/serialization/types/ListSpeechEnginesResponse.d.ts +12 -0
  372. package/dist/serialization/types/ListSpeechEnginesResponse.js +44 -0
  373. package/dist/serialization/types/Llm.d.ts +1 -1
  374. package/dist/serialization/types/Llm.js +4 -0
  375. package/dist/serialization/types/LlmInfoModelInput.d.ts +2 -0
  376. package/dist/serialization/types/LlmInfoModelInput.js +2 -0
  377. package/dist/serialization/types/LlmInfoModelOutput.d.ts +2 -0
  378. package/dist/serialization/types/LlmInfoModelOutput.js +2 -0
  379. package/dist/serialization/types/Monitor.d.ts +7 -0
  380. package/dist/serialization/types/Monitor.js +39 -0
  381. package/dist/serialization/types/PhoneNumberAgentInfo.d.ts +2 -0
  382. package/dist/serialization/types/PhoneNumberAgentInfo.js +2 -0
  383. package/dist/serialization/types/ProcedureCompilerMode.d.ts +1 -1
  384. package/dist/serialization/types/ProcedureCompilerMode.js +1 -1
  385. package/dist/serialization/types/ReadMetadataChapterDbModel.d.ts +1 -0
  386. package/dist/serialization/types/ReadMetadataChapterDbModel.js +1 -0
  387. package/dist/serialization/types/RegionalProcessingSurchargeInfo.d.ts +9 -0
  388. package/dist/serialization/types/RegionalProcessingSurchargeInfo.js +41 -0
  389. package/dist/serialization/types/ReportKnowledgeGapParams.d.ts +9 -0
  390. package/dist/serialization/types/ReportKnowledgeGapParams.js +41 -0
  391. package/dist/serialization/types/SpeechEngineResponse.d.ts +28 -0
  392. package/dist/serialization/types/SpeechEngineResponse.js +60 -0
  393. package/dist/serialization/types/SpeechEngineSummaryResponse.d.ts +12 -0
  394. package/dist/serialization/types/SpeechEngineSummaryResponse.js +44 -0
  395. package/dist/serialization/types/TurnConfig.d.ts +1 -1
  396. package/dist/serialization/types/TurnConfig.js +1 -1
  397. package/dist/serialization/types/TurnConfigWorkflowOverride.d.ts +1 -1
  398. package/dist/serialization/types/TurnConfigWorkflowOverride.js +1 -1
  399. package/dist/serialization/types/WebhookHmacSettings.d.ts +1 -0
  400. package/dist/serialization/types/WebhookHmacSettings.js +1 -0
  401. package/dist/serialization/types/WorkspaceApiKeyResponseModel.d.ts +1 -0
  402. package/dist/serialization/types/WorkspaceApiKeyResponseModel.js +1 -0
  403. package/dist/serialization/types/WorkspaceGroupPermission.d.ts +1 -1
  404. package/dist/serialization/types/WorkspaceGroupPermission.js +2 -0
  405. package/dist/serialization/types/index.d.ts +14 -1
  406. package/dist/serialization/types/index.js +14 -1
  407. package/dist/version.d.ts +1 -1
  408. package/dist/version.js +1 -1
  409. package/dist/wrapper/ElevenLabsClient.d.ts +5 -2
  410. package/dist/wrapper/ElevenLabsClient.js +9 -1
  411. package/dist/wrapper/index.d.ts +1 -0
  412. package/dist/wrapper/index.js +8 -1
  413. package/dist/wrapper/speech-engine/SpeechEngineAttachment.d.ts +21 -0
  414. package/dist/wrapper/speech-engine/SpeechEngineAttachment.js +34 -0
  415. package/dist/wrapper/speech-engine/SpeechEngineClientWrapper.d.ts +103 -0
  416. package/dist/wrapper/speech-engine/SpeechEngineClientWrapper.js +140 -0
  417. package/dist/wrapper/speech-engine/SpeechEngineResource.d.ts +78 -0
  418. package/dist/wrapper/speech-engine/SpeechEngineResource.js +261 -0
  419. package/dist/wrapper/speech-engine/SpeechEngineServer.d.ts +54 -0
  420. package/dist/wrapper/speech-engine/SpeechEngineServer.js +135 -0
  421. package/dist/wrapper/speech-engine/SpeechEngineSession.d.ts +79 -0
  422. package/dist/wrapper/speech-engine/SpeechEngineSession.js +300 -0
  423. package/dist/wrapper/speech-engine/index.d.ts +7 -0
  424. package/dist/wrapper/speech-engine/index.js +47 -0
  425. package/dist/wrapper/speech-engine/namespace.d.ts +27 -0
  426. package/dist/wrapper/speech-engine/namespace.js +37 -0
  427. package/dist/wrapper/speech-engine/types.d.ts +67 -0
  428. package/dist/wrapper/speech-engine/types.js +15 -0
  429. package/package.json +1 -1
  430. package/reference.md +551 -6
  431. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.d.ts +23 -0
  432. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.js +53 -0
  433. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
  434. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +1 -0
  435. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.d.ts +2 -1
  436. package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.js +2 -1
  437. package/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +2 -0
  438. package/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.js +2 -0
  439. package/serialization/resources/index.d.ts +2 -0
  440. package/serialization/resources/index.js +3 -1
  441. package/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.d.ts +1 -0
  442. package/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.js +1 -0
  443. package/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.d.ts +2 -0
  444. package/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.js +2 -0
  445. package/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.d.ts +7 -0
  446. package/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.js +43 -0
  447. package/serialization/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +1 -0
  448. package/serialization/resources/serviceAccounts/resources/apiKeys/types/index.js +1 -0
  449. package/serialization/resources/speechEngine/client/index.d.ts +1 -0
  450. package/serialization/resources/speechEngine/client/index.js +17 -0
  451. package/serialization/resources/speechEngine/client/requests/CreateSpeechEngineRequest.d.ts +25 -0
  452. package/serialization/resources/speechEngine/client/requests/CreateSpeechEngineRequest.js +57 -0
  453. package/serialization/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.d.ts +25 -0
  454. package/serialization/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.js +57 -0
  455. package/serialization/resources/speechEngine/client/requests/index.d.ts +2 -0
  456. package/serialization/resources/speechEngine/client/requests/index.js +7 -0
  457. package/serialization/resources/speechEngine/index.d.ts +1 -0
  458. package/serialization/resources/speechEngine/index.js +17 -0
  459. package/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.d.ts +1 -1
  460. package/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.js +16 -9
  461. package/serialization/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.d.ts +1 -0
  462. package/serialization/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.js +1 -0
  463. package/serialization/resources/workspace/resources/analytics/index.d.ts +1 -0
  464. package/serialization/resources/workspace/resources/analytics/index.js +17 -0
  465. package/serialization/resources/workspace/resources/analytics/resources/index.d.ts +3 -0
  466. package/serialization/resources/workspace/resources/analytics/resources/index.js +42 -0
  467. package/serialization/resources/workspace/resources/analytics/resources/requests/client/index.d.ts +1 -0
  468. package/serialization/resources/workspace/resources/analytics/resources/requests/client/index.js +17 -0
  469. package/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.d.ts +16 -0
  470. package/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.js +48 -0
  471. package/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/index.d.ts +1 -0
  472. package/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/index.js +5 -0
  473. package/serialization/resources/workspace/resources/analytics/resources/requests/index.d.ts +2 -0
  474. package/serialization/resources/workspace/resources/analytics/resources/requests/index.js +18 -0
  475. package/serialization/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.d.ts +7 -0
  476. package/serialization/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.js +39 -0
  477. package/serialization/resources/workspace/resources/analytics/resources/requests/types/index.d.ts +1 -0
  478. package/serialization/resources/workspace/resources/analytics/resources/requests/types/index.js +17 -0
  479. package/serialization/resources/workspace/resources/index.d.ts +1 -0
  480. package/serialization/resources/workspace/resources/index.js +2 -1
  481. package/serialization/types/AgentAlertingMonitorConfig.d.ts +9 -0
  482. package/serialization/types/AgentAlertingMonitorConfig.js +41 -0
  483. package/serialization/types/AgentAlertingSettings.d.ts +10 -0
  484. package/serialization/types/AgentAlertingSettings.js +42 -0
  485. package/serialization/types/AgentMetadataDbModel.d.ts +13 -0
  486. package/serialization/types/AgentMetadataDbModel.js +45 -0
  487. package/serialization/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
  488. package/serialization/types/AgentPlatformSettingsRequestModel.js +2 -0
  489. package/serialization/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
  490. package/serialization/types/AgentPlatformSettingsResponseModel.js +2 -0
  491. package/serialization/types/AgentTopicResponseModel.d.ts +3 -0
  492. package/serialization/types/AgentTopicResponseModel.js +3 -0
  493. package/serialization/types/BackgroundMusicPresetId.d.ts +1 -1
  494. package/serialization/types/BackgroundMusicPresetId.js +11 -1
  495. package/serialization/types/BaseTurnConfig.d.ts +17 -0
  496. package/serialization/types/BaseTurnConfig.js +49 -0
  497. package/serialization/types/ClientEvent.d.ts +1 -1
  498. package/serialization/types/ClientEvent.js +1 -0
  499. package/serialization/types/CodeToolAllowedDomain.d.ts +10 -0
  500. package/serialization/types/CodeToolAllowedDomain.js +42 -0
  501. package/serialization/types/{ConversationTokenDbModel.d.ts → ConversationTokenResponseModel.d.ts} +3 -3
  502. package/serialization/types/{ConversationTokenDbModel.js → ConversationTokenResponseModel.js} +3 -3
  503. package/serialization/types/CreateSpeechEngineResponse.d.ts +9 -0
  504. package/serialization/types/CreateSpeechEngineResponse.js +41 -0
  505. package/serialization/types/GetAgentLinkResponseModel.d.ts +2 -2
  506. package/serialization/types/GetAgentLinkResponseModel.js +2 -2
  507. package/serialization/types/KnowledgeBaseDocumentChunksResponseModel.d.ts +11 -0
  508. package/serialization/types/KnowledgeBaseDocumentChunksResponseModel.js +43 -0
  509. package/serialization/types/ListSpeechEnginesResponse.d.ts +12 -0
  510. package/serialization/types/ListSpeechEnginesResponse.js +44 -0
  511. package/serialization/types/Llm.d.ts +1 -1
  512. package/serialization/types/Llm.js +4 -0
  513. package/serialization/types/LlmInfoModelInput.d.ts +2 -0
  514. package/serialization/types/LlmInfoModelInput.js +2 -0
  515. package/serialization/types/LlmInfoModelOutput.d.ts +2 -0
  516. package/serialization/types/LlmInfoModelOutput.js +2 -0
  517. package/serialization/types/Monitor.d.ts +7 -0
  518. package/serialization/types/Monitor.js +39 -0
  519. package/serialization/types/PhoneNumberAgentInfo.d.ts +2 -0
  520. package/serialization/types/PhoneNumberAgentInfo.js +2 -0
  521. package/serialization/types/ProcedureCompilerMode.d.ts +1 -1
  522. package/serialization/types/ProcedureCompilerMode.js +1 -1
  523. package/serialization/types/ReadMetadataChapterDbModel.d.ts +1 -0
  524. package/serialization/types/ReadMetadataChapterDbModel.js +1 -0
  525. package/serialization/types/RegionalProcessingSurchargeInfo.d.ts +9 -0
  526. package/serialization/types/RegionalProcessingSurchargeInfo.js +41 -0
  527. package/serialization/types/ReportKnowledgeGapParams.d.ts +9 -0
  528. package/serialization/types/ReportKnowledgeGapParams.js +41 -0
  529. package/serialization/types/SpeechEngineResponse.d.ts +28 -0
  530. package/serialization/types/SpeechEngineResponse.js +60 -0
  531. package/serialization/types/SpeechEngineSummaryResponse.d.ts +12 -0
  532. package/serialization/types/SpeechEngineSummaryResponse.js +44 -0
  533. package/serialization/types/TurnConfig.d.ts +1 -1
  534. package/serialization/types/TurnConfig.js +1 -1
  535. package/serialization/types/TurnConfigWorkflowOverride.d.ts +1 -1
  536. package/serialization/types/TurnConfigWorkflowOverride.js +1 -1
  537. package/serialization/types/WebhookHmacSettings.d.ts +1 -0
  538. package/serialization/types/WebhookHmacSettings.js +1 -0
  539. package/serialization/types/WorkspaceApiKeyResponseModel.d.ts +1 -0
  540. package/serialization/types/WorkspaceApiKeyResponseModel.js +1 -0
  541. package/serialization/types/WorkspaceGroupPermission.d.ts +1 -1
  542. package/serialization/types/WorkspaceGroupPermission.js +2 -0
  543. package/serialization/types/index.d.ts +14 -1
  544. package/serialization/types/index.js +14 -1
  545. package/version.d.ts +1 -1
  546. package/version.js +1 -1
  547. package/wrapper/ElevenLabsClient.d.ts +5 -2
  548. package/wrapper/ElevenLabsClient.js +9 -1
  549. package/wrapper/index.d.ts +1 -0
  550. package/wrapper/index.js +8 -1
  551. package/wrapper/speech-engine/SpeechEngineAttachment.d.ts +21 -0
  552. package/wrapper/speech-engine/SpeechEngineAttachment.js +34 -0
  553. package/wrapper/speech-engine/SpeechEngineClientWrapper.d.ts +103 -0
  554. package/wrapper/speech-engine/SpeechEngineClientWrapper.js +140 -0
  555. package/wrapper/speech-engine/SpeechEngineResource.d.ts +78 -0
  556. package/wrapper/speech-engine/SpeechEngineResource.js +261 -0
  557. package/wrapper/speech-engine/SpeechEngineServer.d.ts +54 -0
  558. package/wrapper/speech-engine/SpeechEngineServer.js +135 -0
  559. package/wrapper/speech-engine/SpeechEngineSession.d.ts +79 -0
  560. package/wrapper/speech-engine/SpeechEngineSession.js +300 -0
  561. package/wrapper/speech-engine/index.d.ts +7 -0
  562. package/wrapper/speech-engine/index.js +47 -0
  563. package/wrapper/speech-engine/namespace.d.ts +27 -0
  564. package/wrapper/speech-engine/namespace.js +37 -0
  565. package/wrapper/speech-engine/types.d.ts +67 -0
  566. package/wrapper/speech-engine/types.js +15 -0
  567. /package/api/{types/ConversationTokenDbModel.js → resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/BodyUpdateFileDocumentV1ConvaiKnowledgeBaseDocumentationIdUpdateFilePatch.js} +0 -0
  568. /package/{dist/api/types/ConversationTokenDbModel.js → api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.js} +0 -0
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost = void 0;
4
+ var BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost_1 = require("./BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost");
5
+ Object.defineProperty(exports, "BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost", { enumerable: true, get: function () { return BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost_1.BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost; } });
@@ -0,0 +1,2 @@
1
+ export * from "./client";
2
+ export * from "./types";
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./client"), exports);
18
+ __exportStar(require("./types"), exports);
@@ -0,0 +1,7 @@
1
+ import type * as ElevenLabs from "../../../../../../../../api/index";
2
+ import * as core from "../../../../../../../../core";
3
+ import type * as serializers from "../../../../../../../index";
4
+ export declare const BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort: core.serialization.Schema<serializers.workspace.analytics.BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.Raw, ElevenLabs.workspace.analytics.BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort>;
5
+ export declare namespace BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort {
6
+ type Raw = "asc" | "desc";
7
+ }
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort = void 0;
38
+ const core = __importStar(require("../../../../../../../../core"));
39
+ exports.BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort = core.serialization.enum_(["asc", "desc"]);
@@ -0,0 +1 @@
1
+ export * from "./BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort"), exports);
@@ -1,3 +1,4 @@
1
+ export * as analytics from "./analytics";
1
2
  export * as authConnections from "./authConnections";
2
3
  export * from "./authConnections/types";
3
4
  export * as groups from "./groups";
@@ -36,7 +36,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
36
36
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.usage = exports.resources = exports.members = exports.invites = exports.groups = exports.authConnections = void 0;
39
+ exports.usage = exports.resources = exports.members = exports.invites = exports.groups = exports.authConnections = exports.analytics = void 0;
40
+ exports.analytics = __importStar(require("./analytics"));
40
41
  exports.authConnections = __importStar(require("./authConnections"));
41
42
  __exportStar(require("./authConnections/types"), exports);
42
43
  exports.groups = __importStar(require("./groups"));
@@ -0,0 +1,9 @@
1
+ import type * as ElevenLabs from "../../api/index";
2
+ import * as core from "../../core";
3
+ import type * as serializers from "../index";
4
+ export declare const AgentAlertingMonitorConfig: core.serialization.ObjectSchema<serializers.AgentAlertingMonitorConfig.Raw, ElevenLabs.AgentAlertingMonitorConfig>;
5
+ export declare namespace AgentAlertingMonitorConfig {
6
+ interface Raw {
7
+ threshold?: number | null;
8
+ }
9
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.AgentAlertingMonitorConfig = void 0;
38
+ const core = __importStar(require("../../core"));
39
+ exports.AgentAlertingMonitorConfig = core.serialization.object({
40
+ threshold: core.serialization.number().optional(),
41
+ });
@@ -0,0 +1,10 @@
1
+ import type * as ElevenLabs from "../../api/index";
2
+ import * as core from "../../core";
3
+ import type * as serializers from "../index";
4
+ import { AgentAlertingMonitorConfig } from "./AgentAlertingMonitorConfig";
5
+ export declare const AgentAlertingSettings: core.serialization.ObjectSchema<serializers.AgentAlertingSettings.Raw, ElevenLabs.AgentAlertingSettings>;
6
+ export declare namespace AgentAlertingSettings {
7
+ interface Raw {
8
+ monitor_configs?: Record<string, AgentAlertingMonitorConfig.Raw> | null;
9
+ }
10
+ }
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.AgentAlertingSettings = void 0;
38
+ const core = __importStar(require("../../core"));
39
+ const AgentAlertingMonitorConfig_1 = require("./AgentAlertingMonitorConfig");
40
+ exports.AgentAlertingSettings = core.serialization.object({
41
+ monitorConfigs: core.serialization.property("monitor_configs", core.serialization.record(core.serialization.string(), AgentAlertingMonitorConfig_1.AgentAlertingMonitorConfig).optional()),
42
+ });
@@ -0,0 +1,13 @@
1
+ import type * as ElevenLabs from "../../api/index";
2
+ import * as core from "../../core";
3
+ import type * as serializers from "../index";
4
+ import { AgentDefinitionSource } from "./AgentDefinitionSource";
5
+ export declare const AgentMetadataDbModel: core.serialization.ObjectSchema<serializers.AgentMetadataDbModel.Raw, ElevenLabs.AgentMetadataDbModel>;
6
+ export declare namespace AgentMetadataDbModel {
7
+ interface Raw {
8
+ created_at_unix_secs: number;
9
+ updated_at_unix_secs: number;
10
+ created_from?: AgentDefinitionSource.Raw | null;
11
+ last_updated_from?: AgentDefinitionSource.Raw | null;
12
+ }
13
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.AgentMetadataDbModel = void 0;
38
+ const core = __importStar(require("../../core"));
39
+ const AgentDefinitionSource_1 = require("./AgentDefinitionSource");
40
+ exports.AgentMetadataDbModel = core.serialization.object({
41
+ createdAtUnixSecs: core.serialization.property("created_at_unix_secs", core.serialization.number()),
42
+ updatedAtUnixSecs: core.serialization.property("updated_at_unix_secs", core.serialization.number()),
43
+ createdFrom: core.serialization.property("created_from", AgentDefinitionSource_1.AgentDefinitionSource.optional()),
44
+ lastUpdatedFrom: core.serialization.property("last_updated_from", AgentDefinitionSource_1.AgentDefinitionSource.optional()),
45
+ });
@@ -1,6 +1,7 @@
1
1
  import type * as ElevenLabs from "../../api/index";
2
2
  import * as core from "../../core";
3
3
  import type * as serializers from "../index";
4
+ import { AgentAlertingSettings } from "./AgentAlertingSettings";
4
5
  import { AgentCallLimits } from "./AgentCallLimits";
5
6
  import { AgentTestingSettings } from "./AgentTestingSettings";
6
7
  import { AgentTrustContext } from "./AgentTrustContext";
@@ -32,5 +33,6 @@ export declare namespace AgentPlatformSettingsRequestModel {
32
33
  privacy?: PrivacyConfigInput.Raw | null;
33
34
  trust_context?: AgentTrustContext.Raw | null;
34
35
  analysis_llm?: Llm.Raw | null;
36
+ alerting?: AgentAlertingSettings.Raw | null;
35
37
  }
36
38
  }
@@ -36,6 +36,7 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  Object.defineProperty(exports, "__esModule", { value: true });
37
37
  exports.AgentPlatformSettingsRequestModel = void 0;
38
38
  const core = __importStar(require("../../core"));
39
+ const AgentAlertingSettings_1 = require("./AgentAlertingSettings");
39
40
  const AgentCallLimits_1 = require("./AgentCallLimits");
40
41
  const AgentTestingSettings_1 = require("./AgentTestingSettings");
41
42
  const AgentTrustContext_1 = require("./AgentTrustContext");
@@ -65,4 +66,5 @@ exports.AgentPlatformSettingsRequestModel = core.serialization.object({
65
66
  privacy: PrivacyConfigInput_1.PrivacyConfigInput.optional(),
66
67
  trustContext: core.serialization.property("trust_context", AgentTrustContext_1.AgentTrustContext.optional()),
67
68
  analysisLlm: core.serialization.property("analysis_llm", Llm_1.Llm.optional()),
69
+ alerting: AgentAlertingSettings_1.AgentAlertingSettings.optional(),
68
70
  });
@@ -1,6 +1,7 @@
1
1
  import type * as ElevenLabs from "../../api/index";
2
2
  import * as core from "../../core";
3
3
  import type * as serializers from "../index";
4
+ import { AgentAlertingSettings } from "./AgentAlertingSettings";
4
5
  import { AgentCallLimits } from "./AgentCallLimits";
5
6
  import { AgentTestingSettings } from "./AgentTestingSettings";
6
7
  import { AgentTrustContext } from "./AgentTrustContext";
@@ -33,6 +34,7 @@ export declare namespace AgentPlatformSettingsResponseModel {
33
34
  privacy?: PrivacyConfigOutput.Raw | null;
34
35
  trust_context?: AgentTrustContext.Raw | null;
35
36
  analysis_llm?: Llm.Raw | null;
37
+ alerting?: AgentAlertingSettings.Raw | null;
36
38
  safety?: SafetyResponseModel.Raw | null;
37
39
  }
38
40
  }
@@ -36,6 +36,7 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  Object.defineProperty(exports, "__esModule", { value: true });
37
37
  exports.AgentPlatformSettingsResponseModel = void 0;
38
38
  const core = __importStar(require("../../core"));
39
+ const AgentAlertingSettings_1 = require("./AgentAlertingSettings");
39
40
  const AgentCallLimits_1 = require("./AgentCallLimits");
40
41
  const AgentTestingSettings_1 = require("./AgentTestingSettings");
41
42
  const AgentTrustContext_1 = require("./AgentTrustContext");
@@ -66,5 +67,6 @@ exports.AgentPlatformSettingsResponseModel = core.serialization.object({
66
67
  privacy: PrivacyConfigOutput_1.PrivacyConfigOutput.optional(),
67
68
  trustContext: core.serialization.property("trust_context", AgentTrustContext_1.AgentTrustContext.optional()),
68
69
  analysisLlm: core.serialization.property("analysis_llm", Llm_1.Llm.optional()),
70
+ alerting: AgentAlertingSettings_1.AgentAlertingSettings.optional(),
69
71
  safety: SafetyResponseModel_1.SafetyResponseModel.optional(),
70
72
  });
@@ -8,5 +8,8 @@ export declare namespace AgentTopicResponseModel {
8
8
  label: string;
9
9
  description: string;
10
10
  conversation_count: number;
11
+ parent_topic_id?: string | null;
12
+ x_2d?: number | null;
13
+ y_2d?: number | null;
11
14
  }
12
15
  }
@@ -41,4 +41,7 @@ exports.AgentTopicResponseModel = core.serialization.object({
41
41
  label: core.serialization.string(),
42
42
  description: core.serialization.string(),
43
43
  conversationCount: core.serialization.property("conversation_count", core.serialization.number()),
44
+ parentTopicId: core.serialization.property("parent_topic_id", core.serialization.string().optional()),
45
+ x2D: core.serialization.property("x_2d", core.serialization.number().optional()),
46
+ y2D: core.serialization.property("y_2d", core.serialization.number().optional()),
44
47
  });
@@ -3,5 +3,5 @@ import * as core from "../../core";
3
3
  import type * as serializers from "../index";
4
4
  export declare const BackgroundMusicPresetId: core.serialization.Schema<serializers.BackgroundMusicPresetId.Raw, ElevenLabs.BackgroundMusicPresetId>;
5
5
  export declare namespace BackgroundMusicPresetId {
6
- type Raw = "typing" | "elevator1" | "elevator2" | "elevator3" | "elevator4";
6
+ type Raw = "office2" | "office1" | "restaurant" | "city" | "typing" | "elevator1" | "elevator2" | "elevator3" | "elevator4";
7
7
  }
@@ -36,4 +36,14 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  Object.defineProperty(exports, "__esModule", { value: true });
37
37
  exports.BackgroundMusicPresetId = void 0;
38
38
  const core = __importStar(require("../../core"));
39
- exports.BackgroundMusicPresetId = core.serialization.enum_(["typing", "elevator1", "elevator2", "elevator3", "elevator4"]);
39
+ exports.BackgroundMusicPresetId = core.serialization.enum_([
40
+ "office2",
41
+ "office1",
42
+ "restaurant",
43
+ "city",
44
+ "typing",
45
+ "elevator1",
46
+ "elevator2",
47
+ "elevator3",
48
+ "elevator4",
49
+ ]);
@@ -0,0 +1,17 @@
1
+ import type * as ElevenLabs from "../../api/index";
2
+ import * as core from "../../core";
3
+ import type * as serializers from "../index";
4
+ import { SpellingPatience } from "./SpellingPatience";
5
+ import { TurnEagerness } from "./TurnEagerness";
6
+ export declare const BaseTurnConfig: core.serialization.ObjectSchema<serializers.BaseTurnConfig.Raw, ElevenLabs.BaseTurnConfig>;
7
+ export declare namespace BaseTurnConfig {
8
+ interface Raw {
9
+ turn_timeout?: number | null;
10
+ initial_wait_time?: number | null;
11
+ silence_end_call_timeout?: number | null;
12
+ turn_eagerness?: TurnEagerness.Raw | null;
13
+ spelling_patience?: SpellingPatience.Raw | null;
14
+ speculative_turn?: boolean | null;
15
+ retranscribe_on_turn_timeout?: boolean | null;
16
+ }
17
+ }
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.BaseTurnConfig = void 0;
38
+ const core = __importStar(require("../../core"));
39
+ const SpellingPatience_1 = require("./SpellingPatience");
40
+ const TurnEagerness_1 = require("./TurnEagerness");
41
+ exports.BaseTurnConfig = core.serialization.object({
42
+ turnTimeout: core.serialization.property("turn_timeout", core.serialization.number().optional()),
43
+ initialWaitTime: core.serialization.property("initial_wait_time", core.serialization.number().optional()),
44
+ silenceEndCallTimeout: core.serialization.property("silence_end_call_timeout", core.serialization.number().optional()),
45
+ turnEagerness: core.serialization.property("turn_eagerness", TurnEagerness_1.TurnEagerness.optional()),
46
+ spellingPatience: core.serialization.property("spelling_patience", SpellingPatience_1.SpellingPatience.optional()),
47
+ speculativeTurn: core.serialization.property("speculative_turn", core.serialization.boolean().optional()),
48
+ retranscribeOnTurnTimeout: core.serialization.property("retranscribe_on_turn_timeout", core.serialization.boolean().optional()),
49
+ });
@@ -3,5 +3,5 @@ import * as core from "../../core";
3
3
  import type * as serializers from "../index";
4
4
  export declare const ClientEvent: core.serialization.Schema<serializers.ClientEvent.Raw, ElevenLabs.ClientEvent>;
5
5
  export declare namespace ClientEvent {
6
- type Raw = "conversation_initiation_metadata" | "asr_initiation_metadata" | "ping" | "audio" | "interruption" | "user_transcript" | "tentative_user_transcript" | "agent_response" | "agent_response_correction" | "client_tool_call" | "mcp_tool_call" | "mcp_connection_status" | "agent_tool_request" | "agent_tool_response" | "agent_response_metadata" | "vad_score" | "agent_chat_response_part" | "client_error" | "guardrail_triggered" | "dtmf_request" | "agent_response_complete" | "internal_turn_probability" | "internal_tentative_agent_response";
6
+ type Raw = "conversation_initiation_metadata" | "asr_initiation_metadata" | "ping" | "audio" | "interruption" | "user_transcript" | "tentative_user_transcript" | "agent_response" | "agent_response_correction" | "client_tool_call" | "mcp_tool_call" | "mcp_connection_status" | "agent_tool_request" | "agent_tool_response" | "agent_tool_response_full_payload" | "agent_response_metadata" | "vad_score" | "agent_chat_response_part" | "client_error" | "guardrail_triggered" | "dtmf_request" | "agent_response_complete" | "internal_turn_probability" | "internal_tentative_agent_response";
7
7
  }
@@ -51,6 +51,7 @@ exports.ClientEvent = core.serialization.enum_([
51
51
  "mcp_connection_status",
52
52
  "agent_tool_request",
53
53
  "agent_tool_response",
54
+ "agent_tool_response_full_payload",
54
55
  "agent_response_metadata",
55
56
  "vad_score",
56
57
  "agent_chat_response_part",
@@ -0,0 +1,10 @@
1
+ import type * as ElevenLabs from "../../api/index";
2
+ import * as core from "../../core";
3
+ import type * as serializers from "../index";
4
+ export declare const CodeToolAllowedDomain: core.serialization.ObjectSchema<serializers.CodeToolAllowedDomain.Raw, ElevenLabs.CodeToolAllowedDomain>;
5
+ export declare namespace CodeToolAllowedDomain {
6
+ interface Raw {
7
+ domain: string;
8
+ name: string;
9
+ }
10
+ }
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.CodeToolAllowedDomain = void 0;
38
+ const core = __importStar(require("../../core"));
39
+ exports.CodeToolAllowedDomain = core.serialization.object({
40
+ domain: core.serialization.string(),
41
+ name: core.serialization.string(),
42
+ });
@@ -2,14 +2,14 @@ import type * as ElevenLabs from "../../api/index";
2
2
  import * as core from "../../core";
3
3
  import type * as serializers from "../index";
4
4
  import { ConversationTokenPurpose } from "./ConversationTokenPurpose";
5
- export declare const ConversationTokenDbModel: core.serialization.ObjectSchema<serializers.ConversationTokenDbModel.Raw, ElevenLabs.ConversationTokenDbModel>;
6
- export declare namespace ConversationTokenDbModel {
5
+ export declare const ConversationTokenResponseModel: core.serialization.ObjectSchema<serializers.ConversationTokenResponseModel.Raw, ElevenLabs.ConversationTokenResponseModel>;
6
+ export declare namespace ConversationTokenResponseModel {
7
7
  interface Raw {
8
8
  agent_id: string;
9
9
  conversation_token: string;
10
10
  expiration_time_unix_secs?: number | null;
11
11
  conversation_id?: string | null;
12
- purpose?: ConversationTokenPurpose.Raw | null;
12
+ purpose: ConversationTokenPurpose.Raw;
13
13
  token_requester_user_id?: string | null;
14
14
  }
15
15
  }
@@ -34,14 +34,14 @@ var __importStar = (this && this.__importStar) || (function () {
34
34
  };
35
35
  })();
36
36
  Object.defineProperty(exports, "__esModule", { value: true });
37
- exports.ConversationTokenDbModel = void 0;
37
+ exports.ConversationTokenResponseModel = void 0;
38
38
  const core = __importStar(require("../../core"));
39
39
  const ConversationTokenPurpose_1 = require("./ConversationTokenPurpose");
40
- exports.ConversationTokenDbModel = core.serialization.object({
40
+ exports.ConversationTokenResponseModel = core.serialization.object({
41
41
  agentId: core.serialization.property("agent_id", core.serialization.string()),
42
42
  conversationToken: core.serialization.property("conversation_token", core.serialization.string()),
43
43
  expirationTimeUnixSecs: core.serialization.property("expiration_time_unix_secs", core.serialization.number().optional()),
44
44
  conversationId: core.serialization.property("conversation_id", core.serialization.string().optional()),
45
- purpose: ConversationTokenPurpose_1.ConversationTokenPurpose.optional(),
45
+ purpose: ConversationTokenPurpose_1.ConversationTokenPurpose,
46
46
  tokenRequesterUserId: core.serialization.property("token_requester_user_id", core.serialization.string().optional()),
47
47
  });
@@ -0,0 +1,9 @@
1
+ import type * as ElevenLabs from "../../api/index";
2
+ import * as core from "../../core";
3
+ import type * as serializers from "../index";
4
+ export declare const CreateSpeechEngineResponse: core.serialization.ObjectSchema<serializers.CreateSpeechEngineResponse.Raw, ElevenLabs.CreateSpeechEngineResponse>;
5
+ export declare namespace CreateSpeechEngineResponse {
6
+ interface Raw {
7
+ speech_engine_id: string;
8
+ }
9
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.CreateSpeechEngineResponse = void 0;
38
+ const core = __importStar(require("../../core"));
39
+ exports.CreateSpeechEngineResponse = core.serialization.object({
40
+ speechEngineId: core.serialization.property("speech_engine_id", core.serialization.string()),
41
+ });