@elevenlabs/elevenlabs-js 2.5.0 → 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 (580) hide show
  1. package/Client.js +4 -4
  2. package/api/resources/audioIsolation/client/Client.js +5 -9
  3. package/api/resources/audioNative/client/Client.js +7 -11
  4. package/api/resources/conversationalAi/client/Client.js +11 -15
  5. package/api/resources/conversationalAi/conversation/AudioInterface.d.ts +44 -0
  6. package/api/resources/conversationalAi/conversation/AudioInterface.js +12 -0
  7. package/api/resources/conversationalAi/conversation/ClientTools.d.ts +60 -0
  8. package/api/resources/conversationalAi/conversation/ClientTools.js +132 -0
  9. package/api/resources/conversationalAi/conversation/Conversation.d.ts +94 -0
  10. package/api/resources/conversationalAi/conversation/Conversation.js +280 -0
  11. package/api/resources/conversationalAi/conversation/ConversationConfig.d.ts +18 -0
  12. package/api/resources/conversationalAi/conversation/ConversationConfig.js +16 -0
  13. package/api/resources/conversationalAi/conversation/DefaultAudioInterface.d.ts +63 -0
  14. package/api/resources/conversationalAi/conversation/DefaultAudioInterface.js +126 -0
  15. package/api/resources/conversationalAi/conversation/__tests__/Conversation.test.d.ts +1 -0
  16. package/api/resources/conversationalAi/conversation/__tests__/Conversation.test.js +358 -0
  17. package/api/resources/conversationalAi/conversation/events.d.ts +84 -0
  18. package/api/resources/conversationalAi/conversation/events.js +19 -0
  19. package/api/resources/conversationalAi/conversation/index.d.ts +6 -0
  20. package/api/resources/conversationalAi/conversation/index.js +22 -0
  21. package/api/resources/conversationalAi/conversation/interfaces/ConversationClient.d.ts +11 -0
  22. package/api/resources/conversationalAi/conversation/interfaces/ConversationClient.js +2 -0
  23. package/api/resources/conversationalAi/conversation/interfaces/WebSocketInterface.d.ts +12 -0
  24. package/api/resources/conversationalAi/conversation/interfaces/WebSocketInterface.js +13 -0
  25. package/api/resources/conversationalAi/conversation/mocks/ConversationTestFactory.d.ts +15 -0
  26. package/api/resources/conversationalAi/conversation/mocks/ConversationTestFactory.js +28 -0
  27. package/api/resources/conversationalAi/conversation/mocks/MockConversation.d.ts +43 -0
  28. package/api/resources/conversationalAi/conversation/mocks/MockConversation.js +108 -0
  29. package/api/resources/conversationalAi/conversation/mocks/index.d.ts +2 -0
  30. package/api/resources/conversationalAi/conversation/mocks/index.js +18 -0
  31. package/api/resources/conversationalAi/resources/agents/client/Client.d.ts +4 -4
  32. package/api/resources/conversationalAi/resources/agents/client/Client.js +21 -25
  33. package/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.d.ts +2 -2
  34. package/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.d.ts +2 -2
  35. package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +3 -7
  36. package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +3 -7
  37. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +3 -7
  38. package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +3 -7
  39. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +3 -7
  40. package/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +1 -1
  41. package/api/resources/conversationalAi/resources/batchCalls/client/Client.js +12 -16
  42. package/api/resources/conversationalAi/resources/conversations/client/Client.js +9 -13
  43. package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +3 -7
  44. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +3 -7
  45. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +5 -9
  46. package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +3 -7
  47. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +3 -7
  48. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +17 -21
  49. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +3 -7
  50. package/api/resources/conversationalAi/resources/llmUsage/client/Client.js +3 -7
  51. package/api/resources/conversationalAi/resources/mcpServers/client/Client.js +7 -11
  52. package/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.js +3 -7
  53. package/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.js +5 -9
  54. package/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.js +3 -7
  55. package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.d.ts +12 -12
  56. package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +79 -83
  57. package/api/resources/conversationalAi/resources/phoneNumbers/types/index.d.ts +1 -1
  58. package/api/resources/conversationalAi/resources/phoneNumbers/types/index.js +1 -1
  59. package/api/resources/conversationalAi/resources/secrets/client/Client.js +7 -11
  60. package/api/resources/conversationalAi/resources/settings/client/Client.js +5 -9
  61. package/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +3 -7
  62. package/api/resources/conversationalAi/resources/tools/client/Client.js +13 -17
  63. package/api/resources/conversationalAi/resources/twilio/client/Client.js +3 -7
  64. package/api/resources/dubbing/client/Client.js +7 -11
  65. package/api/resources/dubbing/resources/audio/client/Client.js +3 -7
  66. package/api/resources/dubbing/resources/resource/client/Client.js +11 -15
  67. package/api/resources/dubbing/resources/resource/resources/language/client/Client.js +3 -7
  68. package/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +5 -9
  69. package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +5 -9
  70. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +3 -7
  71. package/api/resources/dubbing/resources/transcript/client/Client.js +3 -7
  72. package/api/resources/forcedAlignment/client/Client.js +3 -7
  73. package/api/resources/history/client/Client.js +11 -15
  74. package/api/resources/models/client/Client.js +3 -7
  75. package/api/resources/pronunciationDictionaries/client/Client.js +11 -15
  76. package/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +5 -9
  77. package/api/resources/samples/client/Client.js +3 -7
  78. package/api/resources/speechToSpeech/client/Client.js +5 -9
  79. package/api/resources/speechToText/client/Client.js +6 -7
  80. package/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +2 -0
  81. package/api/resources/studio/client/Client.js +3 -7
  82. package/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +6 -0
  83. package/api/resources/studio/resources/projects/client/Client.js +13 -17
  84. package/api/resources/studio/resources/projects/resources/chapters/client/Client.js +13 -17
  85. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +7 -11
  86. package/api/resources/studio/resources/projects/resources/content/client/Client.js +3 -7
  87. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +3 -7
  88. package/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +9 -13
  89. package/api/resources/textToDialogue/client/Client.js +5 -9
  90. package/api/resources/textToSoundEffects/client/Client.js +3 -7
  91. package/api/resources/textToSpeech/client/Client.js +9 -13
  92. package/api/resources/textToVoice/client/Client.d.ts +3 -0
  93. package/api/resources/textToVoice/client/Client.js +14 -13
  94. package/api/resources/textToVoice/client/requests/VoiceDesignRequestModel.d.ts +2 -0
  95. package/api/resources/textToVoice/index.d.ts +1 -0
  96. package/api/resources/textToVoice/index.js +1 -0
  97. package/api/resources/textToVoice/resources/index.d.ts +1 -0
  98. package/api/resources/textToVoice/resources/index.js +37 -0
  99. package/api/resources/textToVoice/resources/preview/client/Client.d.ts +38 -0
  100. package/api/resources/textToVoice/resources/preview/client/Client.js +116 -0
  101. package/api/resources/textToVoice/resources/preview/client/index.d.ts +1 -0
  102. package/api/resources/textToVoice/resources/preview/client/index.js +2 -0
  103. package/api/resources/textToVoice/resources/preview/index.d.ts +1 -0
  104. package/api/resources/textToVoice/resources/preview/index.js +17 -0
  105. package/api/resources/usage/client/Client.js +3 -7
  106. package/api/resources/user/client/Client.js +3 -7
  107. package/api/resources/user/resources/subscription/client/Client.js +3 -7
  108. package/api/resources/voices/client/Client.js +17 -21
  109. package/api/resources/voices/resources/ivc/client/Client.js +3 -7
  110. package/api/resources/voices/resources/pvc/client/Client.js +7 -11
  111. package/api/resources/voices/resources/pvc/resources/samples/client/Client.js +7 -11
  112. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +3 -7
  113. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +5 -9
  114. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +3 -7
  115. package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +3 -7
  116. package/api/resources/voices/resources/pvc/resources/verification/client/Client.js +3 -7
  117. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +5 -9
  118. package/api/resources/voices/resources/samples/resources/audio/client/Client.js +3 -7
  119. package/api/resources/voices/resources/settings/client/Client.js +7 -11
  120. package/api/resources/webhooks/client/Client.js +3 -7
  121. package/api/resources/workspace/resources/groups/client/Client.js +3 -7
  122. package/api/resources/workspace/resources/groups/resources/members/client/Client.js +5 -9
  123. package/api/resources/workspace/resources/invites/client/Client.js +7 -11
  124. package/api/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.d.ts +3 -1
  125. package/api/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.js +2 -0
  126. package/api/resources/workspace/resources/members/client/Client.js +5 -9
  127. package/api/resources/workspace/resources/resources/client/Client.js +7 -11
  128. package/api/types/AgentConfig.d.ts +1 -10
  129. package/api/types/AgentTransfer.d.ts +3 -0
  130. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +6 -0
  131. package/api/types/BreakdownTypes.d.ts +2 -1
  132. package/api/types/BreakdownTypes.js +1 -0
  133. package/api/types/ClientToolConfigInput.d.ts +1 -1
  134. package/api/types/ClientToolConfigOutput.d.ts +1 -1
  135. package/api/types/ConvAiWebhooks.d.ts +2 -0
  136. package/api/types/ConversationHistoryElevenAssistantCommonModel.d.ts +6 -0
  137. package/api/types/ConversationHistoryMetadataCommonModel.d.ts +3 -0
  138. package/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +4 -1
  139. package/api/types/ConversationHistoryTranscriptToolCallMcpDetails.d.ts +13 -0
  140. package/api/types/ConversationInitiationClientDataInternal.d.ts +2 -0
  141. package/api/types/ConversationInitiationClientDataRequestInput.d.ts +2 -0
  142. package/api/types/ConversationInitiationClientDataRequestOutput.d.ts +2 -0
  143. package/api/types/ConversationInitiationSource.d.ts +20 -0
  144. package/api/types/ConversationInitiationSource.js +19 -0
  145. package/api/types/ConversationSimulationSpecification.d.ts +1 -1
  146. package/api/types/ConversationalConfig.d.ts +1 -1
  147. package/api/types/CreateSipTrunkPhoneNumberRequest.d.ts +2 -21
  148. package/api/types/GetConversationResponseModel.d.ts +1 -0
  149. package/api/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.d.ts +15 -0
  150. package/api/types/{SipTrunkConfigResponseModel.d.ts → GetPhoneNumberOutboundSipTrunkConfigResponseModel.d.ts} +1 -1
  151. package/api/types/GetPhoneNumberSipTrunkResponseModel.d.ts +5 -1
  152. package/api/types/InboundSipTrunkConfigRequestModel.d.ts +14 -0
  153. package/api/types/OutboundSipTrunkConfigRequestModel.d.ts +16 -0
  154. package/api/types/PhoneNumberTransfer.d.ts +4 -1
  155. package/api/types/PhoneNumberTransferDestination.d.ts +6 -0
  156. package/api/types/PhoneNumberTransferDestination.js +5 -0
  157. package/api/types/PhoneNumberTransferTransferDestination.d.ts +13 -0
  158. package/api/types/PhoneNumberTransferTransferDestination.js +5 -0
  159. package/api/types/PromptAgentApiModelInput.d.ts +1 -1
  160. package/api/types/PromptAgentApiModelOutput.d.ts +1 -1
  161. package/api/types/PromptAgentDbModel.d.ts +0 -26
  162. package/{dist/api/types/SipTrunkCredentials.d.ts → api/types/SipTrunkCredentialsRequestModel.d.ts} +1 -1
  163. package/api/types/SipTrunkCredentialsRequestModel.js +5 -0
  164. package/api/types/SipUriTransferDestination.d.ts +6 -0
  165. package/api/types/SipUriTransferDestination.js +5 -0
  166. package/api/types/SubscriptionStatusType.d.ts +1 -3
  167. package/api/types/SubscriptionStatusType.js +0 -2
  168. package/api/types/SystemToolConfigInputParams.d.ts +1 -1
  169. package/api/types/SystemToolConfigOutputParams.d.ts +1 -1
  170. package/api/types/{TransferToNumberToolConfig.d.ts → TransferToNumberToolConfigInput.d.ts} +1 -1
  171. package/api/types/TransferToNumberToolConfigInput.js +5 -0
  172. package/api/types/TransferToNumberToolConfigOutput.d.ts +9 -0
  173. package/api/types/TransferToNumberToolConfigOutput.js +5 -0
  174. package/api/types/TransferTypeEnum.d.ts +8 -0
  175. package/api/types/TransferTypeEnum.js +10 -0
  176. package/api/types/WidgetTextContents.d.ts +8 -0
  177. package/api/types/WorkspaceResourceType.d.ts +2 -1
  178. package/api/types/WorkspaceResourceType.js +1 -0
  179. package/api/types/index.d.ts +15 -4
  180. package/api/types/index.js +15 -4
  181. package/core/fetcher/BinaryResponse.d.ts +7 -4
  182. package/core/fetcher/BinaryResponse.js +5 -2
  183. package/core/fetcher/Fetcher.js +3 -3
  184. package/core/fetcher/createRequestUrl.d.ts +1 -1
  185. package/core/fetcher/createRequestUrl.js +3 -7
  186. package/core/fetcher/getErrorResponseBody.d.ts +1 -0
  187. package/core/fetcher/getErrorResponseBody.js +44 -0
  188. package/core/fetcher/getResponseBody.js +2 -1
  189. package/core/form-data-utils/FormDataWrapper.js +4 -4
  190. package/core/form-data-utils/encodeAsFormParameter.d.ts +0 -3
  191. package/core/form-data-utils/encodeAsFormParameter.js +2 -8
  192. package/core/headers.d.ts +1 -1
  193. package/core/index.d.ts +1 -0
  194. package/core/index.js +2 -1
  195. package/core/url/index.d.ts +2 -0
  196. package/core/url/index.js +7 -0
  197. package/core/url/join.d.ts +1 -0
  198. package/core/url/join.js +49 -0
  199. package/core/url/qs.d.ts +6 -0
  200. package/core/url/qs.js +64 -0
  201. package/dist/Client.js +4 -4
  202. package/dist/api/resources/audioIsolation/client/Client.js +5 -9
  203. package/dist/api/resources/audioNative/client/Client.js +7 -11
  204. package/dist/api/resources/conversationalAi/client/Client.js +11 -15
  205. package/dist/api/resources/conversationalAi/conversation/AudioInterface.d.ts +44 -0
  206. package/dist/api/resources/conversationalAi/conversation/AudioInterface.js +12 -0
  207. package/dist/api/resources/conversationalAi/conversation/ClientTools.d.ts +60 -0
  208. package/dist/api/resources/conversationalAi/conversation/ClientTools.js +132 -0
  209. package/dist/api/resources/conversationalAi/conversation/Conversation.d.ts +94 -0
  210. package/dist/api/resources/conversationalAi/conversation/Conversation.js +280 -0
  211. package/dist/api/resources/conversationalAi/conversation/ConversationConfig.d.ts +18 -0
  212. package/dist/api/resources/conversationalAi/conversation/ConversationConfig.js +16 -0
  213. package/dist/api/resources/conversationalAi/conversation/DefaultAudioInterface.d.ts +63 -0
  214. package/dist/api/resources/conversationalAi/conversation/DefaultAudioInterface.js +126 -0
  215. package/dist/api/resources/conversationalAi/conversation/__tests__/Conversation.test.d.ts +1 -0
  216. package/dist/api/resources/conversationalAi/conversation/__tests__/Conversation.test.js +358 -0
  217. package/dist/api/resources/conversationalAi/conversation/events.d.ts +84 -0
  218. package/dist/api/resources/conversationalAi/conversation/events.js +19 -0
  219. package/dist/api/resources/conversationalAi/conversation/index.d.ts +6 -0
  220. package/dist/api/resources/conversationalAi/conversation/index.js +22 -0
  221. package/dist/api/resources/conversationalAi/conversation/interfaces/ConversationClient.d.ts +11 -0
  222. package/dist/api/resources/conversationalAi/conversation/interfaces/ConversationClient.js +2 -0
  223. package/dist/api/resources/conversationalAi/conversation/interfaces/WebSocketInterface.d.ts +12 -0
  224. package/dist/api/resources/conversationalAi/conversation/interfaces/WebSocketInterface.js +13 -0
  225. package/dist/api/resources/conversationalAi/conversation/mocks/ConversationTestFactory.d.ts +15 -0
  226. package/dist/api/resources/conversationalAi/conversation/mocks/ConversationTestFactory.js +28 -0
  227. package/dist/api/resources/conversationalAi/conversation/mocks/MockConversation.d.ts +43 -0
  228. package/dist/api/resources/conversationalAi/conversation/mocks/MockConversation.js +108 -0
  229. package/dist/api/resources/conversationalAi/conversation/mocks/index.d.ts +2 -0
  230. package/dist/api/resources/conversationalAi/conversation/mocks/index.js +18 -0
  231. package/dist/api/resources/conversationalAi/resources/agents/client/Client.d.ts +4 -4
  232. package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +21 -25
  233. package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.d.ts +2 -2
  234. package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.d.ts +2 -2
  235. package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +3 -7
  236. package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +3 -7
  237. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +3 -7
  238. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +3 -7
  239. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +3 -7
  240. package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +1 -1
  241. package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.js +12 -16
  242. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +9 -13
  243. package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +3 -7
  244. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +3 -7
  245. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +5 -9
  246. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +3 -7
  247. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +3 -7
  248. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +17 -21
  249. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +3 -7
  250. package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.js +3 -7
  251. package/dist/api/resources/conversationalAi/resources/mcpServers/client/Client.js +7 -11
  252. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.js +3 -7
  253. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.js +5 -9
  254. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.js +3 -7
  255. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.d.ts +12 -12
  256. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +79 -83
  257. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/index.d.ts +1 -1
  258. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/index.js +1 -1
  259. package/dist/api/resources/conversationalAi/resources/secrets/client/Client.js +7 -11
  260. package/dist/api/resources/conversationalAi/resources/settings/client/Client.js +5 -9
  261. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +3 -7
  262. package/dist/api/resources/conversationalAi/resources/tools/client/Client.js +13 -17
  263. package/dist/api/resources/conversationalAi/resources/twilio/client/Client.js +3 -7
  264. package/dist/api/resources/dubbing/client/Client.js +7 -11
  265. package/dist/api/resources/dubbing/resources/audio/client/Client.js +3 -7
  266. package/dist/api/resources/dubbing/resources/resource/client/Client.js +11 -15
  267. package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.js +3 -7
  268. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +5 -9
  269. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +5 -9
  270. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +3 -7
  271. package/dist/api/resources/dubbing/resources/transcript/client/Client.js +3 -7
  272. package/dist/api/resources/forcedAlignment/client/Client.js +3 -7
  273. package/dist/api/resources/history/client/Client.js +11 -15
  274. package/dist/api/resources/models/client/Client.js +3 -7
  275. package/dist/api/resources/pronunciationDictionaries/client/Client.js +11 -15
  276. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +5 -9
  277. package/dist/api/resources/samples/client/Client.js +3 -7
  278. package/dist/api/resources/speechToSpeech/client/Client.js +5 -9
  279. package/dist/api/resources/speechToText/client/Client.js +6 -7
  280. package/dist/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +2 -0
  281. package/dist/api/resources/studio/client/Client.js +3 -7
  282. package/dist/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +6 -0
  283. package/dist/api/resources/studio/resources/projects/client/Client.js +13 -17
  284. package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.js +13 -17
  285. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +7 -11
  286. package/dist/api/resources/studio/resources/projects/resources/content/client/Client.js +3 -7
  287. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +3 -7
  288. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +9 -13
  289. package/dist/api/resources/textToDialogue/client/Client.js +5 -9
  290. package/dist/api/resources/textToSoundEffects/client/Client.js +3 -7
  291. package/dist/api/resources/textToSpeech/client/Client.js +9 -13
  292. package/dist/api/resources/textToVoice/client/Client.d.ts +3 -0
  293. package/dist/api/resources/textToVoice/client/Client.js +14 -13
  294. package/dist/api/resources/textToVoice/client/requests/VoiceDesignRequestModel.d.ts +2 -0
  295. package/dist/api/resources/textToVoice/index.d.ts +1 -0
  296. package/dist/api/resources/textToVoice/index.js +1 -0
  297. package/dist/api/resources/textToVoice/resources/index.d.ts +1 -0
  298. package/dist/api/resources/textToVoice/resources/index.js +37 -0
  299. package/dist/api/resources/textToVoice/resources/preview/client/Client.d.ts +38 -0
  300. package/dist/api/resources/textToVoice/resources/preview/client/Client.js +116 -0
  301. package/dist/api/resources/textToVoice/resources/preview/client/index.d.ts +1 -0
  302. package/dist/api/resources/textToVoice/resources/preview/client/index.js +2 -0
  303. package/dist/api/resources/textToVoice/resources/preview/index.d.ts +1 -0
  304. package/dist/api/resources/textToVoice/resources/preview/index.js +17 -0
  305. package/dist/api/resources/usage/client/Client.js +3 -7
  306. package/dist/api/resources/user/client/Client.js +3 -7
  307. package/dist/api/resources/user/resources/subscription/client/Client.js +3 -7
  308. package/dist/api/resources/voices/client/Client.js +17 -21
  309. package/dist/api/resources/voices/resources/ivc/client/Client.js +3 -7
  310. package/dist/api/resources/voices/resources/pvc/client/Client.js +7 -11
  311. package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.js +7 -11
  312. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +3 -7
  313. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +5 -9
  314. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +3 -7
  315. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +3 -7
  316. package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.js +3 -7
  317. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +5 -9
  318. package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.js +3 -7
  319. package/dist/api/resources/voices/resources/settings/client/Client.js +7 -11
  320. package/dist/api/resources/webhooks/client/Client.js +3 -7
  321. package/dist/api/resources/workspace/resources/groups/client/Client.js +3 -7
  322. package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.js +5 -9
  323. package/dist/api/resources/workspace/resources/invites/client/Client.js +7 -11
  324. package/dist/api/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.d.ts +3 -1
  325. package/dist/api/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.js +2 -0
  326. package/dist/api/resources/workspace/resources/members/client/Client.js +5 -9
  327. package/dist/api/resources/workspace/resources/resources/client/Client.js +7 -11
  328. package/dist/api/types/AgentConfig.d.ts +1 -10
  329. package/dist/api/types/AgentTransfer.d.ts +3 -0
  330. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +6 -0
  331. package/dist/api/types/BreakdownTypes.d.ts +2 -1
  332. package/dist/api/types/BreakdownTypes.js +1 -0
  333. package/dist/api/types/ClientToolConfigInput.d.ts +1 -1
  334. package/dist/api/types/ClientToolConfigOutput.d.ts +1 -1
  335. package/dist/api/types/ConvAiWebhooks.d.ts +2 -0
  336. package/dist/api/types/ConversationHistoryElevenAssistantCommonModel.d.ts +6 -0
  337. package/dist/api/types/ConversationHistoryElevenAssistantCommonModel.js +5 -0
  338. package/dist/api/types/ConversationHistoryMetadataCommonModel.d.ts +3 -0
  339. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +4 -1
  340. package/dist/api/types/ConversationHistoryTranscriptToolCallMcpDetails.d.ts +13 -0
  341. package/dist/api/types/ConversationHistoryTranscriptToolCallMcpDetails.js +5 -0
  342. package/dist/api/types/ConversationInitiationClientDataInternal.d.ts +2 -0
  343. package/dist/api/types/ConversationInitiationClientDataRequestInput.d.ts +2 -0
  344. package/dist/api/types/ConversationInitiationClientDataRequestOutput.d.ts +2 -0
  345. package/dist/api/types/ConversationInitiationSource.d.ts +20 -0
  346. package/dist/api/types/ConversationInitiationSource.js +19 -0
  347. package/dist/api/types/ConversationSimulationSpecification.d.ts +1 -1
  348. package/dist/api/types/ConversationalConfig.d.ts +1 -1
  349. package/dist/api/types/CreateSipTrunkPhoneNumberRequest.d.ts +2 -21
  350. package/dist/api/types/GetConversationResponseModel.d.ts +1 -0
  351. package/dist/api/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.d.ts +15 -0
  352. package/dist/api/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.js +5 -0
  353. package/dist/api/types/{SipTrunkConfigResponseModel.d.ts → GetPhoneNumberOutboundSipTrunkConfigResponseModel.d.ts} +1 -1
  354. package/dist/api/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.js +5 -0
  355. package/dist/api/types/GetPhoneNumberSipTrunkResponseModel.d.ts +5 -1
  356. package/dist/api/types/InboundSipTrunkConfigRequestModel.d.ts +14 -0
  357. package/dist/api/types/InboundSipTrunkConfigRequestModel.js +5 -0
  358. package/dist/api/types/OutboundSipTrunkConfigRequestModel.d.ts +16 -0
  359. package/dist/api/types/OutboundSipTrunkConfigRequestModel.js +5 -0
  360. package/dist/api/types/PhoneNumberTransfer.d.ts +4 -1
  361. package/dist/api/types/PhoneNumberTransferDestination.d.ts +6 -0
  362. package/dist/api/types/PhoneNumberTransferDestination.js +5 -0
  363. package/dist/api/types/PhoneNumberTransferTransferDestination.d.ts +13 -0
  364. package/dist/api/types/PhoneNumberTransferTransferDestination.js +5 -0
  365. package/dist/api/types/PromptAgentApiModelInput.d.ts +1 -1
  366. package/dist/api/types/PromptAgentApiModelOutput.d.ts +1 -1
  367. package/dist/api/types/PromptAgentDbModel.d.ts +0 -26
  368. package/{api/types/SipTrunkCredentials.d.ts → dist/api/types/SipTrunkCredentialsRequestModel.d.ts} +1 -1
  369. package/dist/api/types/SipTrunkCredentialsRequestModel.js +5 -0
  370. package/dist/api/types/SipUriTransferDestination.d.ts +6 -0
  371. package/dist/api/types/SipUriTransferDestination.js +5 -0
  372. package/dist/api/types/SubscriptionStatusType.d.ts +1 -3
  373. package/dist/api/types/SubscriptionStatusType.js +0 -2
  374. package/dist/api/types/SystemToolConfigInputParams.d.ts +1 -1
  375. package/dist/api/types/SystemToolConfigOutputParams.d.ts +1 -1
  376. package/dist/api/types/{TransferToNumberToolConfig.d.ts → TransferToNumberToolConfigInput.d.ts} +1 -1
  377. package/dist/api/types/TransferToNumberToolConfigInput.js +5 -0
  378. package/dist/api/types/TransferToNumberToolConfigOutput.d.ts +9 -0
  379. package/dist/api/types/TransferToNumberToolConfigOutput.js +5 -0
  380. package/dist/api/types/TransferTypeEnum.d.ts +8 -0
  381. package/dist/api/types/TransferTypeEnum.js +10 -0
  382. package/dist/api/types/WidgetTextContents.d.ts +8 -0
  383. package/dist/api/types/WorkspaceResourceType.d.ts +2 -1
  384. package/dist/api/types/WorkspaceResourceType.js +1 -0
  385. package/dist/api/types/index.d.ts +15 -4
  386. package/dist/api/types/index.js +15 -4
  387. package/dist/core/fetcher/BinaryResponse.d.ts +7 -4
  388. package/dist/core/fetcher/BinaryResponse.js +5 -2
  389. package/dist/core/fetcher/Fetcher.js +3 -3
  390. package/dist/core/fetcher/createRequestUrl.d.ts +1 -1
  391. package/dist/core/fetcher/createRequestUrl.js +3 -7
  392. package/dist/core/fetcher/getErrorResponseBody.d.ts +1 -0
  393. package/dist/core/fetcher/getErrorResponseBody.js +44 -0
  394. package/dist/core/fetcher/getResponseBody.js +2 -1
  395. package/dist/core/form-data-utils/FormDataWrapper.js +4 -4
  396. package/dist/core/form-data-utils/encodeAsFormParameter.d.ts +0 -3
  397. package/dist/core/form-data-utils/encodeAsFormParameter.js +2 -8
  398. package/dist/core/headers.d.ts +1 -1
  399. package/dist/core/index.d.ts +1 -0
  400. package/dist/core/index.js +2 -1
  401. package/dist/core/url/index.d.ts +2 -0
  402. package/dist/core/url/index.js +7 -0
  403. package/dist/core/url/join.d.ts +1 -0
  404. package/dist/core/url/join.js +49 -0
  405. package/dist/core/url/qs.d.ts +6 -0
  406. package/dist/core/url/qs.js +64 -0
  407. package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/index.d.ts +1 -1
  408. package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/index.js +1 -1
  409. package/dist/serialization/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +3 -0
  410. package/dist/serialization/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.js +3 -0
  411. package/dist/serialization/resources/textToVoice/client/requests/VoiceDesignRequestModel.d.ts +1 -0
  412. package/dist/serialization/resources/textToVoice/client/requests/VoiceDesignRequestModel.js +1 -0
  413. package/dist/serialization/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.d.ts +1 -1
  414. package/dist/serialization/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.js +2 -0
  415. package/dist/serialization/types/AgentConfig.d.ts +2 -9
  416. package/dist/serialization/types/AgentConfig.js +1 -8
  417. package/dist/serialization/types/AgentTransfer.d.ts +3 -0
  418. package/dist/serialization/types/AgentTransfer.js +3 -0
  419. package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +3 -0
  420. package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.js +3 -0
  421. package/dist/serialization/types/BreakdownTypes.d.ts +1 -1
  422. package/dist/serialization/types/BreakdownTypes.js +1 -0
  423. package/dist/serialization/types/ConvAiWebhooks.d.ts +1 -0
  424. package/dist/serialization/types/ConvAiWebhooks.js +1 -0
  425. package/dist/serialization/types/ConversationHistoryElevenAssistantCommonModel.d.ts +12 -0
  426. package/dist/serialization/types/ConversationHistoryElevenAssistantCommonModel.js +43 -0
  427. package/dist/serialization/types/ConversationHistoryMetadataCommonModel.d.ts +5 -0
  428. package/dist/serialization/types/ConversationHistoryMetadataCommonModel.js +5 -0
  429. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +5 -1
  430. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.js +2 -0
  431. package/dist/serialization/types/ConversationHistoryTranscriptToolCallMcpDetails.d.ts +19 -0
  432. package/dist/serialization/types/ConversationHistoryTranscriptToolCallMcpDetails.js +50 -0
  433. package/dist/serialization/types/ConversationInitiationClientDataInternal.d.ts +1 -0
  434. package/dist/serialization/types/ConversationInitiationClientDataInternal.js +1 -0
  435. package/dist/serialization/types/ConversationInitiationClientDataRequestInput.d.ts +1 -0
  436. package/dist/serialization/types/ConversationInitiationClientDataRequestInput.js +1 -0
  437. package/dist/serialization/types/ConversationInitiationClientDataRequestOutput.d.ts +1 -0
  438. package/dist/serialization/types/ConversationInitiationClientDataRequestOutput.js +1 -0
  439. package/dist/serialization/types/ConversationInitiationSource.d.ts +10 -0
  440. package/dist/serialization/types/ConversationInitiationSource.js +53 -0
  441. package/dist/serialization/types/ConversationSimulationSpecification.d.ts +1 -1
  442. package/dist/serialization/types/ConversationalConfig.d.ts +1 -1
  443. package/dist/serialization/types/CreateSipTrunkPhoneNumberRequest.d.ts +4 -10
  444. package/dist/serialization/types/CreateSipTrunkPhoneNumberRequest.js +4 -10
  445. package/dist/serialization/types/GetConversationResponseModel.d.ts +1 -0
  446. package/dist/serialization/types/GetConversationResponseModel.js +1 -0
  447. package/dist/serialization/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.d.ts +17 -0
  448. package/dist/serialization/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.js +48 -0
  449. package/{serialization/types/SipTrunkConfigResponseModel.d.ts → dist/serialization/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.d.ts} +2 -2
  450. package/dist/serialization/types/{SipTrunkConfigResponseModel.js → GetPhoneNumberOutboundSipTrunkConfigResponseModel.js} +2 -2
  451. package/dist/serialization/types/GetPhoneNumberSipTrunkResponseModel.d.ts +5 -2
  452. package/dist/serialization/types/GetPhoneNumberSipTrunkResponseModel.js +5 -2
  453. package/dist/serialization/types/InboundSipTrunkConfigRequestModel.d.ts +17 -0
  454. package/dist/serialization/types/InboundSipTrunkConfigRequestModel.js +48 -0
  455. package/dist/serialization/types/OutboundSipTrunkConfigRequestModel.d.ts +19 -0
  456. package/dist/serialization/types/OutboundSipTrunkConfigRequestModel.js +50 -0
  457. package/dist/serialization/types/PhoneNumberTransfer.d.ts +5 -1
  458. package/dist/serialization/types/PhoneNumberTransfer.js +5 -1
  459. package/dist/serialization/types/PhoneNumberTransferDestination.d.ts +12 -0
  460. package/dist/serialization/types/PhoneNumberTransferDestination.js +43 -0
  461. package/dist/serialization/types/PhoneNumberTransferTransferDestination.d.ts +18 -0
  462. package/dist/serialization/types/PhoneNumberTransferTransferDestination.js +51 -0
  463. package/dist/serialization/types/PromptAgentDbModel.d.ts +0 -18
  464. package/dist/serialization/types/PromptAgentDbModel.js +0 -18
  465. package/{serialization/types/SipTrunkCredentials.d.ts → dist/serialization/types/SipTrunkCredentialsRequestModel.d.ts} +2 -2
  466. package/{serialization/types/SipTrunkCredentials.js → dist/serialization/types/SipTrunkCredentialsRequestModel.js} +2 -2
  467. package/dist/serialization/types/SipUriTransferDestination.d.ts +12 -0
  468. package/dist/serialization/types/SipUriTransferDestination.js +43 -0
  469. package/dist/serialization/types/SubscriptionStatusType.d.ts +1 -1
  470. package/dist/serialization/types/SubscriptionStatusType.js +1 -10
  471. package/dist/serialization/types/SystemToolConfigInputParams.d.ts +2 -2
  472. package/dist/serialization/types/SystemToolConfigInputParams.js +2 -2
  473. package/dist/serialization/types/SystemToolConfigOutputParams.d.ts +2 -2
  474. package/dist/serialization/types/SystemToolConfigOutputParams.js +2 -2
  475. package/dist/serialization/types/{TransferToNumberToolConfig.d.ts → TransferToNumberToolConfigInput.d.ts} +2 -2
  476. package/dist/serialization/types/{TransferToNumberToolConfig.js → TransferToNumberToolConfigInput.js} +2 -2
  477. package/dist/serialization/types/TransferToNumberToolConfigOutput.d.ts +14 -0
  478. package/dist/serialization/types/TransferToNumberToolConfigOutput.js +45 -0
  479. package/dist/serialization/types/TransferTypeEnum.d.ts +10 -0
  480. package/dist/serialization/types/TransferTypeEnum.js +41 -0
  481. package/dist/serialization/types/WidgetTextContents.d.ts +4 -0
  482. package/dist/serialization/types/WidgetTextContents.js +4 -0
  483. package/dist/serialization/types/WorkspaceResourceType.d.ts +1 -1
  484. package/dist/serialization/types/WorkspaceResourceType.js +1 -0
  485. package/dist/serialization/types/index.d.ts +15 -4
  486. package/dist/serialization/types/index.js +15 -4
  487. package/dist/version.d.ts +1 -1
  488. package/dist/version.js +1 -1
  489. package/jest.config.mjs +36 -6
  490. package/package.json +21 -20
  491. package/reference.md +43 -41
  492. package/serialization/resources/conversationalAi/resources/phoneNumbers/types/index.d.ts +1 -1
  493. package/serialization/resources/conversationalAi/resources/phoneNumbers/types/index.js +1 -1
  494. package/serialization/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +3 -0
  495. package/serialization/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.js +3 -0
  496. package/serialization/resources/textToVoice/client/requests/VoiceDesignRequestModel.d.ts +1 -0
  497. package/serialization/resources/textToVoice/client/requests/VoiceDesignRequestModel.js +1 -0
  498. package/serialization/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.d.ts +1 -1
  499. package/serialization/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.js +2 -0
  500. package/serialization/types/AgentConfig.d.ts +2 -9
  501. package/serialization/types/AgentConfig.js +1 -8
  502. package/serialization/types/AgentTransfer.d.ts +3 -0
  503. package/serialization/types/AgentTransfer.js +3 -0
  504. package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +3 -0
  505. package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.js +3 -0
  506. package/serialization/types/BreakdownTypes.d.ts +1 -1
  507. package/serialization/types/BreakdownTypes.js +1 -0
  508. package/serialization/types/ConvAiWebhooks.d.ts +1 -0
  509. package/serialization/types/ConvAiWebhooks.js +1 -0
  510. package/serialization/types/ConversationHistoryElevenAssistantCommonModel.d.ts +12 -0
  511. package/serialization/types/ConversationHistoryElevenAssistantCommonModel.js +43 -0
  512. package/serialization/types/ConversationHistoryMetadataCommonModel.d.ts +5 -0
  513. package/serialization/types/ConversationHistoryMetadataCommonModel.js +5 -0
  514. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +5 -1
  515. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.js +2 -0
  516. package/serialization/types/ConversationHistoryTranscriptToolCallMcpDetails.d.ts +19 -0
  517. package/serialization/types/ConversationHistoryTranscriptToolCallMcpDetails.js +50 -0
  518. package/serialization/types/ConversationInitiationClientDataInternal.d.ts +1 -0
  519. package/serialization/types/ConversationInitiationClientDataInternal.js +1 -0
  520. package/serialization/types/ConversationInitiationClientDataRequestInput.d.ts +1 -0
  521. package/serialization/types/ConversationInitiationClientDataRequestInput.js +1 -0
  522. package/serialization/types/ConversationInitiationClientDataRequestOutput.d.ts +1 -0
  523. package/serialization/types/ConversationInitiationClientDataRequestOutput.js +1 -0
  524. package/serialization/types/ConversationInitiationSource.d.ts +10 -0
  525. package/serialization/types/ConversationInitiationSource.js +53 -0
  526. package/serialization/types/ConversationSimulationSpecification.d.ts +1 -1
  527. package/serialization/types/ConversationalConfig.d.ts +1 -1
  528. package/serialization/types/CreateSipTrunkPhoneNumberRequest.d.ts +4 -10
  529. package/serialization/types/CreateSipTrunkPhoneNumberRequest.js +4 -10
  530. package/serialization/types/GetConversationResponseModel.d.ts +1 -0
  531. package/serialization/types/GetConversationResponseModel.js +1 -0
  532. package/serialization/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.d.ts +17 -0
  533. package/serialization/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.js +48 -0
  534. package/{dist/serialization/types/SipTrunkConfigResponseModel.d.ts → serialization/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.d.ts} +2 -2
  535. package/serialization/types/{SipTrunkConfigResponseModel.js → GetPhoneNumberOutboundSipTrunkConfigResponseModel.js} +2 -2
  536. package/serialization/types/GetPhoneNumberSipTrunkResponseModel.d.ts +5 -2
  537. package/serialization/types/GetPhoneNumberSipTrunkResponseModel.js +5 -2
  538. package/serialization/types/InboundSipTrunkConfigRequestModel.d.ts +17 -0
  539. package/serialization/types/InboundSipTrunkConfigRequestModel.js +48 -0
  540. package/serialization/types/OutboundSipTrunkConfigRequestModel.d.ts +19 -0
  541. package/serialization/types/OutboundSipTrunkConfigRequestModel.js +50 -0
  542. package/serialization/types/PhoneNumberTransfer.d.ts +5 -1
  543. package/serialization/types/PhoneNumberTransfer.js +5 -1
  544. package/serialization/types/PhoneNumberTransferDestination.d.ts +12 -0
  545. package/serialization/types/PhoneNumberTransferDestination.js +43 -0
  546. package/serialization/types/PhoneNumberTransferTransferDestination.d.ts +18 -0
  547. package/serialization/types/PhoneNumberTransferTransferDestination.js +51 -0
  548. package/serialization/types/PromptAgentDbModel.d.ts +0 -18
  549. package/serialization/types/PromptAgentDbModel.js +0 -18
  550. package/{dist/serialization/types/SipTrunkCredentials.d.ts → serialization/types/SipTrunkCredentialsRequestModel.d.ts} +2 -2
  551. package/{dist/serialization/types/SipTrunkCredentials.js → serialization/types/SipTrunkCredentialsRequestModel.js} +2 -2
  552. package/serialization/types/SipUriTransferDestination.d.ts +12 -0
  553. package/serialization/types/SipUriTransferDestination.js +43 -0
  554. package/serialization/types/SubscriptionStatusType.d.ts +1 -1
  555. package/serialization/types/SubscriptionStatusType.js +1 -10
  556. package/serialization/types/SystemToolConfigInputParams.d.ts +2 -2
  557. package/serialization/types/SystemToolConfigInputParams.js +2 -2
  558. package/serialization/types/SystemToolConfigOutputParams.d.ts +2 -2
  559. package/serialization/types/SystemToolConfigOutputParams.js +2 -2
  560. package/serialization/types/{TransferToNumberToolConfig.d.ts → TransferToNumberToolConfigInput.d.ts} +2 -2
  561. package/serialization/types/{TransferToNumberToolConfig.js → TransferToNumberToolConfigInput.js} +2 -2
  562. package/serialization/types/TransferToNumberToolConfigOutput.d.ts +14 -0
  563. package/serialization/types/TransferToNumberToolConfigOutput.js +45 -0
  564. package/serialization/types/TransferTypeEnum.d.ts +10 -0
  565. package/serialization/types/TransferTypeEnum.js +41 -0
  566. package/serialization/types/WidgetTextContents.d.ts +4 -0
  567. package/serialization/types/WidgetTextContents.js +4 -0
  568. package/serialization/types/WorkspaceResourceType.d.ts +1 -1
  569. package/serialization/types/WorkspaceResourceType.js +1 -0
  570. package/serialization/types/index.d.ts +15 -4
  571. package/serialization/types/index.js +15 -4
  572. package/version.d.ts +1 -1
  573. package/version.js +1 -1
  574. package/jest.browser.config.mjs +0 -10
  575. /package/api/types/{SipTrunkConfigResponseModel.js → ConversationHistoryElevenAssistantCommonModel.js} +0 -0
  576. /package/api/types/{SipTrunkCredentials.js → ConversationHistoryTranscriptToolCallMcpDetails.js} +0 -0
  577. /package/api/types/{TransferToNumberToolConfig.js → GetPhoneNumberInboundSipTrunkConfigResponseModel.js} +0 -0
  578. /package/{dist/api/types/SipTrunkConfigResponseModel.js → api/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.js} +0 -0
  579. /package/{dist/api/types/SipTrunkCredentials.js → api/types/InboundSipTrunkConfigRequestModel.js} +0 -0
  580. /package/{dist/api/types/TransferToNumberToolConfig.js → api/types/OutboundSipTrunkConfigRequestModel.js} +0 -0
