@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
@@ -6,6 +6,8 @@ import * as core from "../../../../../../core";
6
6
  import * as ElevenLabs from "../../../../../index";
7
7
  import { Widget } from "../resources/widget/client/Client";
8
8
  import { Link } from "../resources/link/client/Client";
9
+ import { KnowledgeBase } from "../resources/knowledgeBase/client/Client";
10
+ import { LlmUsage } from "../resources/llmUsage/client/Client";
9
11
  export declare namespace Agents {
10
12
  interface Options {
11
13
  environment?: core.Supplier<environments.ElevenLabsEnvironment | environments.ElevenLabsEnvironmentUrls>;
@@ -31,9 +33,13 @@ export declare class Agents {
31
33
  protected readonly _options: Agents.Options;
32
34
  protected _widget: Widget | undefined;
33
35
  protected _link: Link | undefined;
36
+ protected _knowledgeBase: KnowledgeBase | undefined;
37
+ protected _llmUsage: LlmUsage | undefined;
34
38
  constructor(_options?: Agents.Options);
35
39
  get widget(): Widget;
36
40
  get link(): Link;
41
+ get knowledgeBase(): KnowledgeBase;
42
+ get llmUsage(): LlmUsage;
37
43
  /**
38
44
  * Create an agent from a config object
39
45
  *
@@ -57,6 +57,8 @@ const url_join_1 = __importDefault(require("url-join"));
57
57
  const errors = __importStar(require("../../../../../../errors/index"));
58
58
  const Client_1 = require("../resources/widget/client/Client");
59
59
  const Client_2 = require("../resources/link/client/Client");
60
+ const Client_3 = require("../resources/knowledgeBase/client/Client");
61
+ const Client_4 = require("../resources/llmUsage/client/Client");
60
62
  class Agents {
61
63
  constructor(_options = {}) {
62
64
  this._options = _options;
@@ -69,6 +71,14 @@ class Agents {
69
71
  var _a;
70
72
  return ((_a = this._link) !== null && _a !== void 0 ? _a : (this._link = new Client_2.Link(this._options)));
71
73
  }
74
+ get knowledgeBase() {
75
+ var _a;
76
+ return ((_a = this._knowledgeBase) !== null && _a !== void 0 ? _a : (this._knowledgeBase = new Client_3.KnowledgeBase(this._options)));
77
+ }
78
+ get llmUsage() {
79
+ var _a;
80
+ return ((_a = this._llmUsage) !== null && _a !== void 0 ? _a : (this._llmUsage = new Client_4.LlmUsage(this._options)));
81
+ }
72
82
  /**
73
83
  * Create an agent from a config object
74
84
  *
@@ -93,13 +103,13 @@ class Agents {
93
103
  method: "POST",
94
104
  headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
95
105
  ? yield core.Supplier.get(this._options.apiKey)
96
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.0.1", "User-Agent": "@elevenlabs/elevenlabs-js/v2.0.1", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
106
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.2.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.2.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
97
107
  contentType: "application/json",
98
108
  requestType: "json",
99
109
  body: serializers.conversationalAi.BodyCreateAgentV1ConvaiAgentsCreatePost.jsonOrThrow(request, {
100
110
  unrecognizedObjectKeys: "strip",
101
111
  }),
102
- timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
112
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
103
113
  maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
104
114
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
105
115
  });
@@ -170,10 +180,10 @@ class Agents {
170
180
  method: "GET",
171
181
  headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
172
182
  ? yield core.Supplier.get(this._options.apiKey)
173
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.0.1", "User-Agent": "@elevenlabs/elevenlabs-js/v2.0.1", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
183
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.2.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.2.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
174
184
  contentType: "application/json",
175
185
  requestType: "json",
176
- timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
186
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
177
187
  maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
178
188
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
179
189
  });
@@ -244,10 +254,10 @@ class Agents {
244
254
  method: "DELETE",
245
255
  headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
246
256
  ? yield core.Supplier.get(this._options.apiKey)
247
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.0.1", "User-Agent": "@elevenlabs/elevenlabs-js/v2.0.1", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
257
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.2.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.2.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
248
258
  contentType: "application/json",
249
259
  requestType: "json",
250
- timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
260
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
251
261
  maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
252
262
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
253
263
  });
@@ -311,13 +321,13 @@ class Agents {
311
321
  method: "PATCH",
312
322
  headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
313
323
  ? yield core.Supplier.get(this._options.apiKey)
314
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.0.1", "User-Agent": "@elevenlabs/elevenlabs-js/v2.0.1", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
324
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.2.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.2.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
315
325
  contentType: "application/json",
316
326
  requestType: "json",
317
327
  body: serializers.conversationalAi.UpdateAgentRequest.jsonOrThrow(request, {
318
328
  unrecognizedObjectKeys: "strip",
319
329
  }),
320
- timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
330
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
321
331
  maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
322
332
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
323
333
  });
@@ -399,11 +409,11 @@ class Agents {
399
409
  method: "GET",
400
410
  headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
401
411
  ? yield core.Supplier.get(this._options.apiKey)
402
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.0.1", "User-Agent": "@elevenlabs/elevenlabs-js/v2.0.1", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
412
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.2.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.2.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
403
413
  contentType: "application/json",
404
414
  queryParameters: _queryParams,
405
415
  requestType: "json",
406
- timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
416
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
407
417
  maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
408
418
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
409
419
  });
@@ -482,11 +492,11 @@ class Agents {
482
492
  method: "POST",
483
493
  headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
484
494
  ? yield core.Supplier.get(this._options.apiKey)
485
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.0.1", "User-Agent": "@elevenlabs/elevenlabs-js/v2.0.1", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
495
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.2.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.2.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
486
496
  contentType: "application/json",
487
497
  requestType: "json",
488
498
  body: serializers.conversationalAi.BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
489
- timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
499
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
490
500
  maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
491
501
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
492
502
  });
@@ -565,11 +575,11 @@ class Agents {
565
575
  method: "POST",
566
576
  headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
567
577
  ? yield core.Supplier.get(this._options.apiKey)
568
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.0.1", "User-Agent": "@elevenlabs/elevenlabs-js/v2.0.1", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
578
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.2.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.2.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
569
579
  contentType: "application/json",
570
580
  requestType: "json",
571
581
  body: serializers.conversationalAi.BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
572
- timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
582
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
573
583
  maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
574
584
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
575
585
  });
@@ -1,13 +1,16 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
+ import * as ElevenLabs from "../../../../../../index";
4
5
  /**
5
6
  * @example
6
7
  * {}
7
8
  */
8
9
  export interface UpdateAgentRequest {
9
- conversationConfig?: unknown;
10
- platformSettings?: unknown;
10
+ /** Conversation configuration for an agent */
11
+ conversationConfig?: ElevenLabs.ConversationalConfig;
12
+ /** Platform settings for the agent are all settings that aren't related to the conversation orchestration and content. */
13
+ platformSettings?: ElevenLabs.AgentPlatformSettingsRequestModel;
11
14
  /** A name to make the agent easier to find */
12
15
  name?: string;
13
16
  /** Tags to help classify and filter the agent */
@@ -1,3 +1,6 @@
1
1
  export * as widget from "./widget";
2
2
  export * as link from "./link";
3
+ export * as knowledgeBase from "./knowledgeBase";
4
+ export * as llmUsage from "./llmUsage";
3
5
  export * from "./widget/client/requests";
6
+ export * from "./llmUsage/client/requests";
@@ -36,7 +36,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
36
36
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.link = exports.widget = void 0;
39
+ exports.llmUsage = exports.knowledgeBase = exports.link = exports.widget = void 0;
40
40
  exports.widget = __importStar(require("./widget"));
41
41
  exports.link = __importStar(require("./link"));
42
+ exports.knowledgeBase = __importStar(require("./knowledgeBase"));
43
+ exports.llmUsage = __importStar(require("./llmUsage"));
42
44
  __exportStar(require("./widget/client/requests"), exports);
45
+ __exportStar(require("./llmUsage/client/requests"), exports);
@@ -0,0 +1,44 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as environments from "../../../../../../../../environments";
5
+ import * as core from "../../../../../../../../core";
6
+ import * as ElevenLabs from "../../../../../../../index";
7
+ export declare namespace KnowledgeBase {
8
+ interface Options {
9
+ environment?: core.Supplier<environments.ElevenLabsEnvironment | environments.ElevenLabsEnvironmentUrls>;
10
+ /** Specify a custom URL to connect the client to. */
11
+ baseUrl?: core.Supplier<string>;
12
+ /** Override the xi-api-key header */
13
+ apiKey?: core.Supplier<string | undefined>;
14
+ }
15
+ interface RequestOptions {
16
+ /** The maximum time to wait for a response in seconds. */
17
+ timeoutInSeconds?: number;
18
+ /** The number of times to retry the request. Defaults to 2. */
19
+ maxRetries?: number;
20
+ /** A hook to abort the request. */
21
+ abortSignal?: AbortSignal;
22
+ /** Override the xi-api-key header */
23
+ apiKey?: string | undefined;
24
+ /** Additional headers to include in the request. */
25
+ headers?: Record<string, string>;
26
+ }
27
+ }
28
+ export declare class KnowledgeBase {
29
+ protected readonly _options: KnowledgeBase.Options;
30
+ constructor(_options?: KnowledgeBase.Options);
31
+ /**
32
+ * Returns the number of pages in the agent's knowledge base.
33
+ *
34
+ * @param {string} agentId
35
+ * @param {KnowledgeBase.RequestOptions} requestOptions - Request-specific configuration.
36
+ *
37
+ * @throws {@link ElevenLabs.UnprocessableEntityError}
38
+ *
39
+ * @example
40
+ * await client.conversationalAi.agents.knowledgeBase.size("agent_id")
41
+ */
42
+ size(agentId: string, requestOptions?: KnowledgeBase.RequestOptions): core.HttpResponsePromise<ElevenLabs.GetAgentKnowledgebaseSizeResponseModel>;
43
+ private __size;
44
+ }
@@ -0,0 +1,137 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
39
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
40
+ return new (P || (P = Promise))(function (resolve, reject) {
41
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
42
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
43
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
44
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
45
+ });
46
+ };
47
+ var __importDefault = (this && this.__importDefault) || function (mod) {
48
+ return (mod && mod.__esModule) ? mod : { "default": mod };
49
+ };
50
+ Object.defineProperty(exports, "__esModule", { value: true });
51
+ exports.KnowledgeBase = void 0;
52
+ const environments = __importStar(require("../../../../../../../../environments"));
53
+ const core = __importStar(require("../../../../../../../../core"));
54
+ const ElevenLabs = __importStar(require("../../../../../../../index"));
55
+ const url_join_1 = __importDefault(require("url-join"));
56
+ const serializers = __importStar(require("../../../../../../../../serialization/index"));
57
+ const errors = __importStar(require("../../../../../../../../errors/index"));
58
+ class KnowledgeBase {
59
+ constructor(_options = {}) {
60
+ this._options = _options;
61
+ }
62
+ /**
63
+ * Returns the number of pages in the agent's knowledge base.
64
+ *
65
+ * @param {string} agentId
66
+ * @param {KnowledgeBase.RequestOptions} requestOptions - Request-specific configuration.
67
+ *
68
+ * @throws {@link ElevenLabs.UnprocessableEntityError}
69
+ *
70
+ * @example
71
+ * await client.conversationalAi.agents.knowledgeBase.size("agent_id")
72
+ */
73
+ size(agentId, requestOptions) {
74
+ return core.HttpResponsePromise.fromPromise(this.__size(agentId, requestOptions));
75
+ }
76
+ __size(agentId, requestOptions) {
77
+ return __awaiter(this, void 0, void 0, function* () {
78
+ var _a, _b;
79
+ const _response = yield core.fetcher({
80
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.ElevenLabsEnvironment.Production).base, `v1/convai/agent/${encodeURIComponent(agentId)}/knowledge-base/size`),
81
+ method: "GET",
82
+ headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
83
+ ? yield core.Supplier.get(this._options.apiKey)
84
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.2.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.2.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
85
+ contentType: "application/json",
86
+ requestType: "json",
87
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
88
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
89
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
90
+ });
91
+ if (_response.ok) {
92
+ return {
93
+ data: serializers.GetAgentKnowledgebaseSizeResponseModel.parseOrThrow(_response.body, {
94
+ unrecognizedObjectKeys: "passthrough",
95
+ allowUnrecognizedUnionMembers: true,
96
+ allowUnrecognizedEnumValues: true,
97
+ breadcrumbsPrefix: ["response"],
98
+ }),
99
+ rawResponse: _response.rawResponse,
100
+ };
101
+ }
102
+ if (_response.error.reason === "status-code") {
103
+ switch (_response.error.statusCode) {
104
+ case 422:
105
+ throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
106
+ unrecognizedObjectKeys: "passthrough",
107
+ allowUnrecognizedUnionMembers: true,
108
+ allowUnrecognizedEnumValues: true,
109
+ breadcrumbsPrefix: ["response"],
110
+ }), _response.rawResponse);
111
+ default:
112
+ throw new errors.ElevenLabsError({
113
+ statusCode: _response.error.statusCode,
114
+ body: _response.error.body,
115
+ rawResponse: _response.rawResponse,
116
+ });
117
+ }
118
+ }
119
+ switch (_response.error.reason) {
120
+ case "non-json":
121
+ throw new errors.ElevenLabsError({
122
+ statusCode: _response.error.statusCode,
123
+ body: _response.error.rawBody,
124
+ rawResponse: _response.rawResponse,
125
+ });
126
+ case "timeout":
127
+ throw new errors.ElevenLabsTimeoutError("Timeout exceeded when calling GET /v1/convai/agent/{agent_id}/knowledge-base/size.");
128
+ case "unknown":
129
+ throw new errors.ElevenLabsError({
130
+ message: _response.error.errorMessage,
131
+ rawResponse: _response.rawResponse,
132
+ });
133
+ }
134
+ });
135
+ }
136
+ }
137
+ exports.KnowledgeBase = KnowledgeBase;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./client"), exports);
@@ -81,10 +81,10 @@ class Link {
81
81
  method: "GET",
82
82
  headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
83
83
  ? yield core.Supplier.get(this._options.apiKey)
84
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.0.1", "User-Agent": "@elevenlabs/elevenlabs-js/v2.0.1", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
84
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.2.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.2.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
85
85
  contentType: "application/json",
86
86
  requestType: "json",
87
- timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
87
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
88
88
  maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
89
89
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
90
90
  });
@@ -0,0 +1,45 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as environments from "../../../../../../../../environments";
5
+ import * as core from "../../../../../../../../core";
6
+ import * as ElevenLabs from "../../../../../../../index";
7
+ export declare namespace LlmUsage {
8
+ interface Options {
9
+ environment?: core.Supplier<environments.ElevenLabsEnvironment | environments.ElevenLabsEnvironmentUrls>;
10
+ /** Specify a custom URL to connect the client to. */
11
+ baseUrl?: core.Supplier<string>;
12
+ /** Override the xi-api-key header */
13
+ apiKey?: core.Supplier<string | undefined>;
14
+ }
15
+ interface RequestOptions {
16
+ /** The maximum time to wait for a response in seconds. */
17
+ timeoutInSeconds?: number;
18
+ /** The number of times to retry the request. Defaults to 2. */
19
+ maxRetries?: number;
20
+ /** A hook to abort the request. */
21
+ abortSignal?: AbortSignal;
22
+ /** Override the xi-api-key header */
23
+ apiKey?: string | undefined;
24
+ /** Additional headers to include in the request. */
25
+ headers?: Record<string, string>;
26
+ }
27
+ }
28
+ export declare class LlmUsage {
29
+ protected readonly _options: LlmUsage.Options;
30
+ constructor(_options?: LlmUsage.Options);
31
+ /**
32
+ * Calculates expected number of LLM tokens needed for the specified agent.
33
+ *
34
+ * @param {string} agentId
35
+ * @param {ElevenLabs.conversationalAi.agents.LlmUsageCalculatorRequestModel} request
36
+ * @param {LlmUsage.RequestOptions} requestOptions - Request-specific configuration.
37
+ *
38
+ * @throws {@link ElevenLabs.UnprocessableEntityError}
39
+ *
40
+ * @example
41
+ * await client.conversationalAi.agents.llmUsage.calculate("agent_id")
42
+ */
43
+ calculate(agentId: string, request?: ElevenLabs.conversationalAi.agents.LlmUsageCalculatorRequestModel, requestOptions?: LlmUsage.RequestOptions): core.HttpResponsePromise<ElevenLabs.LlmUsageCalculatorResponseModel>;
44
+ private __calculate;
45
+ }
@@ -0,0 +1,141 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
39
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
40
+ return new (P || (P = Promise))(function (resolve, reject) {
41
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
42
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
43
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
44
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
45
+ });
46
+ };
47
+ var __importDefault = (this && this.__importDefault) || function (mod) {
48
+ return (mod && mod.__esModule) ? mod : { "default": mod };
49
+ };
50
+ Object.defineProperty(exports, "__esModule", { value: true });
51
+ exports.LlmUsage = void 0;
52
+ const environments = __importStar(require("../../../../../../../../environments"));
53
+ const core = __importStar(require("../../../../../../../../core"));
54
+ const ElevenLabs = __importStar(require("../../../../../../../index"));
55
+ const serializers = __importStar(require("../../../../../../../../serialization/index"));
56
+ const url_join_1 = __importDefault(require("url-join"));
57
+ const errors = __importStar(require("../../../../../../../../errors/index"));
58
+ class LlmUsage {
59
+ constructor(_options = {}) {
60
+ this._options = _options;
61
+ }
62
+ /**
63
+ * Calculates expected number of LLM tokens needed for the specified agent.
64
+ *
65
+ * @param {string} agentId
66
+ * @param {ElevenLabs.conversationalAi.agents.LlmUsageCalculatorRequestModel} request
67
+ * @param {LlmUsage.RequestOptions} requestOptions - Request-specific configuration.
68
+ *
69
+ * @throws {@link ElevenLabs.UnprocessableEntityError}
70
+ *
71
+ * @example
72
+ * await client.conversationalAi.agents.llmUsage.calculate("agent_id")
73
+ */
74
+ calculate(agentId, request = {}, requestOptions) {
75
+ return core.HttpResponsePromise.fromPromise(this.__calculate(agentId, request, requestOptions));
76
+ }
77
+ __calculate(agentId_1) {
78
+ return __awaiter(this, arguments, void 0, function* (agentId, request = {}, requestOptions) {
79
+ var _a, _b;
80
+ const _response = yield core.fetcher({
81
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.ElevenLabsEnvironment.Production).base, `v1/convai/agent/${encodeURIComponent(agentId)}/llm-usage/calculate`),
82
+ method: "POST",
83
+ headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
84
+ ? yield core.Supplier.get(this._options.apiKey)
85
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.2.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.2.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
86
+ contentType: "application/json",
87
+ requestType: "json",
88
+ body: serializers.conversationalAi.agents.LlmUsageCalculatorRequestModel.jsonOrThrow(request, {
89
+ unrecognizedObjectKeys: "strip",
90
+ }),
91
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
92
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
93
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
94
+ });
95
+ if (_response.ok) {
96
+ return {
97
+ data: serializers.LlmUsageCalculatorResponseModel.parseOrThrow(_response.body, {
98
+ unrecognizedObjectKeys: "passthrough",
99
+ allowUnrecognizedUnionMembers: true,
100
+ allowUnrecognizedEnumValues: true,
101
+ breadcrumbsPrefix: ["response"],
102
+ }),
103
+ rawResponse: _response.rawResponse,
104
+ };
105
+ }
106
+ if (_response.error.reason === "status-code") {
107
+ switch (_response.error.statusCode) {
108
+ case 422:
109
+ throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
110
+ unrecognizedObjectKeys: "passthrough",
111
+ allowUnrecognizedUnionMembers: true,
112
+ allowUnrecognizedEnumValues: true,
113
+ breadcrumbsPrefix: ["response"],
114
+ }), _response.rawResponse);
115
+ default:
116
+ throw new errors.ElevenLabsError({
117
+ statusCode: _response.error.statusCode,
118
+ body: _response.error.body,
119
+ rawResponse: _response.rawResponse,
120
+ });
121
+ }
122
+ }
123
+ switch (_response.error.reason) {
124
+ case "non-json":
125
+ throw new errors.ElevenLabsError({
126
+ statusCode: _response.error.statusCode,
127
+ body: _response.error.rawBody,
128
+ rawResponse: _response.rawResponse,
129
+ });
130
+ case "timeout":
131
+ throw new errors.ElevenLabsTimeoutError("Timeout exceeded when calling POST /v1/convai/agent/{agent_id}/llm-usage/calculate.");
132
+ case "unknown":
133
+ throw new errors.ElevenLabsError({
134
+ message: _response.error.errorMessage,
135
+ rawResponse: _response.rawResponse,
136
+ });
137
+ }
138
+ });
139
+ }
140
+ }
141
+ exports.LlmUsage = LlmUsage;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./requests"), exports);