@elevenlabs/elevenlabs-js 2.4.1 → 2.6.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 (870) hide show
  1. package/Client.d.ts +3 -3
  2. package/Client.js +17 -17
  3. package/api/errors/BadRequestError.d.ts +2 -1
  4. package/api/resources/audioIsolation/client/Client.js +5 -9
  5. package/api/resources/audioIsolation/client/requests/BodyAudioIsolationStreamV1AudioIsolationStreamPost.d.ts +2 -2
  6. package/api/resources/audioIsolation/client/requests/BodyAudioIsolationV1AudioIsolationPost.d.ts +2 -2
  7. package/api/resources/audioNative/client/Client.js +7 -11
  8. package/api/resources/audioNative/client/requests/BodyCreatesAudioNativeEnabledProjectV1AudioNativePost.d.ts +2 -2
  9. package/api/resources/audioNative/client/requests/BodyUpdateAudioNativeProjectContentV1AudioNativeProjectIdContentPost.d.ts +2 -2
  10. package/api/resources/conversationalAi/client/Client.js +16 -15
  11. package/api/resources/conversationalAi/client/requests/BodyAddToKnowledgeBaseV1ConvaiKnowledgeBasePost.d.ts +3 -2
  12. package/api/resources/conversationalAi/conversation/AudioInterface.d.ts +44 -0
  13. package/api/resources/conversationalAi/conversation/AudioInterface.js +12 -0
  14. package/api/resources/conversationalAi/conversation/ClientTools.d.ts +60 -0
  15. package/api/resources/conversationalAi/conversation/ClientTools.js +132 -0
  16. package/api/resources/conversationalAi/conversation/Conversation.d.ts +94 -0
  17. package/api/resources/conversationalAi/conversation/Conversation.js +280 -0
  18. package/api/resources/conversationalAi/conversation/ConversationConfig.d.ts +18 -0
  19. package/api/resources/conversationalAi/conversation/ConversationConfig.js +16 -0
  20. package/api/resources/conversationalAi/conversation/DefaultAudioInterface.d.ts +63 -0
  21. package/api/resources/conversationalAi/conversation/DefaultAudioInterface.js +126 -0
  22. package/api/resources/conversationalAi/conversation/__tests__/Conversation.test.d.ts +1 -0
  23. package/api/resources/conversationalAi/conversation/__tests__/Conversation.test.js +358 -0
  24. package/api/resources/conversationalAi/conversation/events.d.ts +84 -0
  25. package/api/resources/conversationalAi/conversation/events.js +19 -0
  26. package/api/resources/conversationalAi/conversation/index.d.ts +6 -0
  27. package/api/resources/conversationalAi/conversation/index.js +22 -0
  28. package/api/resources/conversationalAi/conversation/interfaces/ConversationClient.d.ts +11 -0
  29. package/api/resources/conversationalAi/conversation/interfaces/WebSocketInterface.d.ts +12 -0
  30. package/api/resources/conversationalAi/conversation/interfaces/WebSocketInterface.js +13 -0
  31. package/api/resources/conversationalAi/conversation/mocks/ConversationTestFactory.d.ts +15 -0
  32. package/api/resources/conversationalAi/conversation/mocks/ConversationTestFactory.js +28 -0
  33. package/api/resources/conversationalAi/conversation/mocks/MockConversation.d.ts +43 -0
  34. package/api/resources/conversationalAi/conversation/mocks/MockConversation.js +108 -0
  35. package/api/resources/conversationalAi/conversation/mocks/index.d.ts +2 -0
  36. package/api/resources/conversationalAi/conversation/mocks/index.js +18 -0
  37. package/api/resources/conversationalAi/resources/agents/client/Client.d.ts +4 -4
  38. package/api/resources/conversationalAi/resources/agents/client/Client.js +21 -25
  39. package/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.d.ts +2 -2
  40. package/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.d.ts +2 -2
  41. package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +3 -7
  42. package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +3 -7
  43. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +3 -7
  44. package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +3 -7
  45. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +3 -7
  46. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/requests/BodyPostAgentAvatarV1ConvaiAgentsAgentIdAvatarPost.d.ts +2 -2
  47. package/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +1 -1
  48. package/api/resources/conversationalAi/resources/batchCalls/client/Client.js +12 -16
  49. package/api/resources/conversationalAi/resources/conversations/client/Client.js +9 -13
  50. package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +3 -7
  51. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +3 -7
  52. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +5 -9
  53. package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +3 -7
  54. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +3 -7
  55. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +2 -1
  56. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +28 -25
  57. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFileDocumentV1ConvaiKnowledgeBaseFilePost.d.ts +2 -2
  58. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsGetRequest.d.ts +10 -0
  59. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.d.ts +1 -0
  60. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +3 -7
  61. package/api/resources/conversationalAi/resources/llmUsage/client/Client.js +3 -7
  62. package/api/resources/conversationalAi/resources/mcpServers/client/Client.js +7 -11
  63. package/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.js +3 -7
  64. package/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.js +5 -9
  65. package/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.js +3 -7
  66. package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.d.ts +12 -12
  67. package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +79 -83
  68. package/api/resources/conversationalAi/resources/phoneNumbers/types/index.d.ts +1 -1
  69. package/api/resources/conversationalAi/resources/phoneNumbers/types/index.js +1 -1
  70. package/api/resources/conversationalAi/resources/secrets/client/Client.js +7 -11
  71. package/api/resources/conversationalAi/resources/settings/client/Client.js +5 -9
  72. package/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +3 -7
  73. package/api/resources/conversationalAi/resources/tools/client/Client.js +13 -17
  74. package/api/resources/conversationalAi/resources/twilio/client/Client.js +3 -7
  75. package/api/resources/dubbing/client/Client.js +7 -11
  76. package/api/resources/dubbing/client/requests/BodyDubAVideoOrAnAudioFileV1DubbingPost.d.ts +5 -5
  77. package/api/resources/dubbing/resources/audio/client/Client.js +3 -7
  78. package/api/resources/dubbing/resources/resource/client/Client.js +11 -15
  79. package/api/resources/dubbing/resources/resource/resources/language/client/Client.js +3 -7
  80. package/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +5 -9
  81. package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +5 -9
  82. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +3 -7
  83. package/api/resources/dubbing/resources/transcript/client/Client.js +3 -7
  84. package/api/resources/forcedAlignment/client/Client.js +3 -7
  85. package/api/resources/forcedAlignment/client/requests/BodyCreateForcedAlignmentV1ForcedAlignmentPost.d.ts +2 -2
  86. package/api/resources/history/client/Client.js +17 -16
  87. package/api/resources/index.d.ts +0 -1
  88. package/api/resources/index.js +0 -1
  89. package/api/resources/models/client/Client.js +3 -7
  90. package/api/resources/pronunciationDictionaries/client/Client.js +13 -17
  91. package/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromFilePost.d.ts +2 -2
  92. package/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +5 -9
  93. package/api/resources/samples/client/Client.js +3 -7
  94. package/api/resources/speechToSpeech/client/Client.js +5 -9
  95. package/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechStreamingV1SpeechToSpeechVoiceIdStreamPost.d.ts +2 -2
  96. package/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost.d.ts +2 -2
  97. package/api/resources/speechToText/client/Client.d.ts +3 -1
  98. package/api/resources/speechToText/client/Client.js +14 -12
  99. package/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +6 -2
  100. package/api/resources/studio/client/Client.js +3 -7
  101. package/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +6 -0
  102. package/api/resources/studio/resources/projects/client/Client.js +13 -17
  103. package/api/resources/studio/resources/projects/client/requests/BodyCreateStudioProjectV1StudioProjectsPost.d.ts +9 -3
  104. package/api/resources/studio/resources/projects/resources/chapters/client/Client.js +13 -17
  105. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +7 -11
  106. package/api/resources/studio/resources/projects/resources/content/client/Client.js +6 -7
  107. package/api/resources/studio/resources/projects/resources/content/client/requests/BodyUpdateStudioProjectContentV1StudioProjectsProjectIdContentPost.d.ts +10 -2
  108. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +3 -7
  109. package/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +9 -13
  110. package/api/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.d.ts +2 -1
  111. package/api/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.js +1 -0
  112. package/api/resources/textToDialogue/client/Client.js +5 -9
  113. package/api/resources/textToSoundEffects/client/Client.js +3 -7
  114. package/api/resources/textToSpeech/client/Client.js +9 -13
  115. package/api/resources/textToVoice/client/Client.d.ts +3 -0
  116. package/api/resources/textToVoice/client/Client.js +14 -13
  117. package/api/resources/textToVoice/client/requests/VoiceDesignRequestModel.d.ts +2 -0
  118. package/api/resources/textToVoice/index.d.ts +1 -0
  119. package/api/resources/textToVoice/index.js +1 -0
  120. package/api/resources/textToVoice/resources/index.d.ts +1 -0
  121. package/api/resources/textToVoice/resources/index.js +37 -0
  122. package/api/resources/textToVoice/resources/preview/client/Client.d.ts +38 -0
  123. package/api/resources/textToVoice/resources/preview/client/Client.js +116 -0
  124. package/api/resources/textToVoice/resources/preview/client/index.d.ts +1 -0
  125. package/api/resources/textToVoice/resources/preview/index.d.ts +1 -0
  126. package/api/resources/textToVoice/resources/preview/index.js +17 -0
  127. package/api/resources/usage/client/Client.js +3 -7
  128. package/api/resources/user/client/Client.js +3 -7
  129. package/api/resources/user/resources/subscription/client/Client.js +3 -7
  130. package/api/resources/voices/client/Client.js +17 -21
  131. package/api/resources/voices/client/requests/BodyEditVoiceV1VoicesVoiceIdEditPost.d.ts +2 -2
  132. package/api/resources/voices/client/requests/BodyGetSimilarLibraryVoicesV1SimilarVoicesPost.d.ts +2 -2
  133. package/api/resources/voices/resources/ivc/client/Client.js +3 -7
  134. package/api/resources/voices/resources/ivc/client/requests/BodyAddVoiceV1VoicesAddPost.d.ts +2 -2
  135. package/api/resources/voices/resources/pvc/client/Client.js +7 -11
  136. package/api/resources/voices/resources/pvc/resources/samples/client/Client.js +7 -11
  137. package/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyAddSamplesToPvcVoiceV1VoicesPvcVoiceIdSamplesPost.d.ts +2 -2
  138. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.d.ts +5 -2
  139. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +17 -12
  140. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/index.d.ts +1 -0
  141. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/index.js +15 -0
  142. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/requests/AudioGetRequest.d.ts +15 -0
  143. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/requests/index.d.ts +1 -0
  144. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/requests/index.js +2 -0
  145. package/api/resources/voices/resources/pvc/resources/samples/resources/index.d.ts +1 -0
  146. package/api/resources/voices/resources/pvc/resources/samples/resources/index.js +4 -0
  147. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +5 -9
  148. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +3 -7
  149. package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +3 -7
  150. package/api/resources/voices/resources/pvc/resources/verification/client/Client.js +3 -7
  151. package/api/resources/voices/resources/pvc/resources/verification/client/requests/BodyRequestManualVerificationV1VoicesPvcVoiceIdVerificationPost.d.ts +2 -2
  152. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +5 -9
  153. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/requests/BodyVerifyPvcVoiceCaptchaV1VoicesPvcVoiceIdCaptchaPost.d.ts +2 -2
  154. package/api/resources/voices/resources/samples/resources/audio/client/Client.js +3 -7
  155. package/api/resources/voices/resources/settings/client/Client.js +7 -11
  156. package/api/resources/webhooks/client/Client.js +3 -7
  157. package/api/resources/workspace/client/Client.d.ts +0 -67
  158. package/api/resources/workspace/client/Client.js +0 -326
  159. package/api/resources/workspace/client/index.d.ts +0 -1
  160. package/api/resources/workspace/client/index.js +0 -15
  161. package/api/resources/workspace/resources/groups/client/Client.js +3 -7
  162. package/api/resources/workspace/resources/groups/resources/members/client/Client.js +5 -9
  163. package/api/resources/workspace/resources/invites/client/Client.js +7 -11
  164. package/api/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.d.ts +3 -1
  165. package/api/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.js +2 -0
  166. package/api/resources/workspace/resources/members/client/Client.js +5 -9
  167. package/api/resources/workspace/resources/resources/client/Client.js +7 -11
  168. package/api/types/AddProjectRequest.d.ts +7 -1
  169. package/api/types/AgentConfig.d.ts +1 -10
  170. package/api/types/AgentTransfer.d.ts +3 -0
  171. package/api/types/AuthConnectionLocator.d.ts +9 -0
  172. package/api/types/BadRequestErrorBody.d.ts +7 -0
  173. package/api/types/BodyAddProjectV1ProjectsAddPostSourceType.d.ts +2 -1
  174. package/api/types/BodyAddProjectV1ProjectsAddPostSourceType.js +1 -0
  175. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +6 -0
  176. package/api/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.d.ts +8 -0
  177. package/api/types/BreakdownTypes.d.ts +4 -1
  178. package/api/types/BreakdownTypes.js +3 -0
  179. package/api/types/BuiltInToolsInput.d.ts +2 -0
  180. package/api/types/BuiltInToolsOutput.d.ts +2 -0
  181. package/api/types/ChapterResponse.d.ts +2 -0
  182. package/api/types/ChapterWithContentResponseModel.d.ts +2 -0
  183. package/api/types/ClientToolConfigInput.d.ts +1 -1
  184. package/api/types/ClientToolConfigOutput.d.ts +1 -1
  185. package/api/types/ConvAiWebhooks.d.ts +2 -0
  186. package/api/types/ConversationHistoryElevenAssistantCommonModel.d.ts +6 -0
  187. package/api/types/ConversationHistoryMetadataCommonModel.d.ts +3 -0
  188. package/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +4 -1
  189. package/api/types/ConversationHistoryTranscriptToolCallMcpDetails.d.ts +13 -0
  190. package/api/types/ConversationInitiationClientDataInternal.d.ts +2 -0
  191. package/api/types/ConversationInitiationClientDataRequestInput.d.ts +2 -0
  192. package/api/types/ConversationInitiationClientDataRequestOutput.d.ts +2 -0
  193. package/api/types/ConversationInitiationSource.d.ts +20 -0
  194. package/api/types/ConversationInitiationSource.js +19 -0
  195. package/api/types/ConversationSimulationSpecification.d.ts +1 -1
  196. package/api/types/ConversationalConfig.d.ts +1 -1
  197. package/api/types/CreateSipTrunkPhoneNumberRequest.d.ts +2 -21
  198. package/api/types/ForcedAlignmentResponseModel.d.ts +2 -0
  199. package/api/types/ForcedAlignmentWordResponseModel.d.ts +2 -0
  200. package/api/types/GetConversationResponseModel.d.ts +1 -0
  201. package/api/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.d.ts +15 -0
  202. package/api/types/{SipTrunkConfigResponseModel.d.ts → GetPhoneNumberOutboundSipTrunkConfigResponseModel.d.ts} +1 -1
  203. package/api/types/GetPhoneNumberSipTrunkResponseModel.d.ts +5 -1
  204. package/api/types/InboundSipTrunkConfigRequestModel.d.ts +14 -0
  205. package/api/types/MetricType.d.ts +2 -1
  206. package/api/types/MetricType.js +1 -0
  207. package/api/types/OutboundSipTrunkConfigRequestModel.d.ts +16 -0
  208. package/api/types/PhoneNumberTransfer.d.ts +4 -1
  209. package/api/types/PhoneNumberTransferDestination.d.ts +6 -0
  210. package/api/types/PhoneNumberTransferTransferDestination.d.ts +13 -0
  211. package/api/types/PlayDtmfToolConfig.d.ts +11 -0
  212. package/api/types/ProjectExtendedResponse.d.ts +2 -2
  213. package/api/types/ProjectExtendedResponseModelSourceType.d.ts +2 -1
  214. package/api/types/ProjectExtendedResponseModelSourceType.js +1 -0
  215. package/api/types/ProjectResponseModelSourceType.d.ts +2 -1
  216. package/api/types/ProjectResponseModelSourceType.js +1 -0
  217. package/api/types/PromptAgentApiModelInput.d.ts +1 -1
  218. package/api/types/PromptAgentApiModelOutput.d.ts +1 -1
  219. package/api/types/PromptAgentDbModel.d.ts +0 -26
  220. package/api/types/{SipTrunkCredentials.d.ts → SipTrunkCredentialsRequestModel.d.ts} +1 -1
  221. package/api/types/SipUriTransferDestination.d.ts +6 -0
  222. package/api/types/SubscriptionStatusType.d.ts +1 -3
  223. package/api/types/SubscriptionStatusType.js +0 -2
  224. package/api/types/SystemToolConfigInputParams.d.ts +5 -2
  225. package/api/types/SystemToolConfigOutputParams.d.ts +5 -2
  226. package/api/types/{TransferToNumberToolConfig.d.ts → TransferToNumberToolConfigInput.d.ts} +1 -1
  227. package/api/types/TransferToNumberToolConfigOutput.d.ts +9 -0
  228. package/api/types/TransferToNumberToolConfigOutput.js +5 -0
  229. package/api/types/TransferTypeEnum.d.ts +8 -0
  230. package/api/types/TransferTypeEnum.js +10 -0
  231. package/api/types/WebhookToolApiSchemaConfigInput.d.ts +2 -0
  232. package/api/types/WebhookToolApiSchemaConfigOutput.d.ts +2 -0
  233. package/api/types/WidgetTextContents.d.ts +8 -0
  234. package/api/types/WorkspaceResourceType.d.ts +3 -1
  235. package/api/types/WorkspaceResourceType.js +2 -0
  236. package/api/types/index.d.ts +18 -8
  237. package/api/types/index.js +18 -8
  238. package/core/fetcher/BinaryResponse.d.ts +20 -0
  239. package/core/fetcher/BinaryResponse.js +17 -0
  240. package/core/fetcher/Fetcher.d.ts +1 -1
  241. package/core/fetcher/Fetcher.js +3 -3
  242. package/core/fetcher/ResponseWithBody.d.ts +4 -0
  243. package/core/fetcher/ResponseWithBody.js +6 -0
  244. package/core/fetcher/createRequestUrl.d.ts +1 -1
  245. package/core/fetcher/createRequestUrl.js +3 -7
  246. package/core/fetcher/getErrorResponseBody.d.ts +1 -0
  247. package/core/fetcher/getErrorResponseBody.js +44 -0
  248. package/core/fetcher/getFetchFn.js +3 -3
  249. package/core/fetcher/getResponseBody.js +34 -32
  250. package/core/fetcher/index.d.ts +1 -0
  251. package/core/file.d.ts +1 -0
  252. package/core/file.js +2 -0
  253. package/core/form-data-utils/FormDataWrapper.d.ts +5 -52
  254. package/core/form-data-utils/FormDataWrapper.js +105 -125
  255. package/core/form-data-utils/encodeAsFormParameter.d.ts +0 -3
  256. package/core/form-data-utils/encodeAsFormParameter.js +2 -8
  257. package/core/headers.d.ts +1 -1
  258. package/core/index.d.ts +2 -0
  259. package/core/index.js +3 -1
  260. package/core/url/index.d.ts +2 -0
  261. package/core/url/index.js +7 -0
  262. package/core/url/join.d.ts +1 -0
  263. package/core/url/join.js +49 -0
  264. package/core/url/qs.d.ts +6 -0
  265. package/core/url/qs.js +64 -0
  266. package/dist/Client.d.ts +3 -3
  267. package/dist/Client.js +17 -17
  268. package/dist/api/errors/BadRequestError.d.ts +2 -1
  269. package/dist/api/resources/audioIsolation/client/Client.js +5 -9
  270. package/dist/api/resources/audioIsolation/client/requests/BodyAudioIsolationStreamV1AudioIsolationStreamPost.d.ts +2 -2
  271. package/dist/api/resources/audioIsolation/client/requests/BodyAudioIsolationV1AudioIsolationPost.d.ts +2 -2
  272. package/dist/api/resources/audioNative/client/Client.js +7 -11
  273. package/dist/api/resources/audioNative/client/requests/BodyCreatesAudioNativeEnabledProjectV1AudioNativePost.d.ts +2 -2
  274. package/dist/api/resources/audioNative/client/requests/BodyUpdateAudioNativeProjectContentV1AudioNativeProjectIdContentPost.d.ts +2 -2
  275. package/dist/api/resources/conversationalAi/client/Client.js +16 -15
  276. package/dist/api/resources/conversationalAi/client/requests/BodyAddToKnowledgeBaseV1ConvaiKnowledgeBasePost.d.ts +3 -2
  277. package/dist/api/resources/conversationalAi/conversation/AudioInterface.d.ts +44 -0
  278. package/dist/api/resources/conversationalAi/conversation/AudioInterface.js +12 -0
  279. package/dist/api/resources/conversationalAi/conversation/ClientTools.d.ts +60 -0
  280. package/dist/api/resources/conversationalAi/conversation/ClientTools.js +132 -0
  281. package/dist/api/resources/conversationalAi/conversation/Conversation.d.ts +94 -0
  282. package/dist/api/resources/conversationalAi/conversation/Conversation.js +280 -0
  283. package/dist/api/resources/conversationalAi/conversation/ConversationConfig.d.ts +18 -0
  284. package/dist/api/resources/conversationalAi/conversation/ConversationConfig.js +16 -0
  285. package/dist/api/resources/conversationalAi/conversation/DefaultAudioInterface.d.ts +63 -0
  286. package/dist/api/resources/conversationalAi/conversation/DefaultAudioInterface.js +126 -0
  287. package/dist/api/resources/conversationalAi/conversation/__tests__/Conversation.test.d.ts +1 -0
  288. package/dist/api/resources/conversationalAi/conversation/__tests__/Conversation.test.js +358 -0
  289. package/dist/api/resources/conversationalAi/conversation/events.d.ts +84 -0
  290. package/dist/api/resources/conversationalAi/conversation/events.js +19 -0
  291. package/dist/api/resources/conversationalAi/conversation/index.d.ts +6 -0
  292. package/dist/api/resources/conversationalAi/conversation/index.js +22 -0
  293. package/dist/api/resources/conversationalAi/conversation/interfaces/ConversationClient.d.ts +11 -0
  294. package/dist/api/resources/conversationalAi/conversation/interfaces/ConversationClient.js +2 -0
  295. package/dist/api/resources/conversationalAi/conversation/interfaces/WebSocketInterface.d.ts +12 -0
  296. package/dist/api/resources/conversationalAi/conversation/interfaces/WebSocketInterface.js +13 -0
  297. package/dist/api/resources/conversationalAi/conversation/mocks/ConversationTestFactory.d.ts +15 -0
  298. package/dist/api/resources/conversationalAi/conversation/mocks/ConversationTestFactory.js +28 -0
  299. package/dist/api/resources/conversationalAi/conversation/mocks/MockConversation.d.ts +43 -0
  300. package/dist/api/resources/conversationalAi/conversation/mocks/MockConversation.js +108 -0
  301. package/dist/api/resources/conversationalAi/conversation/mocks/index.d.ts +2 -0
  302. package/dist/api/resources/conversationalAi/conversation/mocks/index.js +18 -0
  303. package/dist/api/resources/conversationalAi/resources/agents/client/Client.d.ts +4 -4
  304. package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +21 -25
  305. package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.d.ts +2 -2
  306. package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.d.ts +2 -2
  307. package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +3 -7
  308. package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +3 -7
  309. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +3 -7
  310. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +3 -7
  311. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +3 -7
  312. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/requests/BodyPostAgentAvatarV1ConvaiAgentsAgentIdAvatarPost.d.ts +2 -2
  313. package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +1 -1
  314. package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.js +12 -16
  315. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +9 -13
  316. package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +3 -7
  317. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +3 -7
  318. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +5 -9
  319. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +3 -7
  320. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +3 -7
  321. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +2 -1
  322. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +28 -25
  323. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFileDocumentV1ConvaiKnowledgeBaseFilePost.d.ts +2 -2
  324. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsGetRequest.d.ts +10 -0
  325. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsGetRequest.js +5 -0
  326. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.d.ts +1 -0
  327. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +3 -7
  328. package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.js +3 -7
  329. package/dist/api/resources/conversationalAi/resources/mcpServers/client/Client.js +7 -11
  330. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.js +3 -7
  331. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.js +5 -9
  332. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.js +3 -7
  333. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.d.ts +12 -12
  334. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +79 -83
  335. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/index.d.ts +1 -1
  336. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/index.js +1 -1
  337. package/dist/api/resources/conversationalAi/resources/secrets/client/Client.js +7 -11
  338. package/dist/api/resources/conversationalAi/resources/settings/client/Client.js +5 -9
  339. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +3 -7
  340. package/dist/api/resources/conversationalAi/resources/tools/client/Client.js +13 -17
  341. package/dist/api/resources/conversationalAi/resources/twilio/client/Client.js +3 -7
  342. package/dist/api/resources/dubbing/client/Client.js +7 -11
  343. package/dist/api/resources/dubbing/client/requests/BodyDubAVideoOrAnAudioFileV1DubbingPost.d.ts +5 -5
  344. package/dist/api/resources/dubbing/resources/audio/client/Client.js +3 -7
  345. package/dist/api/resources/dubbing/resources/resource/client/Client.js +11 -15
  346. package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.js +3 -7
  347. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +5 -9
  348. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +5 -9
  349. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +3 -7
  350. package/dist/api/resources/dubbing/resources/transcript/client/Client.js +3 -7
  351. package/dist/api/resources/forcedAlignment/client/Client.js +3 -7
  352. package/dist/api/resources/forcedAlignment/client/requests/BodyCreateForcedAlignmentV1ForcedAlignmentPost.d.ts +2 -2
  353. package/dist/api/resources/history/client/Client.js +17 -16
  354. package/dist/api/resources/index.d.ts +0 -1
  355. package/dist/api/resources/index.js +0 -1
  356. package/dist/api/resources/models/client/Client.js +3 -7
  357. package/dist/api/resources/pronunciationDictionaries/client/Client.js +13 -17
  358. package/dist/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromFilePost.d.ts +2 -2
  359. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +5 -9
  360. package/dist/api/resources/samples/client/Client.js +3 -7
  361. package/dist/api/resources/speechToSpeech/client/Client.js +5 -9
  362. package/dist/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechStreamingV1SpeechToSpeechVoiceIdStreamPost.d.ts +2 -2
  363. package/dist/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost.d.ts +2 -2
  364. package/dist/api/resources/speechToText/client/Client.d.ts +3 -1
  365. package/dist/api/resources/speechToText/client/Client.js +14 -12
  366. package/dist/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +6 -2
  367. package/dist/api/resources/studio/client/Client.js +3 -7
  368. package/dist/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +6 -0
  369. package/dist/api/resources/studio/resources/projects/client/Client.js +13 -17
  370. package/dist/api/resources/studio/resources/projects/client/requests/BodyCreateStudioProjectV1StudioProjectsPost.d.ts +9 -3
  371. package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.js +13 -17
  372. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +7 -11
  373. package/dist/api/resources/studio/resources/projects/resources/content/client/Client.js +6 -7
  374. package/dist/api/resources/studio/resources/projects/resources/content/client/requests/BodyUpdateStudioProjectContentV1StudioProjectsProjectIdContentPost.d.ts +10 -2
  375. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +3 -7
  376. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +9 -13
  377. package/dist/api/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.d.ts +2 -1
  378. package/dist/api/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.js +1 -0
  379. package/dist/api/resources/textToDialogue/client/Client.js +5 -9
  380. package/dist/api/resources/textToSoundEffects/client/Client.js +3 -7
  381. package/dist/api/resources/textToSpeech/client/Client.js +9 -13
  382. package/dist/api/resources/textToVoice/client/Client.d.ts +3 -0
  383. package/dist/api/resources/textToVoice/client/Client.js +14 -13
  384. package/dist/api/resources/textToVoice/client/requests/VoiceDesignRequestModel.d.ts +2 -0
  385. package/dist/api/resources/textToVoice/index.d.ts +1 -0
  386. package/dist/api/resources/textToVoice/index.js +1 -0
  387. package/dist/api/resources/textToVoice/resources/index.d.ts +1 -0
  388. package/dist/api/resources/textToVoice/resources/index.js +37 -0
  389. package/dist/api/resources/textToVoice/resources/preview/client/Client.d.ts +38 -0
  390. package/dist/api/resources/textToVoice/resources/preview/client/Client.js +116 -0
  391. package/dist/api/resources/textToVoice/resources/preview/client/index.d.ts +1 -0
  392. package/dist/api/resources/textToVoice/resources/preview/client/index.js +2 -0
  393. package/dist/api/resources/textToVoice/resources/preview/index.d.ts +1 -0
  394. package/dist/api/resources/textToVoice/resources/preview/index.js +17 -0
  395. package/dist/api/resources/usage/client/Client.js +3 -7
  396. package/dist/api/resources/user/client/Client.js +3 -7
  397. package/dist/api/resources/user/resources/subscription/client/Client.js +3 -7
  398. package/dist/api/resources/voices/client/Client.js +17 -21
  399. package/dist/api/resources/voices/client/requests/BodyEditVoiceV1VoicesVoiceIdEditPost.d.ts +2 -2
  400. package/dist/api/resources/voices/client/requests/BodyGetSimilarLibraryVoicesV1SimilarVoicesPost.d.ts +2 -2
  401. package/dist/api/resources/voices/resources/ivc/client/Client.js +3 -7
  402. package/dist/api/resources/voices/resources/ivc/client/requests/BodyAddVoiceV1VoicesAddPost.d.ts +2 -2
  403. package/dist/api/resources/voices/resources/pvc/client/Client.js +7 -11
  404. package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.js +7 -11
  405. package/dist/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyAddSamplesToPvcVoiceV1VoicesPvcVoiceIdSamplesPost.d.ts +2 -2
  406. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.d.ts +5 -2
  407. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +17 -12
  408. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/index.d.ts +1 -0
  409. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/index.js +15 -0
  410. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/requests/AudioGetRequest.d.ts +15 -0
  411. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/requests/AudioGetRequest.js +5 -0
  412. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/requests/index.d.ts +1 -0
  413. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/requests/index.js +2 -0
  414. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/index.d.ts +1 -0
  415. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/index.js +4 -0
  416. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +5 -9
  417. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +3 -7
  418. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +3 -7
  419. package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.js +3 -7
  420. package/dist/api/resources/voices/resources/pvc/resources/verification/client/requests/BodyRequestManualVerificationV1VoicesPvcVoiceIdVerificationPost.d.ts +2 -2
  421. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +5 -9
  422. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/requests/BodyVerifyPvcVoiceCaptchaV1VoicesPvcVoiceIdCaptchaPost.d.ts +2 -2
  423. package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.js +3 -7
  424. package/dist/api/resources/voices/resources/settings/client/Client.js +7 -11
  425. package/dist/api/resources/webhooks/client/Client.js +3 -7
  426. package/dist/api/resources/workspace/client/Client.d.ts +0 -67
  427. package/dist/api/resources/workspace/client/Client.js +0 -326
  428. package/dist/api/resources/workspace/client/index.d.ts +0 -1
  429. package/dist/api/resources/workspace/client/index.js +0 -15
  430. package/dist/api/resources/workspace/resources/groups/client/Client.js +3 -7
  431. package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.js +5 -9
  432. package/dist/api/resources/workspace/resources/invites/client/Client.js +7 -11
  433. package/dist/api/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.d.ts +3 -1
  434. package/dist/api/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.js +2 -0
  435. package/dist/api/resources/workspace/resources/members/client/Client.js +5 -9
  436. package/dist/api/resources/workspace/resources/resources/client/Client.js +7 -11
  437. package/dist/api/types/AddProjectRequest.d.ts +7 -1
  438. package/dist/api/types/AgentConfig.d.ts +1 -10
  439. package/dist/api/types/AgentTransfer.d.ts +3 -0
  440. package/dist/api/types/AuthConnectionLocator.d.ts +9 -0
  441. package/dist/api/types/AuthConnectionLocator.js +5 -0
  442. package/dist/api/types/BadRequestErrorBody.d.ts +7 -0
  443. package/dist/api/types/BadRequestErrorBody.js +5 -0
  444. package/dist/api/types/BodyAddProjectV1ProjectsAddPostSourceType.d.ts +2 -1
  445. package/dist/api/types/BodyAddProjectV1ProjectsAddPostSourceType.js +1 -0
  446. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +6 -0
  447. package/dist/api/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.d.ts +8 -0
  448. package/dist/api/types/BreakdownTypes.d.ts +4 -1
  449. package/dist/api/types/BreakdownTypes.js +3 -0
  450. package/dist/api/types/BuiltInToolsInput.d.ts +2 -0
  451. package/dist/api/types/BuiltInToolsOutput.d.ts +2 -0
  452. package/dist/api/types/ChapterResponse.d.ts +2 -0
  453. package/dist/api/types/ChapterWithContentResponseModel.d.ts +2 -0
  454. package/dist/api/types/ClientToolConfigInput.d.ts +1 -1
  455. package/dist/api/types/ClientToolConfigOutput.d.ts +1 -1
  456. package/dist/api/types/ConvAiWebhooks.d.ts +2 -0
  457. package/dist/api/types/ConversationHistoryElevenAssistantCommonModel.d.ts +6 -0
  458. package/dist/api/types/ConversationHistoryElevenAssistantCommonModel.js +5 -0
  459. package/dist/api/types/ConversationHistoryMetadataCommonModel.d.ts +3 -0
  460. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +4 -1
  461. package/dist/api/types/ConversationHistoryTranscriptToolCallMcpDetails.d.ts +13 -0
  462. package/dist/api/types/ConversationHistoryTranscriptToolCallMcpDetails.js +5 -0
  463. package/dist/api/types/ConversationInitiationClientDataInternal.d.ts +2 -0
  464. package/dist/api/types/ConversationInitiationClientDataRequestInput.d.ts +2 -0
  465. package/dist/api/types/ConversationInitiationClientDataRequestOutput.d.ts +2 -0
  466. package/dist/api/types/ConversationInitiationSource.d.ts +20 -0
  467. package/dist/api/types/ConversationInitiationSource.js +19 -0
  468. package/dist/api/types/ConversationSimulationSpecification.d.ts +1 -1
  469. package/dist/api/types/ConversationalConfig.d.ts +1 -1
  470. package/dist/api/types/CreateSipTrunkPhoneNumberRequest.d.ts +2 -21
  471. package/dist/api/types/ForcedAlignmentResponseModel.d.ts +2 -0
  472. package/dist/api/types/ForcedAlignmentWordResponseModel.d.ts +2 -0
  473. package/dist/api/types/GetConversationResponseModel.d.ts +1 -0
  474. package/dist/api/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.d.ts +15 -0
  475. package/dist/api/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.js +5 -0
  476. package/dist/api/types/{SipTrunkConfigResponseModel.d.ts → GetPhoneNumberOutboundSipTrunkConfigResponseModel.d.ts} +1 -1
  477. package/dist/api/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.js +5 -0
  478. package/dist/api/types/GetPhoneNumberSipTrunkResponseModel.d.ts +5 -1
  479. package/dist/api/types/InboundSipTrunkConfigRequestModel.d.ts +14 -0
  480. package/dist/api/types/InboundSipTrunkConfigRequestModel.js +5 -0
  481. package/dist/api/types/MetricType.d.ts +2 -1
  482. package/dist/api/types/MetricType.js +1 -0
  483. package/dist/api/types/OutboundSipTrunkConfigRequestModel.d.ts +16 -0
  484. package/dist/api/types/OutboundSipTrunkConfigRequestModel.js +5 -0
  485. package/dist/api/types/PhoneNumberTransfer.d.ts +4 -1
  486. package/dist/api/types/PhoneNumberTransferDestination.d.ts +6 -0
  487. package/dist/api/types/PhoneNumberTransferDestination.js +5 -0
  488. package/dist/api/types/PhoneNumberTransferTransferDestination.d.ts +13 -0
  489. package/dist/api/types/PhoneNumberTransferTransferDestination.js +5 -0
  490. package/dist/api/types/PlayDtmfToolConfig.d.ts +11 -0
  491. package/dist/api/types/PlayDtmfToolConfig.js +5 -0
  492. package/dist/api/types/ProjectExtendedResponse.d.ts +2 -2
  493. package/dist/api/types/ProjectExtendedResponseModelSourceType.d.ts +2 -1
  494. package/dist/api/types/ProjectExtendedResponseModelSourceType.js +1 -0
  495. package/dist/api/types/ProjectResponseModelSourceType.d.ts +2 -1
  496. package/dist/api/types/ProjectResponseModelSourceType.js +1 -0
  497. package/dist/api/types/PromptAgentApiModelInput.d.ts +1 -1
  498. package/dist/api/types/PromptAgentApiModelOutput.d.ts +1 -1
  499. package/dist/api/types/PromptAgentDbModel.d.ts +0 -26
  500. package/dist/api/types/{SipTrunkCredentials.d.ts → SipTrunkCredentialsRequestModel.d.ts} +1 -1
  501. package/dist/api/types/SipTrunkCredentialsRequestModel.js +5 -0
  502. package/dist/api/types/SipUriTransferDestination.d.ts +6 -0
  503. package/dist/api/types/SipUriTransferDestination.js +5 -0
  504. package/dist/api/types/SubscriptionStatusType.d.ts +1 -3
  505. package/dist/api/types/SubscriptionStatusType.js +0 -2
  506. package/dist/api/types/SystemToolConfigInputParams.d.ts +5 -2
  507. package/dist/api/types/SystemToolConfigOutputParams.d.ts +5 -2
  508. package/dist/api/types/{TransferToNumberToolConfig.d.ts → TransferToNumberToolConfigInput.d.ts} +1 -1
  509. package/dist/api/types/TransferToNumberToolConfigInput.js +5 -0
  510. package/dist/api/types/TransferToNumberToolConfigOutput.d.ts +9 -0
  511. package/dist/api/types/TransferToNumberToolConfigOutput.js +5 -0
  512. package/dist/api/types/TransferTypeEnum.d.ts +8 -0
  513. package/dist/api/types/TransferTypeEnum.js +10 -0
  514. package/dist/api/types/WebhookToolApiSchemaConfigInput.d.ts +2 -0
  515. package/dist/api/types/WebhookToolApiSchemaConfigOutput.d.ts +2 -0
  516. package/dist/api/types/WidgetTextContents.d.ts +8 -0
  517. package/dist/api/types/WorkspaceResourceType.d.ts +3 -1
  518. package/dist/api/types/WorkspaceResourceType.js +2 -0
  519. package/dist/api/types/index.d.ts +18 -8
  520. package/dist/api/types/index.js +18 -8
  521. package/dist/core/fetcher/BinaryResponse.d.ts +20 -0
  522. package/dist/core/fetcher/BinaryResponse.js +17 -0
  523. package/dist/core/fetcher/Fetcher.d.ts +1 -1
  524. package/dist/core/fetcher/Fetcher.js +3 -3
  525. package/dist/core/fetcher/ResponseWithBody.d.ts +4 -0
  526. package/dist/core/fetcher/ResponseWithBody.js +6 -0
  527. package/dist/core/fetcher/createRequestUrl.d.ts +1 -1
  528. package/dist/core/fetcher/createRequestUrl.js +3 -7
  529. package/dist/core/fetcher/getErrorResponseBody.d.ts +1 -0
  530. package/dist/core/fetcher/getErrorResponseBody.js +44 -0
  531. package/dist/core/fetcher/getFetchFn.js +3 -3
  532. package/dist/core/fetcher/getResponseBody.js +34 -32
  533. package/dist/core/fetcher/index.d.ts +1 -0
  534. package/dist/core/file.d.ts +1 -0
  535. package/dist/core/file.js +2 -0
  536. package/dist/core/form-data-utils/FormDataWrapper.d.ts +5 -52
  537. package/dist/core/form-data-utils/FormDataWrapper.js +105 -125
  538. package/dist/core/form-data-utils/encodeAsFormParameter.d.ts +0 -3
  539. package/dist/core/form-data-utils/encodeAsFormParameter.js +2 -8
  540. package/dist/core/headers.d.ts +1 -1
  541. package/dist/core/index.d.ts +2 -0
  542. package/dist/core/index.js +3 -1
  543. package/dist/core/url/index.d.ts +2 -0
  544. package/dist/core/url/index.js +7 -0
  545. package/dist/core/url/join.d.ts +1 -0
  546. package/dist/core/url/join.js +49 -0
  547. package/dist/core/url/qs.d.ts +6 -0
  548. package/dist/core/url/qs.js +64 -0
  549. package/dist/environments.d.ts +5 -1
  550. package/dist/environments.js +4 -0
  551. package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/index.d.ts +1 -1
  552. package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/index.js +1 -1
  553. package/dist/serialization/resources/index.d.ts +0 -1
  554. package/dist/serialization/resources/index.js +0 -1
  555. package/dist/serialization/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +3 -0
  556. package/dist/serialization/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.js +3 -0
  557. package/dist/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.d.ts +1 -1
  558. package/dist/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.js +1 -1
  559. package/dist/serialization/resources/textToVoice/client/requests/VoiceDesignRequestModel.d.ts +1 -0
  560. package/dist/serialization/resources/textToVoice/client/requests/VoiceDesignRequestModel.js +1 -0
  561. package/dist/serialization/resources/workspace/index.d.ts +0 -1
  562. package/dist/serialization/resources/workspace/index.js +0 -1
  563. package/dist/serialization/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.d.ts +1 -1
  564. package/dist/serialization/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.js +2 -0
  565. package/dist/serialization/types/AgentConfig.d.ts +2 -9
  566. package/dist/serialization/types/AgentConfig.js +1 -8
  567. package/dist/serialization/types/AgentTransfer.d.ts +3 -0
  568. package/dist/serialization/types/AgentTransfer.js +3 -0
  569. package/dist/serialization/types/AuthConnectionLocator.d.ts +12 -0
  570. package/{serialization/resources/workspace/client/getShareOptions.js → dist/serialization/types/AuthConnectionLocator.js} +5 -4
  571. package/dist/serialization/types/BadRequestErrorBody.d.ts +13 -0
  572. package/dist/serialization/{resources/workspace/client/getShareOptions.js → types/BadRequestErrorBody.js} +6 -4
  573. package/dist/serialization/types/BodyAddProjectV1ProjectsAddPostSourceType.d.ts +1 -1
  574. package/dist/serialization/types/BodyAddProjectV1ProjectsAddPostSourceType.js +1 -1
  575. package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +3 -0
  576. package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.js +3 -0
  577. package/dist/serialization/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.d.ts +1 -0
  578. package/dist/serialization/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.js +1 -0
  579. package/dist/serialization/types/BreakdownTypes.d.ts +1 -1
  580. package/dist/serialization/types/BreakdownTypes.js +3 -0
  581. package/dist/serialization/types/BuiltInToolsInput.d.ts +1 -0
  582. package/dist/serialization/types/BuiltInToolsInput.js +1 -0
  583. package/dist/serialization/types/BuiltInToolsOutput.d.ts +1 -0
  584. package/dist/serialization/types/BuiltInToolsOutput.js +1 -0
  585. package/dist/serialization/types/ChapterResponse.d.ts +1 -0
  586. package/dist/serialization/types/ChapterResponse.js +1 -0
  587. package/dist/serialization/types/ChapterWithContentResponseModel.d.ts +1 -0
  588. package/dist/serialization/types/ChapterWithContentResponseModel.js +1 -0
  589. package/dist/serialization/types/ConvAiWebhooks.d.ts +1 -0
  590. package/dist/serialization/types/ConvAiWebhooks.js +1 -0
  591. package/dist/serialization/types/ConversationHistoryElevenAssistantCommonModel.d.ts +12 -0
  592. package/{serialization/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.js → dist/serialization/types/ConversationHistoryElevenAssistantCommonModel.js} +3 -3
  593. package/dist/serialization/types/ConversationHistoryMetadataCommonModel.d.ts +5 -0
  594. package/dist/serialization/types/ConversationHistoryMetadataCommonModel.js +5 -0
  595. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +5 -1
  596. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.js +2 -0
  597. package/dist/serialization/types/ConversationHistoryTranscriptToolCallMcpDetails.d.ts +19 -0
  598. package/dist/serialization/types/ConversationHistoryTranscriptToolCallMcpDetails.js +50 -0
  599. package/dist/serialization/types/ConversationInitiationClientDataInternal.d.ts +1 -0
  600. package/dist/serialization/types/ConversationInitiationClientDataInternal.js +1 -0
  601. package/dist/serialization/types/ConversationInitiationClientDataRequestInput.d.ts +1 -0
  602. package/dist/serialization/types/ConversationInitiationClientDataRequestInput.js +1 -0
  603. package/dist/serialization/types/ConversationInitiationClientDataRequestOutput.d.ts +1 -0
  604. package/dist/serialization/types/ConversationInitiationClientDataRequestOutput.js +1 -0
  605. package/dist/serialization/types/ConversationInitiationSource.d.ts +10 -0
  606. package/dist/serialization/types/ConversationInitiationSource.js +53 -0
  607. package/dist/serialization/types/ConversationSimulationSpecification.d.ts +1 -1
  608. package/dist/serialization/types/ConversationalConfig.d.ts +1 -1
  609. package/dist/serialization/types/CreateSipTrunkPhoneNumberRequest.d.ts +4 -10
  610. package/dist/serialization/types/CreateSipTrunkPhoneNumberRequest.js +4 -10
  611. package/dist/serialization/types/ForcedAlignmentResponseModel.d.ts +1 -0
  612. package/dist/serialization/types/ForcedAlignmentResponseModel.js +1 -0
  613. package/dist/serialization/types/ForcedAlignmentWordResponseModel.d.ts +1 -0
  614. package/dist/serialization/types/ForcedAlignmentWordResponseModel.js +1 -0
  615. package/dist/serialization/types/GetConversationResponseModel.d.ts +1 -0
  616. package/dist/serialization/types/GetConversationResponseModel.js +1 -0
  617. package/dist/serialization/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.d.ts +17 -0
  618. package/dist/serialization/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.js +48 -0
  619. package/dist/serialization/types/{SipTrunkConfigResponseModel.d.ts → GetPhoneNumberOutboundSipTrunkConfigResponseModel.d.ts} +2 -2
  620. package/{serialization/types/SipTrunkConfigResponseModel.js → dist/serialization/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.js} +2 -2
  621. package/dist/serialization/types/GetPhoneNumberSipTrunkResponseModel.d.ts +5 -2
  622. package/dist/serialization/types/GetPhoneNumberSipTrunkResponseModel.js +5 -2
  623. package/dist/serialization/types/InboundSipTrunkConfigRequestModel.d.ts +17 -0
  624. package/dist/serialization/types/InboundSipTrunkConfigRequestModel.js +48 -0
  625. package/dist/serialization/types/MetricType.d.ts +1 -1
  626. package/dist/serialization/types/MetricType.js +9 -1
  627. package/dist/serialization/types/OutboundSipTrunkConfigRequestModel.d.ts +19 -0
  628. package/dist/serialization/types/OutboundSipTrunkConfigRequestModel.js +50 -0
  629. package/dist/serialization/types/PhoneNumberTransfer.d.ts +5 -1
  630. package/dist/serialization/types/PhoneNumberTransfer.js +5 -1
  631. package/dist/serialization/types/PhoneNumberTransferDestination.d.ts +12 -0
  632. package/dist/serialization/types/PhoneNumberTransferDestination.js +43 -0
  633. package/dist/serialization/types/PhoneNumberTransferTransferDestination.d.ts +18 -0
  634. package/dist/serialization/types/{DefaultSharingPreferencesResponseModel.js → PhoneNumberTransferTransferDestination.js} +11 -4
  635. package/dist/serialization/types/PlayDtmfToolConfig.d.ts +11 -0
  636. package/dist/serialization/types/PlayDtmfToolConfig.js +41 -0
  637. package/dist/serialization/types/ProjectExtendedResponse.d.ts +1 -1
  638. package/dist/serialization/types/ProjectExtendedResponse.js +1 -1
  639. package/dist/serialization/types/ProjectExtendedResponseModelSourceType.d.ts +1 -1
  640. package/dist/serialization/types/ProjectExtendedResponseModelSourceType.js +1 -1
  641. package/dist/serialization/types/ProjectResponseModelSourceType.d.ts +1 -1
  642. package/dist/serialization/types/ProjectResponseModelSourceType.js +1 -1
  643. package/dist/serialization/types/PromptAgentDbModel.d.ts +0 -18
  644. package/dist/serialization/types/PromptAgentDbModel.js +0 -18
  645. package/dist/serialization/types/{SipTrunkCredentials.d.ts → SipTrunkCredentialsRequestModel.d.ts} +2 -2
  646. package/{serialization/types/SipTrunkCredentials.js → dist/serialization/types/SipTrunkCredentialsRequestModel.js} +2 -2
  647. package/dist/serialization/types/SipUriTransferDestination.d.ts +12 -0
  648. package/dist/serialization/types/SipUriTransferDestination.js +43 -0
  649. package/dist/serialization/types/SubscriptionStatusType.d.ts +1 -1
  650. package/dist/serialization/types/SubscriptionStatusType.js +1 -10
  651. package/dist/serialization/types/SystemToolConfigInputParams.d.ts +7 -3
  652. package/dist/serialization/types/SystemToolConfigInputParams.js +4 -2
  653. package/dist/serialization/types/SystemToolConfigOutputParams.d.ts +7 -3
  654. package/dist/serialization/types/SystemToolConfigOutputParams.js +4 -2
  655. package/dist/serialization/types/{TransferToNumberToolConfig.d.ts → TransferToNumberToolConfigInput.d.ts} +2 -2
  656. package/{serialization/types/TransferToNumberToolConfig.js → dist/serialization/types/TransferToNumberToolConfigInput.js} +2 -2
  657. package/dist/serialization/types/TransferToNumberToolConfigOutput.d.ts +14 -0
  658. package/dist/serialization/types/TransferToNumberToolConfigOutput.js +45 -0
  659. package/dist/serialization/types/TransferTypeEnum.d.ts +10 -0
  660. package/dist/serialization/types/TransferTypeEnum.js +41 -0
  661. package/dist/serialization/types/WebhookToolApiSchemaConfigInput.d.ts +2 -0
  662. package/dist/serialization/types/WebhookToolApiSchemaConfigInput.js +2 -0
  663. package/dist/serialization/types/WebhookToolApiSchemaConfigOutput.d.ts +2 -0
  664. package/dist/serialization/types/WebhookToolApiSchemaConfigOutput.js +2 -0
  665. package/dist/serialization/types/WidgetTextContents.d.ts +4 -0
  666. package/dist/serialization/types/WidgetTextContents.js +4 -0
  667. package/dist/serialization/types/WorkspaceResourceType.d.ts +1 -1
  668. package/dist/serialization/types/WorkspaceResourceType.js +2 -0
  669. package/dist/serialization/types/index.d.ts +18 -8
  670. package/dist/serialization/types/index.js +18 -8
  671. package/dist/version.d.ts +1 -1
  672. package/dist/version.js +1 -1
  673. package/environments.d.ts +5 -1
  674. package/environments.js +4 -0
  675. package/jest.config.mjs +37 -4
  676. package/package.json +23 -24
  677. package/reference.md +66 -288
  678. package/serialization/resources/conversationalAi/resources/phoneNumbers/types/index.d.ts +1 -1
  679. package/serialization/resources/conversationalAi/resources/phoneNumbers/types/index.js +1 -1
  680. package/serialization/resources/index.d.ts +0 -1
  681. package/serialization/resources/index.js +0 -1
  682. package/serialization/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +3 -0
  683. package/serialization/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.js +3 -0
  684. package/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.d.ts +1 -1
  685. package/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.js +1 -1
  686. package/serialization/resources/textToVoice/client/requests/VoiceDesignRequestModel.d.ts +1 -0
  687. package/serialization/resources/textToVoice/client/requests/VoiceDesignRequestModel.js +1 -0
  688. package/serialization/resources/workspace/index.d.ts +0 -1
  689. package/serialization/resources/workspace/index.js +0 -1
  690. package/serialization/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.d.ts +1 -1
  691. package/serialization/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.js +2 -0
  692. package/serialization/types/AgentConfig.d.ts +2 -9
  693. package/serialization/types/AgentConfig.js +1 -8
  694. package/serialization/types/AgentTransfer.d.ts +3 -0
  695. package/serialization/types/AgentTransfer.js +3 -0
  696. package/serialization/types/AuthConnectionLocator.d.ts +12 -0
  697. package/serialization/types/AuthConnectionLocator.js +43 -0
  698. package/serialization/types/BadRequestErrorBody.d.ts +13 -0
  699. package/serialization/types/BadRequestErrorBody.js +44 -0
  700. package/serialization/types/BodyAddProjectV1ProjectsAddPostSourceType.d.ts +1 -1
  701. package/serialization/types/BodyAddProjectV1ProjectsAddPostSourceType.js +1 -1
  702. package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +3 -0
  703. package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.js +3 -0
  704. package/serialization/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.d.ts +1 -0
  705. package/serialization/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.js +1 -0
  706. package/serialization/types/BreakdownTypes.d.ts +1 -1
  707. package/serialization/types/BreakdownTypes.js +3 -0
  708. package/serialization/types/BuiltInToolsInput.d.ts +1 -0
  709. package/serialization/types/BuiltInToolsInput.js +1 -0
  710. package/serialization/types/BuiltInToolsOutput.d.ts +1 -0
  711. package/serialization/types/BuiltInToolsOutput.js +1 -0
  712. package/serialization/types/ChapterResponse.d.ts +1 -0
  713. package/serialization/types/ChapterResponse.js +1 -0
  714. package/serialization/types/ChapterWithContentResponseModel.d.ts +1 -0
  715. package/serialization/types/ChapterWithContentResponseModel.js +1 -0
  716. package/serialization/types/ConvAiWebhooks.d.ts +1 -0
  717. package/serialization/types/ConvAiWebhooks.js +1 -0
  718. package/serialization/types/ConversationHistoryElevenAssistantCommonModel.d.ts +12 -0
  719. package/{dist/serialization/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.js → serialization/types/ConversationHistoryElevenAssistantCommonModel.js} +3 -3
  720. package/serialization/types/ConversationHistoryMetadataCommonModel.d.ts +5 -0
  721. package/serialization/types/ConversationHistoryMetadataCommonModel.js +5 -0
  722. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +5 -1
  723. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.js +2 -0
  724. package/serialization/types/ConversationHistoryTranscriptToolCallMcpDetails.d.ts +19 -0
  725. package/serialization/types/ConversationHistoryTranscriptToolCallMcpDetails.js +50 -0
  726. package/serialization/types/ConversationInitiationClientDataInternal.d.ts +1 -0
  727. package/serialization/types/ConversationInitiationClientDataInternal.js +1 -0
  728. package/serialization/types/ConversationInitiationClientDataRequestInput.d.ts +1 -0
  729. package/serialization/types/ConversationInitiationClientDataRequestInput.js +1 -0
  730. package/serialization/types/ConversationInitiationClientDataRequestOutput.d.ts +1 -0
  731. package/serialization/types/ConversationInitiationClientDataRequestOutput.js +1 -0
  732. package/serialization/types/ConversationInitiationSource.d.ts +10 -0
  733. package/serialization/types/ConversationInitiationSource.js +53 -0
  734. package/serialization/types/ConversationSimulationSpecification.d.ts +1 -1
  735. package/serialization/types/ConversationalConfig.d.ts +1 -1
  736. package/serialization/types/CreateSipTrunkPhoneNumberRequest.d.ts +4 -10
  737. package/serialization/types/CreateSipTrunkPhoneNumberRequest.js +4 -10
  738. package/serialization/types/ForcedAlignmentResponseModel.d.ts +1 -0
  739. package/serialization/types/ForcedAlignmentResponseModel.js +1 -0
  740. package/serialization/types/ForcedAlignmentWordResponseModel.d.ts +1 -0
  741. package/serialization/types/ForcedAlignmentWordResponseModel.js +1 -0
  742. package/serialization/types/GetConversationResponseModel.d.ts +1 -0
  743. package/serialization/types/GetConversationResponseModel.js +1 -0
  744. package/serialization/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.d.ts +17 -0
  745. package/serialization/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.js +48 -0
  746. package/serialization/types/{SipTrunkConfigResponseModel.d.ts → GetPhoneNumberOutboundSipTrunkConfigResponseModel.d.ts} +2 -2
  747. package/{dist/serialization/types/SipTrunkConfigResponseModel.js → serialization/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.js} +2 -2
  748. package/serialization/types/GetPhoneNumberSipTrunkResponseModel.d.ts +5 -2
  749. package/serialization/types/GetPhoneNumberSipTrunkResponseModel.js +5 -2
  750. package/serialization/types/InboundSipTrunkConfigRequestModel.d.ts +17 -0
  751. package/serialization/types/InboundSipTrunkConfigRequestModel.js +48 -0
  752. package/serialization/types/MetricType.d.ts +1 -1
  753. package/serialization/types/MetricType.js +9 -1
  754. package/serialization/types/OutboundSipTrunkConfigRequestModel.d.ts +19 -0
  755. package/serialization/types/OutboundSipTrunkConfigRequestModel.js +50 -0
  756. package/serialization/types/PhoneNumberTransfer.d.ts +5 -1
  757. package/serialization/types/PhoneNumberTransfer.js +5 -1
  758. package/serialization/types/PhoneNumberTransferDestination.d.ts +12 -0
  759. package/serialization/types/PhoneNumberTransferDestination.js +43 -0
  760. package/serialization/types/PhoneNumberTransferTransferDestination.d.ts +18 -0
  761. package/serialization/types/PhoneNumberTransferTransferDestination.js +51 -0
  762. package/serialization/types/PlayDtmfToolConfig.d.ts +11 -0
  763. package/serialization/types/PlayDtmfToolConfig.js +41 -0
  764. package/serialization/types/ProjectExtendedResponse.d.ts +1 -1
  765. package/serialization/types/ProjectExtendedResponse.js +1 -1
  766. package/serialization/types/ProjectExtendedResponseModelSourceType.d.ts +1 -1
  767. package/serialization/types/ProjectExtendedResponseModelSourceType.js +1 -1
  768. package/serialization/types/ProjectResponseModelSourceType.d.ts +1 -1
  769. package/serialization/types/ProjectResponseModelSourceType.js +1 -1
  770. package/serialization/types/PromptAgentDbModel.d.ts +0 -18
  771. package/serialization/types/PromptAgentDbModel.js +0 -18
  772. package/serialization/types/{SipTrunkCredentials.d.ts → SipTrunkCredentialsRequestModel.d.ts} +2 -2
  773. package/{dist/serialization/types/SipTrunkCredentials.js → serialization/types/SipTrunkCredentialsRequestModel.js} +2 -2
  774. package/serialization/types/SipUriTransferDestination.d.ts +12 -0
  775. package/serialization/types/SipUriTransferDestination.js +43 -0
  776. package/serialization/types/SubscriptionStatusType.d.ts +1 -1
  777. package/serialization/types/SubscriptionStatusType.js +1 -10
  778. package/serialization/types/SystemToolConfigInputParams.d.ts +7 -3
  779. package/serialization/types/SystemToolConfigInputParams.js +4 -2
  780. package/serialization/types/SystemToolConfigOutputParams.d.ts +7 -3
  781. package/serialization/types/SystemToolConfigOutputParams.js +4 -2
  782. package/serialization/types/{TransferToNumberToolConfig.d.ts → TransferToNumberToolConfigInput.d.ts} +2 -2
  783. package/{dist/serialization/types/TransferToNumberToolConfig.js → serialization/types/TransferToNumberToolConfigInput.js} +2 -2
  784. package/serialization/types/TransferToNumberToolConfigOutput.d.ts +14 -0
  785. package/serialization/types/TransferToNumberToolConfigOutput.js +45 -0
  786. package/serialization/types/TransferTypeEnum.d.ts +10 -0
  787. package/serialization/types/TransferTypeEnum.js +41 -0
  788. package/serialization/types/WebhookToolApiSchemaConfigInput.d.ts +2 -0
  789. package/serialization/types/WebhookToolApiSchemaConfigInput.js +2 -0
  790. package/serialization/types/WebhookToolApiSchemaConfigOutput.d.ts +2 -0
  791. package/serialization/types/WebhookToolApiSchemaConfigOutput.js +2 -0
  792. package/serialization/types/WidgetTextContents.d.ts +4 -0
  793. package/serialization/types/WidgetTextContents.js +4 -0
  794. package/serialization/types/WorkspaceResourceType.d.ts +1 -1
  795. package/serialization/types/WorkspaceResourceType.js +2 -0
  796. package/serialization/types/index.d.ts +18 -8
  797. package/serialization/types/index.js +18 -8
  798. package/version.d.ts +1 -1
  799. package/version.js +1 -1
  800. package/api/resources/workspace/client/requests/BodyUpdateDefaultSharingPreferencesV1WorkspaceDefaultSharingPreferencesPost.d.ts +0 -13
  801. package/api/resources/workspace/client/requests/BodyUpdateUserAutoProvisioningV1WorkspaceUserAutoProvisioningPost.d.ts +0 -12
  802. package/api/resources/workspace/client/requests/index.d.ts +0 -2
  803. package/api/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.d.ts +0 -7
  804. package/api/types/DefaultSharingPreferencesResponseModel.d.ts +0 -8
  805. package/api/types/WorkspaceGroupPermission.d.ts +0 -22
  806. package/api/types/WorkspaceGroupPermission.js +0 -24
  807. package/api/types/WorkspaceGroupResponseModel.d.ts +0 -10
  808. package/core/form-data-utils/toReadableStream.d.ts +0 -1
  809. package/core/form-data-utils/toReadableStream.js +0 -28
  810. package/dist/api/resources/workspace/client/requests/BodyUpdateDefaultSharingPreferencesV1WorkspaceDefaultSharingPreferencesPost.d.ts +0 -13
  811. package/dist/api/resources/workspace/client/requests/BodyUpdateUserAutoProvisioningV1WorkspaceUserAutoProvisioningPost.d.ts +0 -12
  812. package/dist/api/resources/workspace/client/requests/index.d.ts +0 -2
  813. package/dist/api/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.d.ts +0 -7
  814. package/dist/api/types/DefaultSharingPreferencesResponseModel.d.ts +0 -8
  815. package/dist/api/types/WorkspaceGroupPermission.d.ts +0 -22
  816. package/dist/api/types/WorkspaceGroupPermission.js +0 -24
  817. package/dist/api/types/WorkspaceGroupResponseModel.d.ts +0 -10
  818. package/dist/core/form-data-utils/toReadableStream.d.ts +0 -1
  819. package/dist/core/form-data-utils/toReadableStream.js +0 -28
  820. package/dist/serialization/resources/workspace/client/getShareOptions.d.ts +0 -11
  821. package/dist/serialization/resources/workspace/client/index.d.ts +0 -2
  822. package/dist/serialization/resources/workspace/client/index.js +0 -41
  823. package/dist/serialization/resources/workspace/client/requests/BodyUpdateDefaultSharingPreferencesV1WorkspaceDefaultSharingPreferencesPost.d.ts +0 -12
  824. package/dist/serialization/resources/workspace/client/requests/BodyUpdateDefaultSharingPreferencesV1WorkspaceDefaultSharingPreferencesPost.js +0 -43
  825. package/dist/serialization/resources/workspace/client/requests/BodyUpdateUserAutoProvisioningV1WorkspaceUserAutoProvisioningPost.d.ts +0 -12
  826. package/dist/serialization/resources/workspace/client/requests/BodyUpdateUserAutoProvisioningV1WorkspaceUserAutoProvisioningPost.js +0 -43
  827. package/dist/serialization/resources/workspace/client/requests/index.d.ts +0 -2
  828. package/dist/serialization/resources/workspace/client/requests/index.js +0 -7
  829. package/dist/serialization/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.d.ts +0 -12
  830. package/dist/serialization/types/DefaultSharingPreferencesResponseModel.d.ts +0 -13
  831. package/dist/serialization/types/WorkspaceGroupPermission.d.ts +0 -10
  832. package/dist/serialization/types/WorkspaceGroupPermission.js +0 -58
  833. package/dist/serialization/types/WorkspaceGroupResponseModel.d.ts +0 -16
  834. package/dist/serialization/types/WorkspaceGroupResponseModel.js +0 -47
  835. package/runtime-tests/cf-worker/package.json +0 -17
  836. package/runtime-tests/cf-worker/wrangler.toml +0 -4
  837. package/serialization/resources/workspace/client/getShareOptions.d.ts +0 -11
  838. package/serialization/resources/workspace/client/index.d.ts +0 -2
  839. package/serialization/resources/workspace/client/index.js +0 -41
  840. package/serialization/resources/workspace/client/requests/BodyUpdateDefaultSharingPreferencesV1WorkspaceDefaultSharingPreferencesPost.d.ts +0 -12
  841. package/serialization/resources/workspace/client/requests/BodyUpdateDefaultSharingPreferencesV1WorkspaceDefaultSharingPreferencesPost.js +0 -43
  842. package/serialization/resources/workspace/client/requests/BodyUpdateUserAutoProvisioningV1WorkspaceUserAutoProvisioningPost.d.ts +0 -12
  843. package/serialization/resources/workspace/client/requests/BodyUpdateUserAutoProvisioningV1WorkspaceUserAutoProvisioningPost.js +0 -43
  844. package/serialization/resources/workspace/client/requests/index.d.ts +0 -2
  845. package/serialization/resources/workspace/client/requests/index.js +0 -7
  846. package/serialization/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.d.ts +0 -12
  847. package/serialization/types/DefaultSharingPreferencesResponseModel.d.ts +0 -13
  848. package/serialization/types/DefaultSharingPreferencesResponseModel.js +0 -44
  849. package/serialization/types/WorkspaceGroupPermission.d.ts +0 -10
  850. package/serialization/types/WorkspaceGroupPermission.js +0 -58
  851. package/serialization/types/WorkspaceGroupResponseModel.d.ts +0 -16
  852. package/serialization/types/WorkspaceGroupResponseModel.js +0 -47
  853. /package/api/resources/{workspace/client/requests/index.js → conversationalAi/conversation/interfaces/ConversationClient.js} +0 -0
  854. /package/api/resources/{workspace/client/requests/BodyUpdateDefaultSharingPreferencesV1WorkspaceDefaultSharingPreferencesPost.js → conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsGetRequest.js} +0 -0
  855. /package/{dist/api/resources/workspace/client/requests → api/resources/textToVoice/resources/preview/client}/index.js +0 -0
  856. /package/api/resources/{workspace/client/requests/BodyUpdateUserAutoProvisioningV1WorkspaceUserAutoProvisioningPost.js → voices/resources/pvc/resources/samples/resources/audio/client/requests/AudioGetRequest.js} +0 -0
  857. /package/api/types/{BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.js → AuthConnectionLocator.js} +0 -0
  858. /package/api/types/{DefaultSharingPreferencesResponseModel.js → BadRequestErrorBody.js} +0 -0
  859. /package/api/types/{SipTrunkConfigResponseModel.js → ConversationHistoryElevenAssistantCommonModel.js} +0 -0
  860. /package/api/types/{SipTrunkCredentials.js → ConversationHistoryTranscriptToolCallMcpDetails.js} +0 -0
  861. /package/api/types/{TransferToNumberToolConfig.js → GetPhoneNumberInboundSipTrunkConfigResponseModel.js} +0 -0
  862. /package/api/types/{WorkspaceGroupResponseModel.js → GetPhoneNumberOutboundSipTrunkConfigResponseModel.js} +0 -0
  863. /package/{dist/api/resources/workspace/client/requests/BodyUpdateDefaultSharingPreferencesV1WorkspaceDefaultSharingPreferencesPost.js → api/types/InboundSipTrunkConfigRequestModel.js} +0 -0
  864. /package/{dist/api/resources/workspace/client/requests/BodyUpdateUserAutoProvisioningV1WorkspaceUserAutoProvisioningPost.js → api/types/OutboundSipTrunkConfigRequestModel.js} +0 -0
  865. /package/{dist/api/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.js → api/types/PhoneNumberTransferDestination.js} +0 -0
  866. /package/{dist/api/types/DefaultSharingPreferencesResponseModel.js → api/types/PhoneNumberTransferTransferDestination.js} +0 -0
  867. /package/{dist/api/types/SipTrunkConfigResponseModel.js → api/types/PlayDtmfToolConfig.js} +0 -0
  868. /package/{dist/api/types/SipTrunkCredentials.js → api/types/SipTrunkCredentialsRequestModel.js} +0 -0
  869. /package/{dist/api/types/TransferToNumberToolConfig.js → api/types/SipUriTransferDestination.js} +0 -0
  870. /package/{dist/api/types/WorkspaceGroupResponseModel.js → api/types/TransferToNumberToolConfigInput.js} +0 -0
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -69,6 +69,6 @@ export interface ProjectExtendedResponse {
69
69
  pronunciationDictionaryLocators: ElevenLabs.PronunciationDictionaryLocatorResponseModel[];
70
70
  /** Whether text normalization is applied to the project. */
71
71
  applyTextNormalization: ElevenLabs.ProjectExtendedResponseModelApplyTextNormalization;
72
- /** Experimental features of the project. */
73
- experimental: Record<string, unknown>;
72
+ /** Experimental features for the project. */
73
+ experimental?: Record<string, unknown>;
74
74
  }
@@ -1,10 +1,11 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export type ProjectExtendedResponseModelSourceType = "blank" | "book" | "article" | "genfm";
4
+ export type ProjectExtendedResponseModelSourceType = "blank" | "book" | "article" | "genfm" | "video";
5
5
  export declare const ProjectExtendedResponseModelSourceType: {
6
6
  readonly Blank: "blank";
7
7
  readonly Book: "book";
8
8
  readonly Article: "article";
9
9
  readonly Genfm: "genfm";
10
+ readonly Video: "video";
10
11
  };
@@ -9,4 +9,5 @@ exports.ProjectExtendedResponseModelSourceType = {
9
9
  Book: "book",
10
10
  Article: "article",
11
11
  Genfm: "genfm",
12
+ Video: "video",
12
13
  };
@@ -1,10 +1,11 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export type ProjectResponseModelSourceType = "blank" | "book" | "article" | "genfm";
4
+ export type ProjectResponseModelSourceType = "blank" | "book" | "article" | "genfm" | "video";
5
5
  export declare const ProjectResponseModelSourceType: {
6
6
  readonly Blank: "blank";
7
7
  readonly Book: "book";
8
8
  readonly Article: "article";
9
9
  readonly Genfm: "genfm";
10
+ readonly Video: "video";
10
11
  };
@@ -9,4 +9,5 @@ exports.ProjectResponseModelSourceType = {
9
9
  Book: "book",
10
10
  Article: "article",
11
11
  Genfm: "genfm",
12
+ Video: "video",
12
13
  };
@@ -5,7 +5,7 @@ import * as ElevenLabs from "../index";
5
5
  export interface PromptAgentApiModelInput {
6
6
  /** The prompt for the agent */
7
7
  prompt?: string;
8
- /** The LLM to query with the prompt and the chat history */
8
+ /** The LLM to query with the prompt and the chat history. If using data residency, the LLM must be supported in the data residency environment */
9
9
  llm?: ElevenLabs.Llm;
10
10
  /** The temperature for the LLM */
11
11
  temperature?: number;
@@ -5,7 +5,7 @@ import * as ElevenLabs from "../index";
5
5
  export interface PromptAgentApiModelOutput {
6
6
  /** The prompt for the agent */
7
7
  prompt?: string;
8
- /** The LLM to query with the prompt and the chat history */
8
+ /** The LLM to query with the prompt and the chat history. If using data residency, the LLM must be supported in the data residency environment */
9
9
  llm?: ElevenLabs.Llm;
10
10
  /** The temperature for the LLM */
11
11
  temperature?: number;
@@ -1,32 +1,6 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as ElevenLabs from "../index";
5
4
  export interface PromptAgentDbModel {
6
- /** The prompt for the agent */
7
- prompt?: string;
8
- /** The LLM to query with the prompt and the chat history */
9
- llm?: ElevenLabs.Llm;
10
- /** The temperature for the LLM */
11
- temperature?: number;
12
- /** If greater than 0, maximum number of tokens the LLM can predict */
13
- maxTokens?: number;
14
- /** A list of IDs of tools used by the agent */
15
- toolIds?: string[];
16
- /** Built-in system tools to be used by the agent */
17
- builtInTools?: ElevenLabs.BuiltInToolsInput;
18
- /** A list of MCP server ids to be used by the agent */
19
- mcpServerIds?: string[];
20
- /** A list of Native MCP server ids to be used by the agent */
21
- nativeMcpServerIds?: string[];
22
- /** A list of knowledge bases to be used by the agent */
23
- knowledgeBase?: ElevenLabs.KnowledgeBaseLocator[];
24
- /** Definition for a custom LLM if LLM field is set to 'CUSTOM_LLM' */
25
- customLlm?: ElevenLabs.CustomLlm;
26
- /** Whether to ignore the default personality */
27
- ignoreDefaultPersonality?: boolean;
28
- /** Configuration for RAG */
29
- rag?: ElevenLabs.RagConfig;
30
- knowledgeBaseDocumentIds?: string[];
31
5
  tools?: unknown;
32
6
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export interface SipTrunkCredentials {
4
+ export interface SipTrunkCredentialsRequestModel {
5
5
  /** SIP trunk username */
6
6
  username: string;
7
7
  /** SIP trunk password */
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface SipUriTransferDestination {
5
+ sipUri: string;
6
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,14 +1,12 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export type SubscriptionStatusType = "trialing" | "active" | "incomplete" | "incomplete_expired" | "past_due" | "free" | "free_disabled" | "canceled";
4
+ export type SubscriptionStatusType = "trialing" | "active" | "incomplete" | "past_due" | "free" | "free_disabled";
5
5
  export declare const SubscriptionStatusType: {
6
6
  readonly Trialing: "trialing";
7
7
  readonly Active: "active";
8
8
  readonly Incomplete: "incomplete";
9
- readonly IncompleteExpired: "incomplete_expired";
10
9
  readonly PastDue: "past_due";
11
10
  readonly Free: "free";
12
11
  readonly FreeDisabled: "free_disabled";
13
- readonly Canceled: "canceled";
14
12
  };
@@ -8,9 +8,7 @@ exports.SubscriptionStatusType = {
8
8
  Trialing: "trialing",
9
9
  Active: "active",
10
10
  Incomplete: "incomplete",
11
- IncompleteExpired: "incomplete_expired",
12
11
  PastDue: "past_due",
13
12
  Free: "free",
14
13
  FreeDisabled: "free_disabled",
15
- Canceled: "canceled",
16
14
  };
@@ -2,7 +2,7 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as ElevenLabs from "../index";
5
- export type SystemToolConfigInputParams = ElevenLabs.SystemToolConfigInputParams.EndCall | ElevenLabs.SystemToolConfigInputParams.LanguageDetection | ElevenLabs.SystemToolConfigInputParams.SkipTurn | ElevenLabs.SystemToolConfigInputParams.TransferToAgent | ElevenLabs.SystemToolConfigInputParams.TransferToNumber;
5
+ export type SystemToolConfigInputParams = ElevenLabs.SystemToolConfigInputParams.EndCall | ElevenLabs.SystemToolConfigInputParams.LanguageDetection | ElevenLabs.SystemToolConfigInputParams.PlayKeypadTouchTone | ElevenLabs.SystemToolConfigInputParams.SkipTurn | ElevenLabs.SystemToolConfigInputParams.TransferToAgent | ElevenLabs.SystemToolConfigInputParams.TransferToNumber;
6
6
  export declare namespace SystemToolConfigInputParams {
7
7
  interface EndCall extends ElevenLabs.EndCallToolConfig {
8
8
  systemToolType: "end_call";
@@ -10,13 +10,16 @@ export declare namespace SystemToolConfigInputParams {
10
10
  interface LanguageDetection extends ElevenLabs.LanguageDetectionToolConfig {
11
11
  systemToolType: "language_detection";
12
12
  }
13
+ interface PlayKeypadTouchTone extends ElevenLabs.PlayDtmfToolConfig {
14
+ systemToolType: "play_keypad_touch_tone";
15
+ }
13
16
  interface SkipTurn extends ElevenLabs.SkipTurnToolConfig {
14
17
  systemToolType: "skip_turn";
15
18
  }
16
19
  interface TransferToAgent extends ElevenLabs.TransferToAgentToolConfig {
17
20
  systemToolType: "transfer_to_agent";
18
21
  }
19
- interface TransferToNumber extends ElevenLabs.TransferToNumberToolConfig {
22
+ interface TransferToNumber extends ElevenLabs.TransferToNumberToolConfigInput {
20
23
  systemToolType: "transfer_to_number";
21
24
  }
22
25
  }
@@ -2,7 +2,7 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as ElevenLabs from "../index";
5
- export type SystemToolConfigOutputParams = ElevenLabs.SystemToolConfigOutputParams.EndCall | ElevenLabs.SystemToolConfigOutputParams.LanguageDetection | ElevenLabs.SystemToolConfigOutputParams.SkipTurn | ElevenLabs.SystemToolConfigOutputParams.TransferToAgent | ElevenLabs.SystemToolConfigOutputParams.TransferToNumber;
5
+ export type SystemToolConfigOutputParams = ElevenLabs.SystemToolConfigOutputParams.EndCall | ElevenLabs.SystemToolConfigOutputParams.LanguageDetection | ElevenLabs.SystemToolConfigOutputParams.PlayKeypadTouchTone | ElevenLabs.SystemToolConfigOutputParams.SkipTurn | ElevenLabs.SystemToolConfigOutputParams.TransferToAgent | ElevenLabs.SystemToolConfigOutputParams.TransferToNumber;
6
6
  export declare namespace SystemToolConfigOutputParams {
7
7
  interface EndCall extends ElevenLabs.EndCallToolConfig {
8
8
  systemToolType: "end_call";
@@ -10,13 +10,16 @@ export declare namespace SystemToolConfigOutputParams {
10
10
  interface LanguageDetection extends ElevenLabs.LanguageDetectionToolConfig {
11
11
  systemToolType: "language_detection";
12
12
  }
13
+ interface PlayKeypadTouchTone extends ElevenLabs.PlayDtmfToolConfig {
14
+ systemToolType: "play_keypad_touch_tone";
15
+ }
13
16
  interface SkipTurn extends ElevenLabs.SkipTurnToolConfig {
14
17
  systemToolType: "skip_turn";
15
18
  }
16
19
  interface TransferToAgent extends ElevenLabs.TransferToAgentToolConfig {
17
20
  systemToolType: "transfer_to_agent";
18
21
  }
19
- interface TransferToNumber extends ElevenLabs.TransferToNumberToolConfig {
22
+ interface TransferToNumber extends ElevenLabs.TransferToNumberToolConfigOutput {
20
23
  systemToolType: "transfer_to_number";
21
24
  }
22
25
  }
@@ -2,7 +2,7 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as ElevenLabs from "../index";
5
- export interface TransferToNumberToolConfig {
5
+ export interface TransferToNumberToolConfigInput {
6
6
  transfers: ElevenLabs.PhoneNumberTransfer[];
7
7
  /** Whether to play a message to the client while they wait for transfer. Defaults to true for backward compatibility. */
8
8
  enableClientMessage?: boolean;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as ElevenLabs from "../index";
5
+ export interface TransferToNumberToolConfigOutput {
6
+ transfers: ElevenLabs.PhoneNumberTransfer[];
7
+ /** Whether to play a message to the client while they wait for transfer. Defaults to true for backward compatibility. */
8
+ enableClientMessage?: boolean;
9
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export type TransferTypeEnum = "conference" | "sip_refer";
5
+ export declare const TransferTypeEnum: {
6
+ readonly Conference: "conference";
7
+ readonly SipRefer: "sip_refer";
8
+ };
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.TransferTypeEnum = void 0;
7
+ exports.TransferTypeEnum = {
8
+ Conference: "conference",
9
+ SipRefer: "sip_refer",
10
+ };
@@ -18,4 +18,6 @@ export interface WebhookToolApiSchemaConfigInput {
18
18
  requestBodySchema?: ElevenLabs.ObjectJsonSchemaPropertyInput;
19
19
  /** Headers that should be included in the request */
20
20
  requestHeaders?: Record<string, ElevenLabs.WebhookToolApiSchemaConfigInputRequestHeadersValue>;
21
+ /** Optional auth connection to use for authentication with this webhook */
22
+ authConnection?: ElevenLabs.AuthConnectionLocator;
21
23
  }
@@ -18,4 +18,6 @@ export interface WebhookToolApiSchemaConfigOutput {
18
18
  requestBodySchema?: ElevenLabs.ObjectJsonSchemaPropertyOutput;
19
19
  /** Headers that should be included in the request */
20
20
  requestHeaders?: Record<string, ElevenLabs.WebhookToolApiSchemaConfigOutputRequestHeadersValue>;
21
+ /** Optional auth connection to use for authentication with this webhook */
22
+ authConnection?: ElevenLabs.AuthConnectionLocator;
21
23
  }
@@ -6,6 +6,8 @@ export interface WidgetTextContents {
6
6
  mainLabel?: string;
7
7
  /** Text and ARIA label for the start call button. */
8
8
  startCall?: string;
9
+ /** Text and ARIA label for the start chat button (text only) */
10
+ startChat?: string;
9
11
  /** Text and ARIA label for the new call button. Displayed when the caller already finished at least one call in order ot start the next one. */
10
12
  newCall?: string;
11
13
  /** Text and ARIA label for the end call button. */
@@ -30,10 +32,16 @@ export interface WidgetTextContents {
30
32
  speakingStatus?: string;
31
33
  /** Status displayed when the agent is connecting. */
32
34
  connectingStatus?: string;
35
+ /** Status displayed when the agent is chatting (text only) */
36
+ chattingStatus?: string;
33
37
  /** ARIA label for the text message input. */
34
38
  inputLabel?: string;
35
39
  /** Placeholder text for the text message input. */
36
40
  inputPlaceholder?: string;
41
+ /** Placeholder text for the text message input (text only) */
42
+ inputPlaceholderTextOnly?: string;
43
+ /** Placeholder text for the text message input when starting a new conversation (text only) */
44
+ inputPlaceholderNewConversation?: string;
37
45
  /** Information message displayed when the user ends the conversation. */
38
46
  userEndedConversation?: string;
39
47
  /** Information message displayed when the agent ends the conversation. */
@@ -4,7 +4,7 @@
4
4
  /**
5
5
  * Resource types that can be shared in the workspace. The name always need to match the collection names
6
6
  */
7
- export type WorkspaceResourceType = "voice" | "voice_collection" | "pronunciation_dictionary" | "dubbing" | "project" | "convai_agents" | "convai_knowledge_base_documents" | "convai_tools" | "convai_settings" | "convai_secrets" | "music_latent" | "convai_phone_numbers" | "convai_mcp_servers" | "convai_batch_calls";
7
+ export type WorkspaceResourceType = "voice" | "voice_collection" | "pronunciation_dictionary" | "dubbing" | "project" | "convai_agents" | "convai_knowledge_base_documents" | "convai_tools" | "convai_settings" | "convai_secrets" | "workspace_auth_connections" | "music_latent" | "convai_phone_numbers" | "convai_mcp_servers" | "convai_batch_calls" | "convai_agent_response_tests";
8
8
  export declare const WorkspaceResourceType: {
9
9
  readonly Voice: "voice";
10
10
  readonly VoiceCollection: "voice_collection";
@@ -16,8 +16,10 @@ export declare const WorkspaceResourceType: {
16
16
  readonly ConvaiTools: "convai_tools";
17
17
  readonly ConvaiSettings: "convai_settings";
18
18
  readonly ConvaiSecrets: "convai_secrets";
19
+ readonly WorkspaceAuthConnections: "workspace_auth_connections";
19
20
  readonly MusicLatent: "music_latent";
20
21
  readonly ConvaiPhoneNumbers: "convai_phone_numbers";
21
22
  readonly ConvaiMcpServers: "convai_mcp_servers";
22
23
  readonly ConvaiBatchCalls: "convai_batch_calls";
24
+ readonly ConvaiAgentResponseTests: "convai_agent_response_tests";
23
25
  };
@@ -15,8 +15,10 @@ exports.WorkspaceResourceType = {
15
15
  ConvaiTools: "convai_tools",
16
16
  ConvaiSettings: "convai_settings",
17
17
  ConvaiSecrets: "convai_secrets",
18
+ WorkspaceAuthConnections: "workspace_auth_connections",
18
19
  MusicLatent: "music_latent",
19
20
  ConvaiPhoneNumbers: "convai_phone_numbers",
20
21
  ConvaiMcpServers: "convai_mcp_servers",
21
22
  ConvaiBatchCalls: "convai_batch_calls",
23
+ ConvaiAgentResponseTests: "convai_agent_response_tests",
22
24
  };
@@ -1,3 +1,4 @@
1
+ export * from "./BadRequestErrorBody";
1
2
  export * from "./AsrConversationalConfig";
2
3
  export * from "./AsrInputFormat";
3
4
  export * from "./AsrProvider";
@@ -36,6 +37,7 @@ export * from "./AudioNativeEditContentResponseModel";
36
37
  export * from "./AudioNativeProjectSettingsResponseModelStatus";
37
38
  export * from "./AudioNativeProjectSettingsResponseModel";
38
39
  export * from "./AudioWithTimestampsResponse";
40
+ export * from "./AuthConnectionLocator";
39
41
  export * from "./AuthSettings";
40
42
  export * from "./AuthorizationMethod";
41
43
  export * from "./BanReasonType";
@@ -64,7 +66,6 @@ export * from "./BodyEditProjectContentV1ProjectsProjectIdContentPost";
64
66
  export * from "./BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostGender";
65
67
  export * from "./BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostAge";
66
68
  export * from "./GenerateVoiceRequest";
67
- export * from "./BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet";
68
69
  export * from "./BodyStreamChapterAudioV1ProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost";
69
70
  export * from "./BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost";
70
71
  export * from "./UpdatePronunciationDictionariesRequest";
@@ -112,6 +113,7 @@ export * from "./ConversationConfigOverrideConfig";
112
113
  export * from "./ConversationDeletionSettings";
113
114
  export * from "./ConversationHistoryAnalysisCommonModel";
114
115
  export * from "./ConversationHistoryBatchCallModel";
116
+ export * from "./ConversationHistoryElevenAssistantCommonModel";
115
117
  export * from "./ConversationHistoryErrorCommonModel";
116
118
  export * from "./ConversationHistoryEvaluationCriteriaResultCommonModel";
117
119
  export * from "./ConversationHistoryFeedbackCommonModel";
@@ -129,6 +131,7 @@ export * from "./ConversationHistoryTranscriptCommonModelOutput";
129
131
  export * from "./ConversationHistoryTranscriptToolCallClientDetails";
130
132
  export * from "./ConversationHistoryTranscriptToolCallCommonModelToolDetails";
131
133
  export * from "./ConversationHistoryTranscriptToolCallCommonModel";
134
+ export * from "./ConversationHistoryTranscriptToolCallMcpDetails";
132
135
  export * from "./ConversationHistoryTranscriptToolCallWebhookDetails";
133
136
  export * from "./ConversationHistoryTranscriptToolResultCommonModel";
134
137
  export * from "./ConversationHistoryTwilioPhoneCallModelDirection";
@@ -143,6 +146,7 @@ export * from "./ConversationInitiationClientDataRequestOutputDynamicVariablesVa
143
146
  export * from "./ConversationInitiationClientDataRequestOutput";
144
147
  export * from "./ConversationInitiationClientDataWebhookRequestHeadersValue";
145
148
  export * from "./ConversationInitiationClientDataWebhook";
149
+ export * from "./ConversationInitiationSource";
146
150
  export * from "./ConversationSignedUrlResponseModel";
147
151
  export * from "./ConversationSimulationSpecificationDynamicVariablesValue";
148
152
  export * from "./ConversationSimulationSpecification";
@@ -165,7 +169,6 @@ export * from "./DashboardCallSuccessChartModel";
165
169
  export * from "./DashboardCriteriaChartModel";
166
170
  export * from "./DashboardDataCollectionChartModel";
167
171
  export * from "./DataCollectionResultCommonModel";
168
- export * from "./DefaultSharingPreferencesResponseModel";
169
172
  export * from "./DeleteChapterResponseModel";
170
173
  export * from "./DeleteDubbingResponseModel";
171
174
  export * from "./DeleteHistoryItemResponse";
@@ -246,6 +249,8 @@ export * from "./GetKnowledgeBaseSummaryUrlResponseModel";
246
249
  export * from "./GetKnowledgeBaseTextResponseModel";
247
250
  export * from "./GetKnowledgeBaseUrlResponseModel";
248
251
  export * from "./GetLibraryVoicesResponse";
252
+ export * from "./GetPhoneNumberInboundSipTrunkConfigResponseModel";
253
+ export * from "./GetPhoneNumberOutboundSipTrunkConfigResponseModel";
249
254
  export * from "./GetPhoneNumberSipTrunkResponseModel";
250
255
  export * from "./GetPhoneNumberTwilioResponseModel";
251
256
  export * from "./GetProjectsResponse";
@@ -263,6 +268,7 @@ export * from "./HistoryAlignmentResponseModel";
263
268
  export * from "./HistoryAlignmentsResponseModel";
264
269
  export * from "./HtmlExportOptions";
265
270
  export * from "./ImageAvatar";
271
+ export * from "./InboundSipTrunkConfigRequestModel";
266
272
  export * from "./IntegrationType";
267
273
  export * from "./InvoiceResponse";
268
274
  export * from "./KnowledgeBaseDocumentChunkResponseModel";
@@ -325,9 +331,13 @@ export * from "./ObjectJsonSchemaPropertyOutput";
325
331
  export * from "./OrbAvatar";
326
332
  export * from "./OutboundCallRecipient";
327
333
  export * from "./OutboundCallRecipientResponseModel";
334
+ export * from "./OutboundSipTrunkConfigRequestModel";
328
335
  export * from "./PdfExportOptions";
329
336
  export * from "./PhoneNumberAgentInfo";
337
+ export * from "./PhoneNumberTransferTransferDestination";
330
338
  export * from "./PhoneNumberTransfer";
339
+ export * from "./PhoneNumberTransferDestination";
340
+ export * from "./PlayDtmfToolConfig";
331
341
  export * from "./PodcastBulletinMode";
332
342
  export * from "./PodcastBulletinModeData";
333
343
  export * from "./PodcastConversationMode";
@@ -363,7 +373,6 @@ export * from "./PromptAgentApiModelOutputToolsItem";
363
373
  export * from "./PromptAgentApiModelOutput";
364
374
  export * from "./PromptAgentApiModelOverride";
365
375
  export * from "./PromptAgentApiModelOverrideConfig";
366
- export * from "./PromptAgentDbModel";
367
376
  export * from "./PromptEvaluationCriteria";
368
377
  export * from "./PronunciationDictionaryAliasRuleRequestModel";
369
378
  export * from "./PronunciationDictionaryLocatorResponseModel";
@@ -394,10 +403,10 @@ export * from "./ResourceAccessInfoRole";
394
403
  export * from "./ResourceAccessInfo";
395
404
  export * from "./ResourceMetadataResponseModel";
396
405
  export * from "./SipMediaEncryptionEnum";
397
- export * from "./SipTrunkConfigResponseModel";
398
- export * from "./SipTrunkCredentials";
406
+ export * from "./SipTrunkCredentialsRequestModel";
399
407
  export * from "./SipTrunkOutboundCallResponse";
400
408
  export * from "./SipTrunkTransportEnum";
409
+ export * from "./SipUriTransferDestination";
401
410
  export * from "./SafetyCommonModel";
402
411
  export * from "./SafetyEvaluation";
403
412
  export * from "./SafetyResponseModel";
@@ -465,7 +474,9 @@ export * from "./ToolResponseModelToolConfig";
465
474
  export * from "./ToolResponseModel";
466
475
  export * from "./ToolsResponseModel";
467
476
  export * from "./TransferToAgentToolConfig";
468
- export * from "./TransferToNumberToolConfig";
477
+ export * from "./TransferToNumberToolConfigInput";
478
+ export * from "./TransferToNumberToolConfigOutput";
479
+ export * from "./TransferTypeEnum";
469
480
  export * from "./TurnConfig";
470
481
  export * from "./TurnMode";
471
482
  export * from "./TwilioOutboundCallResponse";
@@ -523,12 +534,11 @@ export * from "./WidgetStyles";
523
534
  export * from "./WidgetTextContents";
524
535
  export * from "./WorkspaceBatchCallsResponse";
525
536
  export * from "./WorkspaceGroupByNameResponseModel";
526
- export * from "./WorkspaceGroupPermission";
527
- export * from "./WorkspaceGroupResponseModel";
528
537
  export * from "./WorkspaceResourceType";
529
538
  export * from "./WorkspaceWebhookListResponseModel";
530
539
  export * from "./WorkspaceWebhookResponseModel";
531
540
  export * from "./WorkspaceWebhookUsageResponseModel";
541
+ export * from "./PromptAgentDbModel";
532
542
  export * from "./OutputFormat";
533
543
  export * from "./HistoryItemResponse";
534
544
  export * from "./Age";
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./BadRequestErrorBody"), exports);
17
18
  __exportStar(require("./AsrConversationalConfig"), exports);
18
19
  __exportStar(require("./AsrInputFormat"), exports);
19
20
  __exportStar(require("./AsrProvider"), exports);
@@ -52,6 +53,7 @@ __exportStar(require("./AudioNativeEditContentResponseModel"), exports);
52
53
  __exportStar(require("./AudioNativeProjectSettingsResponseModelStatus"), exports);
53
54
  __exportStar(require("./AudioNativeProjectSettingsResponseModel"), exports);
54
55
  __exportStar(require("./AudioWithTimestampsResponse"), exports);
56
+ __exportStar(require("./AuthConnectionLocator"), exports);
55
57
  __exportStar(require("./AuthSettings"), exports);
56
58
  __exportStar(require("./AuthorizationMethod"), exports);
57
59
  __exportStar(require("./BanReasonType"), exports);
@@ -80,7 +82,6 @@ __exportStar(require("./BodyEditProjectContentV1ProjectsProjectIdContentPost"),
80
82
  __exportStar(require("./BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostGender"), exports);
81
83
  __exportStar(require("./BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostAge"), exports);
82
84
  __exportStar(require("./GenerateVoiceRequest"), exports);
83
- __exportStar(require("./BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet"), exports);
84
85
  __exportStar(require("./BodyStreamChapterAudioV1ProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost"), exports);
85
86
  __exportStar(require("./BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost"), exports);
86
87
  __exportStar(require("./UpdatePronunciationDictionariesRequest"), exports);
@@ -128,6 +129,7 @@ __exportStar(require("./ConversationConfigOverrideConfig"), exports);
128
129
  __exportStar(require("./ConversationDeletionSettings"), exports);
129
130
  __exportStar(require("./ConversationHistoryAnalysisCommonModel"), exports);
130
131
  __exportStar(require("./ConversationHistoryBatchCallModel"), exports);
132
+ __exportStar(require("./ConversationHistoryElevenAssistantCommonModel"), exports);
131
133
  __exportStar(require("./ConversationHistoryErrorCommonModel"), exports);
132
134
  __exportStar(require("./ConversationHistoryEvaluationCriteriaResultCommonModel"), exports);
133
135
  __exportStar(require("./ConversationHistoryFeedbackCommonModel"), exports);
@@ -145,6 +147,7 @@ __exportStar(require("./ConversationHistoryTranscriptCommonModelOutput"), export
145
147
  __exportStar(require("./ConversationHistoryTranscriptToolCallClientDetails"), exports);
146
148
  __exportStar(require("./ConversationHistoryTranscriptToolCallCommonModelToolDetails"), exports);
147
149
  __exportStar(require("./ConversationHistoryTranscriptToolCallCommonModel"), exports);
150
+ __exportStar(require("./ConversationHistoryTranscriptToolCallMcpDetails"), exports);
148
151
  __exportStar(require("./ConversationHistoryTranscriptToolCallWebhookDetails"), exports);
149
152
  __exportStar(require("./ConversationHistoryTranscriptToolResultCommonModel"), exports);
150
153
  __exportStar(require("./ConversationHistoryTwilioPhoneCallModelDirection"), exports);
@@ -159,6 +162,7 @@ __exportStar(require("./ConversationInitiationClientDataRequestOutputDynamicVari
159
162
  __exportStar(require("./ConversationInitiationClientDataRequestOutput"), exports);
160
163
  __exportStar(require("./ConversationInitiationClientDataWebhookRequestHeadersValue"), exports);
161
164
  __exportStar(require("./ConversationInitiationClientDataWebhook"), exports);
165
+ __exportStar(require("./ConversationInitiationSource"), exports);
162
166
  __exportStar(require("./ConversationSignedUrlResponseModel"), exports);
163
167
  __exportStar(require("./ConversationSimulationSpecificationDynamicVariablesValue"), exports);
164
168
  __exportStar(require("./ConversationSimulationSpecification"), exports);
@@ -181,7 +185,6 @@ __exportStar(require("./DashboardCallSuccessChartModel"), exports);
181
185
  __exportStar(require("./DashboardCriteriaChartModel"), exports);
182
186
  __exportStar(require("./DashboardDataCollectionChartModel"), exports);
183
187
  __exportStar(require("./DataCollectionResultCommonModel"), exports);
184
- __exportStar(require("./DefaultSharingPreferencesResponseModel"), exports);
185
188
  __exportStar(require("./DeleteChapterResponseModel"), exports);
186
189
  __exportStar(require("./DeleteDubbingResponseModel"), exports);
187
190
  __exportStar(require("./DeleteHistoryItemResponse"), exports);
@@ -262,6 +265,8 @@ __exportStar(require("./GetKnowledgeBaseSummaryUrlResponseModel"), exports);
262
265
  __exportStar(require("./GetKnowledgeBaseTextResponseModel"), exports);
263
266
  __exportStar(require("./GetKnowledgeBaseUrlResponseModel"), exports);
264
267
  __exportStar(require("./GetLibraryVoicesResponse"), exports);
268
+ __exportStar(require("./GetPhoneNumberInboundSipTrunkConfigResponseModel"), exports);
269
+ __exportStar(require("./GetPhoneNumberOutboundSipTrunkConfigResponseModel"), exports);
265
270
  __exportStar(require("./GetPhoneNumberSipTrunkResponseModel"), exports);
266
271
  __exportStar(require("./GetPhoneNumberTwilioResponseModel"), exports);
267
272
  __exportStar(require("./GetProjectsResponse"), exports);
@@ -279,6 +284,7 @@ __exportStar(require("./HistoryAlignmentResponseModel"), exports);
279
284
  __exportStar(require("./HistoryAlignmentsResponseModel"), exports);
280
285
  __exportStar(require("./HtmlExportOptions"), exports);
281
286
  __exportStar(require("./ImageAvatar"), exports);
287
+ __exportStar(require("./InboundSipTrunkConfigRequestModel"), exports);
282
288
  __exportStar(require("./IntegrationType"), exports);
283
289
  __exportStar(require("./InvoiceResponse"), exports);
284
290
  __exportStar(require("./KnowledgeBaseDocumentChunkResponseModel"), exports);
@@ -341,9 +347,13 @@ __exportStar(require("./ObjectJsonSchemaPropertyOutput"), exports);
341
347
  __exportStar(require("./OrbAvatar"), exports);
342
348
  __exportStar(require("./OutboundCallRecipient"), exports);
343
349
  __exportStar(require("./OutboundCallRecipientResponseModel"), exports);
350
+ __exportStar(require("./OutboundSipTrunkConfigRequestModel"), exports);
344
351
  __exportStar(require("./PdfExportOptions"), exports);
345
352
  __exportStar(require("./PhoneNumberAgentInfo"), exports);
353
+ __exportStar(require("./PhoneNumberTransferTransferDestination"), exports);
346
354
  __exportStar(require("./PhoneNumberTransfer"), exports);
355
+ __exportStar(require("./PhoneNumberTransferDestination"), exports);
356
+ __exportStar(require("./PlayDtmfToolConfig"), exports);
347
357
  __exportStar(require("./PodcastBulletinMode"), exports);
348
358
  __exportStar(require("./PodcastBulletinModeData"), exports);
349
359
  __exportStar(require("./PodcastConversationMode"), exports);
@@ -379,7 +389,6 @@ __exportStar(require("./PromptAgentApiModelOutputToolsItem"), exports);
379
389
  __exportStar(require("./PromptAgentApiModelOutput"), exports);
380
390
  __exportStar(require("./PromptAgentApiModelOverride"), exports);
381
391
  __exportStar(require("./PromptAgentApiModelOverrideConfig"), exports);
382
- __exportStar(require("./PromptAgentDbModel"), exports);
383
392
  __exportStar(require("./PromptEvaluationCriteria"), exports);
384
393
  __exportStar(require("./PronunciationDictionaryAliasRuleRequestModel"), exports);
385
394
  __exportStar(require("./PronunciationDictionaryLocatorResponseModel"), exports);
@@ -410,10 +419,10 @@ __exportStar(require("./ResourceAccessInfoRole"), exports);
410
419
  __exportStar(require("./ResourceAccessInfo"), exports);
411
420
  __exportStar(require("./ResourceMetadataResponseModel"), exports);
412
421
  __exportStar(require("./SipMediaEncryptionEnum"), exports);
413
- __exportStar(require("./SipTrunkConfigResponseModel"), exports);
414
- __exportStar(require("./SipTrunkCredentials"), exports);
422
+ __exportStar(require("./SipTrunkCredentialsRequestModel"), exports);
415
423
  __exportStar(require("./SipTrunkOutboundCallResponse"), exports);
416
424
  __exportStar(require("./SipTrunkTransportEnum"), exports);
425
+ __exportStar(require("./SipUriTransferDestination"), exports);
417
426
  __exportStar(require("./SafetyCommonModel"), exports);
418
427
  __exportStar(require("./SafetyEvaluation"), exports);
419
428
  __exportStar(require("./SafetyResponseModel"), exports);
@@ -481,7 +490,9 @@ __exportStar(require("./ToolResponseModelToolConfig"), exports);
481
490
  __exportStar(require("./ToolResponseModel"), exports);
482
491
  __exportStar(require("./ToolsResponseModel"), exports);
483
492
  __exportStar(require("./TransferToAgentToolConfig"), exports);
484
- __exportStar(require("./TransferToNumberToolConfig"), exports);
493
+ __exportStar(require("./TransferToNumberToolConfigInput"), exports);
494
+ __exportStar(require("./TransferToNumberToolConfigOutput"), exports);
495
+ __exportStar(require("./TransferTypeEnum"), exports);
485
496
  __exportStar(require("./TurnConfig"), exports);
486
497
  __exportStar(require("./TurnMode"), exports);
487
498
  __exportStar(require("./TwilioOutboundCallResponse"), exports);
@@ -539,12 +550,11 @@ __exportStar(require("./WidgetStyles"), exports);
539
550
  __exportStar(require("./WidgetTextContents"), exports);
540
551
  __exportStar(require("./WorkspaceBatchCallsResponse"), exports);
541
552
  __exportStar(require("./WorkspaceGroupByNameResponseModel"), exports);
542
- __exportStar(require("./WorkspaceGroupPermission"), exports);
543
- __exportStar(require("./WorkspaceGroupResponseModel"), exports);
544
553
  __exportStar(require("./WorkspaceResourceType"), exports);
545
554
  __exportStar(require("./WorkspaceWebhookListResponseModel"), exports);
546
555
  __exportStar(require("./WorkspaceWebhookResponseModel"), exports);
547
556
  __exportStar(require("./WorkspaceWebhookUsageResponseModel"), exports);
557
+ __exportStar(require("./PromptAgentDbModel"), exports);
548
558
  __exportStar(require("./OutputFormat"), exports);
549
559
  __exportStar(require("./HistoryItemResponse"), exports);
550
560
  __exportStar(require("./Age"), exports);