@@ -129,6 +129,7 @@ __exportStar(require("./ConversationConfigOverrideConfig"), exports);
129
129
  __exportStar(require("./ConversationDeletionSettings"), exports);
130
130
  __exportStar(require("./ConversationHistoryAnalysisCommonModel"), exports);
131
131
  __exportStar(require("./ConversationHistoryBatchCallModel"), exports);
132
+ __exportStar(require("./ConversationHistoryElevenAssistantCommonModel"), exports);
132
133
  __exportStar(require("./ConversationHistoryErrorCommonModel"), exports);
133
134
  __exportStar(require("./ConversationHistoryEvaluationCriteriaResultCommonModel"), exports);
134
135
  __exportStar(require("./ConversationHistoryFeedbackCommonModel"), exports);
@@ -146,6 +147,7 @@ __exportStar(require("./ConversationHistoryTranscriptCommonModelOutput"), export
146
147
  __exportStar(require("./ConversationHistoryTranscriptToolCallClientDetails"), exports);
147
148
  __exportStar(require("./ConversationHistoryTranscriptToolCallCommonModelToolDetails"), exports);
148
149
  __exportStar(require("./ConversationHistoryTranscriptToolCallCommonModel"), exports);
150
+ __exportStar(require("./ConversationHistoryTranscriptToolCallMcpDetails"), exports);
149
151
  __exportStar(require("./ConversationHistoryTranscriptToolCallWebhookDetails"), exports);
150
152
  __exportStar(require("./ConversationHistoryTranscriptToolResultCommonModel"), exports);
151
153
  __exportStar(require("./ConversationHistoryTwilioPhoneCallModelDirection"), exports);
@@ -160,6 +162,7 @@ __exportStar(require("./ConversationInitiationClientDataRequestOutputDynamicVari
160
162
  __exportStar(require("./ConversationInitiationClientDataRequestOutput"), exports);
161
163
  __exportStar(require("./ConversationInitiationClientDataWebhookRequestHeadersValue"), exports);
162
164
  __exportStar(require("./ConversationInitiationClientDataWebhook"), exports);
165
+ __exportStar(require("./ConversationInitiationSource"), exports);
163
166
  __exportStar(require("./ConversationSignedUrlResponseModel"), exports);
164
167
  __exportStar(require("./ConversationSimulationSpecificationDynamicVariablesValue"), exports);
165
168
  __exportStar(require("./ConversationSimulationSpecification"), 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,12 @@ __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);
347
356
  __exportStar(require("./PlayDtmfToolConfig"), exports);
348
357
  __exportStar(require("./PodcastBulletinMode"), exports);
349
358
  __exportStar(require("./PodcastBulletinModeData"), exports);
@@ -380,7 +389,6 @@ __exportStar(require("./PromptAgentApiModelOutputToolsItem"), exports);
380
389
  __exportStar(require("./PromptAgentApiModelOutput"), exports);
381
390
  __exportStar(require("./PromptAgentApiModelOverride"), exports);
382
391
  __exportStar(require("./PromptAgentApiModelOverrideConfig"), exports);
383
- __exportStar(require("./PromptAgentDbModel"), exports);
384
392
  __exportStar(require("./PromptEvaluationCriteria"), exports);
385
393
  __exportStar(require("./PronunciationDictionaryAliasRuleRequestModel"), exports);
386
394
  __exportStar(require("./PronunciationDictionaryLocatorResponseModel"), exports);
@@ -411,10 +419,10 @@ __exportStar(require("./ResourceAccessInfoRole"), exports);
411
419
  __exportStar(require("./ResourceAccessInfo"), exports);
412
420
  __exportStar(require("./ResourceMetadataResponseModel"), exports);
413
421
  __exportStar(require("./SipMediaEncryptionEnum"), exports);
414
- __exportStar(require("./SipTrunkConfigResponseModel"), exports);
415
- __exportStar(require("./SipTrunkCredentials"), exports);
422
+ __exportStar(require("./SipTrunkCredentialsRequestModel"), exports);
416
423
  __exportStar(require("./SipTrunkOutboundCallResponse"), exports);
417
424
  __exportStar(require("./SipTrunkTransportEnum"), exports);
425
+ __exportStar(require("./SipUriTransferDestination"), exports);
418
426
  __exportStar(require("./SafetyCommonModel"), exports);
419
427
  __exportStar(require("./SafetyEvaluation"), exports);
420
428
  __exportStar(require("./SafetyResponseModel"), exports);
@@ -482,7 +490,9 @@ __exportStar(require("./ToolResponseModelToolConfig"), exports);
482
490
  __exportStar(require("./ToolResponseModel"), exports);
483
491
  __exportStar(require("./ToolsResponseModel"), exports);
484
492
  __exportStar(require("./TransferToAgentToolConfig"), exports);
485
- __exportStar(require("./TransferToNumberToolConfig"), exports);
493
+ __exportStar(require("./TransferToNumberToolConfigInput"), exports);
494
+ __exportStar(require("./TransferToNumberToolConfigOutput"), exports);
495
+ __exportStar(require("./TransferTypeEnum"), exports);
486
496
  __exportStar(require("./TurnConfig"), exports);
487
497
  __exportStar(require("./TurnMode"), exports);
488
498
  __exportStar(require("./TwilioOutboundCallResponse"), exports);
@@ -544,6 +554,7 @@ __exportStar(require("./WorkspaceResourceType"), exports);
544
554
  __exportStar(require("./WorkspaceWebhookListResponseModel"), exports);
545
555
  __exportStar(require("./WorkspaceWebhookResponseModel"), exports);
546
556
  __exportStar(require("./WorkspaceWebhookUsageResponseModel"), exports);
557
+ __exportStar(require("./PromptAgentDbModel"), exports);
547
558
  __exportStar(require("./OutputFormat"), exports);
548
559
  __exportStar(require("./HistoryItemResponse"), exports);
549
560
  __exportStar(require("./Age"), exports);
@@ -1,5 +1,5 @@
1
1
  import { ResponseWithBody } from "./ResponseWithBody.js";
2
- export interface BinaryResponse {
2
+ export type BinaryResponse = {
3
3
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bodyUsed) */
4
4
  bodyUsed: boolean;
5
5
  /**
@@ -11,7 +11,10 @@ export interface BinaryResponse {
11
11
  arrayBuffer: () => Promise<ArrayBuffer>;
12
12
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/blob) */
13
13
  blob: () => Promise<Blob>;
14
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bytes) */
15
- bytes(): Promise<Uint8Array>;
16
- }
14
+ /**
15
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bytes)
16
+ * Some versions of the Fetch API may not support this method.
17
+ */
18
+ bytes?(): Promise<Uint8Array>;
19
+ };
17
20
  export declare function getBinaryResponse(response: ResponseWithBody): BinaryResponse;
@@ -2,13 +2,16 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getBinaryResponse = getBinaryResponse;
4
4
  function getBinaryResponse(response) {
5
- return {
5
+ const binaryResponse = {
6
6
  get bodyUsed() {
7
7
  return response.bodyUsed;
8
8
  },
9
9
  stream: () => response.body,
10
10
  arrayBuffer: response.arrayBuffer.bind(response),
11
11
  blob: response.blob.bind(response),
12
- bytes: response.bytes.bind(response),
13
12
  };
13
+ if ("bytes" in response && typeof response.bytes === "function") {
14
+ binaryResponse.bytes = response.bytes.bind(response);
15
+ }
16
+ return binaryResponse;
14
17
  }
@@ -15,6 +15,7 @@ const json_1 = require("../json");
15
15
  const RawResponse_1 = require("./RawResponse");
16
16
  const Supplier_1 = require("./Supplier");
17
17
  const createRequestUrl_1 = require("./createRequestUrl");
18
+ const getErrorResponseBody_1 = require("./getErrorResponseBody");
18
19
  const getFetchFn_1 = require("./getFetchFn");
19
20
  const getRequestBody_1 = require("./getRequestBody");
20
21
  const getResponseBody_1 = require("./getResponseBody");
@@ -55,11 +56,10 @@ function fetcherImpl(args) {
55
56
  const response = yield (0, requestWithRetries_1.requestWithRetries)(() => __awaiter(this, void 0, void 0, function* () {
56
57
  return (0, makeRequest_1.makeRequest)(fetchFn, url, args.method, yield getHeaders(args), requestBody, args.timeoutMs, args.abortSignal, args.withCredentials, args.duplex);
57
58
  }), args.maxRetries);
58
- const responseBody = yield (0, getResponseBody_1.getResponseBody)(response, args.responseType);
59
59
  if (response.status >= 200 && response.status < 400) {
60
60
  return {
61
61
  ok: true,
62
- body: responseBody,
62
+ body: (yield (0, getResponseBody_1.getResponseBody)(response, args.responseType)),
63
63
  headers: response.headers,
64
64
  rawResponse: (0, RawResponse_1.toRawResponse)(response),
65
65
  };
@@ -70,7 +70,7 @@ function fetcherImpl(args) {
70
70
  error: {
71
71
  reason: "status-code",
72
72
  statusCode: response.status,
73
- body: responseBody,
73
+ body: yield (0, getErrorResponseBody_1.getErrorResponseBody)(response),
74
74
  },
75
75
  rawResponse: (0, RawResponse_1.toRawResponse)(response),
76
76
  };
@@ -1 +1 @@
1
- export declare function createRequestUrl(baseUrl: string, queryParameters?: Record<string, string | string[] | object | object[] | null>): string;
1
+ export declare function createRequestUrl(baseUrl: string, queryParameters?: Record<string, unknown>): string;
@@ -1,12 +1,8 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
3
  exports.createRequestUrl = createRequestUrl;
7
- const qs_1 = __importDefault(require("qs"));
4
+ const qs_1 = require("../url/qs");
8
5
  function createRequestUrl(baseUrl, queryParameters) {
9
- return Object.keys(queryParameters !== null && queryParameters !== void 0 ? queryParameters : {}).length > 0
10
- ? `${baseUrl}?${qs_1.default.stringify(queryParameters, { arrayFormat: "repeat" })}`
11
- : baseUrl;
6
+ const queryString = (0, qs_1.toQueryString)(queryParameters, { arrayFormat: "repeat" });
7
+ return queryString ? `${baseUrl}?${queryString}` : baseUrl;
12
8
  }
@@ -0,0 +1 @@
1
+ export declare function getErrorResponseBody(response: Response): Promise<unknown>;
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.getErrorResponseBody = getErrorResponseBody;
13
+ const json_1 = require("../json");
14
+ const getResponseBody_1 = require("./getResponseBody");
15
+ function getErrorResponseBody(response) {
16
+ return __awaiter(this, void 0, void 0, function* () {
17
+ var _a, _b, _c;
18
+ let contentType = (_a = response.headers.get("Content-Type")) === null || _a === void 0 ? void 0 : _a.toLowerCase();
19
+ if (contentType == null || contentType.length === 0) {
20
+ return (0, getResponseBody_1.getResponseBody)(response);
21
+ }
22
+ if (contentType.indexOf(";") !== -1) {
23
+ contentType = (_c = (_b = contentType.split(";")[0]) === null || _b === void 0 ? void 0 : _b.trim()) !== null && _c !== void 0 ? _c : "";
24
+ }
25
+ switch (contentType) {
26
+ case "application/hal+json":
27
+ case "application/json":
28
+ case "application/ld+json":
29
+ case "application/problem+json":
30
+ case "application/vnd.api+json":
31
+ case "text/json":
32
+ const text = yield response.text();
33
+ return text.length > 0 ? (0, json_1.fromJson)(text) : undefined;
34
+ default:
35
+ if (contentType.startsWith("application/vnd.") && contentType.endsWith("+json")) {
36
+ const text = yield response.text();
37
+ return text.length > 0 ? (0, json_1.fromJson)(text) : undefined;
38
+ }
39
+ // Fallback to plain text if content type is not recognized
40
+ // Even if no body is present, the response will be an empty string
41
+ return yield response.text();
42
+ }
43
+ });
44
+ }
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.getResponseBody = getResponseBody;
13
13
  const BinaryResponse_1 = require("./BinaryResponse");
14
14
  const ResponseWithBody_1 = require("./ResponseWithBody");
15
+ const json_1 = require("../json");
15
16
  function getResponseBody(response, responseType) {
16
17
  return __awaiter(this, void 0, void 0, function* () {
17
18
  if (!(0, ResponseWithBody_1.isResponseWithBody)(response)) {
@@ -35,7 +36,7 @@ function getResponseBody(response, responseType) {
35
36
  const text = yield response.text();
36
37
  if (text.length > 0) {
37
38
  try {
38
- let responseBody = JSON.parse(text);
39
+ let responseBody = (0, json_1.fromJson)(text);
39
40
  return responseBody;
40
41
  }
41
42
  catch (err) {
@@ -51,8 +51,8 @@ var __asyncValues = (this && this.__asyncValues) || function (o) {
51
51
  Object.defineProperty(exports, "__esModule", { value: true });
52
52
  exports.FormDataWrapper = void 0;
53
53
  exports.newFormData = newFormData;
54
- const json_js_1 = require("../../core/json.js");
55
- const index_js_1 = require("../runtime/index.js");
54
+ const json_1 = require("../../core/json");
55
+ const index_1 = require("../runtime/index");
56
56
  function isNamedValue(value) {
57
57
  return typeof value === "object" && value != null && "name" in value;
58
58
  }
@@ -81,7 +81,7 @@ function streamToBuffer(stream) {
81
81
  return __awaiter(this, void 0, void 0, function* () {
82
82
  var _a, stream_1, stream_1_1;
83
83
  var _b, e_1, _c, _d;
84
- if (index_js_1.RUNTIME.type === "node") {
84
+ if (index_1.RUNTIME.type === "node") {
85
85
  const { Readable } = yield Promise.resolve().then(() => __importStar(require("stream")));
86
86
  if (stream instanceof Readable) {
87
87
  const chunks = [];
@@ -180,7 +180,7 @@ class FormDataWrapper {
180
180
  return new Blob([value]);
181
181
  }
182
182
  if (typeof value === "object" && value !== null) {
183
- return new Blob([(0, json_js_1.toJson)(value)], { type: "application/json" });
183
+ return new Blob([(0, json_1.toJson)(value)], { type: "application/json" });
184
184
  }
185
185
  return new Blob([String(value)]);
186
186
  });
@@ -1,4 +1 @@
1
- /**
2
- * Takes an unknown value, stringifies it using qs, and parses it into a key-value record
3
- */
4
1
  export declare function encodeAsFormParameter(value: unknown): Record<string, string>;
@@ -1,15 +1,9 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
3
  exports.encodeAsFormParameter = encodeAsFormParameter;
7
- const qs_1 = __importDefault(require("qs"));
8
- /**
9
- * Takes an unknown value, stringifies it using qs, and parses it into a key-value record
10
- */
4
+ const qs_1 = require("../url/qs");
11
5
  function encodeAsFormParameter(value) {
12
- const stringified = qs_1.default.stringify(value, { encode: false });
6
+ const stringified = (0, qs_1.toQueryString)(value, { encode: false });
13
7
  const keyValuePairs = stringified.split("&").map((pair) => {
14
8
  const [key, value] = pair.split("=");
15
9
  return [key, value];
package/core/headers.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import * as core from "./index.js";
1
+ import * as core from "./index";
2
2
  export declare function mergeHeaders(...headersArray: (Record<string, string | core.Supplier<string | undefined> | undefined> | undefined)[]): Record<string, string | core.Supplier<string | undefined>>;
3
3
  export declare function mergeOnlyDefinedHeaders(...headersArray: (Record<string, string | core.Supplier<string | undefined> | undefined> | undefined)[]): Record<string, string | core.Supplier<string | undefined>>;
package/core/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export * from "./fetcher";
2
2
  export * from "./runtime";
3
+ export * as url from "./url";
3
4
  export * from "./form-data-utils";
4
5
  export * from "./stream";
5
6
  export * from "./file";
package/core/index.js CHANGED
@@ -36,9 +36,10 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  };
37
37
  })();
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.serialization = void 0;
39
+ exports.serialization = exports.url = void 0;
40
40
  __exportStar(require("./fetcher"), exports);
41
41
  __exportStar(require("./runtime"), exports);
42
+ exports.url = __importStar(require("./url"));
42
43
  __exportStar(require("./form-data-utils"), exports);
43
44
  __exportStar(require("./stream"), exports);
44
45
  __exportStar(require("./file"), exports);
@@ -0,0 +1,2 @@
1
+ export { join } from "./join";
2
+ export { toQueryString } from "./qs";
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.toQueryString = exports.join = void 0;
4
+ var join_1 = require("./join");
5
+ Object.defineProperty(exports, "join", { enumerable: true, get: function () { return join_1.join; } });
6
+ var qs_1 = require("./qs");
7
+ Object.defineProperty(exports, "toQueryString", { enumerable: true, get: function () { return qs_1.toQueryString; } });
@@ -0,0 +1 @@
1
+ export declare function join(base: string, ...segments: string[]): string;
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.join = join;
4
+ function join(base, ...segments) {
5
+ if (!base) {
6
+ return "";
7
+ }
8
+ if (base.includes("://")) {
9
+ let url;
10
+ try {
11
+ url = new URL(base);
12
+ }
13
+ catch (_a) {
14
+ // Fallback to path joining if URL is malformed
15
+ return joinPath(base, ...segments);
16
+ }
17
+ for (const segment of segments) {
18
+ const cleanSegment = trimSlashes(segment);
19
+ if (cleanSegment) {
20
+ url.pathname = joinPathSegments(url.pathname, cleanSegment);
21
+ }
22
+ }
23
+ return url.toString();
24
+ }
25
+ return joinPath(base, ...segments);
26
+ }
27
+ function joinPath(base, ...segments) {
28
+ let result = base;
29
+ for (const segment of segments) {
30
+ const cleanSegment = trimSlashes(segment);
31
+ if (cleanSegment) {
32
+ result = joinPathSegments(result, cleanSegment);
33
+ }
34
+ }
35
+ return result;
36
+ }
37
+ function joinPathSegments(left, right) {
38
+ if (left.endsWith("/")) {
39
+ return left + right;
40
+ }
41
+ return left + "/" + right;
42
+ }
43
+ function trimSlashes(str) {
44
+ if (!str)
45
+ return str;
46
+ let start = str.startsWith("/") ? 1 : 0;
47
+ let end = str.endsWith("/") ? str.length - 1 : str.length;
48
+ return str.slice(start, end);
49
+ }
@@ -0,0 +1,6 @@
1
+ interface QueryStringOptions {
2
+ arrayFormat?: "indices" | "repeat";
3
+ encode?: boolean;
4
+ }
5
+ export declare function toQueryString(obj: unknown, options?: QueryStringOptions): string;
6
+ export {};
package/core/url/qs.js ADDED
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.toQueryString = toQueryString;
4
+ const defaultQsOptions = {
5
+ arrayFormat: "indices",
6
+ encode: true,
7
+ };
8
+ function encodeValue(value, shouldEncode) {
9
+ if (value === undefined) {
10
+ return "";
11
+ }
12
+ if (value === null) {
13
+ return "";
14
+ }
15
+ const stringValue = String(value);
16
+ return shouldEncode ? encodeURIComponent(stringValue) : stringValue;
17
+ }
18
+ function stringifyObject(obj, prefix = "", options) {
19
+ const parts = [];
20
+ for (const [key, value] of Object.entries(obj)) {
21
+ const fullKey = prefix ? `${prefix}[${key}]` : key;
22
+ if (value === undefined) {
23
+ continue;
24
+ }
25
+ if (Array.isArray(value)) {
26
+ if (value.length === 0) {
27
+ continue;
28
+ }
29
+ for (let i = 0; i < value.length; i++) {
30
+ const item = value[i];
31
+ if (item === undefined) {
32
+ continue;
33
+ }
34
+ if (typeof item === "object" && !Array.isArray(item) && item !== null) {
35
+ const arrayKey = options.arrayFormat === "indices" ? `${fullKey}[${i}]` : fullKey;
36
+ parts.push(...stringifyObject(item, arrayKey, options));
37
+ }
38
+ else {
39
+ const arrayKey = options.arrayFormat === "indices" ? `${fullKey}[${i}]` : fullKey;
40
+ const encodedKey = options.encode ? encodeURIComponent(arrayKey) : arrayKey;
41
+ parts.push(`${encodedKey}=${encodeValue(item, options.encode)}`);
42
+ }
43
+ }
44
+ }
45
+ else if (typeof value === "object" && value !== null) {
46
+ if (Object.keys(value).length === 0) {
47
+ continue;
48
+ }
49
+ parts.push(...stringifyObject(value, fullKey, options));
50
+ }
51
+ else {
52
+ const encodedKey = options.encode ? encodeURIComponent(fullKey) : fullKey;
53
+ parts.push(`${encodedKey}=${encodeValue(value, options.encode)}`);
54
+ }
55
+ }
56
+ return parts;
57
+ }
58
+ function toQueryString(obj, options) {
59
+ if (obj == null || typeof obj !== "object") {
60
+ return "";
61
+ }
62
+ const parts = stringifyObject(obj, "", Object.assign(Object.assign({}, defaultQsOptions), options));
63
+ return parts.join("&");
64
+ }
package/dist/Client.js CHANGED
@@ -38,7 +38,7 @@ var __importStar = (this && this.__importStar) || (function () {
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
39
  exports.ElevenLabsClient = void 0;
40
40
  const core = __importStar(require("./core"));
41
- const headers_js_1 = require("./core/headers.js");
41
+ const headers_1 = require("./core/headers");
42
42
  const Client_1 = require("./api/resources/history/client/Client");
43
43
  const Client_2 = require("./api/resources/textToSoundEffects/client/Client");
44
44
  const Client_3 = require("./api/resources/audioIsolation/client/Client");
@@ -62,12 +62,12 @@ const Client_20 = require("./api/resources/conversationalAi/client/Client");
62
62
  const Client_21 = require("./api/resources/workspace/client/Client");
63
63
  class ElevenLabsClient {
64
64
  constructor(_options = {}) {
65
- this._options = Object.assign(Object.assign({}, _options), { headers: (0, headers_js_1.mergeHeaders)({
65
+ this._options = Object.assign(Object.assign({}, _options), { headers: (0, headers_1.mergeHeaders)({
66
66
  "xi-api-key": _options === null || _options === void 0 ? void 0 : _options.apiKey,
67
67
  "X-Fern-Language": "JavaScript",
68
68
  "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js",
69
- "X-Fern-SDK-Version": "v2.5.0",
70
- "User-Agent": "@elevenlabs/elevenlabs-js/v2.5.0",
69
+ "X-Fern-SDK-Version": "v2.6.0",
70
+ "User-Agent": "@elevenlabs/elevenlabs-js/v2.6.0",
71
71
  "X-Fern-Runtime": core.RUNTIME.type,
72
72
  "X-Fern-Runtime-Version": core.RUNTIME.version,
73
73
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -44,17 +44,13 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
44
44
  step((generator = generator.apply(thisArg, _arguments || [])).next());
45
45
  });
46
46
  };
47
- var __importDefault = (this && this.__importDefault) || function (mod) {
48
- return (mod && mod.__esModule) ? mod : { "default": mod };
49
- };
50
47
  Object.defineProperty(exports, "__esModule", { value: true });
51
48
  exports.AudioIsolation = void 0;
52
49
  const environments = __importStar(require("../../../../environments"));
53
50
  const core = __importStar(require("../../../../core"));
54
51
  const ElevenLabs = __importStar(require("../../../index"));
55
52
  const serializers = __importStar(require("../../../../serialization/index"));
56
- const headers_js_1 = require("../../../../core/headers.js");
57
- const url_join_1 = __importDefault(require("url-join"));
53
+ const headers_1 = require("../../../../core/headers");
58
54
  const errors = __importStar(require("../../../../errors/index"));
59
55
  class AudioIsolation {
60
56
  constructor(_options = {}) {
@@ -79,9 +75,9 @@ class AudioIsolation {
79
75
  }
80
76
  const _maybeEncodedRequest = yield _request.getRequest();
81
77
  const _response = yield core.fetcher({
82
- url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.ElevenLabsEnvironment.Production).base, "v1/audio-isolation"),
78
+ url: core.url.join((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.ElevenLabsEnvironment.Production).base, "v1/audio-isolation"),
83
79
  method: "POST",
84
- headers: (0, headers_js_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)(Object.assign({ "xi-api-key": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey }, _maybeEncodedRequest.headers)), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
80
+ headers: (0, headers_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_1.mergeOnlyDefinedHeaders)(Object.assign({ "xi-api-key": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey }, _maybeEncodedRequest.headers)), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
85
81
  requestType: "file",
86
82
  duplex: _maybeEncodedRequest.duplex,
87
83
  body: _maybeEncodedRequest.body,
@@ -146,9 +142,9 @@ class AudioIsolation {
146
142
  }
147
143
  const _maybeEncodedRequest = yield _request.getRequest();
148
144
  const _response = yield core.fetcher({
149
- url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.ElevenLabsEnvironment.Production).base, "v1/audio-isolation/stream"),
145
+ url: core.url.join((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.ElevenLabsEnvironment.Production).base, "v1/audio-isolation/stream"),
150
146
  method: "POST",
151
- headers: (0, headers_js_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)(Object.assign({ "xi-api-key": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey }, _maybeEncodedRequest.headers)), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
147
+ headers: (0, headers_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_1.mergeOnlyDefinedHeaders)(Object.assign({ "xi-api-key": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey }, _maybeEncodedRequest.headers)), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
152
148
  requestType: "file",
153
149
  duplex: _maybeEncodedRequest.duplex,
154
150
  body: _maybeEncodedRequest.body,
@@ -44,16 +44,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
44
44
  step((generator = generator.apply(thisArg, _arguments || [])).next());
45
45
  });
46
46
  };
47
- var __importDefault = (this && this.__importDefault) || function (mod) {
48
- return (mod && mod.__esModule) ? mod : { "default": mod };
49
- };
50
47
  Object.defineProperty(exports, "__esModule", { value: true });
51
48
  exports.AudioNative = void 0;
52
49
  const environments = __importStar(require("../../../../environments"));
53
50
  const core = __importStar(require("../../../../core"));
54
51
  const ElevenLabs = __importStar(require("../../../index"));
55
- const headers_js_1 = require("../../../../core/headers.js");
56
- const url_join_1 = __importDefault(require("url-join"));
52
+ const headers_1 = require("../../../../core/headers");
57
53
  const serializers = __importStar(require("../../../../serialization/index"));
58
54
  const errors = __importStar(require("../../../../errors/index"));
59
55
  class AudioNative {
@@ -116,9 +112,9 @@ class AudioNative {
116
112
  }
117
113
  const _maybeEncodedRequest = yield _request.getRequest();
118
114
  const _response = yield core.fetcher({
119
- url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.ElevenLabsEnvironment.Production).base, "v1/audio-native"),
115
+ url: core.url.join((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.ElevenLabsEnvironment.Production).base, "v1/audio-native"),
120
116
  method: "POST",
121
- headers: (0, headers_js_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)(Object.assign({ "xi-api-key": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey }, _maybeEncodedRequest.headers)), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
117
+ headers: (0, headers_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_1.mergeOnlyDefinedHeaders)(Object.assign({ "xi-api-key": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey }, _maybeEncodedRequest.headers)), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
122
118
  requestType: "file",
123
119
  duplex: _maybeEncodedRequest.duplex,
124
120
  body: _maybeEncodedRequest.body,
@@ -189,9 +185,9 @@ class AudioNative {
189
185
  return __awaiter(this, void 0, void 0, function* () {
190
186
  var _a, _b, _c;
191
187
  const _response = yield core.fetcher({
192
- url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.ElevenLabsEnvironment.Production).base, `v1/audio-native/${encodeURIComponent(projectId)}/settings`),
188
+ url: core.url.join((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.ElevenLabsEnvironment.Production).base, `v1/audio-native/${encodeURIComponent(projectId)}/settings`),
193
189
  method: "GET",
194
- headers: (0, headers_js_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)({ "xi-api-key": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
190
+ headers: (0, headers_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_1.mergeOnlyDefinedHeaders)({ "xi-api-key": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
195
191
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
196
192
  maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
197
193
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -271,9 +267,9 @@ class AudioNative {
271
267
  }
272
268
  const _maybeEncodedRequest = yield _request.getRequest();
273
269
  const _response = yield core.fetcher({
274
- url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.ElevenLabsEnvironment.Production).base, `v1/audio-native/${encodeURIComponent(projectId)}/content`),
270
+ url: core.url.join((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.ElevenLabsEnvironment.Production).base, `v1/audio-native/${encodeURIComponent(projectId)}/content`),
275
271
  method: "POST",
276
- headers: (0, headers_js_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)(Object.assign({ "xi-api-key": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey }, _maybeEncodedRequest.headers)), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
272
+ headers: (0, headers_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_1.mergeOnlyDefinedHeaders)(Object.assign({ "xi-api-key": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.apiKey }, _maybeEncodedRequest.headers)), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
277
273
  requestType: "file",
278
274
  duplex: _maybeEncodedRequest.duplex,
279
275
  body: _maybeEncodedRequest.body,