@elevenlabs/elevenlabs-js 2.0.1 → 2.2.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 (944) hide show
  1. package/.mock/asyncapi.yml +11 -11
  2. package/.mock/definition/__package__.yml +709 -107
  3. package/.mock/definition/conversationalAi/agents/knowledgeBase.yml +32 -0
  4. package/.mock/definition/conversationalAi/agents/link.yml +2 -1
  5. package/.mock/definition/conversationalAi/agents/llmUsage.yml +51 -0
  6. package/.mock/definition/conversationalAi/agents/widget.yml +30 -0
  7. package/.mock/definition/conversationalAi/agents.yml +47 -27
  8. package/.mock/definition/conversationalAi/batchCalls.yml +83 -0
  9. package/.mock/definition/conversationalAi/knowledgeBase/document.yml +5 -1
  10. package/.mock/definition/conversationalAi/knowledgeBase/documents.yml +14 -5
  11. package/.mock/definition/conversationalAi/knowledgeBase.yml +2 -1
  12. package/.mock/definition/conversationalAi/llmUsage.yml +52 -0
  13. package/.mock/definition/conversationalAi.yml +99 -1
  14. package/.mock/definition/history.yml +8 -0
  15. package/.mock/definition/pronunciationDictionaries.yml +2 -2
  16. package/.mock/definition/speechToText.yml +14 -2
  17. package/.mock/definition/textToDialogue.yml +213 -0
  18. package/.mock/definition/textToVoice.yml +1 -1
  19. package/.mock/definition/v1TextToSpeechVoiceIdMultiStreamInput.yml +5 -3
  20. package/.mock/definition/voices/settings.yml +3 -3
  21. package/.mock/definition/voices.yml +6 -3
  22. package/.mock/definition/workspace/groups/members.yml +0 -2
  23. package/.mock/definition/workspace/groups.yml +0 -1
  24. package/.mock/fern.config.json +1 -1
  25. package/.mock/openapi.json +3163 -232
  26. package/Client.d.ts +3 -0
  27. package/Client.js +33 -28
  28. package/README.md +2 -2
  29. package/api/resources/audioIsolation/client/Client.js +4 -4
  30. package/api/resources/audioNative/client/Client.js +6 -6
  31. package/api/resources/conversationalAi/client/Client.d.ts +42 -0
  32. package/api/resources/conversationalAi/client/Client.js +243 -16
  33. package/api/resources/conversationalAi/resources/agents/client/Client.d.ts +6 -0
  34. package/api/resources/conversationalAi/resources/agents/client/Client.js +24 -14
  35. package/api/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +5 -2
  36. package/api/resources/conversationalAi/resources/agents/resources/index.d.ts +3 -0
  37. package/api/resources/conversationalAi/resources/agents/resources/index.js +4 -1
  38. package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.d.ts +44 -0
  39. package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +137 -0
  40. package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/index.d.ts +1 -0
  41. package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/index.js +2 -0
  42. package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/index.d.ts +1 -0
  43. package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/index.js +17 -0
  44. package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +2 -2
  45. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.d.ts +45 -0
  46. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +141 -0
  47. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.d.ts +1 -0
  48. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.js +17 -0
  49. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.d.ts +15 -0
  50. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.d.ts +1 -0
  51. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.js +2 -0
  52. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/index.d.ts +1 -0
  53. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/index.js +17 -0
  54. package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +2 -2
  55. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +2 -2
  56. package/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +26 -0
  57. package/api/resources/conversationalAi/resources/batchCalls/client/Client.js +154 -6
  58. package/api/resources/conversationalAi/resources/conversations/client/Client.js +8 -8
  59. package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +2 -2
  60. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +2 -2
  61. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +4 -4
  62. package/api/resources/conversationalAi/resources/index.d.ts +2 -0
  63. package/api/resources/conversationalAi/resources/index.js +3 -1
  64. package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +2 -2
  65. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +1 -1
  66. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +3 -3
  67. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +2 -1
  68. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +27 -20
  69. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsDeleteRequest.d.ts +13 -0
  70. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.d.ts +1 -0
  71. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +2 -2
  72. package/api/resources/conversationalAi/resources/llmUsage/client/Client.d.ts +48 -0
  73. package/api/resources/conversationalAi/resources/llmUsage/client/Client.js +144 -0
  74. package/api/resources/conversationalAi/resources/llmUsage/client/index.d.ts +1 -0
  75. package/api/resources/conversationalAi/resources/llmUsage/client/index.js +17 -0
  76. package/api/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.d.ts +19 -0
  77. package/api/resources/conversationalAi/resources/llmUsage/client/requests/index.d.ts +1 -0
  78. package/api/resources/conversationalAi/resources/llmUsage/client/requests/index.js +2 -0
  79. package/api/resources/conversationalAi/resources/llmUsage/index.d.ts +1 -0
  80. package/api/resources/conversationalAi/resources/llmUsage/index.js +17 -0
  81. package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +10 -10
  82. package/api/resources/conversationalAi/resources/secrets/client/Client.js +6 -6
  83. package/api/resources/conversationalAi/resources/settings/client/Client.js +4 -4
  84. package/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +2 -2
  85. package/api/resources/conversationalAi/resources/twilio/client/Client.js +2 -2
  86. package/api/resources/dubbing/client/Client.js +6 -6
  87. package/api/resources/dubbing/resources/audio/client/Client.js +2 -2
  88. package/api/resources/dubbing/resources/resource/client/Client.js +10 -10
  89. package/api/resources/dubbing/resources/resource/resources/language/client/Client.js +2 -2
  90. package/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +4 -4
  91. package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +4 -4
  92. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +2 -2
  93. package/api/resources/dubbing/resources/transcript/client/Client.js +2 -2
  94. package/api/resources/forcedAlignment/client/Client.js +2 -2
  95. package/api/resources/history/client/Client.js +10 -10
  96. package/api/resources/index.d.ts +3 -0
  97. package/api/resources/index.js +4 -1
  98. package/api/resources/models/client/Client.js +2 -2
  99. package/api/resources/pronunciationDictionaries/client/Client.js +10 -10
  100. package/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +4 -4
  101. package/api/resources/samples/client/Client.js +2 -2
  102. package/api/resources/speechToSpeech/client/Client.js +4 -4
  103. package/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +2 -0
  104. package/api/resources/studio/client/Client.js +2 -2
  105. package/api/resources/studio/resources/projects/client/Client.js +12 -12
  106. package/api/resources/studio/resources/projects/resources/chapters/client/Client.js +12 -12
  107. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +6 -6
  108. package/api/resources/studio/resources/projects/resources/content/client/Client.js +2 -2
  109. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +2 -2
  110. package/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +8 -8
  111. package/api/resources/textToDialogue/client/Client.d.ts +44 -0
  112. package/api/resources/textToDialogue/client/Client.js +212 -0
  113. package/api/resources/textToDialogue/client/index.d.ts +1 -0
  114. package/api/resources/textToDialogue/client/index.js +17 -0
  115. package/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.d.ts +32 -0
  116. package/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.d.ts +32 -0
  117. package/api/resources/textToDialogue/client/requests/index.d.ts +2 -0
  118. package/api/resources/textToDialogue/client/requests/index.js +2 -0
  119. package/api/resources/textToDialogue/index.d.ts +2 -0
  120. package/api/resources/textToDialogue/index.js +18 -0
  121. package/api/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.d.ts +28 -0
  122. package/api/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.js +27 -0
  123. package/api/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.d.ts +28 -0
  124. package/api/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.js +27 -0
  125. package/api/resources/textToDialogue/types/index.d.ts +2 -0
  126. package/api/resources/textToDialogue/types/index.js +18 -0
  127. package/api/resources/textToSoundEffects/client/Client.js +2 -2
  128. package/api/resources/textToSpeech/client/Client.js +8 -8
  129. package/api/resources/textToVoice/client/Client.js +4 -4
  130. package/api/resources/usage/client/Client.js +2 -2
  131. package/api/resources/user/client/Client.js +2 -2
  132. package/api/resources/user/resources/subscription/client/Client.js +2 -2
  133. package/api/resources/voices/client/Client.js +20 -17
  134. package/api/resources/voices/client/requests/VoicesGetSharedRequest.d.ts +4 -0
  135. package/api/resources/voices/resources/ivc/client/Client.js +2 -2
  136. package/api/resources/voices/resources/pvc/client/Client.js +6 -6
  137. package/api/resources/voices/resources/pvc/resources/samples/client/Client.js +6 -6
  138. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +2 -2
  139. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +4 -4
  140. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +2 -2
  141. package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +2 -2
  142. package/api/resources/voices/resources/pvc/resources/verification/client/Client.js +2 -2
  143. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +4 -4
  144. package/api/resources/voices/resources/samples/resources/audio/client/Client.js +2 -2
  145. package/api/resources/voices/resources/settings/client/Client.d.ts +1 -1
  146. package/api/resources/voices/resources/settings/client/Client.js +7 -7
  147. package/api/resources/workspace/resources/groups/client/Client.js +2 -2
  148. package/api/resources/workspace/resources/groups/resources/members/client/Client.js +4 -4
  149. package/api/resources/workspace/resources/invites/client/Client.js +6 -6
  150. package/api/resources/workspace/resources/members/client/Client.js +4 -4
  151. package/api/resources/workspace/resources/resources/client/Client.js +6 -6
  152. package/api/types/AddKnowledgeBaseResponseModel.d.ts +0 -1
  153. package/api/types/AgentConfigOverride.d.ts +4 -4
  154. package/api/types/AgentConfigOverrideConfig.d.ts +4 -4
  155. package/api/types/AudioOutputMulti.d.ts +1 -1
  156. package/api/types/AuthorizationMethod.d.ts +2 -1
  157. package/api/types/AuthorizationMethod.js +1 -0
  158. package/api/types/ChapterContentBlockInputModel.d.ts +1 -0
  159. package/api/types/ChapterContentBlockInputModelSubType.d.ts +10 -0
  160. package/api/types/ChapterContentBlockInputModelSubType.js +12 -0
  161. package/api/types/ClientEvent.d.ts +2 -1
  162. package/api/types/ClientEvent.js +1 -0
  163. package/api/types/ConversationConfigClientOverrideConfigInput.d.ts +4 -4
  164. package/api/types/ConversationConfigClientOverrideConfigOutput.d.ts +4 -4
  165. package/api/types/ConversationConfigClientOverrideInput.d.ts +4 -4
  166. package/api/types/ConversationConfigClientOverrideOutput.d.ts +4 -4
  167. package/api/types/ConversationConfigOverride.d.ts +1 -0
  168. package/api/types/ConversationConfigOverrideConfig.d.ts +1 -1
  169. package/api/types/ConversationHistoryMetadataCommonModel.d.ts +2 -0
  170. package/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -1
  171. package/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -1
  172. package/api/types/ConversationTokenDbModel.d.ts +2 -0
  173. package/api/types/ConversationalConfig.d.ts +1 -1
  174. package/api/types/CustomLlm.d.ts +2 -0
  175. package/api/types/CustomLlmRequestHeadersValue.d.ts +5 -0
  176. package/api/types/DialogueInput.d.ts +9 -0
  177. package/api/types/DialogueInputResponseModel.d.ts +11 -0
  178. package/api/types/EmbedVariant.d.ts +2 -1
  179. package/api/types/EmbedVariant.js +1 -0
  180. package/api/types/FeatureStatusCommonModel.d.ts +7 -0
  181. package/api/types/FeatureStatusCommonModel.js +5 -0
  182. package/api/types/FeaturesUsageCommonModel.d.ts +12 -0
  183. package/api/types/FeaturesUsageCommonModel.js +5 -0
  184. package/api/types/GetAgentEmbedResponseModel.d.ts +1 -1
  185. package/api/types/GetAgentKnowledgebaseSizeResponseModel.d.ts +6 -0
  186. package/api/types/GetAgentKnowledgebaseSizeResponseModel.js +5 -0
  187. package/api/types/GetKnowledgeBaseFileResponseModel.d.ts +1 -1
  188. package/api/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +1 -1
  189. package/api/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +1 -1
  190. package/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +1 -1
  191. package/api/types/GetKnowledgeBaseTextResponseModel.d.ts +1 -1
  192. package/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +1 -1
  193. package/api/types/GetSharedSoundGenerationsResponseModel.d.ts +9 -0
  194. package/api/types/GetSharedSoundGenerationsResponseModel.js +5 -0
  195. package/api/types/Llm.d.ts +28 -3
  196. package/api/types/Llm.js +27 -2
  197. package/api/types/LlmUsageCalculatorLlmResponseModel.d.ts +8 -0
  198. package/api/types/LlmUsageCalculatorLlmResponseModel.js +5 -0
  199. package/api/types/LlmUsageCalculatorResponseModel.d.ts +7 -0
  200. package/api/types/LlmUsageCalculatorResponseModel.js +5 -0
  201. package/api/types/McpApprovalRequiredModel.d.ts +12 -0
  202. package/api/types/McpApprovalRequiredModel.js +11 -0
  203. package/api/types/McpToolConfigInput.d.ts +2 -0
  204. package/api/types/McpToolConfigOutput.d.ts +2 -0
  205. package/api/types/ModelSettingsResponseModel.d.ts +9 -0
  206. package/api/types/ModelSettingsResponseModel.js +5 -0
  207. package/api/types/NativeMcpToolConfigInput.d.ts +22 -0
  208. package/api/types/NativeMcpToolConfigInput.js +5 -0
  209. package/api/types/NativeMcpToolConfigOutput.d.ts +22 -0
  210. package/api/types/NativeMcpToolConfigOutput.js +5 -0
  211. package/api/types/PromptAgent.d.ts +2 -0
  212. package/api/types/PromptAgentDbModel.d.ts +2 -0
  213. package/api/types/PromptAgentDbModelToolsItem.d.ts +4 -1
  214. package/api/types/PromptAgentInputToolsItem.d.ts +4 -1
  215. package/api/types/PromptAgentOutputToolsItem.d.ts +4 -1
  216. package/api/types/PromptAgentOverride.d.ts +1 -1
  217. package/api/types/PromptAgentOverrideConfig.d.ts +1 -1
  218. package/api/types/PronunciationDictionaryLocator.d.ts +1 -1
  219. package/api/types/RagConfig.d.ts +2 -0
  220. package/{dist/api/types/RagIndexResponseModel.d.ts → api/types/RagDocumentIndexResponseModel.d.ts} +4 -1
  221. package/api/types/RagDocumentIndexResponseModel.js +5 -0
  222. package/api/types/RagDocumentIndexUsage.d.ts +6 -0
  223. package/api/types/RagDocumentIndexUsage.js +5 -0
  224. package/api/types/RagDocumentIndexesResponseModel.d.ts +7 -0
  225. package/api/types/RagDocumentIndexesResponseModel.js +5 -0
  226. package/api/types/RagIndexOverviewEmbeddingModelResponseModel.d.ts +8 -0
  227. package/api/types/RagIndexOverviewEmbeddingModelResponseModel.js +5 -0
  228. package/api/types/RagIndexOverviewResponseModel.d.ts +9 -0
  229. package/api/types/RagIndexOverviewResponseModel.js +5 -0
  230. package/api/types/RagIndexStatus.d.ts +3 -1
  231. package/api/types/RagIndexStatus.js +2 -0
  232. package/api/types/SharedSoundGenerationResponseModel.d.ts +17 -0
  233. package/api/types/SharedSoundGenerationResponseModel.js +5 -0
  234. package/api/types/SkipTurnToolConfig.d.ts +16 -0
  235. package/api/types/SkipTurnToolConfig.js +5 -0
  236. package/api/types/SpeechHistoryItemResponse.d.ts +5 -3
  237. package/api/types/Subscription.d.ts +1 -1
  238. package/api/types/SubscriptionResponse.d.ts +1 -1
  239. package/api/types/{SubscriptionStatus.d.ts → SubscriptionStatusType.d.ts} +3 -5
  240. package/{dist/api/types/ExtendedSubscriptionResponseModelStatus.js → api/types/SubscriptionStatusType.js} +3 -2
  241. package/api/types/SupportedVoice.d.ts +11 -0
  242. package/api/types/SupportedVoice.js +5 -0
  243. package/api/types/SystemToolConfigInputParams.d.ts +4 -1
  244. package/api/types/SystemToolConfigOutputParams.d.ts +4 -1
  245. package/{dist/api/types/TtsConversationalConfig.d.ts → api/types/TtsConversationalConfigInput.d.ts} +3 -1
  246. package/api/types/TtsConversationalConfigInput.js +5 -0
  247. package/api/types/TtsConversationalConfigOutput.d.ts +24 -0
  248. package/api/types/TtsConversationalConfigOutput.js +5 -0
  249. package/api/types/TtsConversationalConfigOverride.d.ts +1 -0
  250. package/api/types/TtsConversationalConfigOverrideConfig.d.ts +1 -1
  251. package/api/types/TtsModelFamily.d.ts +9 -0
  252. package/api/types/TtsModelFamily.js +11 -0
  253. package/api/types/VoiceSettings.d.ts +2 -2
  254. package/api/types/WebsocketTtsClientMessageMulti.d.ts +2 -2
  255. package/api/types/WidgetConfig.d.ts +13 -1
  256. package/{dist/api/types/WidgetConfigAvatar.d.ts → api/types/WidgetConfigInputAvatar.d.ts} +2 -2
  257. package/api/types/WidgetConfigInputAvatar.js +5 -0
  258. package/api/types/WidgetConfigOutputAvatar.d.ts +19 -0
  259. package/api/types/WidgetConfigOutputAvatar.js +5 -0
  260. package/api/types/{WidgetConfigResponseModel.d.ts → WidgetConfigResponse.d.ts} +16 -1
  261. package/api/types/WidgetConfigResponse.js +5 -0
  262. package/api/types/WidgetLanguagePreset.d.ts +8 -0
  263. package/api/types/WidgetLanguagePreset.js +5 -0
  264. package/api/types/WidgetLanguagePresetResponse.d.ts +9 -0
  265. package/api/types/WidgetLanguagePresetResponse.js +5 -0
  266. package/api/types/WidgetPlacement.d.ts +12 -0
  267. package/api/types/WidgetPlacement.js +14 -0
  268. package/api/types/WidgetTextContents.d.ts +47 -0
  269. package/api/types/WidgetTextContents.js +5 -0
  270. package/api/types/index.d.ts +33 -6
  271. package/api/types/index.js +33 -6
  272. package/dist/Client.d.ts +3 -0
  273. package/dist/Client.js +33 -28
  274. package/dist/api/resources/audioIsolation/client/Client.js +4 -4
  275. package/dist/api/resources/audioNative/client/Client.js +6 -6
  276. package/dist/api/resources/conversationalAi/client/Client.d.ts +42 -0
  277. package/dist/api/resources/conversationalAi/client/Client.js +243 -16
  278. package/dist/api/resources/conversationalAi/resources/agents/client/Client.d.ts +6 -0
  279. package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +24 -14
  280. package/dist/api/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +5 -2
  281. package/dist/api/resources/conversationalAi/resources/agents/resources/index.d.ts +3 -0
  282. package/dist/api/resources/conversationalAi/resources/agents/resources/index.js +4 -1
  283. package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.d.ts +44 -0
  284. package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +137 -0
  285. package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/index.d.ts +1 -0
  286. package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/index.js +2 -0
  287. package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/index.d.ts +1 -0
  288. package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/index.js +17 -0
  289. package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +2 -2
  290. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.d.ts +45 -0
  291. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +141 -0
  292. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.d.ts +1 -0
  293. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.js +17 -0
  294. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.d.ts +15 -0
  295. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.js +5 -0
  296. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.d.ts +1 -0
  297. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.js +2 -0
  298. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/index.d.ts +1 -0
  299. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/index.js +17 -0
  300. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +2 -2
  301. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +2 -2
  302. package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +26 -0
  303. package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.js +154 -6
  304. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +8 -8
  305. package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +2 -2
  306. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +2 -2
  307. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +4 -4
  308. package/dist/api/resources/conversationalAi/resources/index.d.ts +2 -0
  309. package/dist/api/resources/conversationalAi/resources/index.js +3 -1
  310. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +2 -2
  311. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +1 -1
  312. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +3 -3
  313. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +2 -1
  314. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +27 -20
  315. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsDeleteRequest.d.ts +13 -0
  316. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsDeleteRequest.js +5 -0
  317. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.d.ts +1 -0
  318. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +2 -2
  319. package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.d.ts +48 -0
  320. package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.js +144 -0
  321. package/dist/api/resources/conversationalAi/resources/llmUsage/client/index.d.ts +1 -0
  322. package/dist/api/resources/conversationalAi/resources/llmUsage/client/index.js +17 -0
  323. package/dist/api/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.d.ts +19 -0
  324. package/dist/api/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.js +5 -0
  325. package/dist/api/resources/conversationalAi/resources/llmUsage/client/requests/index.d.ts +1 -0
  326. package/dist/api/resources/conversationalAi/resources/llmUsage/client/requests/index.js +2 -0
  327. package/dist/api/resources/conversationalAi/resources/llmUsage/index.d.ts +1 -0
  328. package/dist/api/resources/conversationalAi/resources/llmUsage/index.js +17 -0
  329. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +10 -10
  330. package/dist/api/resources/conversationalAi/resources/secrets/client/Client.js +6 -6
  331. package/dist/api/resources/conversationalAi/resources/settings/client/Client.js +4 -4
  332. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +2 -2
  333. package/dist/api/resources/conversationalAi/resources/twilio/client/Client.js +2 -2
  334. package/dist/api/resources/dubbing/client/Client.js +6 -6
  335. package/dist/api/resources/dubbing/resources/audio/client/Client.js +2 -2
  336. package/dist/api/resources/dubbing/resources/resource/client/Client.js +10 -10
  337. package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.js +2 -2
  338. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +4 -4
  339. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +4 -4
  340. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +2 -2
  341. package/dist/api/resources/dubbing/resources/transcript/client/Client.js +2 -2
  342. package/dist/api/resources/forcedAlignment/client/Client.js +2 -2
  343. package/dist/api/resources/history/client/Client.js +10 -10
  344. package/dist/api/resources/index.d.ts +3 -0
  345. package/dist/api/resources/index.js +4 -1
  346. package/dist/api/resources/models/client/Client.js +2 -2
  347. package/dist/api/resources/pronunciationDictionaries/client/Client.js +10 -10
  348. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +4 -4
  349. package/dist/api/resources/samples/client/Client.js +2 -2
  350. package/dist/api/resources/speechToSpeech/client/Client.js +4 -4
  351. package/dist/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +2 -0
  352. package/dist/api/resources/studio/client/Client.js +2 -2
  353. package/dist/api/resources/studio/resources/projects/client/Client.js +12 -12
  354. package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.js +12 -12
  355. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +6 -6
  356. package/dist/api/resources/studio/resources/projects/resources/content/client/Client.js +2 -2
  357. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +2 -2
  358. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +8 -8
  359. package/dist/api/resources/textToDialogue/client/Client.d.ts +44 -0
  360. package/dist/api/resources/textToDialogue/client/Client.js +212 -0
  361. package/dist/api/resources/textToDialogue/client/index.d.ts +1 -0
  362. package/dist/api/resources/textToDialogue/client/index.js +17 -0
  363. package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.d.ts +32 -0
  364. package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.js +5 -0
  365. package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.d.ts +32 -0
  366. package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.js +5 -0
  367. package/dist/api/resources/textToDialogue/client/requests/index.d.ts +2 -0
  368. package/dist/api/resources/textToDialogue/client/requests/index.js +2 -0
  369. package/dist/api/resources/textToDialogue/index.d.ts +2 -0
  370. package/dist/api/resources/textToDialogue/index.js +18 -0
  371. package/dist/api/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.d.ts +28 -0
  372. package/dist/api/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.js +27 -0
  373. package/dist/api/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.d.ts +28 -0
  374. package/dist/api/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.js +27 -0
  375. package/dist/api/resources/textToDialogue/types/index.d.ts +2 -0
  376. package/dist/api/resources/textToDialogue/types/index.js +18 -0
  377. package/dist/api/resources/textToSoundEffects/client/Client.js +2 -2
  378. package/dist/api/resources/textToSpeech/client/Client.js +8 -8
  379. package/dist/api/resources/textToVoice/client/Client.js +4 -4
  380. package/dist/api/resources/usage/client/Client.js +2 -2
  381. package/dist/api/resources/user/client/Client.js +2 -2
  382. package/dist/api/resources/user/resources/subscription/client/Client.js +2 -2
  383. package/dist/api/resources/voices/client/Client.js +20 -17
  384. package/dist/api/resources/voices/client/requests/VoicesGetSharedRequest.d.ts +4 -0
  385. package/dist/api/resources/voices/resources/ivc/client/Client.js +2 -2
  386. package/dist/api/resources/voices/resources/pvc/client/Client.js +6 -6
  387. package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.js +6 -6
  388. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +2 -2
  389. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +4 -4
  390. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +2 -2
  391. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +2 -2
  392. package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.js +2 -2
  393. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +4 -4
  394. package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.js +2 -2
  395. package/dist/api/resources/voices/resources/settings/client/Client.d.ts +1 -1
  396. package/dist/api/resources/voices/resources/settings/client/Client.js +7 -7
  397. package/dist/api/resources/workspace/resources/groups/client/Client.js +2 -2
  398. package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.js +4 -4
  399. package/dist/api/resources/workspace/resources/invites/client/Client.js +6 -6
  400. package/dist/api/resources/workspace/resources/members/client/Client.js +4 -4
  401. package/dist/api/resources/workspace/resources/resources/client/Client.js +6 -6
  402. package/dist/api/types/AddKnowledgeBaseResponseModel.d.ts +0 -1
  403. package/dist/api/types/AgentConfigOverride.d.ts +4 -4
  404. package/dist/api/types/AgentConfigOverrideConfig.d.ts +4 -4
  405. package/dist/api/types/AudioOutputMulti.d.ts +1 -1
  406. package/dist/api/types/AuthorizationMethod.d.ts +2 -1
  407. package/dist/api/types/AuthorizationMethod.js +1 -0
  408. package/dist/api/types/ChapterContentBlockInputModel.d.ts +1 -0
  409. package/dist/api/types/ChapterContentBlockInputModelSubType.d.ts +10 -0
  410. package/dist/api/types/ChapterContentBlockInputModelSubType.js +12 -0
  411. package/dist/api/types/ClientEvent.d.ts +2 -1
  412. package/dist/api/types/ClientEvent.js +1 -0
  413. package/dist/api/types/ConversationConfigClientOverrideConfigInput.d.ts +4 -4
  414. package/dist/api/types/ConversationConfigClientOverrideConfigOutput.d.ts +4 -4
  415. package/dist/api/types/ConversationConfigClientOverrideInput.d.ts +4 -4
  416. package/dist/api/types/ConversationConfigClientOverrideOutput.d.ts +4 -4
  417. package/dist/api/types/ConversationConfigOverride.d.ts +1 -0
  418. package/dist/api/types/ConversationConfigOverrideConfig.d.ts +1 -1
  419. package/dist/api/types/ConversationHistoryMetadataCommonModel.d.ts +2 -0
  420. package/dist/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -1
  421. package/dist/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -1
  422. package/dist/api/types/ConversationTokenDbModel.d.ts +2 -0
  423. package/dist/api/types/ConversationalConfig.d.ts +1 -1
  424. package/dist/api/types/CustomLlm.d.ts +2 -0
  425. package/dist/api/types/CustomLlmRequestHeadersValue.d.ts +5 -0
  426. package/dist/api/types/CustomLlmRequestHeadersValue.js +5 -0
  427. package/dist/api/types/DialogueInput.d.ts +9 -0
  428. package/dist/api/types/DialogueInput.js +5 -0
  429. package/dist/api/types/DialogueInputResponseModel.d.ts +11 -0
  430. package/dist/api/types/DialogueInputResponseModel.js +5 -0
  431. package/dist/api/types/EmbedVariant.d.ts +2 -1
  432. package/dist/api/types/EmbedVariant.js +1 -0
  433. package/dist/api/types/FeatureStatusCommonModel.d.ts +7 -0
  434. package/dist/api/types/FeatureStatusCommonModel.js +5 -0
  435. package/dist/api/types/FeaturesUsageCommonModel.d.ts +12 -0
  436. package/dist/api/types/FeaturesUsageCommonModel.js +5 -0
  437. package/dist/api/types/GetAgentEmbedResponseModel.d.ts +1 -1
  438. package/dist/api/types/GetAgentKnowledgebaseSizeResponseModel.d.ts +6 -0
  439. package/dist/api/types/GetAgentKnowledgebaseSizeResponseModel.js +5 -0
  440. package/dist/api/types/GetKnowledgeBaseFileResponseModel.d.ts +1 -1
  441. package/dist/api/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +1 -1
  442. package/dist/api/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +1 -1
  443. package/dist/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +1 -1
  444. package/dist/api/types/GetKnowledgeBaseTextResponseModel.d.ts +1 -1
  445. package/dist/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +1 -1
  446. package/dist/api/types/GetSharedSoundGenerationsResponseModel.d.ts +9 -0
  447. package/dist/api/types/GetSharedSoundGenerationsResponseModel.js +5 -0
  448. package/dist/api/types/Llm.d.ts +28 -3
  449. package/dist/api/types/Llm.js +27 -2
  450. package/dist/api/types/LlmUsageCalculatorLlmResponseModel.d.ts +8 -0
  451. package/dist/api/types/LlmUsageCalculatorLlmResponseModel.js +5 -0
  452. package/dist/api/types/LlmUsageCalculatorResponseModel.d.ts +7 -0
  453. package/dist/api/types/LlmUsageCalculatorResponseModel.js +5 -0
  454. package/dist/api/types/McpApprovalRequiredModel.d.ts +12 -0
  455. package/dist/api/types/McpApprovalRequiredModel.js +11 -0
  456. package/dist/api/types/McpToolConfigInput.d.ts +2 -0
  457. package/dist/api/types/McpToolConfigOutput.d.ts +2 -0
  458. package/dist/api/types/ModelSettingsResponseModel.d.ts +9 -0
  459. package/dist/api/types/ModelSettingsResponseModel.js +5 -0
  460. package/dist/api/types/NativeMcpToolConfigInput.d.ts +22 -0
  461. package/dist/api/types/NativeMcpToolConfigInput.js +5 -0
  462. package/dist/api/types/NativeMcpToolConfigOutput.d.ts +22 -0
  463. package/dist/api/types/NativeMcpToolConfigOutput.js +5 -0
  464. package/dist/api/types/PromptAgent.d.ts +2 -0
  465. package/dist/api/types/PromptAgentDbModel.d.ts +2 -0
  466. package/dist/api/types/PromptAgentDbModelToolsItem.d.ts +4 -1
  467. package/dist/api/types/PromptAgentInputToolsItem.d.ts +4 -1
  468. package/dist/api/types/PromptAgentOutputToolsItem.d.ts +4 -1
  469. package/dist/api/types/PromptAgentOverride.d.ts +1 -1
  470. package/dist/api/types/PromptAgentOverrideConfig.d.ts +1 -1
  471. package/dist/api/types/PronunciationDictionaryLocator.d.ts +1 -1
  472. package/dist/api/types/RagConfig.d.ts +2 -0
  473. package/{api/types/RagIndexResponseModel.d.ts → dist/api/types/RagDocumentIndexResponseModel.d.ts} +4 -1
  474. package/dist/api/types/RagDocumentIndexResponseModel.js +5 -0
  475. package/dist/api/types/RagDocumentIndexUsage.d.ts +6 -0
  476. package/dist/api/types/RagDocumentIndexUsage.js +5 -0
  477. package/dist/api/types/RagDocumentIndexesResponseModel.d.ts +7 -0
  478. package/dist/api/types/RagDocumentIndexesResponseModel.js +5 -0
  479. package/dist/api/types/RagIndexOverviewEmbeddingModelResponseModel.d.ts +8 -0
  480. package/dist/api/types/RagIndexOverviewEmbeddingModelResponseModel.js +5 -0
  481. package/dist/api/types/RagIndexOverviewResponseModel.d.ts +9 -0
  482. package/dist/api/types/RagIndexOverviewResponseModel.js +5 -0
  483. package/dist/api/types/RagIndexStatus.d.ts +3 -1
  484. package/dist/api/types/RagIndexStatus.js +2 -0
  485. package/dist/api/types/SharedSoundGenerationResponseModel.d.ts +17 -0
  486. package/dist/api/types/SharedSoundGenerationResponseModel.js +5 -0
  487. package/dist/api/types/SkipTurnToolConfig.d.ts +16 -0
  488. package/dist/api/types/SkipTurnToolConfig.js +5 -0
  489. package/dist/api/types/SpeechHistoryItemResponse.d.ts +5 -3
  490. package/dist/api/types/Subscription.d.ts +1 -1
  491. package/dist/api/types/SubscriptionResponse.d.ts +1 -1
  492. package/dist/api/types/{SubscriptionStatus.d.ts → SubscriptionStatusType.d.ts} +3 -5
  493. package/{api/types/ExtendedSubscriptionResponseModelStatus.js → dist/api/types/SubscriptionStatusType.js} +3 -2
  494. package/dist/api/types/SupportedVoice.d.ts +11 -0
  495. package/dist/api/types/SupportedVoice.js +5 -0
  496. package/dist/api/types/SystemToolConfigInputParams.d.ts +4 -1
  497. package/dist/api/types/SystemToolConfigOutputParams.d.ts +4 -1
  498. package/{api/types/TtsConversationalConfig.d.ts → dist/api/types/TtsConversationalConfigInput.d.ts} +3 -1
  499. package/dist/api/types/TtsConversationalConfigInput.js +5 -0
  500. package/dist/api/types/TtsConversationalConfigOutput.d.ts +24 -0
  501. package/dist/api/types/TtsConversationalConfigOutput.js +5 -0
  502. package/dist/api/types/TtsConversationalConfigOverride.d.ts +1 -0
  503. package/dist/api/types/TtsConversationalConfigOverrideConfig.d.ts +1 -1
  504. package/dist/api/types/TtsModelFamily.d.ts +9 -0
  505. package/dist/api/types/TtsModelFamily.js +11 -0
  506. package/dist/api/types/VoiceSettings.d.ts +2 -2
  507. package/dist/api/types/WebsocketTtsClientMessageMulti.d.ts +2 -2
  508. package/dist/api/types/WidgetConfig.d.ts +13 -1
  509. package/{api/types/WidgetConfigAvatar.d.ts → dist/api/types/WidgetConfigInputAvatar.d.ts} +2 -2
  510. package/dist/api/types/WidgetConfigInputAvatar.js +5 -0
  511. package/dist/api/types/WidgetConfigOutputAvatar.d.ts +19 -0
  512. package/dist/api/types/WidgetConfigOutputAvatar.js +5 -0
  513. package/dist/api/types/{WidgetConfigResponseModel.d.ts → WidgetConfigResponse.d.ts} +16 -1
  514. package/dist/api/types/WidgetConfigResponse.js +5 -0
  515. package/dist/api/types/WidgetLanguagePreset.d.ts +8 -0
  516. package/dist/api/types/WidgetLanguagePreset.js +5 -0
  517. package/dist/api/types/WidgetLanguagePresetResponse.d.ts +9 -0
  518. package/dist/api/types/WidgetLanguagePresetResponse.js +5 -0
  519. package/dist/api/types/WidgetPlacement.d.ts +12 -0
  520. package/dist/api/types/WidgetPlacement.js +14 -0
  521. package/dist/api/types/WidgetTextContents.d.ts +47 -0
  522. package/dist/api/types/WidgetTextContents.js +5 -0
  523. package/dist/api/types/index.d.ts +33 -6
  524. package/dist/api/types/index.js +33 -6
  525. package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +4 -2
  526. package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.js +4 -2
  527. package/dist/serialization/resources/conversationalAi/resources/agents/index.d.ts +1 -0
  528. package/dist/serialization/resources/conversationalAi/resources/agents/index.js +1 -0
  529. package/dist/serialization/resources/conversationalAi/resources/agents/resources/index.d.ts +2 -0
  530. package/dist/serialization/resources/conversationalAi/resources/agents/resources/index.js +41 -0
  531. package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.d.ts +1 -0
  532. package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.js +17 -0
  533. package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.d.ts +14 -0
  534. package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.js +45 -0
  535. package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.d.ts +1 -0
  536. package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.js +5 -0
  537. package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/index.d.ts +1 -0
  538. package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/index.js +17 -0
  539. package/dist/serialization/resources/conversationalAi/resources/index.d.ts +2 -0
  540. package/dist/serialization/resources/conversationalAi/resources/index.js +3 -1
  541. package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/index.d.ts +1 -0
  542. package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/index.js +17 -0
  543. package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.d.ts +14 -0
  544. package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.js +45 -0
  545. package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/requests/index.d.ts +1 -0
  546. package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/requests/index.js +5 -0
  547. package/dist/serialization/resources/conversationalAi/resources/llmUsage/index.d.ts +1 -0
  548. package/dist/serialization/resources/conversationalAi/resources/llmUsage/index.js +17 -0
  549. package/dist/serialization/resources/index.d.ts +3 -0
  550. package/dist/serialization/resources/index.js +4 -1
  551. package/dist/serialization/resources/textToDialogue/client/index.d.ts +1 -0
  552. package/dist/serialization/resources/textToDialogue/client/index.js +17 -0
  553. package/dist/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.d.ts +19 -0
  554. package/dist/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.js +50 -0
  555. package/dist/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.d.ts +19 -0
  556. package/dist/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.js +50 -0
  557. package/dist/serialization/resources/textToDialogue/client/requests/index.d.ts +2 -0
  558. package/dist/serialization/resources/textToDialogue/client/requests/index.js +7 -0
  559. package/dist/serialization/resources/textToDialogue/index.d.ts +2 -0
  560. package/dist/serialization/resources/textToDialogue/index.js +18 -0
  561. package/dist/serialization/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.d.ts +10 -0
  562. package/dist/serialization/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.js +61 -0
  563. package/dist/serialization/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.d.ts +10 -0
  564. package/dist/serialization/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.js +61 -0
  565. package/dist/serialization/resources/textToDialogue/types/index.d.ts +2 -0
  566. package/dist/serialization/resources/textToDialogue/types/index.js +18 -0
  567. package/dist/serialization/types/AddKnowledgeBaseResponseModel.d.ts +0 -1
  568. package/dist/serialization/types/AddKnowledgeBaseResponseModel.js +0 -1
  569. package/dist/serialization/types/AgentConfigOverride.d.ts +1 -1
  570. package/dist/serialization/types/AgentConfigOverride.js +1 -1
  571. package/dist/serialization/types/AgentConfigOverrideConfig.d.ts +1 -1
  572. package/dist/serialization/types/AgentConfigOverrideConfig.js +1 -1
  573. package/dist/serialization/types/AudioOutputMulti.d.ts +1 -1
  574. package/dist/serialization/types/AudioOutputMulti.js +1 -1
  575. package/dist/serialization/types/AuthorizationMethod.d.ts +1 -1
  576. package/dist/serialization/types/AuthorizationMethod.js +1 -0
  577. package/dist/serialization/types/ChapterContentBlockInputModel.d.ts +2 -0
  578. package/dist/serialization/types/ChapterContentBlockInputModel.js +2 -0
  579. package/dist/serialization/types/ChapterContentBlockInputModelSubType.d.ts +10 -0
  580. package/dist/serialization/types/ChapterContentBlockInputModelSubType.js +41 -0
  581. package/dist/serialization/types/ClientEvent.d.ts +1 -1
  582. package/dist/serialization/types/ClientEvent.js +1 -0
  583. package/dist/serialization/types/ConversationConfigClientOverrideConfigInput.d.ts +2 -2
  584. package/dist/serialization/types/ConversationConfigClientOverrideConfigInput.js +2 -2
  585. package/dist/serialization/types/ConversationConfigClientOverrideConfigOutput.d.ts +2 -2
  586. package/dist/serialization/types/ConversationConfigClientOverrideConfigOutput.js +2 -2
  587. package/dist/serialization/types/ConversationConfigClientOverrideInput.d.ts +2 -2
  588. package/dist/serialization/types/ConversationConfigClientOverrideInput.js +2 -2
  589. package/dist/serialization/types/ConversationConfigClientOverrideOutput.d.ts +2 -2
  590. package/dist/serialization/types/ConversationConfigClientOverrideOutput.js +2 -2
  591. package/dist/serialization/types/ConversationHistoryMetadataCommonModel.d.ts +3 -0
  592. package/dist/serialization/types/ConversationHistoryMetadataCommonModel.js +3 -0
  593. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +2 -2
  594. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +2 -2
  595. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +2 -2
  596. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +2 -2
  597. package/dist/serialization/types/ConversationTokenDbModel.d.ts +1 -0
  598. package/dist/serialization/types/ConversationTokenDbModel.js +1 -0
  599. package/dist/serialization/types/ConversationalConfig.d.ts +2 -2
  600. package/dist/serialization/types/ConversationalConfig.js +2 -2
  601. package/dist/serialization/types/CustomLlm.d.ts +2 -0
  602. package/dist/serialization/types/CustomLlm.js +2 -0
  603. package/dist/serialization/types/CustomLlmRequestHeadersValue.d.ts +12 -0
  604. package/dist/serialization/types/CustomLlmRequestHeadersValue.js +43 -0
  605. package/dist/serialization/types/DialogueInput.d.ts +13 -0
  606. package/dist/serialization/types/DialogueInput.js +44 -0
  607. package/dist/serialization/types/DialogueInputResponseModel.d.ts +14 -0
  608. package/dist/serialization/types/DialogueInputResponseModel.js +45 -0
  609. package/dist/serialization/types/EmbedVariant.d.ts +1 -1
  610. package/dist/serialization/types/EmbedVariant.js +1 -1
  611. package/dist/serialization/types/FeatureStatusCommonModel.d.ts +13 -0
  612. package/dist/serialization/types/FeatureStatusCommonModel.js +44 -0
  613. package/dist/serialization/types/FeaturesUsageCommonModel.d.ts +18 -0
  614. package/dist/serialization/types/FeaturesUsageCommonModel.js +49 -0
  615. package/dist/serialization/types/GetAgentEmbedResponseModel.d.ts +2 -2
  616. package/dist/serialization/types/GetAgentEmbedResponseModel.js +2 -2
  617. package/dist/serialization/types/GetAgentKnowledgebaseSizeResponseModel.d.ts +12 -0
  618. package/dist/serialization/types/GetAgentKnowledgebaseSizeResponseModel.js +43 -0
  619. package/dist/serialization/types/GetKnowledgeBaseFileResponseModel.d.ts +2 -1
  620. package/dist/serialization/types/GetKnowledgeBaseFileResponseModel.js +2 -1
  621. package/dist/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +2 -1
  622. package/dist/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.js +2 -1
  623. package/dist/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +2 -1
  624. package/dist/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.js +2 -1
  625. package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +2 -1
  626. package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.js +2 -1
  627. package/dist/serialization/types/GetKnowledgeBaseTextResponseModel.d.ts +2 -1
  628. package/dist/serialization/types/GetKnowledgeBaseTextResponseModel.js +2 -1
  629. package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +2 -1
  630. package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.js +2 -1
  631. package/dist/serialization/types/GetSharedSoundGenerationsResponseModel.d.ts +15 -0
  632. package/dist/serialization/types/GetSharedSoundGenerationsResponseModel.js +46 -0
  633. package/dist/serialization/types/Llm.d.ts +1 -1
  634. package/dist/serialization/types/Llm.js +27 -2
  635. package/dist/serialization/types/LlmUsageCalculatorLlmResponseModel.d.ts +14 -0
  636. package/dist/serialization/types/LlmUsageCalculatorLlmResponseModel.js +45 -0
  637. package/dist/serialization/types/LlmUsageCalculatorResponseModel.d.ts +13 -0
  638. package/dist/serialization/types/LlmUsageCalculatorResponseModel.js +44 -0
  639. package/dist/serialization/types/McpApprovalRequiredModel.d.ts +10 -0
  640. package/{serialization/types/ExtendedSubscriptionResponseModelStatus.js → dist/serialization/types/McpApprovalRequiredModel.js} +5 -10
  641. package/dist/serialization/types/McpToolConfigInput.d.ts +2 -0
  642. package/dist/serialization/types/McpToolConfigInput.js +2 -0
  643. package/dist/serialization/types/McpToolConfigOutput.d.ts +2 -0
  644. package/dist/serialization/types/McpToolConfigOutput.js +2 -0
  645. package/dist/serialization/types/ModelSettingsResponseModel.d.ts +13 -0
  646. package/dist/serialization/types/ModelSettingsResponseModel.js +44 -0
  647. package/dist/serialization/types/NativeMcpToolConfigInput.d.ts +20 -0
  648. package/dist/serialization/types/NativeMcpToolConfigInput.js +52 -0
  649. package/dist/serialization/types/NativeMcpToolConfigOutput.d.ts +20 -0
  650. package/dist/serialization/types/NativeMcpToolConfigOutput.js +52 -0
  651. package/dist/serialization/types/PromptAgent.d.ts +1 -0
  652. package/dist/serialization/types/PromptAgent.js +1 -0
  653. package/dist/serialization/types/PromptAgentDbModel.d.ts +1 -0
  654. package/dist/serialization/types/PromptAgentDbModel.js +1 -0
  655. package/dist/serialization/types/PromptAgentDbModelToolsItem.d.ts +5 -1
  656. package/dist/serialization/types/PromptAgentDbModelToolsItem.js +2 -0
  657. package/dist/serialization/types/PromptAgentInputToolsItem.d.ts +5 -1
  658. package/dist/serialization/types/PromptAgentInputToolsItem.js +2 -0
  659. package/dist/serialization/types/PromptAgentOutputToolsItem.d.ts +5 -1
  660. package/dist/serialization/types/PromptAgentOutputToolsItem.js +2 -0
  661. package/dist/serialization/types/PronunciationDictionaryLocator.d.ts +1 -1
  662. package/dist/serialization/types/PronunciationDictionaryLocator.js +1 -1
  663. package/dist/serialization/types/RagConfig.d.ts +1 -0
  664. package/dist/serialization/types/RagConfig.js +1 -0
  665. package/dist/serialization/types/RagDocumentIndexResponseModel.d.ts +19 -0
  666. package/dist/serialization/types/RagDocumentIndexResponseModel.js +50 -0
  667. package/dist/serialization/types/RagDocumentIndexUsage.d.ts +12 -0
  668. package/dist/serialization/types/RagDocumentIndexUsage.js +43 -0
  669. package/dist/serialization/types/RagDocumentIndexesResponseModel.d.ts +13 -0
  670. package/{serialization/types/RagIndexResponseModel.js → dist/serialization/types/RagDocumentIndexesResponseModel.js} +4 -5
  671. package/dist/serialization/types/RagIndexOverviewEmbeddingModelResponseModel.d.ts +14 -0
  672. package/dist/serialization/types/RagIndexOverviewEmbeddingModelResponseModel.js +45 -0
  673. package/dist/serialization/types/RagIndexOverviewResponseModel.d.ts +15 -0
  674. package/dist/serialization/types/RagIndexOverviewResponseModel.js +46 -0
  675. package/dist/serialization/types/RagIndexStatus.d.ts +1 -1
  676. package/dist/serialization/types/RagIndexStatus.js +8 -1
  677. package/dist/serialization/types/SharedSoundGenerationResponseModel.d.ts +23 -0
  678. package/dist/serialization/types/SharedSoundGenerationResponseModel.js +54 -0
  679. package/dist/serialization/types/SkipTurnToolConfig.d.ts +11 -0
  680. package/dist/serialization/types/SkipTurnToolConfig.js +41 -0
  681. package/dist/serialization/types/SpeechHistoryItemResponse.d.ts +5 -3
  682. package/dist/serialization/types/SpeechHistoryItemResponse.js +5 -3
  683. package/dist/serialization/types/Subscription.d.ts +2 -2
  684. package/dist/serialization/types/Subscription.js +2 -2
  685. package/dist/serialization/types/SubscriptionResponse.d.ts +2 -2
  686. package/dist/serialization/types/SubscriptionResponse.js +2 -2
  687. package/dist/serialization/types/SubscriptionStatusType.d.ts +10 -0
  688. package/dist/serialization/types/{SubscriptionStatus.js → SubscriptionStatusType.js} +3 -2
  689. package/dist/serialization/types/SupportedVoice.d.ts +17 -0
  690. package/dist/serialization/types/SupportedVoice.js +48 -0
  691. package/dist/serialization/types/SystemToolConfigInputParams.d.ts +5 -1
  692. package/dist/serialization/types/SystemToolConfigInputParams.js +2 -0
  693. package/dist/serialization/types/SystemToolConfigOutputParams.d.ts +5 -1
  694. package/dist/serialization/types/SystemToolConfigOutputParams.js +2 -0
  695. package/dist/serialization/types/{TtsConversationalConfig.d.ts → TtsConversationalConfigInput.d.ts} +4 -2
  696. package/{serialization/types/TtsConversationalConfig.js → dist/serialization/types/TtsConversationalConfigInput.js} +4 -2
  697. package/dist/serialization/types/TtsConversationalConfigOutput.d.ts +25 -0
  698. package/dist/serialization/types/TtsConversationalConfigOutput.js +56 -0
  699. package/dist/serialization/types/TtsModelFamily.d.ts +10 -0
  700. package/dist/serialization/types/TtsModelFamily.js +41 -0
  701. package/dist/serialization/types/VoiceSettings.d.ts +1 -1
  702. package/dist/serialization/types/VoiceSettings.js +1 -1
  703. package/dist/serialization/types/WebsocketTtsClientMessageMulti.d.ts +1 -1
  704. package/dist/serialization/types/WebsocketTtsClientMessageMulti.js +1 -1
  705. package/dist/serialization/types/WidgetConfig.d.ts +11 -2
  706. package/dist/serialization/types/WidgetConfig.js +11 -2
  707. package/dist/serialization/types/{WidgetConfigAvatar.d.ts → WidgetConfigInputAvatar.d.ts} +3 -3
  708. package/dist/serialization/types/{WidgetConfigAvatar.js → WidgetConfigInputAvatar.js} +2 -2
  709. package/dist/serialization/types/WidgetConfigOutputAvatar.d.ts +22 -0
  710. package/dist/serialization/types/WidgetConfigOutputAvatar.js +53 -0
  711. package/dist/serialization/types/{WidgetConfigResponseModel.d.ts → WidgetConfigResponse.d.ts} +13 -2
  712. package/dist/serialization/types/{WidgetConfigResponseModel.js → WidgetConfigResponse.js} +13 -2
  713. package/dist/serialization/types/WidgetLanguagePreset.d.ts +13 -0
  714. package/dist/serialization/types/WidgetLanguagePreset.js +44 -0
  715. package/dist/serialization/types/WidgetLanguagePresetResponse.d.ts +14 -0
  716. package/dist/serialization/types/WidgetLanguagePresetResponse.js +45 -0
  717. package/dist/serialization/types/WidgetPlacement.d.ts +10 -0
  718. package/dist/serialization/types/WidgetPlacement.js +41 -0
  719. package/dist/serialization/types/WidgetTextContents.d.ts +32 -0
  720. package/dist/serialization/types/WidgetTextContents.js +63 -0
  721. package/dist/serialization/types/index.d.ts +33 -6
  722. package/dist/serialization/types/index.js +33 -6
  723. package/dist/version.d.ts +1 -1
  724. package/dist/version.js +1 -1
  725. package/package.json +1 -1
  726. package/reference.md +883 -203
  727. package/serialization/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +4 -2
  728. package/serialization/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.js +4 -2
  729. package/serialization/resources/conversationalAi/resources/agents/index.d.ts +1 -0
  730. package/serialization/resources/conversationalAi/resources/agents/index.js +1 -0
  731. package/serialization/resources/conversationalAi/resources/agents/resources/index.d.ts +2 -0
  732. package/serialization/resources/conversationalAi/resources/agents/resources/index.js +41 -0
  733. package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.d.ts +1 -0
  734. package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.js +17 -0
  735. package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.d.ts +14 -0
  736. package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.js +45 -0
  737. package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.d.ts +1 -0
  738. package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.js +5 -0
  739. package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/index.d.ts +1 -0
  740. package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/index.js +17 -0
  741. package/serialization/resources/conversationalAi/resources/index.d.ts +2 -0
  742. package/serialization/resources/conversationalAi/resources/index.js +3 -1
  743. package/serialization/resources/conversationalAi/resources/llmUsage/client/index.d.ts +1 -0
  744. package/serialization/resources/conversationalAi/resources/llmUsage/client/index.js +17 -0
  745. package/serialization/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.d.ts +14 -0
  746. package/serialization/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.js +45 -0
  747. package/serialization/resources/conversationalAi/resources/llmUsage/client/requests/index.d.ts +1 -0
  748. package/serialization/resources/conversationalAi/resources/llmUsage/client/requests/index.js +5 -0
  749. package/serialization/resources/conversationalAi/resources/llmUsage/index.d.ts +1 -0
  750. package/serialization/resources/conversationalAi/resources/llmUsage/index.js +17 -0
  751. package/serialization/resources/index.d.ts +3 -0
  752. package/serialization/resources/index.js +4 -1
  753. package/serialization/resources/textToDialogue/client/index.d.ts +1 -0
  754. package/serialization/resources/textToDialogue/client/index.js +17 -0
  755. package/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.d.ts +19 -0
  756. package/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.js +50 -0
  757. package/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.d.ts +19 -0
  758. package/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.js +50 -0
  759. package/serialization/resources/textToDialogue/client/requests/index.d.ts +2 -0
  760. package/serialization/resources/textToDialogue/client/requests/index.js +7 -0
  761. package/serialization/resources/textToDialogue/index.d.ts +2 -0
  762. package/serialization/resources/textToDialogue/index.js +18 -0
  763. package/serialization/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.d.ts +10 -0
  764. package/serialization/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.js +61 -0
  765. package/serialization/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.d.ts +10 -0
  766. package/serialization/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.js +61 -0
  767. package/serialization/resources/textToDialogue/types/index.d.ts +2 -0
  768. package/serialization/resources/textToDialogue/types/index.js +18 -0
  769. package/serialization/types/AddKnowledgeBaseResponseModel.d.ts +0 -1
  770. package/serialization/types/AddKnowledgeBaseResponseModel.js +0 -1
  771. package/serialization/types/AgentConfigOverride.d.ts +1 -1
  772. package/serialization/types/AgentConfigOverride.js +1 -1
  773. package/serialization/types/AgentConfigOverrideConfig.d.ts +1 -1
  774. package/serialization/types/AgentConfigOverrideConfig.js +1 -1
  775. package/serialization/types/AudioOutputMulti.d.ts +1 -1
  776. package/serialization/types/AudioOutputMulti.js +1 -1
  777. package/serialization/types/AuthorizationMethod.d.ts +1 -1
  778. package/serialization/types/AuthorizationMethod.js +1 -0
  779. package/serialization/types/ChapterContentBlockInputModel.d.ts +2 -0
  780. package/serialization/types/ChapterContentBlockInputModel.js +2 -0
  781. package/serialization/types/ChapterContentBlockInputModelSubType.d.ts +10 -0
  782. package/serialization/types/ChapterContentBlockInputModelSubType.js +41 -0
  783. package/serialization/types/ClientEvent.d.ts +1 -1
  784. package/serialization/types/ClientEvent.js +1 -0
  785. package/serialization/types/ConversationConfigClientOverrideConfigInput.d.ts +2 -2
  786. package/serialization/types/ConversationConfigClientOverrideConfigInput.js +2 -2
  787. package/serialization/types/ConversationConfigClientOverrideConfigOutput.d.ts +2 -2
  788. package/serialization/types/ConversationConfigClientOverrideConfigOutput.js +2 -2
  789. package/serialization/types/ConversationConfigClientOverrideInput.d.ts +2 -2
  790. package/serialization/types/ConversationConfigClientOverrideInput.js +2 -2
  791. package/serialization/types/ConversationConfigClientOverrideOutput.d.ts +2 -2
  792. package/serialization/types/ConversationConfigClientOverrideOutput.js +2 -2
  793. package/serialization/types/ConversationHistoryMetadataCommonModel.d.ts +3 -0
  794. package/serialization/types/ConversationHistoryMetadataCommonModel.js +3 -0
  795. package/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +2 -2
  796. package/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +2 -2
  797. package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +2 -2
  798. package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +2 -2
  799. package/serialization/types/ConversationTokenDbModel.d.ts +1 -0
  800. package/serialization/types/ConversationTokenDbModel.js +1 -0
  801. package/serialization/types/ConversationalConfig.d.ts +2 -2
  802. package/serialization/types/ConversationalConfig.js +2 -2
  803. package/serialization/types/CustomLlm.d.ts +2 -0
  804. package/serialization/types/CustomLlm.js +2 -0
  805. package/serialization/types/CustomLlmRequestHeadersValue.d.ts +12 -0
  806. package/serialization/types/CustomLlmRequestHeadersValue.js +43 -0
  807. package/serialization/types/DialogueInput.d.ts +13 -0
  808. package/serialization/types/DialogueInput.js +44 -0
  809. package/serialization/types/DialogueInputResponseModel.d.ts +14 -0
  810. package/serialization/types/DialogueInputResponseModel.js +45 -0
  811. package/serialization/types/EmbedVariant.d.ts +1 -1
  812. package/serialization/types/EmbedVariant.js +1 -1
  813. package/serialization/types/FeatureStatusCommonModel.d.ts +13 -0
  814. package/serialization/types/FeatureStatusCommonModel.js +44 -0
  815. package/serialization/types/FeaturesUsageCommonModel.d.ts +18 -0
  816. package/serialization/types/FeaturesUsageCommonModel.js +49 -0
  817. package/serialization/types/GetAgentEmbedResponseModel.d.ts +2 -2
  818. package/serialization/types/GetAgentEmbedResponseModel.js +2 -2
  819. package/serialization/types/GetAgentKnowledgebaseSizeResponseModel.d.ts +12 -0
  820. package/serialization/types/GetAgentKnowledgebaseSizeResponseModel.js +43 -0
  821. package/serialization/types/GetKnowledgeBaseFileResponseModel.d.ts +2 -1
  822. package/serialization/types/GetKnowledgeBaseFileResponseModel.js +2 -1
  823. package/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +2 -1
  824. package/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.js +2 -1
  825. package/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +2 -1
  826. package/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.js +2 -1
  827. package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +2 -1
  828. package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.js +2 -1
  829. package/serialization/types/GetKnowledgeBaseTextResponseModel.d.ts +2 -1
  830. package/serialization/types/GetKnowledgeBaseTextResponseModel.js +2 -1
  831. package/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +2 -1
  832. package/serialization/types/GetKnowledgeBaseUrlResponseModel.js +2 -1
  833. package/serialization/types/GetSharedSoundGenerationsResponseModel.d.ts +15 -0
  834. package/serialization/types/GetSharedSoundGenerationsResponseModel.js +46 -0
  835. package/serialization/types/Llm.d.ts +1 -1
  836. package/serialization/types/Llm.js +27 -2
  837. package/serialization/types/LlmUsageCalculatorLlmResponseModel.d.ts +14 -0
  838. package/serialization/types/LlmUsageCalculatorLlmResponseModel.js +45 -0
  839. package/serialization/types/LlmUsageCalculatorResponseModel.d.ts +13 -0
  840. package/serialization/types/LlmUsageCalculatorResponseModel.js +44 -0
  841. package/serialization/types/McpApprovalRequiredModel.d.ts +10 -0
  842. package/{dist/serialization/types/ExtendedSubscriptionResponseModelStatus.js → serialization/types/McpApprovalRequiredModel.js} +5 -10
  843. package/serialization/types/McpToolConfigInput.d.ts +2 -0
  844. package/serialization/types/McpToolConfigInput.js +2 -0
  845. package/serialization/types/McpToolConfigOutput.d.ts +2 -0
  846. package/serialization/types/McpToolConfigOutput.js +2 -0
  847. package/serialization/types/ModelSettingsResponseModel.d.ts +13 -0
  848. package/serialization/types/ModelSettingsResponseModel.js +44 -0
  849. package/serialization/types/NativeMcpToolConfigInput.d.ts +20 -0
  850. package/serialization/types/NativeMcpToolConfigInput.js +52 -0
  851. package/serialization/types/NativeMcpToolConfigOutput.d.ts +20 -0
  852. package/serialization/types/NativeMcpToolConfigOutput.js +52 -0
  853. package/serialization/types/PromptAgent.d.ts +1 -0
  854. package/serialization/types/PromptAgent.js +1 -0
  855. package/serialization/types/PromptAgentDbModel.d.ts +1 -0
  856. package/serialization/types/PromptAgentDbModel.js +1 -0
  857. package/serialization/types/PromptAgentDbModelToolsItem.d.ts +5 -1
  858. package/serialization/types/PromptAgentDbModelToolsItem.js +2 -0
  859. package/serialization/types/PromptAgentInputToolsItem.d.ts +5 -1
  860. package/serialization/types/PromptAgentInputToolsItem.js +2 -0
  861. package/serialization/types/PromptAgentOutputToolsItem.d.ts +5 -1
  862. package/serialization/types/PromptAgentOutputToolsItem.js +2 -0
  863. package/serialization/types/PronunciationDictionaryLocator.d.ts +1 -1
  864. package/serialization/types/PronunciationDictionaryLocator.js +1 -1
  865. package/serialization/types/RagConfig.d.ts +1 -0
  866. package/serialization/types/RagConfig.js +1 -0
  867. package/serialization/types/RagDocumentIndexResponseModel.d.ts +19 -0
  868. package/serialization/types/RagDocumentIndexResponseModel.js +50 -0
  869. package/serialization/types/RagDocumentIndexUsage.d.ts +12 -0
  870. package/serialization/types/RagDocumentIndexUsage.js +43 -0
  871. package/serialization/types/RagDocumentIndexesResponseModel.d.ts +13 -0
  872. package/{dist/serialization/types/RagIndexResponseModel.js → serialization/types/RagDocumentIndexesResponseModel.js} +4 -5
  873. package/serialization/types/RagIndexOverviewEmbeddingModelResponseModel.d.ts +14 -0
  874. package/serialization/types/RagIndexOverviewEmbeddingModelResponseModel.js +45 -0
  875. package/serialization/types/RagIndexOverviewResponseModel.d.ts +15 -0
  876. package/serialization/types/RagIndexOverviewResponseModel.js +46 -0
  877. package/serialization/types/RagIndexStatus.d.ts +1 -1
  878. package/serialization/types/RagIndexStatus.js +8 -1
  879. package/serialization/types/SharedSoundGenerationResponseModel.d.ts +23 -0
  880. package/serialization/types/SharedSoundGenerationResponseModel.js +54 -0
  881. package/serialization/types/SkipTurnToolConfig.d.ts +11 -0
  882. package/serialization/types/SkipTurnToolConfig.js +41 -0
  883. package/serialization/types/SpeechHistoryItemResponse.d.ts +5 -3
  884. package/serialization/types/SpeechHistoryItemResponse.js +5 -3
  885. package/serialization/types/Subscription.d.ts +2 -2
  886. package/serialization/types/Subscription.js +2 -2
  887. package/serialization/types/SubscriptionResponse.d.ts +2 -2
  888. package/serialization/types/SubscriptionResponse.js +2 -2
  889. package/serialization/types/SubscriptionStatusType.d.ts +10 -0
  890. package/serialization/types/{SubscriptionStatus.js → SubscriptionStatusType.js} +3 -2
  891. package/serialization/types/SupportedVoice.d.ts +17 -0
  892. package/serialization/types/SupportedVoice.js +48 -0
  893. package/serialization/types/SystemToolConfigInputParams.d.ts +5 -1
  894. package/serialization/types/SystemToolConfigInputParams.js +2 -0
  895. package/serialization/types/SystemToolConfigOutputParams.d.ts +5 -1
  896. package/serialization/types/SystemToolConfigOutputParams.js +2 -0
  897. package/serialization/types/{TtsConversationalConfig.d.ts → TtsConversationalConfigInput.d.ts} +4 -2
  898. package/{dist/serialization/types/TtsConversationalConfig.js → serialization/types/TtsConversationalConfigInput.js} +4 -2
  899. package/serialization/types/TtsConversationalConfigOutput.d.ts +25 -0
  900. package/serialization/types/TtsConversationalConfigOutput.js +56 -0
  901. package/serialization/types/TtsModelFamily.d.ts +10 -0
  902. package/serialization/types/TtsModelFamily.js +41 -0
  903. package/serialization/types/VoiceSettings.d.ts +1 -1
  904. package/serialization/types/VoiceSettings.js +1 -1
  905. package/serialization/types/WebsocketTtsClientMessageMulti.d.ts +1 -1
  906. package/serialization/types/WebsocketTtsClientMessageMulti.js +1 -1
  907. package/serialization/types/WidgetConfig.d.ts +11 -2
  908. package/serialization/types/WidgetConfig.js +11 -2
  909. package/serialization/types/{WidgetConfigAvatar.d.ts → WidgetConfigInputAvatar.d.ts} +3 -3
  910. package/serialization/types/{WidgetConfigAvatar.js → WidgetConfigInputAvatar.js} +2 -2
  911. package/serialization/types/WidgetConfigOutputAvatar.d.ts +22 -0
  912. package/serialization/types/WidgetConfigOutputAvatar.js +53 -0
  913. package/serialization/types/{WidgetConfigResponseModel.d.ts → WidgetConfigResponse.d.ts} +13 -2
  914. package/serialization/types/{WidgetConfigResponseModel.js → WidgetConfigResponse.js} +13 -2
  915. package/serialization/types/WidgetLanguagePreset.d.ts +13 -0
  916. package/serialization/types/WidgetLanguagePreset.js +44 -0
  917. package/serialization/types/WidgetLanguagePresetResponse.d.ts +14 -0
  918. package/serialization/types/WidgetLanguagePresetResponse.js +45 -0
  919. package/serialization/types/WidgetPlacement.d.ts +10 -0
  920. package/serialization/types/WidgetPlacement.js +41 -0
  921. package/serialization/types/WidgetTextContents.d.ts +32 -0
  922. package/serialization/types/WidgetTextContents.js +63 -0
  923. package/serialization/types/index.d.ts +33 -6
  924. package/serialization/types/index.js +33 -6
  925. package/version.d.ts +1 -1
  926. package/version.js +1 -1
  927. package/api/types/ExtendedSubscriptionResponseModelStatus.d.ts +0 -17
  928. package/api/types/SubscriptionStatus.js +0 -16
  929. package/dist/api/types/ExtendedSubscriptionResponseModelStatus.d.ts +0 -17
  930. package/dist/api/types/SubscriptionStatus.js +0 -16
  931. package/dist/serialization/types/ExtendedSubscriptionResponseModelStatus.d.ts +0 -10
  932. package/dist/serialization/types/RagIndexResponseModel.d.ts +0 -14
  933. package/dist/serialization/types/SubscriptionStatus.d.ts +0 -10
  934. package/serialization/types/ExtendedSubscriptionResponseModelStatus.d.ts +0 -10
  935. package/serialization/types/RagIndexResponseModel.d.ts +0 -14
  936. package/serialization/types/SubscriptionStatus.d.ts +0 -10
  937. /package/api/{types/RagIndexResponseModel.js → resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.js} +0 -0
  938. /package/api/{types/TtsConversationalConfig.js → resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsDeleteRequest.js} +0 -0
  939. /package/api/{types/WidgetConfigAvatar.js → resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.js} +0 -0
  940. /package/api/{types/WidgetConfigResponseModel.js → resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.js} +0 -0
  941. /package/{dist/api/types/RagIndexResponseModel.js → api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.js} +0 -0
  942. /package/{dist/api/types/TtsConversationalConfig.js → api/types/CustomLlmRequestHeadersValue.js} +0 -0
  943. /package/{dist/api/types/WidgetConfigAvatar.js → api/types/DialogueInput.js} +0 -0
  944. /package/{dist/api/types/WidgetConfigResponseModel.js → api/types/DialogueInputResponseModel.js} +0 -0
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ChapterContentBlockInputModelSubType = void 0;
7
+ exports.ChapterContentBlockInputModelSubType = {
8
+ P: "p",
9
+ H1: "h1",
10
+ H2: "h2",
11
+ H3: "h3",
12
+ };
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export type ClientEvent = "conversation_initiation_metadata" | "asr_initiation_metadata" | "ping" | "audio" | "interruption" | "user_transcript" | "agent_response" | "agent_response_correction" | "client_tool_call" | "vad_score" | "internal_turn_probability" | "internal_tentative_agent_response";
4
+ export type ClientEvent = "conversation_initiation_metadata" | "asr_initiation_metadata" | "ping" | "audio" | "interruption" | "user_transcript" | "agent_response" | "agent_response_correction" | "client_tool_call" | "vad_score" | "internal_turn_probability" | "internal_tentative_agent_response" | "internal_native_mcp_tool_call";
5
5
  export declare const ClientEvent: {
6
6
  readonly ConversationInitiationMetadata: "conversation_initiation_metadata";
7
7
  readonly AsrInitiationMetadata: "asr_initiation_metadata";
@@ -15,4 +15,5 @@ export declare const ClientEvent: {
15
15
  readonly VadScore: "vad_score";
16
16
  readonly InternalTurnProbability: "internal_turn_probability";
17
17
  readonly InternalTentativeAgentResponse: "internal_tentative_agent_response";
18
+ readonly InternalNativeMcpToolCall: "internal_native_mcp_tool_call";
18
19
  };
@@ -17,4 +17,5 @@ exports.ClientEvent = {
17
17
  VadScore: "vad_score",
18
18
  InternalTurnProbability: "internal_turn_probability",
19
19
  InternalTentativeAgentResponse: "internal_tentative_agent_response",
20
+ InternalNativeMcpToolCall: "internal_native_mcp_tool_call",
20
21
  };
@@ -3,10 +3,10 @@
3
3
  */
4
4
  import * as ElevenLabs from "../index";
5
5
  export interface ConversationConfigClientOverrideConfigInput {
6
- /** Overrides for the agent configuration */
7
- agent?: ElevenLabs.AgentConfigOverrideConfig;
8
- /** Overrides for the TTS configuration */
6
+ /** Configures overrides for nested fields. */
9
7
  tts?: ElevenLabs.TtsConversationalConfigOverrideConfig;
10
- /** Overrides for the conversation configuration */
8
+ /** Configures overrides for nested fields. */
11
9
  conversation?: ElevenLabs.ConversationConfigOverrideConfig;
10
+ /** Configures overrides for nested fields. */
11
+ agent?: ElevenLabs.AgentConfigOverrideConfig;
12
12
  }
@@ -3,10 +3,10 @@
3
3
  */
4
4
  import * as ElevenLabs from "../index";
5
5
  export interface ConversationConfigClientOverrideConfigOutput {
6
- /** Overrides for the agent configuration */
7
- agent?: ElevenLabs.AgentConfigOverrideConfig;
8
- /** Overrides for the TTS configuration */
6
+ /** Configures overrides for nested fields. */
9
7
  tts?: ElevenLabs.TtsConversationalConfigOverrideConfig;
10
- /** Overrides for the conversation configuration */
8
+ /** Configures overrides for nested fields. */
11
9
  conversation?: ElevenLabs.ConversationConfigOverrideConfig;
10
+ /** Configures overrides for nested fields. */
11
+ agent?: ElevenLabs.AgentConfigOverrideConfig;
12
12
  }
@@ -3,10 +3,10 @@
3
3
  */
4
4
  import * as ElevenLabs from "../index";
5
5
  export interface ConversationConfigClientOverrideInput {
6
- /** The overrides for the agent configuration */
7
- agent?: ElevenLabs.AgentConfigOverride;
8
- /** The overrides for the TTS configuration */
6
+ /** Configuration for conversational text to speech */
9
7
  tts?: ElevenLabs.TtsConversationalConfigOverride;
10
- /** The overrides for the conversation configuration */
8
+ /** Configuration for conversational events */
11
9
  conversation?: ElevenLabs.ConversationConfigOverride;
10
+ /** Agent specific configuration */
11
+ agent?: ElevenLabs.AgentConfigOverride;
12
12
  }
@@ -3,10 +3,10 @@
3
3
  */
4
4
  import * as ElevenLabs from "../index";
5
5
  export interface ConversationConfigClientOverrideOutput {
6
- /** The overrides for the agent configuration */
7
- agent?: ElevenLabs.AgentConfigOverride;
8
- /** The overrides for the TTS configuration */
6
+ /** Configuration for conversational text to speech */
9
7
  tts?: ElevenLabs.TtsConversationalConfigOverride;
10
- /** The overrides for the conversation configuration */
8
+ /** Configuration for conversational events */
11
9
  conversation?: ElevenLabs.ConversationConfigOverride;
10
+ /** Agent specific configuration */
11
+ agent?: ElevenLabs.AgentConfigOverride;
12
12
  }
@@ -2,5 +2,6 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  export interface ConversationConfigOverride {
5
+ /** If enabled audio will not be processed and only text will be used, use to avoid audio pricing. */
5
6
  textOnly?: boolean;
6
7
  }
@@ -2,6 +2,6 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  export interface ConversationConfigOverrideConfig {
5
- /** Whether to allow overriding the text only configuration */
5
+ /** Whether to allow overriding the text_only field. */
6
6
  textOnly?: boolean;
7
7
  }
@@ -17,4 +17,6 @@ export interface ConversationHistoryMetadataCommonModel {
17
17
  error?: ElevenLabs.ConversationHistoryErrorCommonModel;
18
18
  mainLanguage?: string;
19
19
  ragUsage?: ElevenLabs.ConversationHistoryRagUsageCommonModel;
20
+ textOnly?: boolean;
21
+ featuresUsage?: ElevenLabs.FeaturesUsageCommonModel;
20
22
  }
@@ -9,11 +9,11 @@ export interface ConversationHistoryTranscriptCommonModelInput {
9
9
  toolResults?: ElevenLabs.ConversationHistoryTranscriptToolResultCommonModel[];
10
10
  feedback?: ElevenLabs.UserFeedback;
11
11
  llmOverride?: string;
12
- sourceMedium?: ElevenLabs.ConversationHistoryTranscriptCommonModelInputSourceMedium;
13
12
  timeInCallSecs: number;
14
13
  conversationTurnMetrics?: ElevenLabs.ConversationTurnMetrics;
15
14
  ragRetrievalInfo?: ElevenLabs.RagRetrievalInfo;
16
15
  llmUsage?: ElevenLabs.LlmUsageInput;
17
16
  interrupted?: boolean;
18
17
  originalMessage?: string;
18
+ sourceMedium?: ElevenLabs.ConversationHistoryTranscriptCommonModelInputSourceMedium;
19
19
  }
@@ -9,11 +9,11 @@ export interface ConversationHistoryTranscriptCommonModelOutput {
9
9
  toolResults?: ElevenLabs.ConversationHistoryTranscriptToolResultCommonModel[];
10
10
  feedback?: ElevenLabs.UserFeedback;
11
11
  llmOverride?: string;
12
- sourceMedium?: ElevenLabs.ConversationHistoryTranscriptCommonModelOutputSourceMedium;
13
12
  timeInCallSecs: number;
14
13
  conversationTurnMetrics?: ElevenLabs.ConversationTurnMetrics;
15
14
  ragRetrievalInfo?: ElevenLabs.RagRetrievalInfo;
16
15
  llmUsage?: ElevenLabs.LlmUsageOutput;
17
16
  interrupted?: boolean;
18
17
  originalMessage?: string;
18
+ sourceMedium?: ElevenLabs.ConversationHistoryTranscriptCommonModelOutputSourceMedium;
19
19
  }
@@ -9,6 +9,8 @@ export interface ConversationTokenDbModel {
9
9
  conversationToken: string;
10
10
  /** The expiration time of the token in unix seconds */
11
11
  expirationTimeUnixSecs?: number;
12
+ /** The ID of the conversation */
13
+ conversationId?: string;
12
14
  /** The purpose of the token */
13
15
  purpose?: ElevenLabs.ConversationTokenPurpose;
14
16
  }
@@ -8,7 +8,7 @@ export interface ConversationalConfig {
8
8
  /** Configuration for turn detection */
9
9
  turn?: ElevenLabs.TurnConfig;
10
10
  /** Configuration for conversational text to speech */
11
- tts?: ElevenLabs.TtsConversationalConfig;
11
+ tts?: ElevenLabs.TtsConversationalConfigOutput;
12
12
  /** Configuration for conversational events */
13
13
  conversation?: ElevenLabs.ConversationConfig;
14
14
  /** Language presets for conversations */
@@ -9,4 +9,6 @@ export interface CustomLlm {
9
9
  modelId?: string;
10
10
  /** The API key for authentication */
11
11
  apiKey?: ElevenLabs.ConvAiSecretLocator;
12
+ /** Headers that should be included in the request */
13
+ requestHeaders?: Record<string, ElevenLabs.CustomLlmRequestHeadersValue>;
12
14
  }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as ElevenLabs from "../index";
5
+ export type CustomLlmRequestHeadersValue = string | ElevenLabs.ConvAiSecretLocator | ElevenLabs.ConvAiDynamicVariable;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface DialogueInput {
5
+ /** The text to be converted into speech. */
6
+ text: string;
7
+ /** The ID of the voice to be used for the generation. */
8
+ voiceId: string;
9
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface DialogueInputResponseModel {
5
+ /** The text of the dialogue input line. */
6
+ text: string;
7
+ /** The ID of the voice used for this dialogue input line. */
8
+ voiceId: string;
9
+ /** The name of the voice used for this dialogue input line. */
10
+ voiceName: string;
11
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,8 +1,9 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export type EmbedVariant = "compact" | "full" | "expandable";
4
+ export type EmbedVariant = "tiny" | "compact" | "full" | "expandable";
5
5
  export declare const EmbedVariant: {
6
+ readonly Tiny: "tiny";
6
7
  readonly Compact: "compact";
7
8
  readonly Full: "full";
8
9
  readonly Expandable: "expandable";
@@ -5,6 +5,7 @@
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.EmbedVariant = void 0;
7
7
  exports.EmbedVariant = {
8
+ Tiny: "tiny",
8
9
  Compact: "compact",
9
10
  Full: "full",
10
11
  Expandable: "expandable",
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface FeatureStatusCommonModel {
5
+ enabled?: boolean;
6
+ used?: boolean;
7
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as ElevenLabs from "../index";
5
+ export interface FeaturesUsageCommonModel {
6
+ languageDetection?: ElevenLabs.FeatureStatusCommonModel;
7
+ transferToAgent?: ElevenLabs.FeatureStatusCommonModel;
8
+ transferToNumber?: ElevenLabs.FeatureStatusCommonModel;
9
+ multivoice?: ElevenLabs.FeatureStatusCommonModel;
10
+ piiZrmWorkspace?: boolean;
11
+ piiZrmAgent?: boolean;
12
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -4,5 +4,5 @@
4
4
  import * as ElevenLabs from "../index";
5
5
  export interface GetAgentEmbedResponseModel {
6
6
  agentId: string;
7
- widgetConfig: ElevenLabs.WidgetConfigResponseModel;
7
+ widgetConfig: ElevenLabs.WidgetConfigResponse;
8
8
  }
@@ -0,0 +1,6 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface GetAgentKnowledgebaseSizeResponseModel {
5
+ numberOfPages: number;
6
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -6,7 +6,7 @@ export interface GetKnowledgeBaseFileResponseModel {
6
6
  id: string;
7
7
  name: string;
8
8
  metadata: ElevenLabs.KnowledgeBaseDocumentMetadataResponseModel;
9
- promptInjectable: boolean;
9
+ supportedUsages: ElevenLabs.DocumentUsageModeEnum[];
10
10
  accessInfo: ElevenLabs.ResourceAccessInfo;
11
11
  extractedInnerHtml: string;
12
12
  }
@@ -6,7 +6,7 @@ export interface GetKnowledgeBaseSummaryFileResponseModel {
6
6
  id: string;
7
7
  name: string;
8
8
  metadata: ElevenLabs.KnowledgeBaseDocumentMetadataResponseModel;
9
- promptInjectable: boolean;
9
+ supportedUsages: ElevenLabs.DocumentUsageModeEnum[];
10
10
  accessInfo: ElevenLabs.ResourceAccessInfo;
11
11
  dependentAgents: ElevenLabs.GetKnowledgeBaseSummaryFileResponseModelDependentAgentsItem[];
12
12
  }
@@ -6,7 +6,7 @@ export interface GetKnowledgeBaseSummaryTextResponseModel {
6
6
  id: string;
7
7
  name: string;
8
8
  metadata: ElevenLabs.KnowledgeBaseDocumentMetadataResponseModel;
9
- promptInjectable: boolean;
9
+ supportedUsages: ElevenLabs.DocumentUsageModeEnum[];
10
10
  accessInfo: ElevenLabs.ResourceAccessInfo;
11
11
  dependentAgents: ElevenLabs.GetKnowledgeBaseSummaryTextResponseModelDependentAgentsItem[];
12
12
  }
@@ -6,7 +6,7 @@ export interface GetKnowledgeBaseSummaryUrlResponseModel {
6
6
  id: string;
7
7
  name: string;
8
8
  metadata: ElevenLabs.KnowledgeBaseDocumentMetadataResponseModel;
9
- promptInjectable: boolean;
9
+ supportedUsages: ElevenLabs.DocumentUsageModeEnum[];
10
10
  accessInfo: ElevenLabs.ResourceAccessInfo;
11
11
  dependentAgents: ElevenLabs.GetKnowledgeBaseSummaryUrlResponseModelDependentAgentsItem[];
12
12
  url: string;
@@ -6,7 +6,7 @@ export interface GetKnowledgeBaseTextResponseModel {
6
6
  id: string;
7
7
  name: string;
8
8
  metadata: ElevenLabs.KnowledgeBaseDocumentMetadataResponseModel;
9
- promptInjectable: boolean;
9
+ supportedUsages: ElevenLabs.DocumentUsageModeEnum[];
10
10
  accessInfo: ElevenLabs.ResourceAccessInfo;
11
11
  extractedInnerHtml: string;
12
12
  }
@@ -6,7 +6,7 @@ export interface GetKnowledgeBaseUrlResponseModel {
6
6
  id: string;
7
7
  name: string;
8
8
  metadata: ElevenLabs.KnowledgeBaseDocumentMetadataResponseModel;
9
- promptInjectable: boolean;
9
+ supportedUsages: ElevenLabs.DocumentUsageModeEnum[];
10
10
  accessInfo: ElevenLabs.ResourceAccessInfo;
11
11
  extractedInnerHtml: string;
12
12
  url: string;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as ElevenLabs from "../index";
5
+ export interface GetSharedSoundGenerationsResponseModel {
6
+ sharedSoundGenerations: ElevenLabs.SharedSoundGenerationResponseModel[];
7
+ lastSortId?: string;
8
+ hasMore: boolean;
9
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export type Llm = "gpt-4o-mini" | "gpt-4o" | "gpt-4" | "gpt-4-turbo" | "gpt-4.1" | "gpt-4.1-mini" | "gpt-4.1-nano" | "gpt-3.5-turbo" | "gemini-1.5-pro" | "gemini-1.5-flash" | "gemini-2.0-flash-001" | "gemini-2.0-flash-lite" | "gemini-2.5-flash" | "gemini-1.0-pro" | "claude-3-7-sonnet" | "claude-3-5-sonnet" | "claude-3-5-sonnet-v1" | "claude-3-haiku" | "grok-beta" | "custom-llm";
4
+ export type Llm = "gpt-4o-mini" | "gpt-4o" | "gpt-4" | "gpt-4-turbo" | "gpt-4.1" | "gpt-4.1-mini" | "gpt-4.1-nano" | "gpt-3.5-turbo" | "gemini-1.5-pro" | "gemini-1.5-flash" | "gemini-2.0-flash" | "gemini-2.0-flash-lite" | "gemini-2.5-flash" | "claude-sonnet-4" | "claude-3-7-sonnet" | "claude-3-5-sonnet" | "claude-3-5-sonnet-v1" | "claude-3-haiku" | "grok-beta" | "custom-llm" | "gemini-2.5-flash-preview-05-20" | "gemini-2.5-flash-preview-04-17" | "gemini-2.0-flash-lite-001" | "gemini-2.0-flash-001" | "gemini-1.5-flash-002" | "gemini-1.5-flash-001" | "gemini-1.5-pro-002" | "gemini-1.5-pro-001" | "claude-sonnet-4@20250514" | "claude-3-7-sonnet@20250219" | "claude-3-5-sonnet@20240620" | "claude-3-5-sonnet-v2@20241022" | "claude-3-haiku@20240307" | "gpt-4.1-2025-04-14" | "gpt-4.1-mini-2025-04-14" | "gpt-4.1-nano-2025-04-14" | "gpt-4o-mini-2024-07-18" | "gpt-4o-2024-11-20" | "gpt-4o-2024-08-06" | "gpt-4o-2024-05-13" | "gpt-4-0613" | "gpt-4-0314" | "gpt-4-turbo-2024-04-09" | "gpt-3.5-turbo-0125" | "gpt-3.5-turbo-1106";
5
5
  export declare const Llm: {
6
6
  readonly Gpt4OMini: "gpt-4o-mini";
7
7
  readonly Gpt4O: "gpt-4o";
@@ -13,14 +13,39 @@ export declare const Llm: {
13
13
  readonly Gpt35Turbo: "gpt-3.5-turbo";
14
14
  readonly Gemini15Pro: "gemini-1.5-pro";
15
15
  readonly Gemini15Flash: "gemini-1.5-flash";
16
- readonly Gemini20Flash001: "gemini-2.0-flash-001";
16
+ readonly Gemini20Flash: "gemini-2.0-flash";
17
17
  readonly Gemini20FlashLite: "gemini-2.0-flash-lite";
18
18
  readonly Gemini25Flash: "gemini-2.5-flash";
19
- readonly Gemini10Pro: "gemini-1.0-pro";
19
+ readonly ClaudeSonnet4: "claude-sonnet-4";
20
20
  readonly Claude37Sonnet: "claude-3-7-sonnet";
21
21
  readonly Claude35Sonnet: "claude-3-5-sonnet";
22
22
  readonly Claude35SonnetV1: "claude-3-5-sonnet-v1";
23
23
  readonly Claude3Haiku: "claude-3-haiku";
24
24
  readonly GrokBeta: "grok-beta";
25
25
  readonly CustomLlm: "custom-llm";
26
+ readonly Gemini25FlashPreview0520: "gemini-2.5-flash-preview-05-20";
27
+ readonly Gemini25FlashPreview0417: "gemini-2.5-flash-preview-04-17";
28
+ readonly Gemini20FlashLite001: "gemini-2.0-flash-lite-001";
29
+ readonly Gemini20Flash001: "gemini-2.0-flash-001";
30
+ readonly Gemini15Flash002: "gemini-1.5-flash-002";
31
+ readonly Gemini15Flash001: "gemini-1.5-flash-001";
32
+ readonly Gemini15Pro002: "gemini-1.5-pro-002";
33
+ readonly Gemini15Pro001: "gemini-1.5-pro-001";
34
+ readonly ClaudeSonnet420250514: "claude-sonnet-4@20250514";
35
+ readonly Claude37Sonnet20250219: "claude-3-7-sonnet@20250219";
36
+ readonly Claude35Sonnet20240620: "claude-3-5-sonnet@20240620";
37
+ readonly Claude35SonnetV220241022: "claude-3-5-sonnet-v2@20241022";
38
+ readonly Claude3Haiku20240307: "claude-3-haiku@20240307";
39
+ readonly Gpt4120250414: "gpt-4.1-2025-04-14";
40
+ readonly Gpt41Mini20250414: "gpt-4.1-mini-2025-04-14";
41
+ readonly Gpt41Nano20250414: "gpt-4.1-nano-2025-04-14";
42
+ readonly Gpt4OMini20240718: "gpt-4o-mini-2024-07-18";
43
+ readonly Gpt4O20241120: "gpt-4o-2024-11-20";
44
+ readonly Gpt4O20240806: "gpt-4o-2024-08-06";
45
+ readonly Gpt4O20240513: "gpt-4o-2024-05-13";
46
+ readonly Gpt40613: "gpt-4-0613";
47
+ readonly Gpt40314: "gpt-4-0314";
48
+ readonly Gpt4Turbo20240409: "gpt-4-turbo-2024-04-09";
49
+ readonly Gpt35Turbo0125: "gpt-3.5-turbo-0125";
50
+ readonly Gpt35Turbo1106: "gpt-3.5-turbo-1106";
26
51
  };
@@ -15,14 +15,39 @@ exports.Llm = {
15
15
  Gpt35Turbo: "gpt-3.5-turbo",
16
16
  Gemini15Pro: "gemini-1.5-pro",
17
17
  Gemini15Flash: "gemini-1.5-flash",
18
- Gemini20Flash001: "gemini-2.0-flash-001",
18
+ Gemini20Flash: "gemini-2.0-flash",
19
19
  Gemini20FlashLite: "gemini-2.0-flash-lite",
20
20
  Gemini25Flash: "gemini-2.5-flash",
21
- Gemini10Pro: "gemini-1.0-pro",
21
+ ClaudeSonnet4: "claude-sonnet-4",
22
22
  Claude37Sonnet: "claude-3-7-sonnet",
23
23
  Claude35Sonnet: "claude-3-5-sonnet",
24
24
  Claude35SonnetV1: "claude-3-5-sonnet-v1",
25
25
  Claude3Haiku: "claude-3-haiku",
26
26
  GrokBeta: "grok-beta",
27
27
  CustomLlm: "custom-llm",
28
+ Gemini25FlashPreview0520: "gemini-2.5-flash-preview-05-20",
29
+ Gemini25FlashPreview0417: "gemini-2.5-flash-preview-04-17",
30
+ Gemini20FlashLite001: "gemini-2.0-flash-lite-001",
31
+ Gemini20Flash001: "gemini-2.0-flash-001",
32
+ Gemini15Flash002: "gemini-1.5-flash-002",
33
+ Gemini15Flash001: "gemini-1.5-flash-001",
34
+ Gemini15Pro002: "gemini-1.5-pro-002",
35
+ Gemini15Pro001: "gemini-1.5-pro-001",
36
+ ClaudeSonnet420250514: "claude-sonnet-4@20250514",
37
+ Claude37Sonnet20250219: "claude-3-7-sonnet@20250219",
38
+ Claude35Sonnet20240620: "claude-3-5-sonnet@20240620",
39
+ Claude35SonnetV220241022: "claude-3-5-sonnet-v2@20241022",
40
+ Claude3Haiku20240307: "claude-3-haiku@20240307",
41
+ Gpt4120250414: "gpt-4.1-2025-04-14",
42
+ Gpt41Mini20250414: "gpt-4.1-mini-2025-04-14",
43
+ Gpt41Nano20250414: "gpt-4.1-nano-2025-04-14",
44
+ Gpt4OMini20240718: "gpt-4o-mini-2024-07-18",
45
+ Gpt4O20241120: "gpt-4o-2024-11-20",
46
+ Gpt4O20240806: "gpt-4o-2024-08-06",
47
+ Gpt4O20240513: "gpt-4o-2024-05-13",
48
+ Gpt40613: "gpt-4-0613",
49
+ Gpt40314: "gpt-4-0314",
50
+ Gpt4Turbo20240409: "gpt-4-turbo-2024-04-09",
51
+ Gpt35Turbo0125: "gpt-3.5-turbo-0125",
52
+ Gpt35Turbo1106: "gpt-3.5-turbo-1106",
28
53
  };
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as ElevenLabs from "../index";
5
+ export interface LlmUsageCalculatorLlmResponseModel {
6
+ llm: ElevenLabs.Llm;
7
+ pricePerMinute: number;
8
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as ElevenLabs from "../index";
5
+ export interface LlmUsageCalculatorResponseModel {
6
+ llmPrices: ElevenLabs.LlmUsageCalculatorLlmResponseModel[];
7
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Defines the approval model for an MCP tool
6
+ */
7
+ export type McpApprovalRequiredModel = "user_approval_always_given" | "user_approval_never_given" | "user_approval_required_per_tool";
8
+ export declare const McpApprovalRequiredModel: {
9
+ readonly UserApprovalAlwaysGiven: "user_approval_always_given";
10
+ readonly UserApprovalNeverGiven: "user_approval_never_given";
11
+ readonly UserApprovalRequiredPerTool: "user_approval_required_per_tool";
12
+ };
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.McpApprovalRequiredModel = void 0;
7
+ exports.McpApprovalRequiredModel = {
8
+ UserApprovalAlwaysGiven: "user_approval_always_given",
9
+ UserApprovalNeverGiven: "user_approval_never_given",
10
+ UserApprovalRequiredPerTool: "user_approval_required_per_tool",
11
+ };
@@ -17,4 +17,6 @@ export interface McpToolConfigInput {
17
17
  mcpToolName: string;
18
18
  /** The id of the MCP server to call */
19
19
  mcpServerId: string;
20
+ /** If set to approved, the tool will be pre-approved and not require user approval before executing */
21
+ approvalMode?: ElevenLabs.McpApprovalRequiredModel;
20
22
  }
@@ -17,4 +17,6 @@ export interface McpToolConfigOutput {
17
17
  mcpToolName: string;
18
18
  /** The id of the MCP server to call */
19
19
  mcpServerId: string;
20
+ /** If set to approved, the tool will be pre-approved and not require user approval before executing */
21
+ approvalMode?: ElevenLabs.McpApprovalRequiredModel;
20
22
  }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface ModelSettingsResponseModel {
5
+ /** Determines how stable the voice is and the randomness between each generation. Lower values introduce broader emotional range for the voice. Higher values can result in a monotonous voice with limited emotion. */
6
+ stability?: number;
7
+ /** This setting boosts the similarity to the original speaker. Using this setting requires a slightly higher computational load, which in turn increases latency. */
8
+ useSpeakerBoost?: boolean;
9
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,22 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as ElevenLabs from "../index";
5
+ /**
6
+ * A Native MCP tool is a tool that is used to call a Native MCP server
7
+ */
8
+ export interface NativeMcpToolConfigInput {
9
+ id?: string;
10
+ name: string;
11
+ description: string;
12
+ /** The maximum time in seconds to wait for the tool call to complete. */
13
+ responseTimeoutSecs?: number;
14
+ /** Schema for any parameters the LLM needs to provide to the MCP tool. */
15
+ parameters?: ElevenLabs.ObjectJsonSchemaPropertyInput;
16
+ /** The name of the MCP tool to call */
17
+ mcpToolName: string;
18
+ /** The id of the MCP server to call */
19
+ mcpServerId: string;
20
+ /** If set to always accept, the tool will be pre-approved and not require user approval before executing */
21
+ approvalMode?: ElevenLabs.McpApprovalRequiredModel;
22
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });