@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
@@ -36,14 +36,18 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  };
37
37
  })();
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.WidgetConfigResponseModel = void 0;
39
+ exports.WidgetConfigResponse = void 0;
40
40
  const core = __importStar(require("../../core"));
41
41
  const EmbedVariant_1 = require("./EmbedVariant");
42
+ const WidgetPlacement_1 = require("./WidgetPlacement");
42
43
  const WidgetExpandable_1 = require("./WidgetExpandable");
43
44
  const WidgetConfigResponseModelAvatar_1 = require("./WidgetConfigResponseModelAvatar");
44
45
  const WidgetFeedbackMode_1 = require("./WidgetFeedbackMode");
45
- exports.WidgetConfigResponseModel = core.serialization.object({
46
+ const WidgetTextContents_1 = require("./WidgetTextContents");
47
+ const WidgetLanguagePresetResponse_1 = require("./WidgetLanguagePresetResponse");
48
+ exports.WidgetConfigResponse = core.serialization.object({
46
49
  variant: EmbedVariant_1.EmbedVariant.optional(),
50
+ placement: WidgetPlacement_1.WidgetPlacement.optional(),
47
51
  expandable: WidgetExpandable_1.WidgetExpandable.optional(),
48
52
  avatar: WidgetConfigResponseModelAvatar_1.WidgetConfigResponseModelAvatar.optional(),
49
53
  feedbackMode: core.serialization.property("feedback_mode", WidgetFeedbackMode_1.WidgetFeedbackMode.optional()),
@@ -70,6 +74,13 @@ exports.WidgetConfigResponseModel = core.serialization.object({
70
74
  disableBanner: core.serialization.property("disable_banner", core.serialization.boolean().optional()),
71
75
  overrideLink: core.serialization.property("override_link", core.serialization.string().optional()),
72
76
  micMutingEnabled: core.serialization.property("mic_muting_enabled", core.serialization.boolean().optional()),
77
+ transcriptEnabled: core.serialization.property("transcript_enabled", core.serialization.boolean().optional()),
78
+ textInputEnabled: core.serialization.property("text_input_enabled", core.serialization.boolean().optional()),
79
+ textContents: core.serialization.property("text_contents", WidgetTextContents_1.WidgetTextContents.optional()),
73
80
  language: core.serialization.string(),
74
81
  supportedLanguageOverrides: core.serialization.property("supported_language_overrides", core.serialization.list(core.serialization.string()).optional()),
82
+ languagePresets: core.serialization.property("language_presets", core.serialization.record(core.serialization.string(), WidgetLanguagePresetResponse_1.WidgetLanguagePresetResponse).optional()),
83
+ textOnly: core.serialization.property("text_only", core.serialization.boolean().optional()),
84
+ supportsTextOnly: core.serialization.property("supports_text_only", core.serialization.boolean().optional()),
85
+ firstMessage: core.serialization.property("first_message", core.serialization.string().optional()),
75
86
  });
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../index";
5
+ import * as ElevenLabs from "../../api/index";
6
+ import * as core from "../../core";
7
+ import { WidgetTextContents } from "./WidgetTextContents";
8
+ export declare const WidgetLanguagePreset: core.serialization.ObjectSchema<serializers.WidgetLanguagePreset.Raw, ElevenLabs.WidgetLanguagePreset>;
9
+ export declare namespace WidgetLanguagePreset {
10
+ interface Raw {
11
+ text_contents?: WidgetTextContents.Raw | null;
12
+ }
13
+ }
@@ -0,0 +1,44 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.WidgetLanguagePreset = void 0;
40
+ const core = __importStar(require("../../core"));
41
+ const WidgetTextContents_1 = require("./WidgetTextContents");
42
+ exports.WidgetLanguagePreset = core.serialization.object({
43
+ textContents: core.serialization.property("text_contents", WidgetTextContents_1.WidgetTextContents.optional()),
44
+ });
@@ -0,0 +1,14 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../index";
5
+ import * as ElevenLabs from "../../api/index";
6
+ import * as core from "../../core";
7
+ import { WidgetTextContents } from "./WidgetTextContents";
8
+ export declare const WidgetLanguagePresetResponse: core.serialization.ObjectSchema<serializers.WidgetLanguagePresetResponse.Raw, ElevenLabs.WidgetLanguagePresetResponse>;
9
+ export declare namespace WidgetLanguagePresetResponse {
10
+ interface Raw {
11
+ first_message?: string | null;
12
+ text_contents?: WidgetTextContents.Raw | null;
13
+ }
14
+ }
@@ -0,0 +1,45 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.WidgetLanguagePresetResponse = void 0;
40
+ const core = __importStar(require("../../core"));
41
+ const WidgetTextContents_1 = require("./WidgetTextContents");
42
+ exports.WidgetLanguagePresetResponse = core.serialization.object({
43
+ firstMessage: core.serialization.property("first_message", core.serialization.string().optional()),
44
+ textContents: core.serialization.property("text_contents", WidgetTextContents_1.WidgetTextContents.optional()),
45
+ });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../index";
5
+ import * as ElevenLabs from "../../api/index";
6
+ import * as core from "../../core";
7
+ export declare const WidgetPlacement: core.serialization.Schema<serializers.WidgetPlacement.Raw, ElevenLabs.WidgetPlacement>;
8
+ export declare namespace WidgetPlacement {
9
+ type Raw = "top-left" | "top" | "top-right" | "bottom-left" | "bottom" | "bottom-right";
10
+ }
@@ -0,0 +1,41 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.WidgetPlacement = void 0;
40
+ const core = __importStar(require("../../core"));
41
+ exports.WidgetPlacement = core.serialization.enum_(["top-left", "top", "top-right", "bottom-left", "bottom", "bottom-right"]);
@@ -0,0 +1,32 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../index";
5
+ import * as ElevenLabs from "../../api/index";
6
+ import * as core from "../../core";
7
+ export declare const WidgetTextContents: core.serialization.ObjectSchema<serializers.WidgetTextContents.Raw, ElevenLabs.WidgetTextContents>;
8
+ export declare namespace WidgetTextContents {
9
+ interface Raw {
10
+ main_label?: string | null;
11
+ start_call?: string | null;
12
+ new_call?: string | null;
13
+ end_call?: string | null;
14
+ mute_microphone?: string | null;
15
+ change_language?: string | null;
16
+ collapse?: string | null;
17
+ expand?: string | null;
18
+ copied?: string | null;
19
+ accept_terms?: string | null;
20
+ dismiss_terms?: string | null;
21
+ listening_status?: string | null;
22
+ speaking_status?: string | null;
23
+ connecting_status?: string | null;
24
+ input_label?: string | null;
25
+ input_placeholder?: string | null;
26
+ user_ended_conversation?: string | null;
27
+ agent_ended_conversation?: string | null;
28
+ conversation_id?: string | null;
29
+ error_occurred?: string | null;
30
+ copy_id?: string | null;
31
+ }
32
+ }
@@ -0,0 +1,63 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.WidgetTextContents = void 0;
40
+ const core = __importStar(require("../../core"));
41
+ exports.WidgetTextContents = core.serialization.object({
42
+ mainLabel: core.serialization.property("main_label", core.serialization.string().optional()),
43
+ startCall: core.serialization.property("start_call", core.serialization.string().optional()),
44
+ newCall: core.serialization.property("new_call", core.serialization.string().optional()),
45
+ endCall: core.serialization.property("end_call", core.serialization.string().optional()),
46
+ muteMicrophone: core.serialization.property("mute_microphone", core.serialization.string().optional()),
47
+ changeLanguage: core.serialization.property("change_language", core.serialization.string().optional()),
48
+ collapse: core.serialization.string().optional(),
49
+ expand: core.serialization.string().optional(),
50
+ copied: core.serialization.string().optional(),
51
+ acceptTerms: core.serialization.property("accept_terms", core.serialization.string().optional()),
52
+ dismissTerms: core.serialization.property("dismiss_terms", core.serialization.string().optional()),
53
+ listeningStatus: core.serialization.property("listening_status", core.serialization.string().optional()),
54
+ speakingStatus: core.serialization.property("speaking_status", core.serialization.string().optional()),
55
+ connectingStatus: core.serialization.property("connecting_status", core.serialization.string().optional()),
56
+ inputLabel: core.serialization.property("input_label", core.serialization.string().optional()),
57
+ inputPlaceholder: core.serialization.property("input_placeholder", core.serialization.string().optional()),
58
+ userEndedConversation: core.serialization.property("user_ended_conversation", core.serialization.string().optional()),
59
+ agentEndedConversation: core.serialization.property("agent_ended_conversation", core.serialization.string().optional()),
60
+ conversationId: core.serialization.property("conversation_id", core.serialization.string().optional()),
61
+ errorOccurred: core.serialization.property("error_occurred", core.serialization.string().optional()),
62
+ copyId: core.serialization.property("copy_id", core.serialization.string().optional()),
63
+ });
@@ -70,6 +70,7 @@ export * from "./BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapsh
70
70
  export * from "./UpdatePronunciationDictionariesRequest";
71
71
  export * from "./BreakdownTypes";
72
72
  export * from "./ChapterContentBlockExtendableNodeResponseModel";
73
+ export * from "./ChapterContentBlockInputModelSubType";
73
74
  export * from "./ChapterContentBlockInputModel";
74
75
  export * from "./ChapterContentBlockResponseModelNodesItem";
75
76
  export * from "./ChapterContentBlockResponseModel";
@@ -154,6 +155,7 @@ export * from "./CreatePhoneNumberResponseModel";
154
155
  export * from "./CreatePronunciationDictionaryResponseModel";
155
156
  export * from "./CreateSipTrunkPhoneNumberRequest";
156
157
  export * from "./CreateTwilioPhoneNumberRequest";
158
+ export * from "./CustomLlmRequestHeadersValue";
157
159
  export * from "./CustomLlm";
158
160
  export * from "./DashboardCallSuccessChartModel";
159
161
  export * from "./DashboardCriteriaChartModel";
@@ -179,6 +181,8 @@ export * from "./DependentPhoneNumberIdentifier";
179
181
  export * from "./DependentUnknownAgentIdentifier";
180
182
  export * from "./DependentUnknownAgentToolIdentifier";
181
183
  export * from "./DependentUnknownToolIdentifier";
184
+ export * from "./DialogueInput";
185
+ export * from "./DialogueInputResponseModel";
182
186
  export * from "./DoDubbingResponse";
183
187
  export * from "./DocumentUsageModeEnum";
184
188
  export * from "./DocxExportOptions";
@@ -201,10 +205,11 @@ export * from "./EvaluationSettings";
201
205
  export * from "./EvaluationSuccessResult";
202
206
  export * from "./ExportOptions";
203
207
  export * from "./ExtendedSubscriptionResponseModelCurrency";
204
- export * from "./ExtendedSubscriptionResponseModelStatus";
205
208
  export * from "./ExtendedSubscriptionResponseModelBillingPeriod";
206
209
  export * from "./ExtendedSubscriptionResponseModelCharacterRefreshPeriod";
207
210
  export * from "./Subscription";
211
+ export * from "./FeatureStatusCommonModel";
212
+ export * from "./FeaturesUsageCommonModel";
208
213
  export * from "./FeedbackItem";
209
214
  export * from "./FineTuningResponseModelStateValue";
210
215
  export * from "./FineTuningResponse";
@@ -212,6 +217,7 @@ export * from "./ForcedAlignmentCharacterResponseModel";
212
217
  export * from "./ForcedAlignmentResponseModel";
213
218
  export * from "./ForcedAlignmentWordResponseModel";
214
219
  export * from "./GetAgentEmbedResponseModel";
220
+ export * from "./GetAgentKnowledgebaseSizeResponseModel";
215
221
  export * from "./GetAgentLinkResponseModel";
216
222
  export * from "./GetAgentResponseModelPhoneNumbersItem";
217
223
  export * from "./GetAgentResponseModel";
@@ -244,6 +250,7 @@ export * from "./GetProjectsResponse";
244
250
  export * from "./GetPronunciationDictionariesMetadataResponseModel";
245
251
  export * from "./GetPronunciationDictionaryMetadataResponseModelPermissionOnResource";
246
252
  export * from "./GetPronunciationDictionaryMetadataResponse";
253
+ export * from "./GetSharedSoundGenerationsResponseModel";
247
254
  export * from "./GetSpeechHistoryResponse";
248
255
  export * from "./GetVoicesResponse";
249
256
  export * from "./GetVoicesV2Response";
@@ -264,6 +271,8 @@ export * from "./LlmInputOutputTokensUsage";
264
271
  export * from "./LlmTokensCategoryUsage";
265
272
  export * from "./LlmUsageInput";
266
273
  export * from "./LlmUsageOutput";
274
+ export * from "./LlmUsageCalculatorLlmResponseModel";
275
+ export * from "./LlmUsageCalculatorResponseModel";
267
276
  export * from "./LanguageAddedResponse";
268
277
  export * from "./LanguageDetectionToolConfig";
269
278
  export * from "./LanguagePresetInput";
@@ -275,6 +284,7 @@ export * from "./LibraryVoiceResponse";
275
284
  export * from "./LiteralJsonSchemaPropertyType";
276
285
  export * from "./LiteralJsonSchemaPropertyConstantValue";
277
286
  export * from "./LiteralJsonSchemaProperty";
287
+ export * from "./McpApprovalRequiredModel";
278
288
  export * from "./McpToolConfigInput";
279
289
  export * from "./McpToolConfigOutput";
280
290
  export * from "./ManualVerificationFileResponse";
@@ -284,9 +294,12 @@ export * from "./MetricType";
284
294
  export * from "./ModelRatesResponseModel";
285
295
  export * from "./ModelResponseModelConcurrencyGroup";
286
296
  export * from "./Model";
297
+ export * from "./ModelSettingsResponseModel";
287
298
  export * from "./ModerationStatusResponseModelSafetyStatus";
288
299
  export * from "./ModerationStatusResponseModelWarningStatus";
289
300
  export * from "./ModerationStatusResponseModel";
301
+ export * from "./NativeMcpToolConfigInput";
302
+ export * from "./NativeMcpToolConfigOutput";
290
303
  export * from "./ObjectJsonSchemaPropertyInputPropertiesValue";
291
304
  export * from "./ObjectJsonSchemaPropertyInput";
292
305
  export * from "./ObjectJsonSchemaPropertyOutputPropertiesValue";
@@ -343,7 +356,11 @@ export * from "./PronunciationDictionaryVersionResponseModelPermissionOnResource
343
356
  export * from "./PronunciationDictionaryVersionResponseModel";
344
357
  export * from "./PydanticPronunciationDictionaryVersionLocator";
345
358
  export * from "./QueryParamsJsonSchema";
346
- export * from "./RagIndexResponseModel";
359
+ export * from "./RagDocumentIndexResponseModel";
360
+ export * from "./RagDocumentIndexUsage";
361
+ export * from "./RagDocumentIndexesResponseModel";
362
+ export * from "./RagIndexOverviewEmbeddingModelResponseModel";
363
+ export * from "./RagIndexOverviewResponseModel";
347
364
  export * from "./RagIndexStatus";
348
365
  export * from "./RagChunkMetadata";
349
366
  export * from "./RagConfig";
@@ -378,9 +395,11 @@ export * from "./SegmentUpdateResponse";
378
395
  export * from "./SegmentedJsonExportOptions";
379
396
  export * from "./ShareOptionResponseModelType";
380
397
  export * from "./ShareOptionResponseModel";
398
+ export * from "./SharedSoundGenerationResponseModel";
381
399
  export * from "./SimilarVoiceCategory";
382
400
  export * from "./SimilarVoice";
383
401
  export * from "./SimilarVoicesForSpeakerResponse";
402
+ export * from "./SkipTurnToolConfig";
384
403
  export * from "./SpeakerAudioResponseModel";
385
404
  export * from "./SpeakerResponseModel";
386
405
  export * from "./SpeakerSegment";
@@ -401,19 +420,22 @@ export * from "./StartSpeakerSeparationResponseModel";
401
420
  export * from "./StreamingAudioChunkWithTimestampsResponse";
402
421
  export * from "./SubscriptionExtrasResponseModel";
403
422
  export * from "./SubscriptionResponseModelCurrency";
404
- export * from "./SubscriptionStatus";
405
423
  export * from "./SubscriptionResponseModelBillingPeriod";
406
424
  export * from "./SubscriptionResponseModelCharacterRefreshPeriod";
407
425
  export * from "./SubscriptionResponse";
426
+ export * from "./SubscriptionStatusType";
408
427
  export * from "./SubscriptionUsageResponseModel";
428
+ export * from "./SupportedVoice";
409
429
  export * from "./SystemToolConfigInputParams";
410
430
  export * from "./SystemToolConfigInput";
411
431
  export * from "./SystemToolConfigOutputParams";
412
432
  export * from "./SystemToolConfigOutput";
413
- export * from "./TtsConversationalConfig";
433
+ export * from "./TtsConversationalConfigInput";
434
+ export * from "./TtsConversationalConfigOutput";
414
435
  export * from "./TtsConversationalConfigOverride";
415
436
  export * from "./TtsConversationalConfigOverrideConfig";
416
437
  export * from "./TtsConversationalModel";
438
+ export * from "./TtsModelFamily";
417
439
  export * from "./TtsOptimizeStreamingLatency";
418
440
  export * from "./TtsOutputFormat";
419
441
  export * from "./TelephonyProvider";
@@ -461,12 +483,17 @@ export * from "./WebhookToolApiSchemaConfigOutputRequestHeadersValue";
461
483
  export * from "./WebhookToolApiSchemaConfigOutput";
462
484
  export * from "./WebhookToolConfigInput";
463
485
  export * from "./WebhookToolConfigOutput";
464
- export * from "./WidgetConfigAvatar";
486
+ export * from "./WidgetConfigInputAvatar";
465
487
  export * from "./WidgetConfig";
488
+ export * from "./WidgetConfigOutputAvatar";
466
489
  export * from "./WidgetConfigResponseModelAvatar";
467
- export * from "./WidgetConfigResponseModel";
490
+ export * from "./WidgetConfigResponse";
468
491
  export * from "./WidgetExpandable";
469
492
  export * from "./WidgetFeedbackMode";
493
+ export * from "./WidgetLanguagePreset";
494
+ export * from "./WidgetLanguagePresetResponse";
495
+ export * from "./WidgetPlacement";
496
+ export * from "./WidgetTextContents";
470
497
  export * from "./WorkspaceBatchCallsResponse";
471
498
  export * from "./WorkspaceGroupByNameResponseModel";
472
499
  export * from "./WorkspaceResourceType";
@@ -86,6 +86,7 @@ __exportStar(require("./BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjec
86
86
  __exportStar(require("./UpdatePronunciationDictionariesRequest"), exports);
87
87
  __exportStar(require("./BreakdownTypes"), exports);
88
88
  __exportStar(require("./ChapterContentBlockExtendableNodeResponseModel"), exports);
89
+ __exportStar(require("./ChapterContentBlockInputModelSubType"), exports);
89
90
  __exportStar(require("./ChapterContentBlockInputModel"), exports);
90
91
  __exportStar(require("./ChapterContentBlockResponseModelNodesItem"), exports);
91
92
  __exportStar(require("./ChapterContentBlockResponseModel"), exports);
@@ -170,6 +171,7 @@ __exportStar(require("./CreatePhoneNumberResponseModel"), exports);
170
171
  __exportStar(require("./CreatePronunciationDictionaryResponseModel"), exports);
171
172
  __exportStar(require("./CreateSipTrunkPhoneNumberRequest"), exports);
172
173
  __exportStar(require("./CreateTwilioPhoneNumberRequest"), exports);
174
+ __exportStar(require("./CustomLlmRequestHeadersValue"), exports);
173
175
  __exportStar(require("./CustomLlm"), exports);
174
176
  __exportStar(require("./DashboardCallSuccessChartModel"), exports);
175
177
  __exportStar(require("./DashboardCriteriaChartModel"), exports);
@@ -195,6 +197,8 @@ __exportStar(require("./DependentPhoneNumberIdentifier"), exports);
195
197
  __exportStar(require("./DependentUnknownAgentIdentifier"), exports);
196
198
  __exportStar(require("./DependentUnknownAgentToolIdentifier"), exports);
197
199
  __exportStar(require("./DependentUnknownToolIdentifier"), exports);
200
+ __exportStar(require("./DialogueInput"), exports);
201
+ __exportStar(require("./DialogueInputResponseModel"), exports);
198
202
  __exportStar(require("./DoDubbingResponse"), exports);
199
203
  __exportStar(require("./DocumentUsageModeEnum"), exports);
200
204
  __exportStar(require("./DocxExportOptions"), exports);
@@ -217,10 +221,11 @@ __exportStar(require("./EvaluationSettings"), exports);
217
221
  __exportStar(require("./EvaluationSuccessResult"), exports);
218
222
  __exportStar(require("./ExportOptions"), exports);
219
223
  __exportStar(require("./ExtendedSubscriptionResponseModelCurrency"), exports);
220
- __exportStar(require("./ExtendedSubscriptionResponseModelStatus"), exports);
221
224
  __exportStar(require("./ExtendedSubscriptionResponseModelBillingPeriod"), exports);
222
225
  __exportStar(require("./ExtendedSubscriptionResponseModelCharacterRefreshPeriod"), exports);
223
226
  __exportStar(require("./Subscription"), exports);
227
+ __exportStar(require("./FeatureStatusCommonModel"), exports);
228
+ __exportStar(require("./FeaturesUsageCommonModel"), exports);
224
229
  __exportStar(require("./FeedbackItem"), exports);
225
230
  __exportStar(require("./FineTuningResponseModelStateValue"), exports);
226
231
  __exportStar(require("./FineTuningResponse"), exports);
@@ -228,6 +233,7 @@ __exportStar(require("./ForcedAlignmentCharacterResponseModel"), exports);
228
233
  __exportStar(require("./ForcedAlignmentResponseModel"), exports);
229
234
  __exportStar(require("./ForcedAlignmentWordResponseModel"), exports);
230
235
  __exportStar(require("./GetAgentEmbedResponseModel"), exports);
236
+ __exportStar(require("./GetAgentKnowledgebaseSizeResponseModel"), exports);
231
237
  __exportStar(require("./GetAgentLinkResponseModel"), exports);
232
238
  __exportStar(require("./GetAgentResponseModelPhoneNumbersItem"), exports);
233
239
  __exportStar(require("./GetAgentResponseModel"), exports);
@@ -260,6 +266,7 @@ __exportStar(require("./GetProjectsResponse"), exports);
260
266
  __exportStar(require("./GetPronunciationDictionariesMetadataResponseModel"), exports);
261
267
  __exportStar(require("./GetPronunciationDictionaryMetadataResponseModelPermissionOnResource"), exports);
262
268
  __exportStar(require("./GetPronunciationDictionaryMetadataResponse"), exports);
269
+ __exportStar(require("./GetSharedSoundGenerationsResponseModel"), exports);
263
270
  __exportStar(require("./GetSpeechHistoryResponse"), exports);
264
271
  __exportStar(require("./GetVoicesResponse"), exports);
265
272
  __exportStar(require("./GetVoicesV2Response"), exports);
@@ -280,6 +287,8 @@ __exportStar(require("./LlmInputOutputTokensUsage"), exports);
280
287
  __exportStar(require("./LlmTokensCategoryUsage"), exports);
281
288
  __exportStar(require("./LlmUsageInput"), exports);
282
289
  __exportStar(require("./LlmUsageOutput"), exports);
290
+ __exportStar(require("./LlmUsageCalculatorLlmResponseModel"), exports);
291
+ __exportStar(require("./LlmUsageCalculatorResponseModel"), exports);
283
292
  __exportStar(require("./LanguageAddedResponse"), exports);
284
293
  __exportStar(require("./LanguageDetectionToolConfig"), exports);
285
294
  __exportStar(require("./LanguagePresetInput"), exports);
@@ -291,6 +300,7 @@ __exportStar(require("./LibraryVoiceResponse"), exports);
291
300
  __exportStar(require("./LiteralJsonSchemaPropertyType"), exports);
292
301
  __exportStar(require("./LiteralJsonSchemaPropertyConstantValue"), exports);
293
302
  __exportStar(require("./LiteralJsonSchemaProperty"), exports);
303
+ __exportStar(require("./McpApprovalRequiredModel"), exports);
294
304
  __exportStar(require("./McpToolConfigInput"), exports);
295
305
  __exportStar(require("./McpToolConfigOutput"), exports);
296
306
  __exportStar(require("./ManualVerificationFileResponse"), exports);
@@ -300,9 +310,12 @@ __exportStar(require("./MetricType"), exports);
300
310
  __exportStar(require("./ModelRatesResponseModel"), exports);
301
311
  __exportStar(require("./ModelResponseModelConcurrencyGroup"), exports);
302
312
  __exportStar(require("./Model"), exports);
313
+ __exportStar(require("./ModelSettingsResponseModel"), exports);
303
314
  __exportStar(require("./ModerationStatusResponseModelSafetyStatus"), exports);
304
315
  __exportStar(require("./ModerationStatusResponseModelWarningStatus"), exports);
305
316
  __exportStar(require("./ModerationStatusResponseModel"), exports);
317
+ __exportStar(require("./NativeMcpToolConfigInput"), exports);
318
+ __exportStar(require("./NativeMcpToolConfigOutput"), exports);
306
319
  __exportStar(require("./ObjectJsonSchemaPropertyInputPropertiesValue"), exports);
307
320
  __exportStar(require("./ObjectJsonSchemaPropertyInput"), exports);
308
321
  __exportStar(require("./ObjectJsonSchemaPropertyOutputPropertiesValue"), exports);
@@ -359,7 +372,11 @@ __exportStar(require("./PronunciationDictionaryVersionResponseModelPermissionOnR
359
372
  __exportStar(require("./PronunciationDictionaryVersionResponseModel"), exports);
360
373
  __exportStar(require("./PydanticPronunciationDictionaryVersionLocator"), exports);
361
374
  __exportStar(require("./QueryParamsJsonSchema"), exports);
362
- __exportStar(require("./RagIndexResponseModel"), exports);
375
+ __exportStar(require("./RagDocumentIndexResponseModel"), exports);
376
+ __exportStar(require("./RagDocumentIndexUsage"), exports);
377
+ __exportStar(require("./RagDocumentIndexesResponseModel"), exports);
378
+ __exportStar(require("./RagIndexOverviewEmbeddingModelResponseModel"), exports);
379
+ __exportStar(require("./RagIndexOverviewResponseModel"), exports);
363
380
  __exportStar(require("./RagIndexStatus"), exports);
364
381
  __exportStar(require("./RagChunkMetadata"), exports);
365
382
  __exportStar(require("./RagConfig"), exports);
@@ -394,9 +411,11 @@ __exportStar(require("./SegmentUpdateResponse"), exports);
394
411
  __exportStar(require("./SegmentedJsonExportOptions"), exports);
395
412
  __exportStar(require("./ShareOptionResponseModelType"), exports);
396
413
  __exportStar(require("./ShareOptionResponseModel"), exports);
414
+ __exportStar(require("./SharedSoundGenerationResponseModel"), exports);
397
415
  __exportStar(require("./SimilarVoiceCategory"), exports);
398
416
  __exportStar(require("./SimilarVoice"), exports);
399
417
  __exportStar(require("./SimilarVoicesForSpeakerResponse"), exports);
418
+ __exportStar(require("./SkipTurnToolConfig"), exports);
400
419
  __exportStar(require("./SpeakerAudioResponseModel"), exports);
401
420
  __exportStar(require("./SpeakerResponseModel"), exports);
402
421
  __exportStar(require("./SpeakerSegment"), exports);
@@ -417,19 +436,22 @@ __exportStar(require("./StartSpeakerSeparationResponseModel"), exports);
417
436
  __exportStar(require("./StreamingAudioChunkWithTimestampsResponse"), exports);
418
437
  __exportStar(require("./SubscriptionExtrasResponseModel"), exports);
419
438
  __exportStar(require("./SubscriptionResponseModelCurrency"), exports);
420
- __exportStar(require("./SubscriptionStatus"), exports);
421
439
  __exportStar(require("./SubscriptionResponseModelBillingPeriod"), exports);
422
440
  __exportStar(require("./SubscriptionResponseModelCharacterRefreshPeriod"), exports);
423
441
  __exportStar(require("./SubscriptionResponse"), exports);
442
+ __exportStar(require("./SubscriptionStatusType"), exports);
424
443
  __exportStar(require("./SubscriptionUsageResponseModel"), exports);
444
+ __exportStar(require("./SupportedVoice"), exports);
425
445
  __exportStar(require("./SystemToolConfigInputParams"), exports);
426
446
  __exportStar(require("./SystemToolConfigInput"), exports);
427
447
  __exportStar(require("./SystemToolConfigOutputParams"), exports);
428
448
  __exportStar(require("./SystemToolConfigOutput"), exports);
429
- __exportStar(require("./TtsConversationalConfig"), exports);
449
+ __exportStar(require("./TtsConversationalConfigInput"), exports);
450
+ __exportStar(require("./TtsConversationalConfigOutput"), exports);
430
451
  __exportStar(require("./TtsConversationalConfigOverride"), exports);
431
452
  __exportStar(require("./TtsConversationalConfigOverrideConfig"), exports);
432
453
  __exportStar(require("./TtsConversationalModel"), exports);
454
+ __exportStar(require("./TtsModelFamily"), exports);
433
455
  __exportStar(require("./TtsOptimizeStreamingLatency"), exports);
434
456
  __exportStar(require("./TtsOutputFormat"), exports);
435
457
  __exportStar(require("./TelephonyProvider"), exports);
@@ -477,12 +499,17 @@ __exportStar(require("./WebhookToolApiSchemaConfigOutputRequestHeadersValue"), e
477
499
  __exportStar(require("./WebhookToolApiSchemaConfigOutput"), exports);
478
500
  __exportStar(require("./WebhookToolConfigInput"), exports);
479
501
  __exportStar(require("./WebhookToolConfigOutput"), exports);
480
- __exportStar(require("./WidgetConfigAvatar"), exports);
502
+ __exportStar(require("./WidgetConfigInputAvatar"), exports);
481
503
  __exportStar(require("./WidgetConfig"), exports);
504
+ __exportStar(require("./WidgetConfigOutputAvatar"), exports);
482
505
  __exportStar(require("./WidgetConfigResponseModelAvatar"), exports);
483
- __exportStar(require("./WidgetConfigResponseModel"), exports);
506
+ __exportStar(require("./WidgetConfigResponse"), exports);
484
507
  __exportStar(require("./WidgetExpandable"), exports);
485
508
  __exportStar(require("./WidgetFeedbackMode"), exports);
509
+ __exportStar(require("./WidgetLanguagePreset"), exports);
510
+ __exportStar(require("./WidgetLanguagePresetResponse"), exports);
511
+ __exportStar(require("./WidgetPlacement"), exports);
512
+ __exportStar(require("./WidgetTextContents"), exports);
486
513
  __exportStar(require("./WorkspaceBatchCallsResponse"), exports);
487
514
  __exportStar(require("./WorkspaceGroupByNameResponseModel"), exports);
488
515
  __exportStar(require("./WorkspaceResourceType"), exports);
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "v2.0.1";
1
+ export declare const SDK_VERSION = "v2.2.0";
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "v2.0.1";
4
+ exports.SDK_VERSION = "v2.2.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevenlabs/elevenlabs-js",
3
- "version": "v2.0.1",
3
+ "version": "v2.2.0",
4
4
  "private": false,
5
5
  "repository": "https://github.com/elevenlabs/elevenlabs-js",
6
6
  "license": "MIT",