@elevenlabs/elevenlabs-js 2.25.1 → 2.27.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 (1201) hide show
  1. package/.fern/metadata.json +2 -2
  2. package/BaseClient.d.ts +5 -1
  3. package/BaseClient.js +48 -0
  4. package/Client.d.ts +76 -76
  5. package/Client.js +29 -49
  6. package/api/errors/BadRequestError.js +5 -1
  7. package/api/errors/ConflictError.js +5 -1
  8. package/api/errors/ForbiddenError.js +5 -1
  9. package/api/errors/NotFoundError.js +5 -1
  10. package/api/errors/TooEarlyError.js +5 -1
  11. package/api/errors/UnauthorizedError.js +5 -1
  12. package/api/errors/UnprocessableEntityError.js +5 -1
  13. package/api/resources/audioIsolation/client/Client.d.ts +8 -8
  14. package/api/resources/audioIsolation/client/Client.js +9 -35
  15. package/api/resources/audioNative/client/Client.d.ts +12 -12
  16. package/api/resources/audioNative/client/Client.js +13 -53
  17. package/api/resources/conversationalAi/client/Client.d.ts +59 -56
  18. package/api/resources/conversationalAi/client/Client.js +47 -96
  19. package/api/resources/conversationalAi/resources/agents/client/Client.d.ts +36 -36
  20. package/api/resources/conversationalAi/resources/agents/client/Client.js +29 -153
  21. package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.d.ts +8 -8
  22. package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +9 -21
  23. package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.d.ts +8 -8
  24. package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +9 -21
  25. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.d.ts +8 -8
  26. package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +9 -21
  27. package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.d.ts +11 -11
  28. package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +10 -22
  29. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.d.ts +8 -8
  30. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +9 -21
  31. package/api/resources/conversationalAi/resources/analytics/client/Client.d.ts +12 -0
  32. package/api/resources/conversationalAi/resources/analytics/client/Client.js +16 -0
  33. package/api/resources/conversationalAi/resources/analytics/client/index.d.ts +1 -0
  34. package/api/resources/conversationalAi/resources/analytics/client/index.js +2 -0
  35. package/api/resources/conversationalAi/resources/analytics/index.d.ts +2 -0
  36. package/api/resources/conversationalAi/resources/analytics/index.js +18 -0
  37. package/api/resources/conversationalAi/resources/analytics/resources/index.d.ts +2 -0
  38. package/api/resources/conversationalAi/resources/analytics/resources/index.js +41 -0
  39. package/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.d.ts +28 -0
  40. package/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.js +127 -0
  41. package/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/index.d.ts +1 -0
  42. package/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/index.js +17 -0
  43. package/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/requests/LiveCountGetRequest.d.ts +10 -0
  44. package/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/requests/index.d.ts +1 -0
  45. package/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/requests/index.js +2 -0
  46. package/api/resources/conversationalAi/resources/analytics/resources/liveCount/index.d.ts +1 -0
  47. package/api/resources/conversationalAi/resources/analytics/resources/liveCount/index.js +17 -0
  48. package/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +16 -16
  49. package/api/resources/conversationalAi/resources/batchCalls/client/Client.js +17 -85
  50. package/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +25 -22
  51. package/api/resources/conversationalAi/resources/conversations/client/Client.js +32 -88
  52. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +9 -0
  53. package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.d.ts +7 -7
  54. package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +8 -20
  55. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.d.ts +8 -8
  56. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +9 -21
  57. package/api/resources/conversationalAi/resources/dashboard/client/Client.d.ts +9 -9
  58. package/api/resources/conversationalAi/resources/dashboard/client/Client.js +7 -6
  59. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.d.ts +10 -10
  60. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +11 -37
  61. package/api/resources/conversationalAi/resources/index.d.ts +2 -0
  62. package/api/resources/conversationalAi/resources/index.js +3 -1
  63. package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.d.ts +14 -14
  64. package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +11 -23
  65. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +8 -8
  66. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +9 -21
  67. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +25 -25
  68. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +24 -134
  69. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.d.ts +8 -8
  70. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +9 -21
  71. package/api/resources/conversationalAi/resources/llmUsage/client/Client.d.ts +8 -8
  72. package/api/resources/conversationalAi/resources/llmUsage/client/Client.js +9 -21
  73. package/api/resources/conversationalAi/resources/mcpServers/client/Client.d.ts +28 -28
  74. package/api/resources/conversationalAi/resources/mcpServers/client/Client.js +21 -89
  75. package/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.d.ts +8 -8
  76. package/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.js +9 -21
  77. package/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.d.ts +10 -10
  78. package/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.js +11 -37
  79. package/api/resources/conversationalAi/resources/mcpServers/resources/toolConfigs/client/Client.d.ts +14 -14
  80. package/api/resources/conversationalAi/resources/mcpServers/resources/toolConfigs/client/Client.js +15 -69
  81. package/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.d.ts +8 -8
  82. package/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.js +9 -21
  83. package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.d.ts +16 -16
  84. package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +17 -85
  85. package/api/resources/conversationalAi/resources/secrets/client/Client.d.ts +14 -14
  86. package/api/resources/conversationalAi/resources/secrets/client/Client.js +15 -69
  87. package/api/resources/conversationalAi/resources/settings/client/Client.d.ts +10 -10
  88. package/api/resources/conversationalAi/resources/settings/client/Client.js +11 -37
  89. package/api/resources/conversationalAi/resources/sipTrunk/client/Client.d.ts +8 -8
  90. package/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +9 -21
  91. package/api/resources/conversationalAi/resources/tests/client/Client.d.ts +21 -21
  92. package/api/resources/conversationalAi/resources/tests/client/Client.js +20 -102
  93. package/api/resources/conversationalAi/resources/tests/resources/invocations/client/Client.d.ts +12 -12
  94. package/api/resources/conversationalAi/resources/tests/resources/invocations/client/Client.js +13 -53
  95. package/api/resources/conversationalAi/resources/tools/client/Client.d.ts +18 -18
  96. package/api/resources/conversationalAi/resources/tools/client/Client.js +19 -101
  97. package/api/resources/conversationalAi/resources/twilio/client/Client.d.ts +25 -8
  98. package/api/resources/conversationalAi/resources/twilio/client/Client.js +67 -20
  99. package/api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +16 -0
  100. package/api/resources/conversationalAi/resources/twilio/client/requests/index.d.ts +1 -0
  101. package/api/resources/conversationalAi/resources/twilio/index.d.ts +1 -0
  102. package/api/resources/conversationalAi/resources/twilio/index.js +1 -0
  103. package/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +5 -0
  104. package/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +8 -0
  105. package/api/resources/conversationalAi/resources/twilio/types/index.d.ts +1 -0
  106. package/api/resources/conversationalAi/resources/twilio/types/index.js +17 -0
  107. package/api/resources/dubbing/client/Client.d.ts +23 -23
  108. package/api/resources/dubbing/client/Client.js +18 -72
  109. package/api/resources/dubbing/client/requests/BodyDubAVideoOrAnAudioFileV1DubbingPost.d.ts +2 -2
  110. package/api/resources/dubbing/resources/audio/client/Client.d.ts +7 -7
  111. package/api/resources/dubbing/resources/audio/client/Client.js +8 -20
  112. package/api/resources/dubbing/resources/resource/client/Client.d.ts +43 -26
  113. package/api/resources/dubbing/resources/resource/client/Client.js +87 -88
  114. package/api/resources/dubbing/resources/resource/client/requests/BodyMoveSegmentsBetweenSpeakersV1DubbingResourceDubbingIdMigrateSegmentsPost.d.ts +11 -0
  115. package/api/resources/dubbing/resources/resource/client/requests/index.d.ts +1 -0
  116. package/api/resources/dubbing/resources/resource/resources/language/client/Client.d.ts +8 -8
  117. package/api/resources/dubbing/resources/resource/resources/language/client/Client.js +9 -21
  118. package/api/resources/dubbing/resources/resource/resources/segment/client/Client.d.ts +10 -10
  119. package/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +11 -37
  120. package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.d.ts +25 -13
  121. package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +73 -37
  122. package/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.d.ts +16 -0
  123. package/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +8 -0
  124. package/api/resources/dubbing/resources/resource/resources/speaker/client/requests/index.d.ts +1 -0
  125. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.d.ts +8 -8
  126. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +9 -21
  127. package/api/resources/dubbing/resources/transcript/client/Client.d.ts +8 -8
  128. package/api/resources/dubbing/resources/transcript/client/Client.js +9 -21
  129. package/api/resources/forcedAlignment/client/Client.d.ts +8 -8
  130. package/api/resources/forcedAlignment/client/Client.js +9 -21
  131. package/api/resources/history/client/Client.d.ts +14 -14
  132. package/api/resources/history/client/Client.js +15 -83
  133. package/api/resources/models/client/Client.d.ts +8 -8
  134. package/api/resources/models/client/Client.js +9 -21
  135. package/api/resources/music/client/Client.d.ts +13 -13
  136. package/api/resources/music/client/Client.js +15 -66
  137. package/api/resources/music/client/requests/BodyComposeMusicV1MusicPost.d.ts +2 -0
  138. package/api/resources/music/client/requests/BodyComposeMusicWithADetailedResponseV1MusicDetailedPost.d.ts +4 -0
  139. package/api/resources/music/client/requests/BodyStemSeparationV1MusicStemSeparationPost.d.ts +2 -0
  140. package/api/resources/music/resources/compositionPlan/client/Client.d.ts +8 -8
  141. package/api/resources/music/resources/compositionPlan/client/Client.js +9 -21
  142. package/api/resources/pronunciationDictionaries/client/Client.d.ts +20 -20
  143. package/api/resources/pronunciationDictionaries/client/Client.js +19 -101
  144. package/api/resources/pronunciationDictionaries/resources/rules/client/Client.d.ts +10 -10
  145. package/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +11 -37
  146. package/api/resources/samples/client/Client.d.ts +8 -8
  147. package/api/resources/samples/client/Client.js +9 -21
  148. package/api/resources/serviceAccounts/client/Client.d.ts +11 -11
  149. package/api/resources/serviceAccounts/client/Client.js +10 -22
  150. package/api/resources/serviceAccounts/resources/apiKeys/client/Client.d.ts +16 -16
  151. package/api/resources/serviceAccounts/resources/apiKeys/client/Client.js +17 -71
  152. package/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.d.ts +1 -1
  153. package/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.d.ts +1 -1
  154. package/api/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissions.d.ts +1 -1
  155. package/api/resources/serviceAccounts/resources/apiKeys/types/{BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.d.ts → BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.d.ts} +2 -2
  156. package/{dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.js → api/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.js} +2 -2
  157. package/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissions.d.ts +1 -1
  158. package/api/resources/serviceAccounts/resources/apiKeys/types/{BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.d.ts → BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.d.ts} +2 -2
  159. package/{dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.js → api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.js} +2 -2
  160. package/api/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +2 -2
  161. package/api/resources/serviceAccounts/resources/apiKeys/types/index.js +2 -2
  162. package/api/resources/speechToSpeech/client/Client.d.ts +8 -8
  163. package/api/resources/speechToSpeech/client/Client.js +9 -35
  164. package/api/resources/speechToText/client/Client.d.ts +11 -11
  165. package/api/resources/speechToText/client/Client.js +10 -22
  166. package/api/resources/speechToText/resources/transcripts/client/Client.d.ts +10 -10
  167. package/api/resources/speechToText/resources/transcripts/client/Client.js +11 -37
  168. package/api/resources/studio/client/Client.d.ts +12 -11
  169. package/api/resources/studio/client/Client.js +11 -22
  170. package/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +1 -0
  171. package/api/resources/studio/resources/projects/client/Client.d.ts +30 -30
  172. package/api/resources/studio/resources/projects/client/Client.js +28 -105
  173. package/api/resources/studio/resources/projects/client/requests/BodyCreateStudioProjectV1StudioProjectsPost.d.ts +8 -0
  174. package/api/resources/studio/resources/projects/resources/chapters/client/Client.d.ts +21 -21
  175. package/api/resources/studio/resources/projects/resources/chapters/client/Client.js +20 -102
  176. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.d.ts +11 -11
  177. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +12 -52
  178. package/api/resources/studio/resources/projects/resources/content/client/Client.d.ts +8 -8
  179. package/api/resources/studio/resources/projects/resources/content/client/Client.js +9 -21
  180. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.d.ts +8 -8
  181. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +9 -21
  182. package/api/resources/studio/resources/projects/resources/snapshots/client/Client.d.ts +12 -12
  183. package/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +13 -67
  184. package/api/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.d.ts +1 -0
  185. package/api/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.js +1 -0
  186. package/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.d.ts +1 -1
  187. package/api/resources/studio/types/{BodyCreatePodcastV1StudioPodcastsPostSourceItem.d.ts → BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.d.ts} +2 -2
  188. package/api/resources/studio/types/index.d.ts +1 -1
  189. package/api/resources/studio/types/index.js +1 -1
  190. package/api/resources/textToDialogue/client/Client.d.ts +11 -11
  191. package/api/resources/textToDialogue/client/Client.js +12 -66
  192. package/api/resources/textToDialogue/client/requests/BodyTextToDialogueFullWithTimestamps.d.ts +1 -1
  193. package/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.d.ts +1 -1
  194. package/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.d.ts +1 -1
  195. package/api/resources/textToDialogue/client/requests/BodyTextToDialogueStreamWithTimestamps.d.ts +1 -1
  196. package/api/resources/textToDialogue/types/BodyTextToDialogueFullWithTimestampsApplyTextNormalization.d.ts +1 -1
  197. package/api/resources/textToDialogue/types/BodyTextToDialogueFullWithTimestampsApplyTextNormalization.js +1 -1
  198. package/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPostApplyTextNormalization.d.ts +1 -1
  199. package/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPostApplyTextNormalization.js +1 -1
  200. package/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceV1TextToDialoguePostApplyTextNormalization.d.ts +1 -1
  201. package/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceV1TextToDialoguePostApplyTextNormalization.js +1 -1
  202. package/api/resources/textToDialogue/types/BodyTextToDialogueStreamWithTimestampsApplyTextNormalization.d.ts +1 -1
  203. package/api/resources/textToDialogue/types/BodyTextToDialogueStreamWithTimestampsApplyTextNormalization.js +1 -1
  204. package/api/resources/textToSoundEffects/client/Client.d.ts +7 -7
  205. package/api/resources/textToSoundEffects/client/Client.js +8 -20
  206. package/api/resources/textToSpeech/client/Client.d.ts +11 -11
  207. package/api/resources/textToSpeech/client/Client.js +12 -66
  208. package/api/resources/textToSpeech/client/requests/BodyTextToSpeechFull.d.ts +1 -1
  209. package/api/resources/textToSpeech/client/requests/BodyTextToSpeechFullWithTimestamps.d.ts +1 -1
  210. package/api/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.d.ts +1 -1
  211. package/api/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.d.ts +1 -1
  212. package/api/resources/textToSpeech/types/BodyTextToSpeechFullApplyTextNormalization.d.ts +1 -1
  213. package/api/resources/textToSpeech/types/BodyTextToSpeechFullApplyTextNormalization.js +1 -1
  214. package/api/resources/textToSpeech/types/BodyTextToSpeechFullWithTimestampsApplyTextNormalization.d.ts +1 -1
  215. package/api/resources/textToSpeech/types/BodyTextToSpeechFullWithTimestampsApplyTextNormalization.js +1 -1
  216. package/api/resources/textToSpeech/types/BodyTextToSpeechStreamApplyTextNormalization.d.ts +1 -1
  217. package/api/resources/textToSpeech/types/BodyTextToSpeechStreamApplyTextNormalization.js +1 -1
  218. package/api/resources/textToSpeech/types/BodyTextToSpeechStreamWithTimestampsApplyTextNormalization.d.ts +1 -1
  219. package/api/resources/textToSpeech/types/BodyTextToSpeechStreamWithTimestampsApplyTextNormalization.js +1 -1
  220. package/api/resources/textToVoice/client/Client.d.ts +17 -17
  221. package/api/resources/textToVoice/client/Client.js +16 -70
  222. package/api/resources/textToVoice/resources/preview/client/Client.d.ts +7 -7
  223. package/api/resources/textToVoice/resources/preview/client/Client.js +8 -20
  224. package/api/resources/tokens/client/Client.d.ts +9 -9
  225. package/api/resources/tokens/client/Client.js +7 -6
  226. package/api/resources/tokens/resources/singleUse/client/Client.d.ts +8 -8
  227. package/api/resources/tokens/resources/singleUse/client/Client.js +9 -21
  228. package/api/resources/usage/client/Client.d.ts +8 -8
  229. package/api/resources/usage/client/Client.js +9 -21
  230. package/api/resources/user/client/Client.d.ts +11 -11
  231. package/api/resources/user/client/Client.js +10 -22
  232. package/api/resources/user/resources/subscription/client/Client.d.ts +8 -8
  233. package/api/resources/user/resources/subscription/client/Client.js +9 -21
  234. package/api/resources/voices/client/Client.d.ts +34 -34
  235. package/api/resources/voices/client/Client.js +27 -137
  236. package/api/resources/voices/client/requests/VoicesSearchRequest.d.ts +2 -2
  237. package/api/resources/voices/resources/ivc/client/Client.d.ts +8 -8
  238. package/api/resources/voices/resources/ivc/client/Client.js +9 -21
  239. package/api/resources/voices/resources/pvc/client/Client.d.ts +18 -18
  240. package/api/resources/voices/resources/pvc/client/Client.js +15 -55
  241. package/api/resources/voices/resources/pvc/resources/samples/client/Client.d.ts +21 -21
  242. package/api/resources/voices/resources/pvc/resources/samples/client/Client.js +16 -56
  243. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.d.ts +8 -8
  244. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +9 -21
  245. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.d.ts +13 -13
  246. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +12 -38
  247. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.d.ts +8 -8
  248. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +9 -21
  249. package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.d.ts +8 -8
  250. package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +9 -21
  251. package/api/resources/voices/resources/pvc/resources/verification/client/Client.d.ts +11 -11
  252. package/api/resources/voices/resources/pvc/resources/verification/client/Client.js +10 -22
  253. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.d.ts +10 -10
  254. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +11 -37
  255. package/api/resources/voices/resources/samples/client/Client.d.ts +9 -9
  256. package/api/resources/voices/resources/samples/client/Client.js +7 -6
  257. package/api/resources/voices/resources/samples/resources/audio/client/Client.d.ts +7 -7
  258. package/api/resources/voices/resources/samples/resources/audio/client/Client.js +8 -20
  259. package/api/resources/voices/resources/settings/client/Client.d.ts +12 -12
  260. package/api/resources/voices/resources/settings/client/Client.js +13 -53
  261. package/api/resources/webhooks/client/Client.d.ts +57 -8
  262. package/api/resources/webhooks/client/Client.js +208 -20
  263. package/api/resources/webhooks/client/requests/BodyCreateWorkspaceWebhookV1WorkspaceWebhooksPost.d.ts +15 -0
  264. package/api/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.d.ts +13 -0
  265. package/api/resources/webhooks/client/requests/index.d.ts +2 -0
  266. package/api/resources/workspace/client/Client.d.ts +18 -18
  267. package/api/resources/workspace/client/Client.js +10 -9
  268. package/api/resources/workspace/resources/groups/client/Client.d.ts +11 -11
  269. package/api/resources/workspace/resources/groups/client/Client.js +10 -22
  270. package/api/resources/workspace/resources/groups/resources/members/client/Client.d.ts +10 -10
  271. package/api/resources/workspace/resources/groups/resources/members/client/Client.js +11 -37
  272. package/api/resources/workspace/resources/invites/client/Client.d.ts +12 -12
  273. package/api/resources/workspace/resources/invites/client/Client.js +13 -53
  274. package/api/resources/workspace/resources/members/client/Client.d.ts +8 -8
  275. package/api/resources/workspace/resources/members/client/Client.js +9 -21
  276. package/api/resources/workspace/resources/resources/client/Client.d.ts +12 -12
  277. package/api/resources/workspace/resources/resources/client/Client.js +13 -53
  278. package/api/types/AgentDefinitionSource.d.ts +1 -0
  279. package/api/types/AgentDefinitionSource.js +1 -0
  280. package/api/types/AgentWorkflowRequestModel.d.ts +2 -0
  281. package/api/types/AgentWorkflowResponseModel.d.ts +2 -0
  282. package/api/types/BackupLlmDefault.d.ts +3 -1
  283. package/api/types/BackupLlmDisabled.d.ts +3 -1
  284. package/api/types/BackupLlmOverride.d.ts +1 -0
  285. package/api/types/BillingPeriod.d.ts +7 -0
  286. package/api/types/{SubscriptionResponseModelBillingPeriod.js → BillingPeriod.js} +4 -2
  287. package/api/types/CharacterRefreshPeriod.d.ts +7 -0
  288. package/api/types/{SubscriptionResponseModelCharacterRefreshPeriod.js → CharacterRefreshPeriod.js} +4 -2
  289. package/api/types/ClientEvent.d.ts +1 -0
  290. package/api/types/ClientEvent.js +1 -0
  291. package/api/types/ConversationHistoryMetadataCommonModel.d.ts +1 -0
  292. package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +14 -0
  293. package/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -1
  294. package/api/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +1 -1
  295. package/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -1
  296. package/api/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +1 -1
  297. package/api/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.d.ts +0 -1
  298. package/api/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.js +0 -1
  299. package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +7 -0
  300. package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js +3 -0
  301. package/{dist/api/types/ConversationHistoryTranscriptToolCallCommonModel.d.ts → api/types/ConversationHistoryTranscriptToolCallCommonModelInput.d.ts} +2 -2
  302. package/api/types/ConversationHistoryTranscriptToolCallCommonModelInput.js +3 -0
  303. package/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +16 -0
  304. package/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js +3 -0
  305. package/api/types/ConversationHistoryTranscriptToolCallCommonModelOutput.d.ts +9 -0
  306. package/api/types/ConversationHistoryTranscriptToolCallCommonModelOutput.js +3 -0
  307. package/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +16 -0
  308. package/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +3 -0
  309. package/api/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +1 -0
  310. package/api/types/CustomLlm.d.ts +2 -0
  311. package/api/types/CustomLlmapiType.d.ts +5 -0
  312. package/api/types/CustomLlmapiType.js +8 -0
  313. package/api/types/DeleteWorkspaceWebhookResponseModel.d.ts +4 -0
  314. package/api/types/DeleteWorkspaceWebhookResponseModel.js +3 -0
  315. package/api/types/DetailedMusicResponse.d.ts +2 -0
  316. package/{dist/api/types/DiscountResposneModel.d.ts → api/types/DiscountResponseModel.d.ts} +1 -1
  317. package/api/types/DiscountResponseModel.js +3 -0
  318. package/api/types/DubbingResource.d.ts +2 -2
  319. package/api/types/DubbingTranscriptUtterance.d.ts +2 -1
  320. package/api/types/DubbingTranscriptWord.d.ts +2 -2
  321. package/api/types/GetLiveCountResponse.d.ts +4 -0
  322. package/api/types/GetLiveCountResponse.js +3 -0
  323. package/api/types/GetVoicesV2Response.d.ts +4 -0
  324. package/api/types/InvoiceResponse.d.ts +1 -1
  325. package/api/types/MultipartMusicResponse.d.ts +1 -1
  326. package/api/types/MusicPrompt.d.ts +2 -2
  327. package/api/types/PatchWorkspaceWebhookResponseModel.d.ts +4 -0
  328. package/api/types/PatchWorkspaceWebhookResponseModel.js +3 -0
  329. package/api/types/PendingSubscriptionSwitchResponseModel.d.ts +1 -1
  330. package/api/types/PodcastTextSource.d.ts +2 -0
  331. package/api/types/PodcastUrlSource.d.ts +2 -0
  332. package/api/types/ProjectExtendedResponseModelSourceType.d.ts +1 -0
  333. package/api/types/ProjectExtendedResponseModelSourceType.js +1 -0
  334. package/api/types/ProjectResponseModelSourceType.d.ts +1 -0
  335. package/api/types/ProjectResponseModelSourceType.js +1 -0
  336. package/api/types/RagConfig.d.ts +2 -0
  337. package/api/types/RagConfigWorkflowOverride.d.ts +2 -0
  338. package/api/types/SegmentMigrationResponse.d.ts +3 -0
  339. package/api/types/SegmentMigrationResponse.js +3 -0
  340. package/api/types/SongSection.d.ts +2 -2
  341. package/api/types/SpeakerCreatedResponse.d.ts +4 -0
  342. package/api/types/SpeakerCreatedResponse.js +3 -0
  343. package/api/types/Subscription.d.ts +2 -2
  344. package/api/types/SubscriptionResponse.d.ts +2 -2
  345. package/api/types/SystemToolConfigInput.d.ts +2 -0
  346. package/api/types/SystemToolConfigOutput.d.ts +2 -0
  347. package/api/types/TtsConversationalConfigInput.d.ts +0 -2
  348. package/api/types/TtsConversationalConfigOutput.d.ts +0 -2
  349. package/api/types/TtsConversationalConfigWorkflowOverrideInput.d.ts +0 -2
  350. package/api/types/TtsConversationalConfigWorkflowOverrideOutput.d.ts +0 -2
  351. package/api/types/WebhookHmacSettings.d.ts +11 -0
  352. package/api/types/WebhookHmacSettings.js +3 -0
  353. package/api/types/WebhookToolApiSchemaConfigInput.d.ts +2 -5
  354. package/api/types/WebhookToolApiSchemaConfigOutput.d.ts +2 -5
  355. package/api/types/WhatsAppConversationInfo.d.ts +2 -0
  356. package/api/types/WhatsAppConversationInfoDirection.d.ts +6 -0
  357. package/api/types/WhatsAppConversationInfoDirection.js +9 -0
  358. package/api/types/WidgetTextContents.d.ts +14 -0
  359. package/api/types/WordTimestamp.d.ts +5 -0
  360. package/api/types/WordTimestamp.js +3 -0
  361. package/api/types/WorkflowToolNestedToolsStepModelInput.d.ts +1 -1
  362. package/api/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +1 -1
  363. package/api/types/WorkflowToolNestedToolsStepModelOutput.d.ts +1 -1
  364. package/api/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +1 -1
  365. package/api/types/WorkspaceCreateWebhookResponseModel.d.ts +4 -0
  366. package/api/types/WorkspaceCreateWebhookResponseModel.js +3 -0
  367. package/api/types/index.d.ts +19 -8
  368. package/api/types/index.js +19 -8
  369. package/core/fetcher/BinaryResponse.d.ts +6 -7
  370. package/core/fetcher/Fetcher.d.ts +5 -1
  371. package/core/fetcher/Fetcher.js +2 -1
  372. package/core/fetcher/getResponseBody.js +18 -4
  373. package/core/fetcher/signals.d.ts +1 -1
  374. package/core/runtime/runtime.js +11 -10
  375. package/core/schemas/builders/object/object.js +14 -1
  376. package/dist/BaseClient.d.ts +5 -1
  377. package/dist/BaseClient.js +48 -0
  378. package/dist/Client.d.ts +76 -76
  379. package/dist/Client.js +29 -49
  380. package/dist/api/errors/BadRequestError.js +5 -1
  381. package/dist/api/errors/ConflictError.js +5 -1
  382. package/dist/api/errors/ForbiddenError.js +5 -1
  383. package/dist/api/errors/NotFoundError.js +5 -1
  384. package/dist/api/errors/TooEarlyError.js +5 -1
  385. package/dist/api/errors/UnauthorizedError.js +5 -1
  386. package/dist/api/errors/UnprocessableEntityError.js +5 -1
  387. package/dist/api/resources/audioIsolation/client/Client.d.ts +8 -8
  388. package/dist/api/resources/audioIsolation/client/Client.js +9 -35
  389. package/dist/api/resources/audioNative/client/Client.d.ts +12 -12
  390. package/dist/api/resources/audioNative/client/Client.js +13 -53
  391. package/dist/api/resources/conversationalAi/client/Client.d.ts +59 -56
  392. package/dist/api/resources/conversationalAi/client/Client.js +47 -96
  393. package/dist/api/resources/conversationalAi/resources/agents/client/Client.d.ts +36 -36
  394. package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +29 -153
  395. package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.d.ts +8 -8
  396. package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +9 -21
  397. package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.d.ts +8 -8
  398. package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +9 -21
  399. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.d.ts +8 -8
  400. package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +9 -21
  401. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.d.ts +11 -11
  402. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +10 -22
  403. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.d.ts +8 -8
  404. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +9 -21
  405. package/dist/api/resources/conversationalAi/resources/analytics/client/Client.d.ts +12 -0
  406. package/dist/api/resources/conversationalAi/resources/analytics/client/Client.js +16 -0
  407. package/dist/api/resources/conversationalAi/resources/analytics/client/index.d.ts +1 -0
  408. package/dist/api/resources/conversationalAi/resources/analytics/client/index.js +2 -0
  409. package/dist/api/resources/conversationalAi/resources/analytics/index.d.ts +2 -0
  410. package/dist/api/resources/conversationalAi/resources/analytics/index.js +18 -0
  411. package/dist/api/resources/conversationalAi/resources/analytics/resources/index.d.ts +2 -0
  412. package/dist/api/resources/conversationalAi/resources/analytics/resources/index.js +41 -0
  413. package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.d.ts +28 -0
  414. package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.js +127 -0
  415. package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/index.d.ts +1 -0
  416. package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/index.js +17 -0
  417. package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/requests/LiveCountGetRequest.d.ts +10 -0
  418. package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/requests/LiveCountGetRequest.js +3 -0
  419. package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/requests/index.d.ts +1 -0
  420. package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/requests/index.js +2 -0
  421. package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/index.d.ts +1 -0
  422. package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/index.js +17 -0
  423. package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +16 -16
  424. package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.js +17 -85
  425. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +25 -22
  426. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +32 -88
  427. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +9 -0
  428. package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.d.ts +7 -7
  429. package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +8 -20
  430. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.d.ts +8 -8
  431. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +9 -21
  432. package/dist/api/resources/conversationalAi/resources/dashboard/client/Client.d.ts +9 -9
  433. package/dist/api/resources/conversationalAi/resources/dashboard/client/Client.js +7 -6
  434. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.d.ts +10 -10
  435. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +11 -37
  436. package/dist/api/resources/conversationalAi/resources/index.d.ts +2 -0
  437. package/dist/api/resources/conversationalAi/resources/index.js +3 -1
  438. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.d.ts +14 -14
  439. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +11 -23
  440. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +8 -8
  441. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +9 -21
  442. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +25 -25
  443. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +24 -134
  444. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.d.ts +8 -8
  445. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +9 -21
  446. package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.d.ts +8 -8
  447. package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.js +9 -21
  448. package/dist/api/resources/conversationalAi/resources/mcpServers/client/Client.d.ts +28 -28
  449. package/dist/api/resources/conversationalAi/resources/mcpServers/client/Client.js +21 -89
  450. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.d.ts +8 -8
  451. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.js +9 -21
  452. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.d.ts +10 -10
  453. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.js +11 -37
  454. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolConfigs/client/Client.d.ts +14 -14
  455. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolConfigs/client/Client.js +15 -69
  456. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.d.ts +8 -8
  457. package/dist/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.js +9 -21
  458. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.d.ts +16 -16
  459. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +17 -85
  460. package/dist/api/resources/conversationalAi/resources/secrets/client/Client.d.ts +14 -14
  461. package/dist/api/resources/conversationalAi/resources/secrets/client/Client.js +15 -69
  462. package/dist/api/resources/conversationalAi/resources/settings/client/Client.d.ts +10 -10
  463. package/dist/api/resources/conversationalAi/resources/settings/client/Client.js +11 -37
  464. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.d.ts +8 -8
  465. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +9 -21
  466. package/dist/api/resources/conversationalAi/resources/tests/client/Client.d.ts +21 -21
  467. package/dist/api/resources/conversationalAi/resources/tests/client/Client.js +20 -102
  468. package/dist/api/resources/conversationalAi/resources/tests/resources/invocations/client/Client.d.ts +12 -12
  469. package/dist/api/resources/conversationalAi/resources/tests/resources/invocations/client/Client.js +13 -53
  470. package/dist/api/resources/conversationalAi/resources/tools/client/Client.d.ts +18 -18
  471. package/dist/api/resources/conversationalAi/resources/tools/client/Client.js +19 -101
  472. package/dist/api/resources/conversationalAi/resources/twilio/client/Client.d.ts +25 -8
  473. package/dist/api/resources/conversationalAi/resources/twilio/client/Client.js +67 -20
  474. package/dist/api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +16 -0
  475. package/dist/api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js +3 -0
  476. package/dist/api/resources/conversationalAi/resources/twilio/client/requests/index.d.ts +1 -0
  477. package/dist/api/resources/conversationalAi/resources/twilio/index.d.ts +1 -0
  478. package/dist/api/resources/conversationalAi/resources/twilio/index.js +1 -0
  479. package/dist/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +5 -0
  480. package/dist/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +8 -0
  481. package/dist/api/resources/conversationalAi/resources/twilio/types/index.d.ts +1 -0
  482. package/dist/api/resources/conversationalAi/resources/twilio/types/index.js +17 -0
  483. package/dist/api/resources/dubbing/client/Client.d.ts +23 -23
  484. package/dist/api/resources/dubbing/client/Client.js +18 -72
  485. package/dist/api/resources/dubbing/client/requests/BodyDubAVideoOrAnAudioFileV1DubbingPost.d.ts +2 -2
  486. package/dist/api/resources/dubbing/resources/audio/client/Client.d.ts +7 -7
  487. package/dist/api/resources/dubbing/resources/audio/client/Client.js +8 -20
  488. package/dist/api/resources/dubbing/resources/resource/client/Client.d.ts +43 -26
  489. package/dist/api/resources/dubbing/resources/resource/client/Client.js +87 -88
  490. package/dist/api/resources/dubbing/resources/resource/client/requests/BodyMoveSegmentsBetweenSpeakersV1DubbingResourceDubbingIdMigrateSegmentsPost.d.ts +11 -0
  491. package/dist/api/resources/dubbing/resources/resource/client/requests/BodyMoveSegmentsBetweenSpeakersV1DubbingResourceDubbingIdMigrateSegmentsPost.js +3 -0
  492. package/dist/api/resources/dubbing/resources/resource/client/requests/index.d.ts +1 -0
  493. package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.d.ts +8 -8
  494. package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.js +9 -21
  495. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.d.ts +10 -10
  496. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +11 -37
  497. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.d.ts +25 -13
  498. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +73 -37
  499. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.d.ts +16 -0
  500. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.js +3 -0
  501. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +8 -0
  502. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/requests/index.d.ts +1 -0
  503. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.d.ts +8 -8
  504. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +9 -21
  505. package/dist/api/resources/dubbing/resources/transcript/client/Client.d.ts +8 -8
  506. package/dist/api/resources/dubbing/resources/transcript/client/Client.js +9 -21
  507. package/dist/api/resources/forcedAlignment/client/Client.d.ts +8 -8
  508. package/dist/api/resources/forcedAlignment/client/Client.js +9 -21
  509. package/dist/api/resources/history/client/Client.d.ts +14 -14
  510. package/dist/api/resources/history/client/Client.js +15 -83
  511. package/dist/api/resources/models/client/Client.d.ts +8 -8
  512. package/dist/api/resources/models/client/Client.js +9 -21
  513. package/dist/api/resources/music/client/Client.d.ts +13 -13
  514. package/dist/api/resources/music/client/Client.js +15 -66
  515. package/dist/api/resources/music/client/requests/BodyComposeMusicV1MusicPost.d.ts +2 -0
  516. package/dist/api/resources/music/client/requests/BodyComposeMusicWithADetailedResponseV1MusicDetailedPost.d.ts +4 -0
  517. package/dist/api/resources/music/client/requests/BodyStemSeparationV1MusicStemSeparationPost.d.ts +2 -0
  518. package/dist/api/resources/music/resources/compositionPlan/client/Client.d.ts +8 -8
  519. package/dist/api/resources/music/resources/compositionPlan/client/Client.js +9 -21
  520. package/dist/api/resources/pronunciationDictionaries/client/Client.d.ts +20 -20
  521. package/dist/api/resources/pronunciationDictionaries/client/Client.js +19 -101
  522. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.d.ts +10 -10
  523. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +11 -37
  524. package/dist/api/resources/samples/client/Client.d.ts +8 -8
  525. package/dist/api/resources/samples/client/Client.js +9 -21
  526. package/dist/api/resources/serviceAccounts/client/Client.d.ts +11 -11
  527. package/dist/api/resources/serviceAccounts/client/Client.js +10 -22
  528. package/dist/api/resources/serviceAccounts/resources/apiKeys/client/Client.d.ts +16 -16
  529. package/dist/api/resources/serviceAccounts/resources/apiKeys/client/Client.js +17 -71
  530. package/dist/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.d.ts +1 -1
  531. package/dist/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.d.ts +1 -1
  532. package/dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissions.d.ts +1 -1
  533. package/dist/api/resources/serviceAccounts/resources/apiKeys/types/{BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.d.ts → BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.d.ts} +2 -2
  534. package/{api/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.js → dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.js} +2 -2
  535. package/dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissions.d.ts +1 -1
  536. package/dist/api/resources/serviceAccounts/resources/apiKeys/types/{BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.d.ts → BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.d.ts} +2 -2
  537. package/{api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.js → dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.js} +2 -2
  538. package/dist/api/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +2 -2
  539. package/dist/api/resources/serviceAccounts/resources/apiKeys/types/index.js +2 -2
  540. package/dist/api/resources/speechToSpeech/client/Client.d.ts +8 -8
  541. package/dist/api/resources/speechToSpeech/client/Client.js +9 -35
  542. package/dist/api/resources/speechToText/client/Client.d.ts +11 -11
  543. package/dist/api/resources/speechToText/client/Client.js +10 -22
  544. package/dist/api/resources/speechToText/resources/transcripts/client/Client.d.ts +10 -10
  545. package/dist/api/resources/speechToText/resources/transcripts/client/Client.js +11 -37
  546. package/dist/api/resources/studio/client/Client.d.ts +12 -11
  547. package/dist/api/resources/studio/client/Client.js +11 -22
  548. package/dist/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +1 -0
  549. package/dist/api/resources/studio/resources/projects/client/Client.d.ts +30 -30
  550. package/dist/api/resources/studio/resources/projects/client/Client.js +28 -105
  551. package/dist/api/resources/studio/resources/projects/client/requests/BodyCreateStudioProjectV1StudioProjectsPost.d.ts +8 -0
  552. package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.d.ts +21 -21
  553. package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.js +20 -102
  554. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.d.ts +11 -11
  555. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +12 -52
  556. package/dist/api/resources/studio/resources/projects/resources/content/client/Client.d.ts +8 -8
  557. package/dist/api/resources/studio/resources/projects/resources/content/client/Client.js +9 -21
  558. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.d.ts +8 -8
  559. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +9 -21
  560. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.d.ts +12 -12
  561. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +13 -67
  562. package/dist/api/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.d.ts +1 -0
  563. package/dist/api/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.js +1 -0
  564. package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.d.ts +1 -1
  565. package/dist/api/resources/studio/types/{BodyCreatePodcastV1StudioPodcastsPostSourceItem.d.ts → BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.d.ts} +2 -2
  566. package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.js +3 -0
  567. package/dist/api/resources/studio/types/index.d.ts +1 -1
  568. package/dist/api/resources/studio/types/index.js +1 -1
  569. package/dist/api/resources/textToDialogue/client/Client.d.ts +11 -11
  570. package/dist/api/resources/textToDialogue/client/Client.js +12 -66
  571. package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueFullWithTimestamps.d.ts +1 -1
  572. package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.d.ts +1 -1
  573. package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.d.ts +1 -1
  574. package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueStreamWithTimestamps.d.ts +1 -1
  575. package/dist/api/resources/textToDialogue/types/BodyTextToDialogueFullWithTimestampsApplyTextNormalization.d.ts +1 -1
  576. package/dist/api/resources/textToDialogue/types/BodyTextToDialogueFullWithTimestampsApplyTextNormalization.js +1 -1
  577. package/dist/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPostApplyTextNormalization.d.ts +1 -1
  578. package/dist/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPostApplyTextNormalization.js +1 -1
  579. package/dist/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceV1TextToDialoguePostApplyTextNormalization.d.ts +1 -1
  580. package/dist/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceV1TextToDialoguePostApplyTextNormalization.js +1 -1
  581. package/dist/api/resources/textToDialogue/types/BodyTextToDialogueStreamWithTimestampsApplyTextNormalization.d.ts +1 -1
  582. package/dist/api/resources/textToDialogue/types/BodyTextToDialogueStreamWithTimestampsApplyTextNormalization.js +1 -1
  583. package/dist/api/resources/textToSoundEffects/client/Client.d.ts +7 -7
  584. package/dist/api/resources/textToSoundEffects/client/Client.js +8 -20
  585. package/dist/api/resources/textToSpeech/client/Client.d.ts +11 -11
  586. package/dist/api/resources/textToSpeech/client/Client.js +12 -66
  587. package/dist/api/resources/textToSpeech/client/requests/BodyTextToSpeechFull.d.ts +1 -1
  588. package/dist/api/resources/textToSpeech/client/requests/BodyTextToSpeechFullWithTimestamps.d.ts +1 -1
  589. package/dist/api/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.d.ts +1 -1
  590. package/dist/api/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.d.ts +1 -1
  591. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechFullApplyTextNormalization.d.ts +1 -1
  592. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechFullApplyTextNormalization.js +1 -1
  593. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechFullWithTimestampsApplyTextNormalization.d.ts +1 -1
  594. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechFullWithTimestampsApplyTextNormalization.js +1 -1
  595. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechStreamApplyTextNormalization.d.ts +1 -1
  596. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechStreamApplyTextNormalization.js +1 -1
  597. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechStreamWithTimestampsApplyTextNormalization.d.ts +1 -1
  598. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechStreamWithTimestampsApplyTextNormalization.js +1 -1
  599. package/dist/api/resources/textToVoice/client/Client.d.ts +17 -17
  600. package/dist/api/resources/textToVoice/client/Client.js +16 -70
  601. package/dist/api/resources/textToVoice/resources/preview/client/Client.d.ts +7 -7
  602. package/dist/api/resources/textToVoice/resources/preview/client/Client.js +8 -20
  603. package/dist/api/resources/tokens/client/Client.d.ts +9 -9
  604. package/dist/api/resources/tokens/client/Client.js +7 -6
  605. package/dist/api/resources/tokens/resources/singleUse/client/Client.d.ts +8 -8
  606. package/dist/api/resources/tokens/resources/singleUse/client/Client.js +9 -21
  607. package/dist/api/resources/usage/client/Client.d.ts +8 -8
  608. package/dist/api/resources/usage/client/Client.js +9 -21
  609. package/dist/api/resources/user/client/Client.d.ts +11 -11
  610. package/dist/api/resources/user/client/Client.js +10 -22
  611. package/dist/api/resources/user/resources/subscription/client/Client.d.ts +8 -8
  612. package/dist/api/resources/user/resources/subscription/client/Client.js +9 -21
  613. package/dist/api/resources/voices/client/Client.d.ts +34 -34
  614. package/dist/api/resources/voices/client/Client.js +27 -137
  615. package/dist/api/resources/voices/client/requests/VoicesSearchRequest.d.ts +2 -2
  616. package/dist/api/resources/voices/resources/ivc/client/Client.d.ts +8 -8
  617. package/dist/api/resources/voices/resources/ivc/client/Client.js +9 -21
  618. package/dist/api/resources/voices/resources/pvc/client/Client.d.ts +18 -18
  619. package/dist/api/resources/voices/resources/pvc/client/Client.js +15 -55
  620. package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.d.ts +21 -21
  621. package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.js +16 -56
  622. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.d.ts +8 -8
  623. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +9 -21
  624. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.d.ts +13 -13
  625. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +12 -38
  626. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.d.ts +8 -8
  627. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +9 -21
  628. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.d.ts +8 -8
  629. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +9 -21
  630. package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.d.ts +11 -11
  631. package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.js +10 -22
  632. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.d.ts +10 -10
  633. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +11 -37
  634. package/dist/api/resources/voices/resources/samples/client/Client.d.ts +9 -9
  635. package/dist/api/resources/voices/resources/samples/client/Client.js +7 -6
  636. package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.d.ts +7 -7
  637. package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.js +8 -20
  638. package/dist/api/resources/voices/resources/settings/client/Client.d.ts +12 -12
  639. package/dist/api/resources/voices/resources/settings/client/Client.js +13 -53
  640. package/dist/api/resources/webhooks/client/Client.d.ts +57 -8
  641. package/dist/api/resources/webhooks/client/Client.js +208 -20
  642. package/dist/api/resources/webhooks/client/requests/BodyCreateWorkspaceWebhookV1WorkspaceWebhooksPost.d.ts +15 -0
  643. package/dist/api/resources/webhooks/client/requests/BodyCreateWorkspaceWebhookV1WorkspaceWebhooksPost.js +3 -0
  644. package/dist/api/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.d.ts +13 -0
  645. package/dist/api/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.js +3 -0
  646. package/dist/api/resources/webhooks/client/requests/index.d.ts +2 -0
  647. package/dist/api/resources/workspace/client/Client.d.ts +18 -18
  648. package/dist/api/resources/workspace/client/Client.js +10 -9
  649. package/dist/api/resources/workspace/resources/groups/client/Client.d.ts +11 -11
  650. package/dist/api/resources/workspace/resources/groups/client/Client.js +10 -22
  651. package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.d.ts +10 -10
  652. package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.js +11 -37
  653. package/dist/api/resources/workspace/resources/invites/client/Client.d.ts +12 -12
  654. package/dist/api/resources/workspace/resources/invites/client/Client.js +13 -53
  655. package/dist/api/resources/workspace/resources/members/client/Client.d.ts +8 -8
  656. package/dist/api/resources/workspace/resources/members/client/Client.js +9 -21
  657. package/dist/api/resources/workspace/resources/resources/client/Client.d.ts +12 -12
  658. package/dist/api/resources/workspace/resources/resources/client/Client.js +13 -53
  659. package/dist/api/types/AgentDefinitionSource.d.ts +1 -0
  660. package/dist/api/types/AgentDefinitionSource.js +1 -0
  661. package/dist/api/types/AgentWorkflowRequestModel.d.ts +2 -0
  662. package/dist/api/types/AgentWorkflowResponseModel.d.ts +2 -0
  663. package/dist/api/types/BackupLlmDefault.d.ts +3 -1
  664. package/dist/api/types/BackupLlmDisabled.d.ts +3 -1
  665. package/dist/api/types/BackupLlmOverride.d.ts +1 -0
  666. package/dist/api/types/BillingPeriod.d.ts +7 -0
  667. package/{api/types/ExtendedSubscriptionResponseModelBillingPeriod.js → dist/api/types/BillingPeriod.js} +4 -2
  668. package/dist/api/types/CharacterRefreshPeriod.d.ts +7 -0
  669. package/{api/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.js → dist/api/types/CharacterRefreshPeriod.js} +4 -2
  670. package/dist/api/types/ClientEvent.d.ts +1 -0
  671. package/dist/api/types/ClientEvent.js +1 -0
  672. package/dist/api/types/ConversationHistoryMetadataCommonModel.d.ts +1 -0
  673. package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +14 -0
  674. package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js +3 -0
  675. package/dist/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -1
  676. package/dist/api/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +1 -1
  677. package/dist/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -1
  678. package/dist/api/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +1 -1
  679. package/dist/api/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.d.ts +0 -1
  680. package/dist/api/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.js +0 -1
  681. package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +7 -0
  682. package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js +3 -0
  683. package/{api/types/ConversationHistoryTranscriptToolCallCommonModel.d.ts → dist/api/types/ConversationHistoryTranscriptToolCallCommonModelInput.d.ts} +2 -2
  684. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelInput.js +3 -0
  685. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +16 -0
  686. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js +3 -0
  687. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelOutput.d.ts +9 -0
  688. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelOutput.js +3 -0
  689. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +16 -0
  690. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +3 -0
  691. package/dist/api/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +1 -0
  692. package/dist/api/types/CustomLlm.d.ts +2 -0
  693. package/dist/api/types/CustomLlmapiType.d.ts +5 -0
  694. package/dist/api/types/CustomLlmapiType.js +8 -0
  695. package/dist/api/types/DeleteWorkspaceWebhookResponseModel.d.ts +4 -0
  696. package/dist/api/types/DeleteWorkspaceWebhookResponseModel.js +3 -0
  697. package/dist/api/types/DetailedMusicResponse.d.ts +2 -0
  698. package/{api/types/DiscountResposneModel.d.ts → dist/api/types/DiscountResponseModel.d.ts} +1 -1
  699. package/dist/api/types/DiscountResponseModel.js +3 -0
  700. package/dist/api/types/DubbingResource.d.ts +2 -2
  701. package/dist/api/types/DubbingTranscriptUtterance.d.ts +2 -1
  702. package/dist/api/types/DubbingTranscriptWord.d.ts +2 -2
  703. package/dist/api/types/GetLiveCountResponse.d.ts +4 -0
  704. package/dist/api/types/GetLiveCountResponse.js +3 -0
  705. package/dist/api/types/GetVoicesV2Response.d.ts +4 -0
  706. package/dist/api/types/InvoiceResponse.d.ts +1 -1
  707. package/dist/api/types/MultipartMusicResponse.d.ts +1 -1
  708. package/dist/api/types/MusicPrompt.d.ts +2 -2
  709. package/dist/api/types/PatchWorkspaceWebhookResponseModel.d.ts +4 -0
  710. package/dist/api/types/PatchWorkspaceWebhookResponseModel.js +3 -0
  711. package/dist/api/types/PendingSubscriptionSwitchResponseModel.d.ts +1 -1
  712. package/dist/api/types/PodcastTextSource.d.ts +2 -0
  713. package/dist/api/types/PodcastUrlSource.d.ts +2 -0
  714. package/dist/api/types/ProjectExtendedResponseModelSourceType.d.ts +1 -0
  715. package/dist/api/types/ProjectExtendedResponseModelSourceType.js +1 -0
  716. package/dist/api/types/ProjectResponseModelSourceType.d.ts +1 -0
  717. package/dist/api/types/ProjectResponseModelSourceType.js +1 -0
  718. package/dist/api/types/RagConfig.d.ts +2 -0
  719. package/dist/api/types/RagConfigWorkflowOverride.d.ts +2 -0
  720. package/dist/api/types/SegmentMigrationResponse.d.ts +3 -0
  721. package/dist/api/types/SegmentMigrationResponse.js +3 -0
  722. package/dist/api/types/SongSection.d.ts +2 -2
  723. package/dist/api/types/SpeakerCreatedResponse.d.ts +4 -0
  724. package/dist/api/types/SpeakerCreatedResponse.js +3 -0
  725. package/dist/api/types/Subscription.d.ts +2 -2
  726. package/dist/api/types/SubscriptionResponse.d.ts +2 -2
  727. package/dist/api/types/SystemToolConfigInput.d.ts +2 -0
  728. package/dist/api/types/SystemToolConfigOutput.d.ts +2 -0
  729. package/dist/api/types/TtsConversationalConfigInput.d.ts +0 -2
  730. package/dist/api/types/TtsConversationalConfigOutput.d.ts +0 -2
  731. package/dist/api/types/TtsConversationalConfigWorkflowOverrideInput.d.ts +0 -2
  732. package/dist/api/types/TtsConversationalConfigWorkflowOverrideOutput.d.ts +0 -2
  733. package/dist/api/types/WebhookHmacSettings.d.ts +11 -0
  734. package/dist/api/types/WebhookHmacSettings.js +3 -0
  735. package/dist/api/types/WebhookToolApiSchemaConfigInput.d.ts +2 -5
  736. package/dist/api/types/WebhookToolApiSchemaConfigOutput.d.ts +2 -5
  737. package/dist/api/types/WhatsAppConversationInfo.d.ts +2 -0
  738. package/dist/api/types/WhatsAppConversationInfoDirection.d.ts +6 -0
  739. package/dist/api/types/WhatsAppConversationInfoDirection.js +9 -0
  740. package/dist/api/types/WidgetTextContents.d.ts +14 -0
  741. package/dist/api/types/WordTimestamp.d.ts +5 -0
  742. package/dist/api/types/WordTimestamp.js +3 -0
  743. package/dist/api/types/WorkflowToolNestedToolsStepModelInput.d.ts +1 -1
  744. package/dist/api/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +1 -1
  745. package/dist/api/types/WorkflowToolNestedToolsStepModelOutput.d.ts +1 -1
  746. package/dist/api/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +1 -1
  747. package/dist/api/types/WorkspaceCreateWebhookResponseModel.d.ts +4 -0
  748. package/dist/api/types/WorkspaceCreateWebhookResponseModel.js +3 -0
  749. package/dist/api/types/index.d.ts +19 -8
  750. package/dist/api/types/index.js +19 -8
  751. package/dist/core/fetcher/BinaryResponse.d.ts +6 -7
  752. package/dist/core/fetcher/Fetcher.d.ts +5 -1
  753. package/dist/core/fetcher/Fetcher.js +2 -1
  754. package/dist/core/fetcher/getResponseBody.js +18 -4
  755. package/dist/core/fetcher/signals.d.ts +1 -1
  756. package/dist/core/runtime/runtime.js +11 -10
  757. package/dist/core/schemas/builders/object/object.js +14 -1
  758. package/dist/errors/ElevenLabsError.js +5 -1
  759. package/dist/errors/ElevenLabsTimeoutError.js +5 -1
  760. package/dist/errors/handleNonStatusCodeError.d.ts +2 -0
  761. package/dist/errors/handleNonStatusCodeError.js +65 -0
  762. package/dist/serialization/resources/conversationalAi/resources/index.d.ts +1 -0
  763. package/dist/serialization/resources/conversationalAi/resources/index.js +1 -0
  764. package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +15 -0
  765. package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js +47 -0
  766. package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/index.d.ts +1 -0
  767. package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/index.js +3 -1
  768. package/dist/serialization/resources/conversationalAi/resources/twilio/index.d.ts +1 -0
  769. package/dist/serialization/resources/conversationalAi/resources/twilio/index.js +1 -0
  770. package/dist/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +7 -0
  771. package/dist/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +39 -0
  772. package/dist/serialization/resources/conversationalAi/resources/twilio/types/index.d.ts +1 -0
  773. package/dist/serialization/resources/conversationalAi/resources/twilio/types/index.js +17 -0
  774. package/dist/serialization/resources/dubbing/resources/resource/client/requests/BodyMoveSegmentsBetweenSpeakersV1DubbingResourceDubbingIdMigrateSegmentsPost.d.ts +10 -0
  775. package/dist/serialization/resources/dubbing/resources/resource/client/requests/BodyMoveSegmentsBetweenSpeakersV1DubbingResourceDubbingIdMigrateSegmentsPost.js +42 -0
  776. package/dist/serialization/resources/dubbing/resources/resource/client/requests/index.d.ts +1 -0
  777. package/dist/serialization/resources/dubbing/resources/resource/client/requests/index.js +3 -1
  778. package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.d.ts +13 -0
  779. package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.js +45 -0
  780. package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +4 -0
  781. package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.js +4 -0
  782. package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/index.d.ts +1 -0
  783. package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/index.js +3 -1
  784. package/dist/serialization/resources/index.d.ts +2 -0
  785. package/dist/serialization/resources/index.js +3 -1
  786. package/dist/serialization/resources/music/client/requests/BodyComposeMusicV1MusicPost.d.ts +1 -0
  787. package/dist/serialization/resources/music/client/requests/BodyComposeMusicV1MusicPost.js +1 -0
  788. package/dist/serialization/resources/music/client/requests/BodyComposeMusicWithADetailedResponseV1MusicDetailedPost.d.ts +2 -0
  789. package/dist/serialization/resources/music/client/requests/BodyComposeMusicWithADetailedResponseV1MusicDetailedPost.js +2 -0
  790. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissions.d.ts +2 -2
  791. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissions.js +2 -2
  792. package/{serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.d.ts → dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.d.ts} +2 -2
  793. package/{serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.js → dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.js} +2 -2
  794. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissions.d.ts +2 -2
  795. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissions.js +2 -2
  796. package/{serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.d.ts → dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.d.ts} +2 -2
  797. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/{BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.js → BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.js} +2 -2
  798. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +2 -2
  799. package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/index.js +2 -2
  800. package/dist/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.d.ts +1 -1
  801. package/dist/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.js +1 -1
  802. package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.d.ts +2 -2
  803. package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.js +2 -2
  804. package/dist/serialization/resources/studio/types/{BodyCreatePodcastV1StudioPodcastsPostSourceItem.d.ts → BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.d.ts} +3 -3
  805. package/{serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.js → dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.js} +2 -2
  806. package/dist/serialization/resources/studio/types/index.d.ts +1 -1
  807. package/dist/serialization/resources/studio/types/index.js +1 -1
  808. package/dist/serialization/resources/webhooks/client/index.d.ts +1 -0
  809. package/dist/serialization/resources/webhooks/client/index.js +17 -0
  810. package/dist/serialization/resources/webhooks/client/requests/BodyCreateWorkspaceWebhookV1WorkspaceWebhooksPost.d.ts +10 -0
  811. package/dist/serialization/resources/webhooks/client/requests/BodyCreateWorkspaceWebhookV1WorkspaceWebhooksPost.js +42 -0
  812. package/dist/serialization/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.d.ts +10 -0
  813. package/dist/serialization/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.js +42 -0
  814. package/dist/serialization/resources/webhooks/client/requests/index.d.ts +2 -0
  815. package/dist/serialization/resources/webhooks/client/requests/index.js +7 -0
  816. package/dist/serialization/resources/webhooks/index.d.ts +1 -0
  817. package/dist/serialization/resources/webhooks/index.js +17 -0
  818. package/dist/serialization/types/AgentDefinitionSource.d.ts +1 -1
  819. package/dist/serialization/types/AgentDefinitionSource.js +1 -1
  820. package/dist/serialization/types/AgentWorkflowRequestModel.d.ts +1 -0
  821. package/dist/serialization/types/AgentWorkflowRequestModel.js +1 -0
  822. package/dist/serialization/types/AgentWorkflowResponseModel.d.ts +1 -0
  823. package/dist/serialization/types/AgentWorkflowResponseModel.js +1 -0
  824. package/dist/serialization/types/BackupLlmDefault.d.ts +3 -1
  825. package/dist/serialization/types/BackupLlmDefault.js +3 -1
  826. package/dist/serialization/types/BackupLlmDisabled.d.ts +3 -1
  827. package/dist/serialization/types/BackupLlmDisabled.js +3 -1
  828. package/dist/serialization/types/BackupLlmOverride.d.ts +1 -0
  829. package/dist/serialization/types/BackupLlmOverride.js +1 -0
  830. package/dist/serialization/types/BillingPeriod.d.ts +7 -0
  831. package/dist/serialization/types/{SubscriptionResponseModelBillingPeriod.js → BillingPeriod.js} +2 -2
  832. package/dist/serialization/types/CharacterRefreshPeriod.d.ts +7 -0
  833. package/dist/serialization/types/{ExtendedSubscriptionResponseModelBillingPeriod.js → CharacterRefreshPeriod.js} +2 -2
  834. package/dist/serialization/types/ClientEvent.d.ts +1 -1
  835. package/dist/serialization/types/ClientEvent.js +1 -0
  836. package/dist/serialization/types/ConversationHistoryMetadataCommonModel.d.ts +1 -0
  837. package/dist/serialization/types/ConversationHistoryMetadataCommonModel.js +1 -0
  838. package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +20 -0
  839. package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js +52 -0
  840. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +2 -2
  841. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +2 -2
  842. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +2 -1
  843. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.js +2 -0
  844. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +2 -2
  845. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +2 -2
  846. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +2 -1
  847. package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.js +2 -0
  848. package/dist/serialization/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.d.ts +1 -1
  849. package/dist/serialization/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.js +1 -1
  850. package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +13 -0
  851. package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js +45 -0
  852. package/dist/serialization/types/{ConversationHistoryTranscriptToolCallCommonModel.d.ts → ConversationHistoryTranscriptToolCallCommonModelInput.d.ts} +4 -4
  853. package/{serialization/types/ConversationHistoryTranscriptToolCallCommonModel.js → dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInput.js} +4 -4
  854. package/{serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts → dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts} +7 -3
  855. package/dist/serialization/types/{ConversationHistoryTranscriptToolCallCommonModelToolDetails.js → ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js} +4 -2
  856. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutput.d.ts +16 -0
  857. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutput.js +48 -0
  858. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +23 -0
  859. package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +53 -0
  860. package/dist/serialization/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +1 -0
  861. package/dist/serialization/types/ConversationHistoryTranscriptToolCallWebhookDetails.js +1 -0
  862. package/dist/serialization/types/CustomLlm.d.ts +2 -0
  863. package/dist/serialization/types/CustomLlm.js +2 -0
  864. package/dist/serialization/types/CustomLlmapiType.d.ts +7 -0
  865. package/{serialization/types/SubscriptionResponseModelBillingPeriod.js → dist/serialization/types/CustomLlmapiType.js} +2 -2
  866. package/dist/serialization/types/DeleteWorkspaceWebhookResponseModel.d.ts +9 -0
  867. package/{serialization/types/ExtendedSubscriptionResponseModelBillingPeriod.js → dist/serialization/types/DeleteWorkspaceWebhookResponseModel.js} +4 -2
  868. package/dist/serialization/types/DetailedMusicResponse.d.ts +2 -0
  869. package/dist/serialization/types/DetailedMusicResponse.js +2 -0
  870. package/{serialization/types/DiscountResposneModel.d.ts → dist/serialization/types/DiscountResponseModel.d.ts} +2 -2
  871. package/dist/serialization/types/{DiscountResposneModel.js → DiscountResponseModel.js} +2 -2
  872. package/dist/serialization/types/DubbingResource.d.ts +2 -2
  873. package/dist/serialization/types/DubbingResource.js +2 -2
  874. package/dist/serialization/types/DubbingTranscriptUtterance.d.ts +2 -1
  875. package/dist/serialization/types/DubbingTranscriptUtterance.js +2 -1
  876. package/dist/serialization/types/DubbingTranscriptWord.d.ts +2 -2
  877. package/dist/serialization/types/DubbingTranscriptWord.js +2 -2
  878. package/dist/serialization/types/GetLiveCountResponse.d.ts +9 -0
  879. package/dist/serialization/types/GetLiveCountResponse.js +41 -0
  880. package/dist/serialization/types/InvoiceResponse.d.ts +2 -2
  881. package/dist/serialization/types/InvoiceResponse.js +2 -2
  882. package/dist/serialization/types/PatchWorkspaceWebhookResponseModel.d.ts +9 -0
  883. package/dist/serialization/types/PatchWorkspaceWebhookResponseModel.js +41 -0
  884. package/dist/serialization/types/PendingSubscriptionSwitchResponseModel.d.ts +2 -2
  885. package/dist/serialization/types/PendingSubscriptionSwitchResponseModel.js +2 -2
  886. package/dist/serialization/types/PodcastTextSource.d.ts +1 -0
  887. package/dist/serialization/types/PodcastTextSource.js +1 -0
  888. package/dist/serialization/types/PodcastUrlSource.d.ts +1 -0
  889. package/dist/serialization/types/PodcastUrlSource.js +1 -0
  890. package/dist/serialization/types/ProjectExtendedResponseModelSourceType.d.ts +1 -1
  891. package/dist/serialization/types/ProjectExtendedResponseModelSourceType.js +1 -1
  892. package/dist/serialization/types/ProjectResponseModelSourceType.d.ts +1 -1
  893. package/dist/serialization/types/ProjectResponseModelSourceType.js +1 -1
  894. package/dist/serialization/types/RagConfig.d.ts +1 -0
  895. package/dist/serialization/types/RagConfig.js +1 -0
  896. package/dist/serialization/types/RagConfigWorkflowOverride.d.ts +1 -0
  897. package/dist/serialization/types/RagConfigWorkflowOverride.js +1 -0
  898. package/dist/serialization/types/SegmentMigrationResponse.d.ts +9 -0
  899. package/dist/serialization/types/SegmentMigrationResponse.js +41 -0
  900. package/dist/serialization/types/SpeakerCreatedResponse.d.ts +10 -0
  901. package/dist/serialization/types/{PendingSubscriptionSwitchResponseModelNextBillingPeriod.js → SpeakerCreatedResponse.js} +5 -2
  902. package/dist/serialization/types/Subscription.d.ts +4 -4
  903. package/dist/serialization/types/Subscription.js +4 -4
  904. package/dist/serialization/types/SubscriptionResponse.d.ts +4 -4
  905. package/dist/serialization/types/SubscriptionResponse.js +4 -4
  906. package/dist/serialization/types/SystemToolConfigInput.d.ts +1 -0
  907. package/dist/serialization/types/SystemToolConfigInput.js +1 -0
  908. package/dist/serialization/types/SystemToolConfigOutput.d.ts +1 -0
  909. package/dist/serialization/types/SystemToolConfigOutput.js +1 -0
  910. package/dist/serialization/types/TtsConversationalConfigInput.d.ts +0 -2
  911. package/dist/serialization/types/TtsConversationalConfigInput.js +0 -2
  912. package/dist/serialization/types/TtsConversationalConfigOutput.d.ts +0 -2
  913. package/dist/serialization/types/TtsConversationalConfigOutput.js +0 -2
  914. package/dist/serialization/types/TtsConversationalConfigWorkflowOverrideInput.d.ts +0 -2
  915. package/dist/serialization/types/TtsConversationalConfigWorkflowOverrideInput.js +0 -2
  916. package/dist/serialization/types/TtsConversationalConfigWorkflowOverrideOutput.d.ts +0 -2
  917. package/dist/serialization/types/TtsConversationalConfigWorkflowOverrideOutput.js +0 -2
  918. package/dist/serialization/types/WebhookHmacSettings.d.ts +11 -0
  919. package/dist/serialization/types/WebhookHmacSettings.js +43 -0
  920. package/dist/serialization/types/WebhookToolApiSchemaConfigInput.d.ts +1 -1
  921. package/dist/serialization/types/WebhookToolApiSchemaConfigInput.js +3 -3
  922. package/dist/serialization/types/WebhookToolApiSchemaConfigOutput.d.ts +1 -1
  923. package/dist/serialization/types/WebhookToolApiSchemaConfigOutput.js +3 -3
  924. package/dist/serialization/types/WhatsAppConversationInfo.d.ts +2 -0
  925. package/dist/serialization/types/WhatsAppConversationInfo.js +2 -0
  926. package/dist/serialization/types/WhatsAppConversationInfoDirection.d.ts +7 -0
  927. package/dist/serialization/types/WhatsAppConversationInfoDirection.js +39 -0
  928. package/dist/serialization/types/WidgetTextContents.d.ts +7 -0
  929. package/dist/serialization/types/WidgetTextContents.js +7 -0
  930. package/dist/serialization/types/WordTimestamp.d.ts +11 -0
  931. package/dist/serialization/types/WordTimestamp.js +43 -0
  932. package/dist/serialization/types/WorkflowToolNestedToolsStepModelInput.d.ts +2 -2
  933. package/dist/serialization/types/WorkflowToolNestedToolsStepModelInput.js +2 -2
  934. package/dist/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +2 -1
  935. package/dist/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.js +2 -0
  936. package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutput.d.ts +2 -2
  937. package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutput.js +2 -2
  938. package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +2 -1
  939. package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.js +2 -0
  940. package/dist/serialization/types/WorkspaceCreateWebhookResponseModel.d.ts +10 -0
  941. package/dist/serialization/types/WorkspaceCreateWebhookResponseModel.js +42 -0
  942. package/dist/serialization/types/index.d.ts +19 -8
  943. package/dist/serialization/types/index.js +19 -8
  944. package/dist/version.d.ts +1 -1
  945. package/dist/version.js +1 -1
  946. package/dist/wrapper/ElevenLabsClient.d.ts +1 -1
  947. package/dist/wrapper/music.d.ts +4 -4
  948. package/dist/wrapper/music.js +1 -1
  949. package/dist/wrapper/realtime/connection.d.ts +110 -6
  950. package/dist/wrapper/realtime/connection.js +74 -2
  951. package/dist/wrapper/realtime/index.d.ts +1 -1
  952. package/dist/wrapper/realtime/scribe.d.ts +2 -2
  953. package/dist/wrapper/speechToText.d.ts +1 -1
  954. package/dist/wrapper/speechToText.js +1 -1
  955. package/dist/wrapper/webhooks.d.ts +1 -1
  956. package/dist/wrapper/webhooks.js +1 -1
  957. package/errors/ElevenLabsError.js +5 -1
  958. package/errors/ElevenLabsTimeoutError.js +5 -1
  959. package/errors/handleNonStatusCodeError.d.ts +2 -0
  960. package/errors/handleNonStatusCodeError.js +65 -0
  961. package/package.json +1 -1
  962. package/reference.md +690 -216
  963. package/serialization/resources/conversationalAi/resources/index.d.ts +1 -0
  964. package/serialization/resources/conversationalAi/resources/index.js +1 -0
  965. package/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +15 -0
  966. package/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js +47 -0
  967. package/serialization/resources/conversationalAi/resources/twilio/client/requests/index.d.ts +1 -0
  968. package/serialization/resources/conversationalAi/resources/twilio/client/requests/index.js +3 -1
  969. package/serialization/resources/conversationalAi/resources/twilio/index.d.ts +1 -0
  970. package/serialization/resources/conversationalAi/resources/twilio/index.js +1 -0
  971. package/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +7 -0
  972. package/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +39 -0
  973. package/serialization/resources/conversationalAi/resources/twilio/types/index.d.ts +1 -0
  974. package/serialization/resources/conversationalAi/resources/twilio/types/index.js +17 -0
  975. package/serialization/resources/dubbing/resources/resource/client/requests/BodyMoveSegmentsBetweenSpeakersV1DubbingResourceDubbingIdMigrateSegmentsPost.d.ts +10 -0
  976. package/serialization/resources/dubbing/resources/resource/client/requests/BodyMoveSegmentsBetweenSpeakersV1DubbingResourceDubbingIdMigrateSegmentsPost.js +42 -0
  977. package/serialization/resources/dubbing/resources/resource/client/requests/index.d.ts +1 -0
  978. package/serialization/resources/dubbing/resources/resource/client/requests/index.js +3 -1
  979. package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.d.ts +13 -0
  980. package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.js +45 -0
  981. package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +4 -0
  982. package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.js +4 -0
  983. package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/index.d.ts +1 -0
  984. package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/index.js +3 -1
  985. package/serialization/resources/index.d.ts +2 -0
  986. package/serialization/resources/index.js +3 -1
  987. package/serialization/resources/music/client/requests/BodyComposeMusicV1MusicPost.d.ts +1 -0
  988. package/serialization/resources/music/client/requests/BodyComposeMusicV1MusicPost.js +1 -0
  989. package/serialization/resources/music/client/requests/BodyComposeMusicWithADetailedResponseV1MusicDetailedPost.d.ts +2 -0
  990. package/serialization/resources/music/client/requests/BodyComposeMusicWithADetailedResponseV1MusicDetailedPost.js +2 -0
  991. package/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissions.d.ts +2 -2
  992. package/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissions.js +2 -2
  993. package/{dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.d.ts → serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.d.ts} +2 -2
  994. package/{dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.js → serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.js} +2 -2
  995. package/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissions.d.ts +2 -2
  996. package/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissions.js +2 -2
  997. package/{dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.d.ts → serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.d.ts} +2 -2
  998. package/serialization/resources/serviceAccounts/resources/apiKeys/types/{BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.js → BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.js} +2 -2
  999. package/serialization/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +2 -2
  1000. package/serialization/resources/serviceAccounts/resources/apiKeys/types/index.js +2 -2
  1001. package/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.d.ts +1 -1
  1002. package/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.js +1 -1
  1003. package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.d.ts +2 -2
  1004. package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.js +2 -2
  1005. package/serialization/resources/studio/types/{BodyCreatePodcastV1StudioPodcastsPostSourceItem.d.ts → BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.d.ts} +3 -3
  1006. package/{dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.js → serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.js} +2 -2
  1007. package/serialization/resources/studio/types/index.d.ts +1 -1
  1008. package/serialization/resources/studio/types/index.js +1 -1
  1009. package/serialization/resources/webhooks/client/index.d.ts +1 -0
  1010. package/serialization/resources/webhooks/client/index.js +17 -0
  1011. package/serialization/resources/webhooks/client/requests/BodyCreateWorkspaceWebhookV1WorkspaceWebhooksPost.d.ts +10 -0
  1012. package/serialization/resources/webhooks/client/requests/BodyCreateWorkspaceWebhookV1WorkspaceWebhooksPost.js +42 -0
  1013. package/serialization/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.d.ts +10 -0
  1014. package/serialization/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.js +42 -0
  1015. package/serialization/resources/webhooks/client/requests/index.d.ts +2 -0
  1016. package/serialization/resources/webhooks/client/requests/index.js +7 -0
  1017. package/serialization/resources/webhooks/index.d.ts +1 -0
  1018. package/serialization/resources/webhooks/index.js +17 -0
  1019. package/serialization/types/AgentDefinitionSource.d.ts +1 -1
  1020. package/serialization/types/AgentDefinitionSource.js +1 -1
  1021. package/serialization/types/AgentWorkflowRequestModel.d.ts +1 -0
  1022. package/serialization/types/AgentWorkflowRequestModel.js +1 -0
  1023. package/serialization/types/AgentWorkflowResponseModel.d.ts +1 -0
  1024. package/serialization/types/AgentWorkflowResponseModel.js +1 -0
  1025. package/serialization/types/BackupLlmDefault.d.ts +3 -1
  1026. package/serialization/types/BackupLlmDefault.js +3 -1
  1027. package/serialization/types/BackupLlmDisabled.d.ts +3 -1
  1028. package/serialization/types/BackupLlmDisabled.js +3 -1
  1029. package/serialization/types/BackupLlmOverride.d.ts +1 -0
  1030. package/serialization/types/BackupLlmOverride.js +1 -0
  1031. package/serialization/types/BillingPeriod.d.ts +7 -0
  1032. package/serialization/types/BillingPeriod.js +39 -0
  1033. package/serialization/types/CharacterRefreshPeriod.d.ts +7 -0
  1034. package/serialization/types/CharacterRefreshPeriod.js +39 -0
  1035. package/serialization/types/ClientEvent.d.ts +1 -1
  1036. package/serialization/types/ClientEvent.js +1 -0
  1037. package/serialization/types/ConversationHistoryMetadataCommonModel.d.ts +1 -0
  1038. package/serialization/types/ConversationHistoryMetadataCommonModel.js +1 -0
  1039. package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +20 -0
  1040. package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js +52 -0
  1041. package/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +2 -2
  1042. package/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +2 -2
  1043. package/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +2 -1
  1044. package/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.js +2 -0
  1045. package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +2 -2
  1046. package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +2 -2
  1047. package/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +2 -1
  1048. package/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.js +2 -0
  1049. package/serialization/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.d.ts +1 -1
  1050. package/serialization/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.js +1 -1
  1051. package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +13 -0
  1052. package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js +45 -0
  1053. package/serialization/types/{ConversationHistoryTranscriptToolCallCommonModel.d.ts → ConversationHistoryTranscriptToolCallCommonModelInput.d.ts} +4 -4
  1054. package/{dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModel.js → serialization/types/ConversationHistoryTranscriptToolCallCommonModelInput.js} +4 -4
  1055. package/{dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts → serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts} +7 -3
  1056. package/serialization/types/{ConversationHistoryTranscriptToolCallCommonModelToolDetails.js → ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js} +4 -2
  1057. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutput.d.ts +16 -0
  1058. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutput.js +48 -0
  1059. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +23 -0
  1060. package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +53 -0
  1061. package/serialization/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +1 -0
  1062. package/serialization/types/ConversationHistoryTranscriptToolCallWebhookDetails.js +1 -0
  1063. package/serialization/types/CustomLlm.d.ts +2 -0
  1064. package/serialization/types/CustomLlm.js +2 -0
  1065. package/serialization/types/CustomLlmapiType.d.ts +7 -0
  1066. package/serialization/types/CustomLlmapiType.js +39 -0
  1067. package/serialization/types/DeleteWorkspaceWebhookResponseModel.d.ts +9 -0
  1068. package/serialization/types/DeleteWorkspaceWebhookResponseModel.js +41 -0
  1069. package/serialization/types/DetailedMusicResponse.d.ts +2 -0
  1070. package/serialization/types/DetailedMusicResponse.js +2 -0
  1071. package/{dist/serialization/types/DiscountResposneModel.d.ts → serialization/types/DiscountResponseModel.d.ts} +2 -2
  1072. package/serialization/types/{DiscountResposneModel.js → DiscountResponseModel.js} +2 -2
  1073. package/serialization/types/DubbingResource.d.ts +2 -2
  1074. package/serialization/types/DubbingResource.js +2 -2
  1075. package/serialization/types/DubbingTranscriptUtterance.d.ts +2 -1
  1076. package/serialization/types/DubbingTranscriptUtterance.js +2 -1
  1077. package/serialization/types/DubbingTranscriptWord.d.ts +2 -2
  1078. package/serialization/types/DubbingTranscriptWord.js +2 -2
  1079. package/serialization/types/GetLiveCountResponse.d.ts +9 -0
  1080. package/serialization/types/GetLiveCountResponse.js +41 -0
  1081. package/serialization/types/InvoiceResponse.d.ts +2 -2
  1082. package/serialization/types/InvoiceResponse.js +2 -2
  1083. package/serialization/types/PatchWorkspaceWebhookResponseModel.d.ts +9 -0
  1084. package/serialization/types/PatchWorkspaceWebhookResponseModel.js +41 -0
  1085. package/serialization/types/PendingSubscriptionSwitchResponseModel.d.ts +2 -2
  1086. package/serialization/types/PendingSubscriptionSwitchResponseModel.js +2 -2
  1087. package/serialization/types/PodcastTextSource.d.ts +1 -0
  1088. package/serialization/types/PodcastTextSource.js +1 -0
  1089. package/serialization/types/PodcastUrlSource.d.ts +1 -0
  1090. package/serialization/types/PodcastUrlSource.js +1 -0
  1091. package/serialization/types/ProjectExtendedResponseModelSourceType.d.ts +1 -1
  1092. package/serialization/types/ProjectExtendedResponseModelSourceType.js +1 -1
  1093. package/serialization/types/ProjectResponseModelSourceType.d.ts +1 -1
  1094. package/serialization/types/ProjectResponseModelSourceType.js +1 -1
  1095. package/serialization/types/RagConfig.d.ts +1 -0
  1096. package/serialization/types/RagConfig.js +1 -0
  1097. package/serialization/types/RagConfigWorkflowOverride.d.ts +1 -0
  1098. package/serialization/types/RagConfigWorkflowOverride.js +1 -0
  1099. package/serialization/types/SegmentMigrationResponse.d.ts +9 -0
  1100. package/serialization/types/SegmentMigrationResponse.js +41 -0
  1101. package/serialization/types/SpeakerCreatedResponse.d.ts +10 -0
  1102. package/{dist/serialization/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.js → serialization/types/SpeakerCreatedResponse.js} +5 -2
  1103. package/serialization/types/Subscription.d.ts +4 -4
  1104. package/serialization/types/Subscription.js +4 -4
  1105. package/serialization/types/SubscriptionResponse.d.ts +4 -4
  1106. package/serialization/types/SubscriptionResponse.js +4 -4
  1107. package/serialization/types/SystemToolConfigInput.d.ts +1 -0
  1108. package/serialization/types/SystemToolConfigInput.js +1 -0
  1109. package/serialization/types/SystemToolConfigOutput.d.ts +1 -0
  1110. package/serialization/types/SystemToolConfigOutput.js +1 -0
  1111. package/serialization/types/TtsConversationalConfigInput.d.ts +0 -2
  1112. package/serialization/types/TtsConversationalConfigInput.js +0 -2
  1113. package/serialization/types/TtsConversationalConfigOutput.d.ts +0 -2
  1114. package/serialization/types/TtsConversationalConfigOutput.js +0 -2
  1115. package/serialization/types/TtsConversationalConfigWorkflowOverrideInput.d.ts +0 -2
  1116. package/serialization/types/TtsConversationalConfigWorkflowOverrideInput.js +0 -2
  1117. package/serialization/types/TtsConversationalConfigWorkflowOverrideOutput.d.ts +0 -2
  1118. package/serialization/types/TtsConversationalConfigWorkflowOverrideOutput.js +0 -2
  1119. package/serialization/types/WebhookHmacSettings.d.ts +11 -0
  1120. package/serialization/types/WebhookHmacSettings.js +43 -0
  1121. package/serialization/types/WebhookToolApiSchemaConfigInput.d.ts +1 -1
  1122. package/serialization/types/WebhookToolApiSchemaConfigInput.js +3 -3
  1123. package/serialization/types/WebhookToolApiSchemaConfigOutput.d.ts +1 -1
  1124. package/serialization/types/WebhookToolApiSchemaConfigOutput.js +3 -3
  1125. package/serialization/types/WhatsAppConversationInfo.d.ts +2 -0
  1126. package/serialization/types/WhatsAppConversationInfo.js +2 -0
  1127. package/serialization/types/WhatsAppConversationInfoDirection.d.ts +7 -0
  1128. package/serialization/types/WhatsAppConversationInfoDirection.js +39 -0
  1129. package/serialization/types/WidgetTextContents.d.ts +7 -0
  1130. package/serialization/types/WidgetTextContents.js +7 -0
  1131. package/serialization/types/WordTimestamp.d.ts +11 -0
  1132. package/serialization/types/WordTimestamp.js +43 -0
  1133. package/serialization/types/WorkflowToolNestedToolsStepModelInput.d.ts +2 -2
  1134. package/serialization/types/WorkflowToolNestedToolsStepModelInput.js +2 -2
  1135. package/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +2 -1
  1136. package/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.js +2 -0
  1137. package/serialization/types/WorkflowToolNestedToolsStepModelOutput.d.ts +2 -2
  1138. package/serialization/types/WorkflowToolNestedToolsStepModelOutput.js +2 -2
  1139. package/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +2 -1
  1140. package/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.js +2 -0
  1141. package/serialization/types/WorkspaceCreateWebhookResponseModel.d.ts +10 -0
  1142. package/serialization/types/WorkspaceCreateWebhookResponseModel.js +42 -0
  1143. package/serialization/types/index.d.ts +19 -8
  1144. package/serialization/types/index.js +19 -8
  1145. package/version.d.ts +1 -1
  1146. package/version.js +1 -1
  1147. package/wrapper/ElevenLabsClient.d.ts +1 -1
  1148. package/wrapper/music.d.ts +4 -4
  1149. package/wrapper/music.js +1 -1
  1150. package/wrapper/realtime/connection.d.ts +110 -6
  1151. package/wrapper/realtime/connection.js +74 -2
  1152. package/wrapper/realtime/index.d.ts +1 -1
  1153. package/wrapper/realtime/scribe.d.ts +2 -2
  1154. package/wrapper/speechToText.d.ts +1 -1
  1155. package/wrapper/speechToText.js +1 -1
  1156. package/wrapper/webhooks.d.ts +1 -1
  1157. package/wrapper/webhooks.js +1 -1
  1158. package/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +0 -13
  1159. package/api/types/ExtendedSubscriptionResponseModelBillingPeriod.d.ts +0 -5
  1160. package/api/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -5
  1161. package/api/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.d.ts +0 -6
  1162. package/api/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.js +0 -9
  1163. package/api/types/SubscriptionResponseModelBillingPeriod.d.ts +0 -5
  1164. package/api/types/SubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -5
  1165. package/core/fetcher/ResponseWithBody.d.ts +0 -4
  1166. package/core/fetcher/ResponseWithBody.js +0 -6
  1167. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +0 -13
  1168. package/dist/api/types/ExtendedSubscriptionResponseModelBillingPeriod.d.ts +0 -5
  1169. package/dist/api/types/ExtendedSubscriptionResponseModelBillingPeriod.js +0 -8
  1170. package/dist/api/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -5
  1171. package/dist/api/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.js +0 -8
  1172. package/dist/api/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.d.ts +0 -6
  1173. package/dist/api/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.js +0 -9
  1174. package/dist/api/types/SubscriptionResponseModelBillingPeriod.d.ts +0 -5
  1175. package/dist/api/types/SubscriptionResponseModelBillingPeriod.js +0 -8
  1176. package/dist/api/types/SubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -5
  1177. package/dist/api/types/SubscriptionResponseModelCharacterRefreshPeriod.js +0 -8
  1178. package/dist/core/fetcher/ResponseWithBody.d.ts +0 -4
  1179. package/dist/core/fetcher/ResponseWithBody.js +0 -6
  1180. package/dist/serialization/types/ExtendedSubscriptionResponseModelBillingPeriod.d.ts +0 -7
  1181. package/dist/serialization/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -7
  1182. package/dist/serialization/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.d.ts +0 -7
  1183. package/dist/serialization/types/SubscriptionResponseModelBillingPeriod.d.ts +0 -7
  1184. package/dist/serialization/types/SubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -7
  1185. package/dist/serialization/types/SubscriptionResponseModelCharacterRefreshPeriod.js +0 -39
  1186. package/serialization/types/ExtendedSubscriptionResponseModelBillingPeriod.d.ts +0 -7
  1187. package/serialization/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -7
  1188. package/serialization/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.js +0 -39
  1189. package/serialization/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.d.ts +0 -7
  1190. package/serialization/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.js +0 -39
  1191. package/serialization/types/SubscriptionResponseModelBillingPeriod.d.ts +0 -7
  1192. package/serialization/types/SubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -7
  1193. package/serialization/types/SubscriptionResponseModelCharacterRefreshPeriod.js +0 -39
  1194. /package/api/resources/{studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.js → conversationalAi/resources/analytics/resources/liveCount/client/requests/LiveCountGetRequest.js} +0 -0
  1195. /package/api/{types/ConversationHistoryTranscriptToolCallCommonModel.js → resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js} +0 -0
  1196. /package/api/{types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.js → resources/dubbing/resources/resource/client/requests/BodyMoveSegmentsBetweenSpeakersV1DubbingResourceDubbingIdMigrateSegmentsPost.js} +0 -0
  1197. /package/api/{types/DiscountResposneModel.js → resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.js} +0 -0
  1198. /package/{dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.js → api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.js} +0 -0
  1199. /package/{dist/api/types/ConversationHistoryTranscriptToolCallCommonModel.js → api/resources/webhooks/client/requests/BodyCreateWorkspaceWebhookV1WorkspaceWebhooksPost.js} +0 -0
  1200. /package/{dist/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.js → api/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.js} +0 -0
  1201. /package/{dist/api/types/DiscountResposneModel.js → api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js} +0 -0
package/reference.md CHANGED
@@ -117,7 +117,7 @@ await client.history.list({
117
117
  <dl>
118
118
  <dd>
119
119
 
120
- **requestOptions:** `History.RequestOptions`
120
+ **requestOptions:** `HistoryClient.RequestOptions`
121
121
 
122
122
  </dd>
123
123
  </dl>
@@ -180,7 +180,7 @@ await client.history.get("VW7YKqPnjY4h39yTbx2L");
180
180
  <dl>
181
181
  <dd>
182
182
 
183
- **requestOptions:** `History.RequestOptions`
183
+ **requestOptions:** `HistoryClient.RequestOptions`
184
184
 
185
185
  </dd>
186
186
  </dl>
@@ -243,7 +243,7 @@ await client.history.delete("VW7YKqPnjY4h39yTbx2L");
243
243
  <dl>
244
244
  <dd>
245
245
 
246
- **requestOptions:** `History.RequestOptions`
246
+ **requestOptions:** `HistoryClient.RequestOptions`
247
247
 
248
248
  </dd>
249
249
  </dl>
@@ -306,7 +306,7 @@ await client.history.getAudio("history_item_id");
306
306
  <dl>
307
307
  <dd>
308
308
 
309
- **requestOptions:** `History.RequestOptions`
309
+ **requestOptions:** `HistoryClient.RequestOptions`
310
310
 
311
311
  </dd>
312
312
  </dl>
@@ -371,7 +371,7 @@ await client.history.download({
371
371
  <dl>
372
372
  <dd>
373
373
 
374
- **requestOptions:** `History.RequestOptions`
374
+ **requestOptions:** `HistoryClient.RequestOptions`
375
375
 
376
376
  </dd>
377
377
  </dl>
@@ -437,7 +437,7 @@ await client.textToSoundEffects.convert({
437
437
  <dl>
438
438
  <dd>
439
439
 
440
- **requestOptions:** `TextToSoundEffects.RequestOptions`
440
+ **requestOptions:** `TextToSoundEffectsClient.RequestOptions`
441
441
 
442
442
  </dd>
443
443
  </dl>
@@ -510,7 +510,7 @@ await client.samples.delete("21m00Tcm4TlvDq8ikWAM", "VW7YKqPnjY4h39yTbx2L");
510
510
  <dl>
511
511
  <dd>
512
512
 
513
- **requestOptions:** `Samples.RequestOptions`
513
+ **requestOptions:** `SamplesClient.RequestOptions`
514
514
 
515
515
  </dd>
516
516
  </dl>
@@ -586,7 +586,7 @@ await client.textToSpeech.convert("JBFqnCBsd6RMkjVDRZzb", {
586
586
  <dl>
587
587
  <dd>
588
588
 
589
- **requestOptions:** `TextToSpeech.RequestOptions`
589
+ **requestOptions:** `TextToSpeechClient.RequestOptions`
590
590
 
591
591
  </dd>
592
592
  </dl>
@@ -662,7 +662,7 @@ await client.textToSpeech.convertWithTimestamps("21m00Tcm4TlvDq8ikWAM", {
662
662
  <dl>
663
663
  <dd>
664
664
 
665
- **requestOptions:** `TextToSpeech.RequestOptions`
665
+ **requestOptions:** `TextToSpeechClient.RequestOptions`
666
666
 
667
667
  </dd>
668
668
  </dl>
@@ -737,7 +737,7 @@ await client.textToSpeech.stream("JBFqnCBsd6RMkjVDRZzb", {
737
737
  <dl>
738
738
  <dd>
739
739
 
740
- **requestOptions:** `TextToSpeech.RequestOptions`
740
+ **requestOptions:** `TextToSpeechClient.RequestOptions`
741
741
 
742
742
  </dd>
743
743
  </dl>
@@ -815,7 +815,7 @@ for await (const item of response) {
815
815
  <dl>
816
816
  <dd>
817
817
 
818
- **requestOptions:** `TextToSpeech.RequestOptions`
818
+ **requestOptions:** `TextToSpeechClient.RequestOptions`
819
819
 
820
820
  </dd>
821
821
  </dl>
@@ -887,7 +887,7 @@ await client.textToDialogue.convert({
887
887
  <dl>
888
888
  <dd>
889
889
 
890
- **requestOptions:** `TextToDialogue.RequestOptions`
890
+ **requestOptions:** `TextToDialogueClient.RequestOptions`
891
891
 
892
892
  </dd>
893
893
  </dl>
@@ -958,7 +958,7 @@ await client.textToDialogue.stream({
958
958
  <dl>
959
959
  <dd>
960
960
 
961
- **requestOptions:** `TextToDialogue.RequestOptions`
961
+ **requestOptions:** `TextToDialogueClient.RequestOptions`
962
962
 
963
963
  </dd>
964
964
  </dl>
@@ -1033,7 +1033,7 @@ for await (const item of response) {
1033
1033
  <dl>
1034
1034
  <dd>
1035
1035
 
1036
- **requestOptions:** `TextToDialogue.RequestOptions`
1036
+ **requestOptions:** `TextToDialogueClient.RequestOptions`
1037
1037
 
1038
1038
  </dd>
1039
1039
  </dl>
@@ -1105,7 +1105,7 @@ await client.textToDialogue.convertWithTimestamps({
1105
1105
  <dl>
1106
1106
  <dd>
1107
1107
 
1108
- **requestOptions:** `TextToDialogue.RequestOptions`
1108
+ **requestOptions:** `TextToDialogueClient.RequestOptions`
1109
1109
 
1110
1110
  </dd>
1111
1111
  </dl>
@@ -1181,7 +1181,7 @@ await client.speechToSpeech.convert("JBFqnCBsd6RMkjVDRZzb", {
1181
1181
  <dl>
1182
1182
  <dd>
1183
1183
 
1184
- **requestOptions:** `SpeechToSpeech.RequestOptions`
1184
+ **requestOptions:** `SpeechToSpeechClient.RequestOptions`
1185
1185
 
1186
1186
  </dd>
1187
1187
  </dl>
@@ -1256,7 +1256,7 @@ await client.speechToSpeech.stream("JBFqnCBsd6RMkjVDRZzb", {
1256
1256
  <dl>
1257
1257
  <dd>
1258
1258
 
1259
- **requestOptions:** `SpeechToSpeech.RequestOptions`
1259
+ **requestOptions:** `SpeechToSpeechClient.RequestOptions`
1260
1260
 
1261
1261
  </dd>
1262
1262
  </dl>
@@ -1323,7 +1323,7 @@ await client.textToVoice.createPreviews({
1323
1323
  <dl>
1324
1324
  <dd>
1325
1325
 
1326
- **requestOptions:** `TextToVoice.RequestOptions`
1326
+ **requestOptions:** `TextToVoiceClient.RequestOptions`
1327
1327
 
1328
1328
  </dd>
1329
1329
  </dl>
@@ -1390,7 +1390,7 @@ await client.textToVoice.create({
1390
1390
  <dl>
1391
1391
  <dd>
1392
1392
 
1393
- **requestOptions:** `TextToVoice.RequestOptions`
1393
+ **requestOptions:** `TextToVoiceClient.RequestOptions`
1394
1394
 
1395
1395
  </dd>
1396
1396
  </dl>
@@ -1456,7 +1456,7 @@ await client.textToVoice.design({
1456
1456
  <dl>
1457
1457
  <dd>
1458
1458
 
1459
- **requestOptions:** `TextToVoice.RequestOptions`
1459
+ **requestOptions:** `TextToVoiceClient.RequestOptions`
1460
1460
 
1461
1461
  </dd>
1462
1462
  </dl>
@@ -1530,7 +1530,7 @@ await client.textToVoice.remix("21m00Tcm4TlvDq8ikWAM", {
1530
1530
  <dl>
1531
1531
  <dd>
1532
1532
 
1533
- **requestOptions:** `TextToVoice.RequestOptions`
1533
+ **requestOptions:** `TextToVoiceClient.RequestOptions`
1534
1534
 
1535
1535
  </dd>
1536
1536
  </dl>
@@ -1586,7 +1586,7 @@ await client.user.get();
1586
1586
  <dl>
1587
1587
  <dd>
1588
1588
 
1589
- **requestOptions:** `User.RequestOptions`
1589
+ **requestOptions:** `UserClient.RequestOptions`
1590
1590
 
1591
1591
  </dd>
1592
1592
  </dl>
@@ -1652,7 +1652,7 @@ await client.voices.getAll({
1652
1652
  <dl>
1653
1653
  <dd>
1654
1654
 
1655
- **requestOptions:** `Voices.RequestOptions`
1655
+ **requestOptions:** `VoicesClient.RequestOptions`
1656
1656
 
1657
1657
  </dd>
1658
1658
  </dl>
@@ -1726,7 +1726,7 @@ await client.voices.search({
1726
1726
  <dl>
1727
1727
  <dd>
1728
1728
 
1729
- **requestOptions:** `Voices.RequestOptions`
1729
+ **requestOptions:** `VoicesClient.RequestOptions`
1730
1730
 
1731
1731
  </dd>
1732
1732
  </dl>
@@ -1799,7 +1799,7 @@ await client.voices.get("21m00Tcm4TlvDq8ikWAM", {
1799
1799
  <dl>
1800
1800
  <dd>
1801
1801
 
1802
- **requestOptions:** `Voices.RequestOptions`
1802
+ **requestOptions:** `VoicesClient.RequestOptions`
1803
1803
 
1804
1804
  </dd>
1805
1805
  </dl>
@@ -1862,7 +1862,7 @@ await client.voices.delete("21m00Tcm4TlvDq8ikWAM");
1862
1862
  <dl>
1863
1863
  <dd>
1864
1864
 
1865
- **requestOptions:** `Voices.RequestOptions`
1865
+ **requestOptions:** `VoicesClient.RequestOptions`
1866
1866
 
1867
1867
  </dd>
1868
1868
  </dl>
@@ -1935,7 +1935,7 @@ await client.voices.update("21m00Tcm4TlvDq8ikWAM", {
1935
1935
  <dl>
1936
1936
  <dd>
1937
1937
 
1938
- **requestOptions:** `Voices.RequestOptions`
1938
+ **requestOptions:** `VoicesClient.RequestOptions`
1939
1939
 
1940
1940
  </dd>
1941
1941
  </dl>
@@ -2016,7 +2016,7 @@ await client.voices.share("63e06b7e7cafdc46be4d2e0b3f045940231ae058d508589653d74
2016
2016
  <dl>
2017
2017
  <dd>
2018
2018
 
2019
- **requestOptions:** `Voices.RequestOptions`
2019
+ **requestOptions:** `VoicesClient.RequestOptions`
2020
2020
 
2021
2021
  </dd>
2022
2022
  </dl>
@@ -2096,7 +2096,7 @@ await client.voices.getShared({
2096
2096
  <dl>
2097
2097
  <dd>
2098
2098
 
2099
- **requestOptions:** `Voices.RequestOptions`
2099
+ **requestOptions:** `VoicesClient.RequestOptions`
2100
2100
 
2101
2101
  </dd>
2102
2102
  </dl>
@@ -2159,7 +2159,7 @@ await client.voices.findSimilarVoices({});
2159
2159
  <dl>
2160
2160
  <dd>
2161
2161
 
2162
- **requestOptions:** `Voices.RequestOptions`
2162
+ **requestOptions:** `VoicesClient.RequestOptions`
2163
2163
 
2164
2164
  </dd>
2165
2165
  </dl>
@@ -2210,6 +2210,7 @@ await client.studio.createPodcast({
2210
2210
  }
2211
2211
  },
2212
2212
  source: {
2213
+ type: "text",
2213
2214
  text: "This is a test podcast."
2214
2215
  }
2215
2216
  });
@@ -2236,7 +2237,7 @@ await client.studio.createPodcast({
2236
2237
  <dl>
2237
2238
  <dd>
2238
2239
 
2239
- **requestOptions:** `Studio.RequestOptions`
2240
+ **requestOptions:** `StudioClient.RequestOptions`
2240
2241
 
2241
2242
  </dd>
2242
2243
  </dl>
@@ -2307,7 +2308,7 @@ await client.dubbing.list({
2307
2308
  <dl>
2308
2309
  <dd>
2309
2310
 
2310
- **requestOptions:** `Dubbing.RequestOptions`
2311
+ **requestOptions:** `DubbingClient.RequestOptions`
2311
2312
 
2312
2313
  </dd>
2313
2314
  </dl>
@@ -2370,7 +2371,7 @@ await client.dubbing.create({});
2370
2371
  <dl>
2371
2372
  <dd>
2372
2373
 
2373
- **requestOptions:** `Dubbing.RequestOptions`
2374
+ **requestOptions:** `DubbingClient.RequestOptions`
2374
2375
 
2375
2376
  </dd>
2376
2377
  </dl>
@@ -2433,7 +2434,7 @@ await client.dubbing.get("dubbing_id");
2433
2434
  <dl>
2434
2435
  <dd>
2435
2436
 
2436
- **requestOptions:** `Dubbing.RequestOptions`
2437
+ **requestOptions:** `DubbingClient.RequestOptions`
2437
2438
 
2438
2439
  </dd>
2439
2440
  </dl>
@@ -2496,7 +2497,7 @@ await client.dubbing.delete("dubbing_id");
2496
2497
  <dl>
2497
2498
  <dd>
2498
2499
 
2499
- **requestOptions:** `Dubbing.RequestOptions`
2500
+ **requestOptions:** `DubbingClient.RequestOptions`
2500
2501
 
2501
2502
  </dd>
2502
2503
  </dl>
@@ -2552,7 +2553,7 @@ await client.models.list();
2552
2553
  <dl>
2553
2554
  <dd>
2554
2555
 
2555
- **requestOptions:** `Models.RequestOptions`
2556
+ **requestOptions:** `ModelsClient.RequestOptions`
2556
2557
 
2557
2558
  </dd>
2558
2559
  </dl>
@@ -2618,7 +2619,7 @@ await client.audioNative.create({
2618
2619
  <dl>
2619
2620
  <dd>
2620
2621
 
2621
- **requestOptions:** `AudioNative.RequestOptions`
2622
+ **requestOptions:** `AudioNativeClient.RequestOptions`
2622
2623
 
2623
2624
  </dd>
2624
2625
  </dl>
@@ -2681,7 +2682,7 @@ await client.audioNative.getSettings("21m00Tcm4TlvDq8ikWAM");
2681
2682
  <dl>
2682
2683
  <dd>
2683
2684
 
2684
- **requestOptions:** `AudioNative.RequestOptions`
2685
+ **requestOptions:** `AudioNativeClient.RequestOptions`
2685
2686
 
2686
2687
  </dd>
2687
2688
  </dl>
@@ -2752,7 +2753,7 @@ await client.audioNative.update("21m00Tcm4TlvDq8ikWAM", {});
2752
2753
  <dl>
2753
2754
  <dd>
2754
2755
 
2755
- **requestOptions:** `AudioNative.RequestOptions`
2756
+ **requestOptions:** `AudioNativeClient.RequestOptions`
2756
2757
 
2757
2758
  </dd>
2758
2759
  </dl>
@@ -2824,7 +2825,7 @@ await client.usage.get({
2824
2825
  <dl>
2825
2826
  <dd>
2826
2827
 
2827
- **requestOptions:** `Usage.RequestOptions`
2828
+ **requestOptions:** `UsageClient.RequestOptions`
2828
2829
 
2829
2830
  </dd>
2830
2831
  </dl>
@@ -2890,7 +2891,7 @@ await client.pronunciationDictionaries.createFromFile({
2890
2891
  <dl>
2891
2892
  <dd>
2892
2893
 
2893
- **requestOptions:** `PronunciationDictionaries.RequestOptions`
2894
+ **requestOptions:** `PronunciationDictionariesClient.RequestOptions`
2894
2895
 
2895
2896
  </dd>
2896
2897
  </dl>
@@ -2960,7 +2961,7 @@ await client.pronunciationDictionaries.createFromRules({
2960
2961
  <dl>
2961
2962
  <dd>
2962
2963
 
2963
- **requestOptions:** `PronunciationDictionaries.RequestOptions`
2964
+ **requestOptions:** `PronunciationDictionariesClient.RequestOptions`
2964
2965
 
2965
2966
  </dd>
2966
2967
  </dl>
@@ -3023,7 +3024,7 @@ await client.pronunciationDictionaries.get("21m00Tcm4TlvDq8ikWAM");
3023
3024
  <dl>
3024
3025
  <dd>
3025
3026
 
3026
- **requestOptions:** `PronunciationDictionaries.RequestOptions`
3027
+ **requestOptions:** `PronunciationDictionariesClient.RequestOptions`
3027
3028
 
3028
3029
  </dd>
3029
3030
  </dl>
@@ -3094,7 +3095,7 @@ await client.pronunciationDictionaries.update("21m00Tcm4TlvDq8ikWAM");
3094
3095
  <dl>
3095
3096
  <dd>
3096
3097
 
3097
- **requestOptions:** `PronunciationDictionaries.RequestOptions`
3098
+ **requestOptions:** `PronunciationDictionariesClient.RequestOptions`
3098
3099
 
3099
3100
  </dd>
3100
3101
  </dl>
@@ -3165,7 +3166,7 @@ await client.pronunciationDictionaries.download("dictionary_id", "version_id");
3165
3166
  <dl>
3166
3167
  <dd>
3167
3168
 
3168
- **requestOptions:** `PronunciationDictionaries.RequestOptions`
3169
+ **requestOptions:** `PronunciationDictionariesClient.RequestOptions`
3169
3170
 
3170
3171
  </dd>
3171
3172
  </dl>
@@ -3233,7 +3234,7 @@ await client.pronunciationDictionaries.list({
3233
3234
  <dl>
3234
3235
  <dd>
3235
3236
 
3236
- **requestOptions:** `PronunciationDictionaries.RequestOptions`
3237
+ **requestOptions:** `PronunciationDictionariesClient.RequestOptions`
3237
3238
 
3238
3239
  </dd>
3239
3240
  </dl>
@@ -3289,7 +3290,7 @@ await client.serviceAccounts.list();
3289
3290
  <dl>
3290
3291
  <dd>
3291
3292
 
3292
- **requestOptions:** `ServiceAccounts.RequestOptions`
3293
+ **requestOptions:** `ServiceAccountsClient.RequestOptions`
3293
3294
 
3294
3295
  </dd>
3295
3296
  </dl>
@@ -3355,7 +3356,213 @@ await client.webhooks.list({
3355
3356
  <dl>
3356
3357
  <dd>
3357
3358
 
3358
- **requestOptions:** `Webhooks.RequestOptions`
3359
+ **requestOptions:** `WebhooksClient.RequestOptions`
3360
+
3361
+ </dd>
3362
+ </dl>
3363
+ </dd>
3364
+ </dl>
3365
+
3366
+
3367
+ </dd>
3368
+ </dl>
3369
+ </details>
3370
+
3371
+ <details><summary><code>client.webhooks.<a href="/src/api/resources/webhooks/client/Client.ts">create</a>({ ...params }) -> ElevenLabs.WorkspaceCreateWebhookResponseModel</code></summary>
3372
+ <dl>
3373
+ <dd>
3374
+
3375
+ #### 📝 Description
3376
+
3377
+ <dl>
3378
+ <dd>
3379
+
3380
+ <dl>
3381
+ <dd>
3382
+
3383
+ Create a new webhook for the workspace with the specified authentication type.
3384
+ </dd>
3385
+ </dl>
3386
+ </dd>
3387
+ </dl>
3388
+
3389
+ #### 🔌 Usage
3390
+
3391
+ <dl>
3392
+ <dd>
3393
+
3394
+ <dl>
3395
+ <dd>
3396
+
3397
+ ```typescript
3398
+ await client.webhooks.create({
3399
+ settings: {
3400
+ authType: "hmac",
3401
+ name: "name",
3402
+ webhookUrl: "webhook_url"
3403
+ }
3404
+ });
3405
+
3406
+ ```
3407
+ </dd>
3408
+ </dl>
3409
+ </dd>
3410
+ </dl>
3411
+
3412
+ #### ⚙️ Parameters
3413
+
3414
+ <dl>
3415
+ <dd>
3416
+
3417
+ <dl>
3418
+ <dd>
3419
+
3420
+ **request:** `ElevenLabs.BodyCreateWorkspaceWebhookV1WorkspaceWebhooksPost`
3421
+
3422
+ </dd>
3423
+ </dl>
3424
+
3425
+ <dl>
3426
+ <dd>
3427
+
3428
+ **requestOptions:** `WebhooksClient.RequestOptions`
3429
+
3430
+ </dd>
3431
+ </dl>
3432
+ </dd>
3433
+ </dl>
3434
+
3435
+
3436
+ </dd>
3437
+ </dl>
3438
+ </details>
3439
+
3440
+ <details><summary><code>client.webhooks.<a href="/src/api/resources/webhooks/client/Client.ts">delete</a>(webhook_id) -> ElevenLabs.DeleteWorkspaceWebhookResponseModel</code></summary>
3441
+ <dl>
3442
+ <dd>
3443
+
3444
+ #### 📝 Description
3445
+
3446
+ <dl>
3447
+ <dd>
3448
+
3449
+ <dl>
3450
+ <dd>
3451
+
3452
+ Delete the specified workspace webhook
3453
+ </dd>
3454
+ </dl>
3455
+ </dd>
3456
+ </dl>
3457
+
3458
+ #### 🔌 Usage
3459
+
3460
+ <dl>
3461
+ <dd>
3462
+
3463
+ <dl>
3464
+ <dd>
3465
+
3466
+ ```typescript
3467
+ await client.webhooks.delete("G007vmtq9uWYl7SUW9zGS8GZZa1K");
3468
+
3469
+ ```
3470
+ </dd>
3471
+ </dl>
3472
+ </dd>
3473
+ </dl>
3474
+
3475
+ #### ⚙️ Parameters
3476
+
3477
+ <dl>
3478
+ <dd>
3479
+
3480
+ <dl>
3481
+ <dd>
3482
+
3483
+ **webhook_id:** `string` — The unique ID for the webhook
3484
+
3485
+ </dd>
3486
+ </dl>
3487
+
3488
+ <dl>
3489
+ <dd>
3490
+
3491
+ **requestOptions:** `WebhooksClient.RequestOptions`
3492
+
3493
+ </dd>
3494
+ </dl>
3495
+ </dd>
3496
+ </dl>
3497
+
3498
+
3499
+ </dd>
3500
+ </dl>
3501
+ </details>
3502
+
3503
+ <details><summary><code>client.webhooks.<a href="/src/api/resources/webhooks/client/Client.ts">update</a>(webhook_id, { ...params }) -> ElevenLabs.PatchWorkspaceWebhookResponseModel</code></summary>
3504
+ <dl>
3505
+ <dd>
3506
+
3507
+ #### 📝 Description
3508
+
3509
+ <dl>
3510
+ <dd>
3511
+
3512
+ <dl>
3513
+ <dd>
3514
+
3515
+ Update the specified workspace webhook
3516
+ </dd>
3517
+ </dl>
3518
+ </dd>
3519
+ </dl>
3520
+
3521
+ #### 🔌 Usage
3522
+
3523
+ <dl>
3524
+ <dd>
3525
+
3526
+ <dl>
3527
+ <dd>
3528
+
3529
+ ```typescript
3530
+ await client.webhooks.update("G007vmtq9uWYl7SUW9zGS8GZZa1K", {
3531
+ isDisabled: true,
3532
+ name: "My Callback Webhook"
3533
+ });
3534
+
3535
+ ```
3536
+ </dd>
3537
+ </dl>
3538
+ </dd>
3539
+ </dl>
3540
+
3541
+ #### ⚙️ Parameters
3542
+
3543
+ <dl>
3544
+ <dd>
3545
+
3546
+ <dl>
3547
+ <dd>
3548
+
3549
+ **webhook_id:** `string` — The unique ID for the webhook
3550
+
3551
+ </dd>
3552
+ </dl>
3553
+
3554
+ <dl>
3555
+ <dd>
3556
+
3557
+ **request:** `ElevenLabs.BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch`
3558
+
3559
+ </dd>
3560
+ </dl>
3561
+
3562
+ <dl>
3563
+ <dd>
3564
+
3565
+ **requestOptions:** `WebhooksClient.RequestOptions`
3359
3566
 
3360
3567
  </dd>
3361
3568
  </dl>
@@ -3422,7 +3629,7 @@ await client.speechToText.convert({
3422
3629
  <dl>
3423
3630
  <dd>
3424
3631
 
3425
- **requestOptions:** `SpeechToText.RequestOptions`
3632
+ **requestOptions:** `SpeechToTextClient.RequestOptions`
3426
3633
 
3427
3634
  </dd>
3428
3635
  </dl>
@@ -3489,7 +3696,7 @@ await client.forcedAlignment.create({
3489
3696
  <dl>
3490
3697
  <dd>
3491
3698
 
3492
- **requestOptions:** `ForcedAlignment.RequestOptions`
3699
+ **requestOptions:** `ForcedAlignmentClient.RequestOptions`
3493
3700
 
3494
3701
  </dd>
3495
3702
  </dl>
@@ -3555,7 +3762,7 @@ await client.conversationalAi.addToKnowledgeBase({
3555
3762
  <dl>
3556
3763
  <dd>
3557
3764
 
3558
- **requestOptions:** `ConversationalAi.RequestOptions`
3765
+ **requestOptions:** `ConversationalAiClient.RequestOptions`
3559
3766
 
3560
3767
  </dd>
3561
3768
  </dl>
@@ -3618,7 +3825,7 @@ await client.conversationalAi.getDocumentRagIndexes("21m00Tcm4TlvDq8ikWAM");
3618
3825
  <dl>
3619
3826
  <dd>
3620
3827
 
3621
- **requestOptions:** `ConversationalAi.RequestOptions`
3828
+ **requestOptions:** `ConversationalAiClient.RequestOptions`
3622
3829
 
3623
3830
  </dd>
3624
3831
  </dl>
@@ -3689,7 +3896,7 @@ await client.conversationalAi.deleteDocumentRagIndex("21m00Tcm4TlvDq8ikWAM", "21
3689
3896
  <dl>
3690
3897
  <dd>
3691
3898
 
3692
- **requestOptions:** `ConversationalAi.RequestOptions`
3899
+ **requestOptions:** `ConversationalAiClient.RequestOptions`
3693
3900
 
3694
3901
  </dd>
3695
3902
  </dl>
@@ -3744,7 +3951,7 @@ await client.conversationalAi.ragIndexOverview();
3744
3951
  <dl>
3745
3952
  <dd>
3746
3953
 
3747
- **requestOptions:** `ConversationalAi.RequestOptions`
3954
+ **requestOptions:** `ConversationalAiClient.RequestOptions`
3748
3955
 
3749
3956
  </dd>
3750
3957
  </dl>
@@ -3808,7 +4015,7 @@ await client.music.compose();
3808
4015
  <dl>
3809
4016
  <dd>
3810
4017
 
3811
- **requestOptions:** `Music.RequestOptions`
4018
+ **requestOptions:** `MusicClient.RequestOptions`
3812
4019
 
3813
4020
  </dd>
3814
4021
  </dl>
@@ -3871,7 +4078,7 @@ await client.music.composeDetailed();
3871
4078
  <dl>
3872
4079
  <dd>
3873
4080
 
3874
- **requestOptions:** `Music.RequestOptions`
4081
+ **requestOptions:** `MusicClient.RequestOptions`
3875
4082
 
3876
4083
  </dd>
3877
4084
  </dl>
@@ -3934,7 +4141,7 @@ await client.music.stream();
3934
4141
  <dl>
3935
4142
  <dd>
3936
4143
 
3937
- **requestOptions:** `Music.RequestOptions`
4144
+ **requestOptions:** `MusicClient.RequestOptions`
3938
4145
 
3939
4146
  </dd>
3940
4147
  </dl>
@@ -4001,7 +4208,7 @@ await client.conversationalAi.conversations.getSignedUrl({
4001
4208
  <dl>
4002
4209
  <dd>
4003
4210
 
4004
- **requestOptions:** `Conversations.RequestOptions`
4211
+ **requestOptions:** `ConversationsClient.RequestOptions`
4005
4212
 
4006
4213
  </dd>
4007
4214
  </dl>
@@ -4067,7 +4274,7 @@ await client.conversationalAi.conversations.getWebrtcToken({
4067
4274
  <dl>
4068
4275
  <dd>
4069
4276
 
4070
- **requestOptions:** `Conversations.RequestOptions`
4277
+ **requestOptions:** `ConversationsClient.RequestOptions`
4071
4278
 
4072
4279
  </dd>
4073
4280
  </dl>
@@ -4114,6 +4321,9 @@ await client.conversationalAi.conversations.list({
4114
4321
  callStartAfterUnix: 1,
4115
4322
  callDurationMinSecs: 1,
4116
4323
  callDurationMaxSecs: 1,
4324
+ ratingMax: 1,
4325
+ ratingMin: 1,
4326
+ hasFeedbackComment: true,
4117
4327
  userId: "user_id",
4118
4328
  pageSize: 1,
4119
4329
  summaryMode: "exclude",
@@ -4142,7 +4352,7 @@ await client.conversationalAi.conversations.list({
4142
4352
  <dl>
4143
4353
  <dd>
4144
4354
 
4145
- **requestOptions:** `Conversations.RequestOptions`
4355
+ **requestOptions:** `ConversationsClient.RequestOptions`
4146
4356
 
4147
4357
  </dd>
4148
4358
  </dl>
@@ -4205,7 +4415,7 @@ await client.conversationalAi.conversations.get("123");
4205
4415
  <dl>
4206
4416
  <dd>
4207
4417
 
4208
- **requestOptions:** `Conversations.RequestOptions`
4418
+ **requestOptions:** `ConversationsClient.RequestOptions`
4209
4419
 
4210
4420
  </dd>
4211
4421
  </dl>
@@ -4268,7 +4478,7 @@ await client.conversationalAi.conversations.delete("21m00Tcm4TlvDq8ikWAM");
4268
4478
  <dl>
4269
4479
  <dd>
4270
4480
 
4271
- **requestOptions:** `Conversations.RequestOptions`
4481
+ **requestOptions:** `ConversationsClient.RequestOptions`
4272
4482
 
4273
4483
  </dd>
4274
4484
  </dl>
@@ -4336,7 +4546,74 @@ await client.conversationalAi.twilio.outboundCall({
4336
4546
  <dl>
4337
4547
  <dd>
4338
4548
 
4339
- **requestOptions:** `Twilio.RequestOptions`
4549
+ **requestOptions:** `TwilioClient.RequestOptions`
4550
+
4551
+ </dd>
4552
+ </dl>
4553
+ </dd>
4554
+ </dl>
4555
+
4556
+
4557
+ </dd>
4558
+ </dl>
4559
+ </details>
4560
+
4561
+ <details><summary><code>client.conversationalAi.twilio.<a href="/src/api/resources/conversationalAi/resources/twilio/client/Client.ts">registerCall</a>({ ...params }) -> void</code></summary>
4562
+ <dl>
4563
+ <dd>
4564
+
4565
+ #### 📝 Description
4566
+
4567
+ <dl>
4568
+ <dd>
4569
+
4570
+ <dl>
4571
+ <dd>
4572
+
4573
+ Register a Twilio call and return TwiML to connect the call
4574
+ </dd>
4575
+ </dl>
4576
+ </dd>
4577
+ </dl>
4578
+
4579
+ #### 🔌 Usage
4580
+
4581
+ <dl>
4582
+ <dd>
4583
+
4584
+ <dl>
4585
+ <dd>
4586
+
4587
+ ```typescript
4588
+ await client.conversationalAi.twilio.registerCall({
4589
+ agentId: "agent_id",
4590
+ fromNumber: "from_number",
4591
+ toNumber: "to_number"
4592
+ });
4593
+
4594
+ ```
4595
+ </dd>
4596
+ </dl>
4597
+ </dd>
4598
+ </dl>
4599
+
4600
+ #### ⚙️ Parameters
4601
+
4602
+ <dl>
4603
+ <dd>
4604
+
4605
+ <dl>
4606
+ <dd>
4607
+
4608
+ **request:** `ElevenLabs.conversationalAi.BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost`
4609
+
4610
+ </dd>
4611
+ </dl>
4612
+
4613
+ <dl>
4614
+ <dd>
4615
+
4616
+ **requestOptions:** `TwilioClient.RequestOptions`
4340
4617
 
4341
4618
  </dd>
4342
4619
  </dl>
@@ -4402,7 +4679,7 @@ await client.conversationalAi.agents.create({
4402
4679
  <dl>
4403
4680
  <dd>
4404
4681
 
4405
- **requestOptions:** `Agents.RequestOptions`
4682
+ **requestOptions:** `AgentsClient.RequestOptions`
4406
4683
 
4407
4684
  </dd>
4408
4685
  </dl>
@@ -4465,7 +4742,7 @@ await client.conversationalAi.agents.get("agent_3701k3ttaq12ewp8b7qv5rfyszkz");
4465
4742
  <dl>
4466
4743
  <dd>
4467
4744
 
4468
- **requestOptions:** `Agents.RequestOptions`
4745
+ **requestOptions:** `AgentsClient.RequestOptions`
4469
4746
 
4470
4747
  </dd>
4471
4748
  </dl>
@@ -4528,7 +4805,7 @@ await client.conversationalAi.agents.delete("agent_3701k3ttaq12ewp8b7qv5rfyszkz"
4528
4805
  <dl>
4529
4806
  <dd>
4530
4807
 
4531
- **requestOptions:** `Agents.RequestOptions`
4808
+ **requestOptions:** `AgentsClient.RequestOptions`
4532
4809
 
4533
4810
  </dd>
4534
4811
  </dl>
@@ -4599,7 +4876,7 @@ await client.conversationalAi.agents.update("agent_3701k3ttaq12ewp8b7qv5rfyszkz"
4599
4876
  <dl>
4600
4877
  <dd>
4601
4878
 
4602
- **requestOptions:** `Agents.RequestOptions`
4879
+ **requestOptions:** `AgentsClient.RequestOptions`
4603
4880
 
4604
4881
  </dd>
4605
4882
  </dl>
@@ -4669,7 +4946,7 @@ await client.conversationalAi.agents.list({
4669
4946
  <dl>
4670
4947
  <dd>
4671
4948
 
4672
- **requestOptions:** `Agents.RequestOptions`
4949
+ **requestOptions:** `AgentsClient.RequestOptions`
4673
4950
 
4674
4951
  </dd>
4675
4952
  </dl>
@@ -4740,7 +5017,7 @@ await client.conversationalAi.agents.duplicate("agent_3701k3ttaq12ewp8b7qv5rfysz
4740
5017
  <dl>
4741
5018
  <dd>
4742
5019
 
4743
- **requestOptions:** `Agents.RequestOptions`
5020
+ **requestOptions:** `AgentsClient.RequestOptions`
4744
5021
 
4745
5022
  </dd>
4746
5023
  </dl>
@@ -4819,7 +5096,7 @@ await client.conversationalAi.agents.simulateConversation("agent_3701k3ttaq12ewp
4819
5096
  <dl>
4820
5097
  <dd>
4821
5098
 
4822
- **requestOptions:** `Agents.RequestOptions`
5099
+ **requestOptions:** `AgentsClient.RequestOptions`
4823
5100
 
4824
5101
  </dd>
4825
5102
  </dl>
@@ -4898,7 +5175,7 @@ await client.conversationalAi.agents.simulateConversationStream("agent_3701k3tta
4898
5175
  <dl>
4899
5176
  <dd>
4900
5177
 
4901
- **requestOptions:** `Agents.RequestOptions`
5178
+ **requestOptions:** `AgentsClient.RequestOptions`
4902
5179
 
4903
5180
  </dd>
4904
5181
  </dl>
@@ -4973,7 +5250,7 @@ await client.conversationalAi.agents.runTests("agent_3701k3ttaq12ewp8b7qv5rfyszk
4973
5250
  <dl>
4974
5251
  <dd>
4975
5252
 
4976
- **requestOptions:** `Agents.RequestOptions`
5253
+ **requestOptions:** `AgentsClient.RequestOptions`
4977
5254
 
4978
5255
  </dd>
4979
5256
  </dl>
@@ -5052,7 +5329,7 @@ await client.conversationalAi.tests.create({
5052
5329
  <dl>
5053
5330
  <dd>
5054
5331
 
5055
- **requestOptions:** `Tests.RequestOptions`
5332
+ **requestOptions:** `TestsClient.RequestOptions`
5056
5333
 
5057
5334
  </dd>
5058
5335
  </dl>
@@ -5115,7 +5392,7 @@ await client.conversationalAi.tests.get("TeaqRRdTcIfIu2i7BYfT");
5115
5392
  <dl>
5116
5393
  <dd>
5117
5394
 
5118
- **requestOptions:** `Tests.RequestOptions`
5395
+ **requestOptions:** `TestsClient.RequestOptions`
5119
5396
 
5120
5397
  </dd>
5121
5398
  </dl>
@@ -5201,7 +5478,7 @@ await client.conversationalAi.tests.update("TeaqRRdTcIfIu2i7BYfT", {
5201
5478
  <dl>
5202
5479
  <dd>
5203
5480
 
5204
- **requestOptions:** `Tests.RequestOptions`
5481
+ **requestOptions:** `TestsClient.RequestOptions`
5205
5482
 
5206
5483
  </dd>
5207
5484
  </dl>
@@ -5264,7 +5541,7 @@ await client.conversationalAi.tests.delete("TeaqRRdTcIfIu2i7BYfT");
5264
5541
  <dl>
5265
5542
  <dd>
5266
5543
 
5267
- **requestOptions:** `Tests.RequestOptions`
5544
+ **requestOptions:** `TestsClient.RequestOptions`
5268
5545
 
5269
5546
  </dd>
5270
5547
  </dl>
@@ -5329,7 +5606,7 @@ await client.conversationalAi.tests.summaries({
5329
5606
  <dl>
5330
5607
  <dd>
5331
5608
 
5332
- **requestOptions:** `Tests.RequestOptions`
5609
+ **requestOptions:** `TestsClient.RequestOptions`
5333
5610
 
5334
5611
  </dd>
5335
5612
  </dl>
@@ -5396,7 +5673,7 @@ await client.conversationalAi.tests.list({
5396
5673
  <dl>
5397
5674
  <dd>
5398
5675
 
5399
- **requestOptions:** `Tests.RequestOptions`
5676
+ **requestOptions:** `TestsClient.RequestOptions`
5400
5677
 
5401
5678
  </dd>
5402
5679
  </dl>
@@ -5452,7 +5729,7 @@ await client.conversationalAi.phoneNumbers.list();
5452
5729
  <dl>
5453
5730
  <dd>
5454
5731
 
5455
- **requestOptions:** `PhoneNumbers.RequestOptions`
5732
+ **requestOptions:** `PhoneNumbersClient.RequestOptions`
5456
5733
 
5457
5734
  </dd>
5458
5735
  </dl>
@@ -5521,7 +5798,7 @@ await client.conversationalAi.phoneNumbers.create({
5521
5798
  <dl>
5522
5799
  <dd>
5523
5800
 
5524
- **requestOptions:** `PhoneNumbers.RequestOptions`
5801
+ **requestOptions:** `PhoneNumbersClient.RequestOptions`
5525
5802
 
5526
5803
  </dd>
5527
5804
  </dl>
@@ -5584,7 +5861,7 @@ await client.conversationalAi.phoneNumbers.get("TeaqRRdTcIfIu2i7BYfT");
5584
5861
  <dl>
5585
5862
  <dd>
5586
5863
 
5587
- **requestOptions:** `PhoneNumbers.RequestOptions`
5864
+ **requestOptions:** `PhoneNumbersClient.RequestOptions`
5588
5865
 
5589
5866
  </dd>
5590
5867
  </dl>
@@ -5647,7 +5924,7 @@ await client.conversationalAi.phoneNumbers.delete("TeaqRRdTcIfIu2i7BYfT");
5647
5924
  <dl>
5648
5925
  <dd>
5649
5926
 
5650
- **requestOptions:** `PhoneNumbers.RequestOptions`
5927
+ **requestOptions:** `PhoneNumbersClient.RequestOptions`
5651
5928
 
5652
5929
  </dd>
5653
5930
  </dl>
@@ -5718,7 +5995,7 @@ await client.conversationalAi.phoneNumbers.update("TeaqRRdTcIfIu2i7BYfT");
5718
5995
  <dl>
5719
5996
  <dd>
5720
5997
 
5721
- **requestOptions:** `PhoneNumbers.RequestOptions`
5998
+ **requestOptions:** `PhoneNumbersClient.RequestOptions`
5722
5999
 
5723
6000
  </dd>
5724
6001
  </dl>
@@ -5786,7 +6063,7 @@ await client.conversationalAi.llmUsage.calculate({
5786
6063
  <dl>
5787
6064
  <dd>
5788
6065
 
5789
- **requestOptions:** `LlmUsage.RequestOptions`
6066
+ **requestOptions:** `LlmUsageClient.RequestOptions`
5790
6067
 
5791
6068
  </dd>
5792
6069
  </dl>
@@ -5858,7 +6135,7 @@ await client.conversationalAi.knowledgeBase.list({
5858
6135
  <dl>
5859
6136
  <dd>
5860
6137
 
5861
- **requestOptions:** `KnowledgeBase.RequestOptions`
6138
+ **requestOptions:** `KnowledgeBaseClient.RequestOptions`
5862
6139
 
5863
6140
  </dd>
5864
6141
  </dl>
@@ -5914,7 +6191,7 @@ await client.conversationalAi.tools.list();
5914
6191
  <dl>
5915
6192
  <dd>
5916
6193
 
5917
- **requestOptions:** `Tools.RequestOptions`
6194
+ **requestOptions:** `ToolsClient.RequestOptions`
5918
6195
 
5919
6196
  </dd>
5920
6197
  </dl>
@@ -5984,7 +6261,7 @@ await client.conversationalAi.tools.create({
5984
6261
  <dl>
5985
6262
  <dd>
5986
6263
 
5987
- **requestOptions:** `Tools.RequestOptions`
6264
+ **requestOptions:** `ToolsClient.RequestOptions`
5988
6265
 
5989
6266
  </dd>
5990
6267
  </dl>
@@ -6047,7 +6324,7 @@ await client.conversationalAi.tools.get("tool_id");
6047
6324
  <dl>
6048
6325
  <dd>
6049
6326
 
6050
- **requestOptions:** `Tools.RequestOptions`
6327
+ **requestOptions:** `ToolsClient.RequestOptions`
6051
6328
 
6052
6329
  </dd>
6053
6330
  </dl>
@@ -6110,7 +6387,7 @@ await client.conversationalAi.tools.delete("tool_id");
6110
6387
  <dl>
6111
6388
  <dd>
6112
6389
 
6113
- **requestOptions:** `Tools.RequestOptions`
6390
+ **requestOptions:** `ToolsClient.RequestOptions`
6114
6391
 
6115
6392
  </dd>
6116
6393
  </dl>
@@ -6188,7 +6465,7 @@ await client.conversationalAi.tools.update("tool_id", {
6188
6465
  <dl>
6189
6466
  <dd>
6190
6467
 
6191
- **requestOptions:** `Tools.RequestOptions`
6468
+ **requestOptions:** `ToolsClient.RequestOptions`
6192
6469
 
6193
6470
  </dd>
6194
6471
  </dl>
@@ -6262,7 +6539,7 @@ await client.conversationalAi.tools.getDependentAgents("tool_id", {
6262
6539
  <dl>
6263
6540
  <dd>
6264
6541
 
6265
- **requestOptions:** `Tools.RequestOptions`
6542
+ **requestOptions:** `ToolsClient.RequestOptions`
6266
6543
 
6267
6544
  </dd>
6268
6545
  </dl>
@@ -6318,7 +6595,7 @@ await client.conversationalAi.settings.get();
6318
6595
  <dl>
6319
6596
  <dd>
6320
6597
 
6321
- **requestOptions:** `Settings.RequestOptions`
6598
+ **requestOptions:** `SettingsClient.RequestOptions`
6322
6599
 
6323
6600
  </dd>
6324
6601
  </dl>
@@ -6381,7 +6658,7 @@ await client.conversationalAi.settings.update();
6381
6658
  <dl>
6382
6659
  <dd>
6383
6660
 
6384
- **requestOptions:** `Settings.RequestOptions`
6661
+ **requestOptions:** `SettingsClient.RequestOptions`
6385
6662
 
6386
6663
  </dd>
6387
6664
  </dl>
@@ -6437,7 +6714,7 @@ await client.conversationalAi.secrets.list();
6437
6714
  <dl>
6438
6715
  <dd>
6439
6716
 
6440
- **requestOptions:** `Secrets.RequestOptions`
6717
+ **requestOptions:** `SecretsClient.RequestOptions`
6441
6718
 
6442
6719
  </dd>
6443
6720
  </dl>
@@ -6503,7 +6780,7 @@ await client.conversationalAi.secrets.create({
6503
6780
  <dl>
6504
6781
  <dd>
6505
6782
 
6506
- **requestOptions:** `Secrets.RequestOptions`
6783
+ **requestOptions:** `SecretsClient.RequestOptions`
6507
6784
 
6508
6785
  </dd>
6509
6786
  </dl>
@@ -6566,7 +6843,7 @@ await client.conversationalAi.secrets.delete("secret_id");
6566
6843
  <dl>
6567
6844
  <dd>
6568
6845
 
6569
- **requestOptions:** `Secrets.RequestOptions`
6846
+ **requestOptions:** `SecretsClient.RequestOptions`
6570
6847
 
6571
6848
  </dd>
6572
6849
  </dl>
@@ -6640,7 +6917,7 @@ await client.conversationalAi.secrets.update("secret_id", {
6640
6917
  <dl>
6641
6918
  <dd>
6642
6919
 
6643
- **requestOptions:** `Secrets.RequestOptions`
6920
+ **requestOptions:** `SecretsClient.RequestOptions`
6644
6921
 
6645
6922
  </dd>
6646
6923
  </dl>
@@ -6708,7 +6985,7 @@ await client.conversationalAi.batchCalls.create({
6708
6985
  <dl>
6709
6986
  <dd>
6710
6987
 
6711
- **requestOptions:** `BatchCalls.RequestOptions`
6988
+ **requestOptions:** `BatchCallsClient.RequestOptions`
6712
6989
 
6713
6990
  </dd>
6714
6991
  </dl>
@@ -6774,7 +7051,7 @@ await client.conversationalAi.batchCalls.list({
6774
7051
  <dl>
6775
7052
  <dd>
6776
7053
 
6777
- **requestOptions:** `BatchCalls.RequestOptions`
7054
+ **requestOptions:** `BatchCallsClient.RequestOptions`
6778
7055
 
6779
7056
  </dd>
6780
7057
  </dl>
@@ -6837,7 +7114,7 @@ await client.conversationalAi.batchCalls.get("batch_id");
6837
7114
  <dl>
6838
7115
  <dd>
6839
7116
 
6840
- **requestOptions:** `BatchCalls.RequestOptions`
7117
+ **requestOptions:** `BatchCallsClient.RequestOptions`
6841
7118
 
6842
7119
  </dd>
6843
7120
  </dl>
@@ -6900,7 +7177,7 @@ await client.conversationalAi.batchCalls.cancel("batch_id");
6900
7177
  <dl>
6901
7178
  <dd>
6902
7179
 
6903
- **requestOptions:** `BatchCalls.RequestOptions`
7180
+ **requestOptions:** `BatchCallsClient.RequestOptions`
6904
7181
 
6905
7182
  </dd>
6906
7183
  </dl>
@@ -6963,7 +7240,7 @@ await client.conversationalAi.batchCalls.retry("batch_id");
6963
7240
  <dl>
6964
7241
  <dd>
6965
7242
 
6966
- **requestOptions:** `BatchCalls.RequestOptions`
7243
+ **requestOptions:** `BatchCallsClient.RequestOptions`
6967
7244
 
6968
7245
  </dd>
6969
7246
  </dl>
@@ -7031,7 +7308,7 @@ await client.conversationalAi.sipTrunk.outboundCall({
7031
7308
  <dl>
7032
7309
  <dd>
7033
7310
 
7034
- **requestOptions:** `SipTrunk.RequestOptions`
7311
+ **requestOptions:** `SipTrunkClient.RequestOptions`
7035
7312
 
7036
7313
  </dd>
7037
7314
  </dl>
@@ -7087,7 +7364,7 @@ await client.conversationalAi.mcpServers.list();
7087
7364
  <dl>
7088
7365
  <dd>
7089
7366
 
7090
- **requestOptions:** `McpServers.RequestOptions`
7367
+ **requestOptions:** `McpServersClient.RequestOptions`
7091
7368
 
7092
7369
  </dd>
7093
7370
  </dl>
@@ -7155,7 +7432,7 @@ await client.conversationalAi.mcpServers.create({
7155
7432
  <dl>
7156
7433
  <dd>
7157
7434
 
7158
- **requestOptions:** `McpServers.RequestOptions`
7435
+ **requestOptions:** `McpServersClient.RequestOptions`
7159
7436
 
7160
7437
  </dd>
7161
7438
  </dl>
@@ -7218,7 +7495,7 @@ await client.conversationalAi.mcpServers.get("mcp_server_id");
7218
7495
  <dl>
7219
7496
  <dd>
7220
7497
 
7221
- **requestOptions:** `McpServers.RequestOptions`
7498
+ **requestOptions:** `McpServersClient.RequestOptions`
7222
7499
 
7223
7500
  </dd>
7224
7501
  </dl>
@@ -7281,7 +7558,7 @@ await client.conversationalAi.mcpServers.delete("mcp_server_id");
7281
7558
  <dl>
7282
7559
  <dd>
7283
7560
 
7284
- **requestOptions:** `McpServers.RequestOptions`
7561
+ **requestOptions:** `McpServersClient.RequestOptions`
7285
7562
 
7286
7563
  </dd>
7287
7564
  </dl>
@@ -7352,7 +7629,7 @@ await client.conversationalAi.mcpServers.update("mcp_server_id");
7352
7629
  <dl>
7353
7630
  <dd>
7354
7631
 
7355
- **requestOptions:** `McpServers.RequestOptions`
7632
+ **requestOptions:** `McpServersClient.RequestOptions`
7356
7633
 
7357
7634
  </dd>
7358
7635
  </dl>
@@ -7426,7 +7703,7 @@ await client.conversationalAi.agents.widget.get("agent_3701k3ttaq12ewp8b7qv5rfys
7426
7703
  <dl>
7427
7704
  <dd>
7428
7705
 
7429
- **requestOptions:** `Widget.RequestOptions`
7706
+ **requestOptions:** `WidgetClient.RequestOptions`
7430
7707
 
7431
7708
  </dd>
7432
7709
  </dl>
@@ -7490,7 +7767,7 @@ await client.conversationalAi.agents.link.get("agent_3701k3ttaq12ewp8b7qv5rfyszk
7490
7767
  <dl>
7491
7768
  <dd>
7492
7769
 
7493
- **requestOptions:** `Link.RequestOptions`
7770
+ **requestOptions:** `LinkClient.RequestOptions`
7494
7771
 
7495
7772
  </dd>
7496
7773
  </dl>
@@ -7554,7 +7831,7 @@ await client.conversationalAi.agents.knowledgeBase.size("agent_id");
7554
7831
  <dl>
7555
7832
  <dd>
7556
7833
 
7557
- **requestOptions:** `KnowledgeBase.RequestOptions`
7834
+ **requestOptions:** `KnowledgeBaseClient.RequestOptions`
7558
7835
 
7559
7836
  </dd>
7560
7837
  </dl>
@@ -7626,7 +7903,7 @@ await client.conversationalAi.agents.llmUsage.calculate("agent_id");
7626
7903
  <dl>
7627
7904
  <dd>
7628
7905
 
7629
- **requestOptions:** `LlmUsage.RequestOptions`
7906
+ **requestOptions:** `LlmUsageClient.RequestOptions`
7630
7907
 
7631
7908
  </dd>
7632
7909
  </dl>
@@ -7700,7 +7977,73 @@ await client.conversationalAi.agents.widget.avatar.create("agent_3701k3ttaq12ewp
7700
7977
  <dl>
7701
7978
  <dd>
7702
7979
 
7703
- **requestOptions:** `Avatar.RequestOptions`
7980
+ **requestOptions:** `AvatarClient.RequestOptions`
7981
+
7982
+ </dd>
7983
+ </dl>
7984
+ </dd>
7985
+ </dl>
7986
+
7987
+
7988
+ </dd>
7989
+ </dl>
7990
+ </details>
7991
+
7992
+ ## ConversationalAi Analytics LiveCount
7993
+ <details><summary><code>client.conversationalAi.analytics.liveCount.<a href="/src/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.ts">get</a>({ ...params }) -> ElevenLabs.GetLiveCountResponse</code></summary>
7994
+ <dl>
7995
+ <dd>
7996
+
7997
+ #### 📝 Description
7998
+
7999
+ <dl>
8000
+ <dd>
8001
+
8002
+ <dl>
8003
+ <dd>
8004
+
8005
+ Get the live count of the ongoing conversations.
8006
+ </dd>
8007
+ </dl>
8008
+ </dd>
8009
+ </dl>
8010
+
8011
+ #### 🔌 Usage
8012
+
8013
+ <dl>
8014
+ <dd>
8015
+
8016
+ <dl>
8017
+ <dd>
8018
+
8019
+ ```typescript
8020
+ await client.conversationalAi.analytics.liveCount.get({
8021
+ agentId: "agent_id"
8022
+ });
8023
+
8024
+ ```
8025
+ </dd>
8026
+ </dl>
8027
+ </dd>
8028
+ </dl>
8029
+
8030
+ #### ⚙️ Parameters
8031
+
8032
+ <dl>
8033
+ <dd>
8034
+
8035
+ <dl>
8036
+ <dd>
8037
+
8038
+ **request:** `ElevenLabs.conversationalAi.analytics.LiveCountGetRequest`
8039
+
8040
+ </dd>
8041
+ </dl>
8042
+
8043
+ <dl>
8044
+ <dd>
8045
+
8046
+ **requestOptions:** `LiveCountClient.RequestOptions`
7704
8047
 
7705
8048
  </dd>
7706
8049
  </dl>
@@ -7764,7 +8107,7 @@ await client.conversationalAi.conversations.audio.get("conversation_id");
7764
8107
  <dl>
7765
8108
  <dd>
7766
8109
 
7767
- **requestOptions:** `Audio.RequestOptions`
8110
+ **requestOptions:** `AudioClient.RequestOptions`
7768
8111
 
7769
8112
  </dd>
7770
8113
  </dl>
@@ -7838,7 +8181,7 @@ await client.conversationalAi.conversations.feedback.create("21m00Tcm4TlvDq8ikWA
7838
8181
  <dl>
7839
8182
  <dd>
7840
8183
 
7841
- **requestOptions:** `Feedback.RequestOptions`
8184
+ **requestOptions:** `FeedbackClient.RequestOptions`
7842
8185
 
7843
8186
  </dd>
7844
8187
  </dl>
@@ -7894,7 +8237,7 @@ await client.conversationalAi.dashboard.settings.get();
7894
8237
  <dl>
7895
8238
  <dd>
7896
8239
 
7897
- **requestOptions:** `Settings.RequestOptions`
8240
+ **requestOptions:** `SettingsClient.RequestOptions`
7898
8241
 
7899
8242
  </dd>
7900
8243
  </dl>
@@ -7957,7 +8300,7 @@ await client.conversationalAi.dashboard.settings.update();
7957
8300
  <dl>
7958
8301
  <dd>
7959
8302
 
7960
- **requestOptions:** `Settings.RequestOptions`
8303
+ **requestOptions:** `SettingsClient.RequestOptions`
7961
8304
 
7962
8305
  </dd>
7963
8306
  </dl>
@@ -8023,7 +8366,7 @@ await client.conversationalAi.knowledgeBase.documents.createFromUrl({
8023
8366
  <dl>
8024
8367
  <dd>
8025
8368
 
8026
- **requestOptions:** `Documents.RequestOptions`
8369
+ **requestOptions:** `DocumentsClient.RequestOptions`
8027
8370
 
8028
8371
  </dd>
8029
8372
  </dl>
@@ -8088,7 +8431,7 @@ await client.conversationalAi.knowledgeBase.documents.createFromFile({
8088
8431
  <dl>
8089
8432
  <dd>
8090
8433
 
8091
- **requestOptions:** `Documents.RequestOptions`
8434
+ **requestOptions:** `DocumentsClient.RequestOptions`
8092
8435
 
8093
8436
  </dd>
8094
8437
  </dl>
@@ -8153,7 +8496,7 @@ await client.conversationalAi.knowledgeBase.documents.createFromText({
8153
8496
  <dl>
8154
8497
  <dd>
8155
8498
 
8156
- **requestOptions:** `Documents.RequestOptions`
8499
+ **requestOptions:** `DocumentsClient.RequestOptions`
8157
8500
 
8158
8501
  </dd>
8159
8502
  </dl>
@@ -8226,7 +8569,7 @@ await client.conversationalAi.knowledgeBase.documents.get("21m00Tcm4TlvDq8ikWAM"
8226
8569
  <dl>
8227
8570
  <dd>
8228
8571
 
8229
- **requestOptions:** `Documents.RequestOptions`
8572
+ **requestOptions:** `DocumentsClient.RequestOptions`
8230
8573
 
8231
8574
  </dd>
8232
8575
  </dl>
@@ -8299,7 +8642,7 @@ await client.conversationalAi.knowledgeBase.documents.delete("21m00Tcm4TlvDq8ikW
8299
8642
  <dl>
8300
8643
  <dd>
8301
8644
 
8302
- **requestOptions:** `Documents.RequestOptions`
8645
+ **requestOptions:** `DocumentsClient.RequestOptions`
8303
8646
 
8304
8647
  </dd>
8305
8648
  </dl>
@@ -8372,7 +8715,7 @@ await client.conversationalAi.knowledgeBase.documents.update("21m00Tcm4TlvDq8ikW
8372
8715
  <dl>
8373
8716
  <dd>
8374
8717
 
8375
- **requestOptions:** `Documents.RequestOptions`
8718
+ **requestOptions:** `DocumentsClient.RequestOptions`
8376
8719
 
8377
8720
  </dd>
8378
8721
  </dl>
@@ -8446,7 +8789,7 @@ await client.conversationalAi.knowledgeBase.documents.getAgents("21m00Tcm4TlvDq8
8446
8789
  <dl>
8447
8790
  <dd>
8448
8791
 
8449
- **requestOptions:** `Documents.RequestOptions`
8792
+ **requestOptions:** `DocumentsClient.RequestOptions`
8450
8793
 
8451
8794
  </dd>
8452
8795
  </dl>
@@ -8509,7 +8852,7 @@ await client.conversationalAi.knowledgeBase.documents.getContent("21m00Tcm4TlvDq
8509
8852
  <dl>
8510
8853
  <dd>
8511
8854
 
8512
- **requestOptions:** `Documents.RequestOptions`
8855
+ **requestOptions:** `DocumentsClient.RequestOptions`
8513
8856
 
8514
8857
  </dd>
8515
8858
  </dl>
@@ -8583,7 +8926,7 @@ await client.conversationalAi.knowledgeBase.document.computeRagIndex("21m00Tcm4T
8583
8926
  <dl>
8584
8927
  <dd>
8585
8928
 
8586
- **requestOptions:** `Document.RequestOptions`
8929
+ **requestOptions:** `DocumentClient.RequestOptions`
8587
8930
 
8588
8931
  </dd>
8589
8932
  </dl>
@@ -8655,7 +8998,7 @@ await client.conversationalAi.knowledgeBase.documents.chunk.get("21m00Tcm4TlvDq8
8655
8998
  <dl>
8656
8999
  <dd>
8657
9000
 
8658
- **requestOptions:** `Chunk.RequestOptions`
9001
+ **requestOptions:** `ChunkClient.RequestOptions`
8659
9002
 
8660
9003
  </dd>
8661
9004
  </dl>
@@ -8719,7 +9062,7 @@ await client.conversationalAi.mcpServers.tools.list("mcp_server_id");
8719
9062
  <dl>
8720
9063
  <dd>
8721
9064
 
8722
- **requestOptions:** `Tools.RequestOptions`
9065
+ **requestOptions:** `ToolsClient.RequestOptions`
8723
9066
 
8724
9067
  </dd>
8725
9068
  </dl>
@@ -8793,7 +9136,7 @@ await client.conversationalAi.mcpServers.approvalPolicy.update("mcp_server_id",
8793
9136
  <dl>
8794
9137
  <dd>
8795
9138
 
8796
- **requestOptions:** `ApprovalPolicy.RequestOptions`
9139
+ **requestOptions:** `ApprovalPolicyClient.RequestOptions`
8797
9140
 
8798
9141
  </dd>
8799
9142
  </dl>
@@ -8868,7 +9211,7 @@ await client.conversationalAi.mcpServers.toolApprovals.create("mcp_server_id", {
8868
9211
  <dl>
8869
9212
  <dd>
8870
9213
 
8871
- **requestOptions:** `ToolApprovals.RequestOptions`
9214
+ **requestOptions:** `ToolApprovalsClient.RequestOptions`
8872
9215
 
8873
9216
  </dd>
8874
9217
  </dl>
@@ -8939,7 +9282,7 @@ await client.conversationalAi.mcpServers.toolApprovals.delete("mcp_server_id", "
8939
9282
  <dl>
8940
9283
  <dd>
8941
9284
 
8942
- **requestOptions:** `ToolApprovals.RequestOptions`
9285
+ **requestOptions:** `ToolApprovalsClient.RequestOptions`
8943
9286
 
8944
9287
  </dd>
8945
9288
  </dl>
@@ -9013,7 +9356,7 @@ await client.conversationalAi.mcpServers.toolConfigs.create("mcp_server_id", {
9013
9356
  <dl>
9014
9357
  <dd>
9015
9358
 
9016
- **requestOptions:** `ToolConfigs.RequestOptions`
9359
+ **requestOptions:** `ToolConfigsClient.RequestOptions`
9017
9360
 
9018
9361
  </dd>
9019
9362
  </dl>
@@ -9084,7 +9427,7 @@ await client.conversationalAi.mcpServers.toolConfigs.get("mcp_server_id", "tool_
9084
9427
  <dl>
9085
9428
  <dd>
9086
9429
 
9087
- **requestOptions:** `ToolConfigs.RequestOptions`
9430
+ **requestOptions:** `ToolConfigsClient.RequestOptions`
9088
9431
 
9089
9432
  </dd>
9090
9433
  </dl>
@@ -9155,7 +9498,7 @@ await client.conversationalAi.mcpServers.toolConfigs.delete("mcp_server_id", "to
9155
9498
  <dl>
9156
9499
  <dd>
9157
9500
 
9158
- **requestOptions:** `ToolConfigs.RequestOptions`
9501
+ **requestOptions:** `ToolConfigsClient.RequestOptions`
9159
9502
 
9160
9503
  </dd>
9161
9504
  </dl>
@@ -9234,7 +9577,7 @@ await client.conversationalAi.mcpServers.toolConfigs.update("mcp_server_id", "to
9234
9577
  <dl>
9235
9578
  <dd>
9236
9579
 
9237
- **requestOptions:** `ToolConfigs.RequestOptions`
9580
+ **requestOptions:** `ToolConfigsClient.RequestOptions`
9238
9581
 
9239
9582
  </dd>
9240
9583
  </dl>
@@ -9302,7 +9645,7 @@ await client.conversationalAi.tests.invocations.list({
9302
9645
  <dl>
9303
9646
  <dd>
9304
9647
 
9305
- **requestOptions:** `Invocations.RequestOptions`
9648
+ **requestOptions:** `InvocationsClient.RequestOptions`
9306
9649
 
9307
9650
  </dd>
9308
9651
  </dl>
@@ -9365,7 +9708,7 @@ await client.conversationalAi.tests.invocations.get("test_invocation_id");
9365
9708
  <dl>
9366
9709
  <dd>
9367
9710
 
9368
- **requestOptions:** `Invocations.RequestOptions`
9711
+ **requestOptions:** `InvocationsClient.RequestOptions`
9369
9712
 
9370
9713
  </dd>
9371
9714
  </dl>
@@ -9439,7 +9782,7 @@ await client.conversationalAi.tests.invocations.resubmit("test_invocation_id", {
9439
9782
  <dl>
9440
9783
  <dd>
9441
9784
 
9442
- **requestOptions:** `Invocations.RequestOptions`
9785
+ **requestOptions:** `InvocationsClient.RequestOptions`
9443
9786
 
9444
9787
  </dd>
9445
9788
  </dl>
@@ -9503,7 +9846,81 @@ await client.dubbing.resource.get("dubbing_id");
9503
9846
  <dl>
9504
9847
  <dd>
9505
9848
 
9506
- **requestOptions:** `Resource.RequestOptions`
9849
+ **requestOptions:** `ResourceClient.RequestOptions`
9850
+
9851
+ </dd>
9852
+ </dl>
9853
+ </dd>
9854
+ </dl>
9855
+
9856
+
9857
+ </dd>
9858
+ </dl>
9859
+ </details>
9860
+
9861
+ <details><summary><code>client.dubbing.resource.<a href="/src/api/resources/dubbing/resources/resource/client/Client.ts">migrateSegments</a>(dubbing_id, { ...params }) -> ElevenLabs.SegmentMigrationResponse</code></summary>
9862
+ <dl>
9863
+ <dd>
9864
+
9865
+ #### 📝 Description
9866
+
9867
+ <dl>
9868
+ <dd>
9869
+
9870
+ <dl>
9871
+ <dd>
9872
+
9873
+ Change the attribution of one or more segments to a different speaker.
9874
+ </dd>
9875
+ </dl>
9876
+ </dd>
9877
+ </dl>
9878
+
9879
+ #### 🔌 Usage
9880
+
9881
+ <dl>
9882
+ <dd>
9883
+
9884
+ <dl>
9885
+ <dd>
9886
+
9887
+ ```typescript
9888
+ await client.dubbing.resource.migrateSegments("dubbing_id", {
9889
+ segmentIds: ["segment_ids"],
9890
+ speakerId: "speaker_id"
9891
+ });
9892
+
9893
+ ```
9894
+ </dd>
9895
+ </dl>
9896
+ </dd>
9897
+ </dl>
9898
+
9899
+ #### ⚙️ Parameters
9900
+
9901
+ <dl>
9902
+ <dd>
9903
+
9904
+ <dl>
9905
+ <dd>
9906
+
9907
+ **dubbing_id:** `string` — ID of the dubbing project.
9908
+
9909
+ </dd>
9910
+ </dl>
9911
+
9912
+ <dl>
9913
+ <dd>
9914
+
9915
+ **request:** `ElevenLabs.dubbing.BodyMoveSegmentsBetweenSpeakersV1DubbingResourceDubbingIdMigrateSegmentsPost`
9916
+
9917
+ </dd>
9918
+ </dl>
9919
+
9920
+ <dl>
9921
+ <dd>
9922
+
9923
+ **requestOptions:** `ResourceClient.RequestOptions`
9507
9924
 
9508
9925
  </dd>
9509
9926
  </dl>
@@ -9576,7 +9993,7 @@ await client.dubbing.resource.transcribe("dubbing_id", {
9576
9993
  <dl>
9577
9994
  <dd>
9578
9995
 
9579
- **requestOptions:** `Resource.RequestOptions`
9996
+ **requestOptions:** `ResourceClient.RequestOptions`
9580
9997
 
9581
9998
  </dd>
9582
9999
  </dl>
@@ -9649,7 +10066,7 @@ await client.dubbing.resource.translate("dubbing_id", {
9649
10066
  <dl>
9650
10067
  <dd>
9651
10068
 
9652
- **requestOptions:** `Resource.RequestOptions`
10069
+ **requestOptions:** `ResourceClient.RequestOptions`
9653
10070
 
9654
10071
  </dd>
9655
10072
  </dl>
@@ -9722,7 +10139,7 @@ await client.dubbing.resource.dub("dubbing_id", {
9722
10139
  <dl>
9723
10140
  <dd>
9724
10141
 
9725
- **requestOptions:** `Resource.RequestOptions`
10142
+ **requestOptions:** `ResourceClient.RequestOptions`
9726
10143
 
9727
10144
  </dd>
9728
10145
  </dl>
@@ -9761,7 +10178,7 @@ Regenerate the output media for a language using the latest Studio state. Please
9761
10178
  <dd>
9762
10179
 
9763
10180
  ```typescript
9764
- await client.dubbing.resource.render("dubbing_id", "language", {
10181
+ await client.dubbing.resource.render("dubbing_id", "original", {
9765
10182
  renderType: "mp4"
9766
10183
  });
9767
10184
 
@@ -9803,7 +10220,7 @@ await client.dubbing.resource.render("dubbing_id", "language", {
9803
10220
  <dl>
9804
10221
  <dd>
9805
10222
 
9806
- **requestOptions:** `Resource.RequestOptions`
10223
+ **requestOptions:** `ResourceClient.RequestOptions`
9807
10224
 
9808
10225
  </dd>
9809
10226
  </dl>
@@ -9875,7 +10292,7 @@ await client.dubbing.audio.get("dubbing_id", "language_code");
9875
10292
  <dl>
9876
10293
  <dd>
9877
10294
 
9878
- **requestOptions:** `Audio.RequestOptions`
10295
+ **requestOptions:** `AudioClient.RequestOptions`
9879
10296
 
9880
10297
  </dd>
9881
10298
  </dl>
@@ -9957,7 +10374,7 @@ await client.dubbing.transcript.getTranscriptForDub("dubbing_id", "language_code
9957
10374
  <dl>
9958
10375
  <dd>
9959
10376
 
9960
- **requestOptions:** `Transcript.RequestOptions`
10377
+ **requestOptions:** `TranscriptClient.RequestOptions`
9961
10378
 
9962
10379
  </dd>
9963
10380
  </dl>
@@ -10029,7 +10446,7 @@ await client.dubbing.resource.language.add("dubbing_id");
10029
10446
  <dl>
10030
10447
  <dd>
10031
10448
 
10032
- **requestOptions:** `Language.RequestOptions`
10449
+ **requestOptions:** `LanguageClient.RequestOptions`
10033
10450
 
10034
10451
  </dd>
10035
10452
  </dl>
@@ -10117,7 +10534,7 @@ await client.dubbing.resource.segment.update("dubbing_id", "segment_id", "langua
10117
10534
  <dl>
10118
10535
  <dd>
10119
10536
 
10120
- **requestOptions:** `Segment.RequestOptions`
10537
+ **requestOptions:** `SegmentClient.RequestOptions`
10121
10538
 
10122
10539
  </dd>
10123
10540
  </dl>
@@ -10188,7 +10605,7 @@ await client.dubbing.resource.segment.delete("dubbing_id", "segment_id");
10188
10605
  <dl>
10189
10606
  <dd>
10190
10607
 
10191
- **requestOptions:** `Segment.RequestOptions`
10608
+ **requestOptions:** `SegmentClient.RequestOptions`
10192
10609
 
10193
10610
  </dd>
10194
10611
  </dl>
@@ -10268,7 +10685,64 @@ await client.dubbing.resource.speaker.update("dubbing_id", "speaker_id");
10268
10685
  <dl>
10269
10686
  <dd>
10270
10687
 
10271
- **requestOptions:** `Speaker.RequestOptions`
10688
+ **requestOptions:** `SpeakerClient.RequestOptions`
10689
+
10690
+ </dd>
10691
+ </dl>
10692
+ </dd>
10693
+ </dl>
10694
+
10695
+
10696
+ </dd>
10697
+ </dl>
10698
+ </details>
10699
+
10700
+ <details><summary><code>client.dubbing.resource.speaker.<a href="/src/api/resources/dubbing/resources/resource/resources/speaker/client/Client.ts">create</a>(dubbing_id, { ...params }) -> ElevenLabs.SpeakerCreatedResponse</code></summary>
10701
+ <dl>
10702
+ <dd>
10703
+
10704
+ #### 🔌 Usage
10705
+
10706
+ <dl>
10707
+ <dd>
10708
+
10709
+ <dl>
10710
+ <dd>
10711
+
10712
+ ```typescript
10713
+ await client.dubbing.resource.speaker.create("dubbing_id");
10714
+
10715
+ ```
10716
+ </dd>
10717
+ </dl>
10718
+ </dd>
10719
+ </dl>
10720
+
10721
+ #### ⚙️ Parameters
10722
+
10723
+ <dl>
10724
+ <dd>
10725
+
10726
+ <dl>
10727
+ <dd>
10728
+
10729
+ **dubbing_id:** `string` — ID of the dubbing project.
10730
+
10731
+ </dd>
10732
+ </dl>
10733
+
10734
+ <dl>
10735
+ <dd>
10736
+
10737
+ **request:** `ElevenLabs.dubbing.resource.BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost`
10738
+
10739
+ </dd>
10740
+ </dl>
10741
+
10742
+ <dl>
10743
+ <dd>
10744
+
10745
+ **requestOptions:** `SpeakerClient.RequestOptions`
10272
10746
 
10273
10747
  </dd>
10274
10748
  </dl>
@@ -10339,7 +10813,7 @@ await client.dubbing.resource.speaker.findSimilarVoices("dubbing_id", "speaker_i
10339
10813
  <dl>
10340
10814
  <dd>
10341
10815
 
10342
- **requestOptions:** `Speaker.RequestOptions`
10816
+ **requestOptions:** `SpeakerClient.RequestOptions`
10343
10817
 
10344
10818
  </dd>
10345
10819
  </dl>
@@ -10422,7 +10896,7 @@ await client.dubbing.resource.speaker.segment.create("dubbing_id", "speaker_id",
10422
10896
  <dl>
10423
10897
  <dd>
10424
10898
 
10425
- **requestOptions:** `Segment.RequestOptions`
10899
+ **requestOptions:** `SegmentClient.RequestOptions`
10426
10900
 
10427
10901
  </dd>
10428
10902
  </dl>
@@ -10488,7 +10962,7 @@ await client.music.compositionPlan.create({
10488
10962
  <dl>
10489
10963
  <dd>
10490
10964
 
10491
- **requestOptions:** `CompositionPlan.RequestOptions`
10965
+ **requestOptions:** `CompositionPlanClient.RequestOptions`
10492
10966
 
10493
10967
  </dd>
10494
10968
  </dl>
@@ -10566,7 +11040,7 @@ await client.pronunciationDictionaries.rules.add("21m00Tcm4TlvDq8ikWAM", {
10566
11040
  <dl>
10567
11041
  <dd>
10568
11042
 
10569
- **requestOptions:** `Rules.RequestOptions`
11043
+ **requestOptions:** `RulesClient.RequestOptions`
10570
11044
 
10571
11045
  </dd>
10572
11046
  </dl>
@@ -10639,7 +11113,7 @@ await client.pronunciationDictionaries.rules.remove("21m00Tcm4TlvDq8ikWAM", {
10639
11113
  <dl>
10640
11114
  <dd>
10641
11115
 
10642
- **requestOptions:** `Rules.RequestOptions`
11116
+ **requestOptions:** `RulesClient.RequestOptions`
10643
11117
 
10644
11118
  </dd>
10645
11119
  </dl>
@@ -10703,7 +11177,7 @@ await client.serviceAccounts.apiKeys.list("service_account_user_id");
10703
11177
  <dl>
10704
11178
  <dd>
10705
11179
 
10706
- **requestOptions:** `ApiKeys.RequestOptions`
11180
+ **requestOptions:** `ApiKeysClient.RequestOptions`
10707
11181
 
10708
11182
  </dd>
10709
11183
  </dl>
@@ -10744,7 +11218,7 @@ Create a new API key for a service account
10744
11218
  ```typescript
10745
11219
  await client.serviceAccounts.apiKeys.create("service_account_user_id", {
10746
11220
  name: "name",
10747
- permissions: ["text_to_speech"]
11221
+ permissions: "all"
10748
11222
  });
10749
11223
 
10750
11224
  ```
@@ -10777,7 +11251,7 @@ await client.serviceAccounts.apiKeys.create("service_account_user_id", {
10777
11251
  <dl>
10778
11252
  <dd>
10779
11253
 
10780
- **requestOptions:** `ApiKeys.RequestOptions`
11254
+ **requestOptions:** `ApiKeysClient.RequestOptions`
10781
11255
 
10782
11256
  </dd>
10783
11257
  </dl>
@@ -10848,7 +11322,7 @@ await client.serviceAccounts.apiKeys.delete("service_account_user_id", "api_key_
10848
11322
  <dl>
10849
11323
  <dd>
10850
11324
 
10851
- **requestOptions:** `ApiKeys.RequestOptions`
11325
+ **requestOptions:** `ApiKeysClient.RequestOptions`
10852
11326
 
10853
11327
  </dd>
10854
11328
  </dl>
@@ -10890,7 +11364,7 @@ Update an existing API key for a service account
10890
11364
  await client.serviceAccounts.apiKeys.update("service_account_user_id", "api_key_id", {
10891
11365
  isEnabled: true,
10892
11366
  name: "Sneaky Fox",
10893
- permissions: ["text_to_speech"]
11367
+ permissions: "all"
10894
11368
  });
10895
11369
 
10896
11370
  ```
@@ -10931,7 +11405,7 @@ await client.serviceAccounts.apiKeys.update("service_account_user_id", "api_key_
10931
11405
  <dl>
10932
11406
  <dd>
10933
11407
 
10934
- **requestOptions:** `ApiKeys.RequestOptions`
11408
+ **requestOptions:** `ApiKeysClient.RequestOptions`
10935
11409
 
10936
11410
  </dd>
10937
11411
  </dl>
@@ -10995,7 +11469,7 @@ await client.speechToText.transcripts.get("transcription_id");
10995
11469
  <dl>
10996
11470
  <dd>
10997
11471
 
10998
- **requestOptions:** `Transcripts.RequestOptions`
11472
+ **requestOptions:** `TranscriptsClient.RequestOptions`
10999
11473
 
11000
11474
  </dd>
11001
11475
  </dl>
@@ -11058,7 +11532,7 @@ await client.speechToText.transcripts.delete("transcription_id");
11058
11532
  <dl>
11059
11533
  <dd>
11060
11534
 
11061
- **requestOptions:** `Transcripts.RequestOptions`
11535
+ **requestOptions:** `TranscriptsClient.RequestOptions`
11062
11536
 
11063
11537
  </dd>
11064
11538
  </dl>
@@ -11114,7 +11588,7 @@ await client.studio.projects.list();
11114
11588
  <dl>
11115
11589
  <dd>
11116
11590
 
11117
- **requestOptions:** `Projects.RequestOptions`
11591
+ **requestOptions:** `ProjectsClient.RequestOptions`
11118
11592
 
11119
11593
  </dd>
11120
11594
  </dl>
@@ -11179,7 +11653,7 @@ await client.studio.projects.create({
11179
11653
  <dl>
11180
11654
  <dd>
11181
11655
 
11182
- **requestOptions:** `Projects.RequestOptions`
11656
+ **requestOptions:** `ProjectsClient.RequestOptions`
11183
11657
 
11184
11658
  </dd>
11185
11659
  </dl>
@@ -11252,7 +11726,7 @@ await client.studio.projects.get("21m00Tcm4TlvDq8ikWAM", {
11252
11726
  <dl>
11253
11727
  <dd>
11254
11728
 
11255
- **requestOptions:** `Projects.RequestOptions`
11729
+ **requestOptions:** `ProjectsClient.RequestOptions`
11256
11730
 
11257
11731
  </dd>
11258
11732
  </dl>
@@ -11327,7 +11801,7 @@ await client.studio.projects.update("21m00Tcm4TlvDq8ikWAM", {
11327
11801
  <dl>
11328
11802
  <dd>
11329
11803
 
11330
- **requestOptions:** `Projects.RequestOptions`
11804
+ **requestOptions:** `ProjectsClient.RequestOptions`
11331
11805
 
11332
11806
  </dd>
11333
11807
  </dl>
@@ -11390,7 +11864,7 @@ await client.studio.projects.delete("21m00Tcm4TlvDq8ikWAM");
11390
11864
  <dl>
11391
11865
  <dd>
11392
11866
 
11393
- **requestOptions:** `Projects.RequestOptions`
11867
+ **requestOptions:** `ProjectsClient.RequestOptions`
11394
11868
 
11395
11869
  </dd>
11396
11870
  </dl>
@@ -11453,7 +11927,7 @@ await client.studio.projects.convert("21m00Tcm4TlvDq8ikWAM");
11453
11927
  <dl>
11454
11928
  <dd>
11455
11929
 
11456
- **requestOptions:** `Projects.RequestOptions`
11930
+ **requestOptions:** `ProjectsClient.RequestOptions`
11457
11931
 
11458
11932
  </dd>
11459
11933
  </dl>
@@ -11529,7 +12003,7 @@ await client.studio.projects.pronunciationDictionaries.create("21m00Tcm4TlvDq8ik
11529
12003
  <dl>
11530
12004
  <dd>
11531
12005
 
11532
- **requestOptions:** `PronunciationDictionaries.RequestOptions`
12006
+ **requestOptions:** `PronunciationDictionariesClient.RequestOptions`
11533
12007
 
11534
12008
  </dd>
11535
12009
  </dl>
@@ -11601,7 +12075,7 @@ await client.studio.projects.content.update("21m00Tcm4TlvDq8ikWAM", {});
11601
12075
  <dl>
11602
12076
  <dd>
11603
12077
 
11604
- **requestOptions:** `Content.RequestOptions`
12078
+ **requestOptions:** `ContentClient.RequestOptions`
11605
12079
 
11606
12080
  </dd>
11607
12081
  </dl>
@@ -11665,7 +12139,7 @@ await client.studio.projects.snapshots.list("21m00Tcm4TlvDq8ikWAM");
11665
12139
  <dl>
11666
12140
  <dd>
11667
12141
 
11668
- **requestOptions:** `Snapshots.RequestOptions`
12142
+ **requestOptions:** `SnapshotsClient.RequestOptions`
11669
12143
 
11670
12144
  </dd>
11671
12145
  </dl>
@@ -11736,7 +12210,7 @@ await client.studio.projects.snapshots.get("21m00Tcm4TlvDq8ikWAM", "21m00Tcm4Tlv
11736
12210
  <dl>
11737
12211
  <dd>
11738
12212
 
11739
- **requestOptions:** `Snapshots.RequestOptions`
12213
+ **requestOptions:** `SnapshotsClient.RequestOptions`
11740
12214
 
11741
12215
  </dd>
11742
12216
  </dl>
@@ -11815,7 +12289,7 @@ await client.studio.projects.snapshots.stream("project_id", "project_snapshot_id
11815
12289
  <dl>
11816
12290
  <dd>
11817
12291
 
11818
- **requestOptions:** `Snapshots.RequestOptions`
12292
+ **requestOptions:** `SnapshotsClient.RequestOptions`
11819
12293
 
11820
12294
  </dd>
11821
12295
  </dl>
@@ -11886,7 +12360,7 @@ await client.studio.projects.snapshots.streamArchive("project_id", "project_snap
11886
12360
  <dl>
11887
12361
  <dd>
11888
12362
 
11889
- **requestOptions:** `Snapshots.RequestOptions`
12363
+ **requestOptions:** `SnapshotsClient.RequestOptions`
11890
12364
 
11891
12365
  </dd>
11892
12366
  </dl>
@@ -11950,7 +12424,7 @@ await client.studio.projects.chapters.list("21m00Tcm4TlvDq8ikWAM");
11950
12424
  <dl>
11951
12425
  <dd>
11952
12426
 
11953
- **requestOptions:** `Chapters.RequestOptions`
12427
+ **requestOptions:** `ChaptersClient.RequestOptions`
11954
12428
 
11955
12429
  </dd>
11956
12430
  </dl>
@@ -12023,7 +12497,7 @@ await client.studio.projects.chapters.create("21m00Tcm4TlvDq8ikWAM", {
12023
12497
  <dl>
12024
12498
  <dd>
12025
12499
 
12026
- **requestOptions:** `Chapters.RequestOptions`
12500
+ **requestOptions:** `ChaptersClient.RequestOptions`
12027
12501
 
12028
12502
  </dd>
12029
12503
  </dl>
@@ -12094,7 +12568,7 @@ await client.studio.projects.chapters.get("21m00Tcm4TlvDq8ikWAM", "21m00Tcm4TlvD
12094
12568
  <dl>
12095
12569
  <dd>
12096
12570
 
12097
- **requestOptions:** `Chapters.RequestOptions`
12571
+ **requestOptions:** `ChaptersClient.RequestOptions`
12098
12572
 
12099
12573
  </dd>
12100
12574
  </dl>
@@ -12173,7 +12647,7 @@ await client.studio.projects.chapters.update("21m00Tcm4TlvDq8ikWAM", "21m00Tcm4T
12173
12647
  <dl>
12174
12648
  <dd>
12175
12649
 
12176
- **requestOptions:** `Chapters.RequestOptions`
12650
+ **requestOptions:** `ChaptersClient.RequestOptions`
12177
12651
 
12178
12652
  </dd>
12179
12653
  </dl>
@@ -12244,7 +12718,7 @@ await client.studio.projects.chapters.delete("21m00Tcm4TlvDq8ikWAM", "21m00Tcm4T
12244
12718
  <dl>
12245
12719
  <dd>
12246
12720
 
12247
- **requestOptions:** `Chapters.RequestOptions`
12721
+ **requestOptions:** `ChaptersClient.RequestOptions`
12248
12722
 
12249
12723
  </dd>
12250
12724
  </dl>
@@ -12315,7 +12789,7 @@ await client.studio.projects.chapters.convert("21m00Tcm4TlvDq8ikWAM", "21m00Tcm4
12315
12789
  <dl>
12316
12790
  <dd>
12317
12791
 
12318
- **requestOptions:** `Chapters.RequestOptions`
12792
+ **requestOptions:** `ChaptersClient.RequestOptions`
12319
12793
 
12320
12794
  </dd>
12321
12795
  </dl>
@@ -12387,7 +12861,7 @@ await client.studio.projects.chapters.snapshots.list("21m00Tcm4TlvDq8ikWAM", "21
12387
12861
  <dl>
12388
12862
  <dd>
12389
12863
 
12390
- **requestOptions:** `Snapshots.RequestOptions`
12864
+ **requestOptions:** `SnapshotsClient.RequestOptions`
12391
12865
 
12392
12866
  </dd>
12393
12867
  </dl>
@@ -12466,7 +12940,7 @@ await client.studio.projects.chapters.snapshots.get("21m00Tcm4TlvDq8ikWAM", "21m
12466
12940
  <dl>
12467
12941
  <dd>
12468
12942
 
12469
- **requestOptions:** `Snapshots.RequestOptions`
12943
+ **requestOptions:** `SnapshotsClient.RequestOptions`
12470
12944
 
12471
12945
  </dd>
12472
12946
  </dl>
@@ -12553,7 +13027,7 @@ await client.studio.projects.chapters.snapshots.stream("project_id", "chapter_id
12553
13027
  <dl>
12554
13028
  <dd>
12555
13029
 
12556
- **requestOptions:** `Snapshots.RequestOptions`
13030
+ **requestOptions:** `SnapshotsClient.RequestOptions`
12557
13031
 
12558
13032
  </dd>
12559
13033
  </dl>
@@ -12617,7 +13091,7 @@ await client.textToVoice.preview.stream("generated_voice_id");
12617
13091
  <dl>
12618
13092
  <dd>
12619
13093
 
12620
- **requestOptions:** `Preview.RequestOptions`
13094
+ **requestOptions:** `PreviewClient.RequestOptions`
12621
13095
 
12622
13096
  </dd>
12623
13097
  </dl>
@@ -12681,7 +13155,7 @@ await client.tokens.singleUse.create("realtime_scribe");
12681
13155
  <dl>
12682
13156
  <dd>
12683
13157
 
12684
- **requestOptions:** `SingleUse.RequestOptions`
13158
+ **requestOptions:** `SingleUseClient.RequestOptions`
12685
13159
 
12686
13160
  </dd>
12687
13161
  </dl>
@@ -12737,7 +13211,7 @@ await client.user.subscription.get();
12737
13211
  <dl>
12738
13212
  <dd>
12739
13213
 
12740
- **requestOptions:** `Subscription.RequestOptions`
13214
+ **requestOptions:** `SubscriptionClient.RequestOptions`
12741
13215
 
12742
13216
  </dd>
12743
13217
  </dl>
@@ -12793,7 +13267,7 @@ await client.voices.settings.getDefault();
12793
13267
  <dl>
12794
13268
  <dd>
12795
13269
 
12796
- **requestOptions:** `Settings.RequestOptions`
13270
+ **requestOptions:** `SettingsClient.RequestOptions`
12797
13271
 
12798
13272
  </dd>
12799
13273
  </dl>
@@ -12856,7 +13330,7 @@ await client.voices.settings.get("21m00Tcm4TlvDq8ikWAM");
12856
13330
  <dl>
12857
13331
  <dd>
12858
13332
 
12859
- **requestOptions:** `Settings.RequestOptions`
13333
+ **requestOptions:** `SettingsClient.RequestOptions`
12860
13334
 
12861
13335
  </dd>
12862
13336
  </dl>
@@ -12933,7 +13407,7 @@ await client.voices.settings.update("21m00Tcm4TlvDq8ikWAM", {
12933
13407
  <dl>
12934
13408
  <dd>
12935
13409
 
12936
- **requestOptions:** `Settings.RequestOptions`
13410
+ **requestOptions:** `SettingsClient.RequestOptions`
12937
13411
 
12938
13412
  </dd>
12939
13413
  </dl>
@@ -13000,7 +13474,7 @@ await client.voices.ivc.create({
13000
13474
  <dl>
13001
13475
  <dd>
13002
13476
 
13003
- **requestOptions:** `Ivc.RequestOptions`
13477
+ **requestOptions:** `IvcClient.RequestOptions`
13004
13478
 
13005
13479
  </dd>
13006
13480
  </dl>
@@ -13067,7 +13541,7 @@ await client.voices.pvc.create({
13067
13541
  <dl>
13068
13542
  <dd>
13069
13543
 
13070
- **requestOptions:** `Pvc.RequestOptions`
13544
+ **requestOptions:** `PvcClient.RequestOptions`
13071
13545
 
13072
13546
  </dd>
13073
13547
  </dl>
@@ -13138,7 +13612,7 @@ await client.voices.pvc.update("21m00Tcm4TlvDq8ikWAM");
13138
13612
  <dl>
13139
13613
  <dd>
13140
13614
 
13141
- **requestOptions:** `Pvc.RequestOptions`
13615
+ **requestOptions:** `PvcClient.RequestOptions`
13142
13616
 
13143
13617
  </dd>
13144
13618
  </dl>
@@ -13209,7 +13683,7 @@ await client.voices.pvc.train("21m00Tcm4TlvDq8ikWAM");
13209
13683
  <dl>
13210
13684
  <dd>
13211
13685
 
13212
- **requestOptions:** `Pvc.RequestOptions`
13686
+ **requestOptions:** `PvcClient.RequestOptions`
13213
13687
 
13214
13688
  </dd>
13215
13689
  </dl>
@@ -13283,7 +13757,7 @@ await client.voices.pvc.samples.create("21m00Tcm4TlvDq8ikWAM", {
13283
13757
  <dl>
13284
13758
  <dd>
13285
13759
 
13286
- **requestOptions:** `Samples.RequestOptions`
13760
+ **requestOptions:** `SamplesClient.RequestOptions`
13287
13761
 
13288
13762
  </dd>
13289
13763
  </dl>
@@ -13362,7 +13836,7 @@ await client.voices.pvc.samples.update("21m00Tcm4TlvDq8ikWAM", "VW7YKqPnjY4h39yT
13362
13836
  <dl>
13363
13837
  <dd>
13364
13838
 
13365
- **requestOptions:** `Samples.RequestOptions`
13839
+ **requestOptions:** `SamplesClient.RequestOptions`
13366
13840
 
13367
13841
  </dd>
13368
13842
  </dl>
@@ -13433,7 +13907,7 @@ await client.voices.pvc.samples.delete("21m00Tcm4TlvDq8ikWAM", "VW7YKqPnjY4h39yT
13433
13907
  <dl>
13434
13908
  <dd>
13435
13909
 
13436
- **requestOptions:** `Samples.RequestOptions`
13910
+ **requestOptions:** `SamplesClient.RequestOptions`
13437
13911
 
13438
13912
  </dd>
13439
13913
  </dl>
@@ -13507,7 +13981,7 @@ await client.voices.pvc.verification.request("21m00Tcm4TlvDq8ikWAM", {
13507
13981
  <dl>
13508
13982
  <dd>
13509
13983
 
13510
- **requestOptions:** `Verification.RequestOptions`
13984
+ **requestOptions:** `VerificationClient.RequestOptions`
13511
13985
 
13512
13986
  </dd>
13513
13987
  </dl>
@@ -13589,7 +14063,7 @@ await client.voices.pvc.samples.audio.get("21m00Tcm4TlvDq8ikWAM", "VW7YKqPnjY4h3
13589
14063
  <dl>
13590
14064
  <dd>
13591
14065
 
13592
- **requestOptions:** `Audio.RequestOptions`
14066
+ **requestOptions:** `AudioClient.RequestOptions`
13593
14067
 
13594
14068
  </dd>
13595
14069
  </dl>
@@ -13661,7 +14135,7 @@ await client.voices.pvc.samples.waveform.get("21m00Tcm4TlvDq8ikWAM", "VW7YKqPnjY
13661
14135
  <dl>
13662
14136
  <dd>
13663
14137
 
13664
- **requestOptions:** `Waveform.RequestOptions`
14138
+ **requestOptions:** `WaveformClient.RequestOptions`
13665
14139
 
13666
14140
  </dd>
13667
14141
  </dl>
@@ -13733,7 +14207,7 @@ await client.voices.pvc.samples.speakers.get("21m00Tcm4TlvDq8ikWAM", "VW7YKqPnjY
13733
14207
  <dl>
13734
14208
  <dd>
13735
14209
 
13736
- **requestOptions:** `Speakers.RequestOptions`
14210
+ **requestOptions:** `SpeakersClient.RequestOptions`
13737
14211
 
13738
14212
  </dd>
13739
14213
  </dl>
@@ -13804,7 +14278,7 @@ await client.voices.pvc.samples.speakers.separate("21m00Tcm4TlvDq8ikWAM", "VW7YK
13804
14278
  <dl>
13805
14279
  <dd>
13806
14280
 
13807
- **requestOptions:** `Speakers.RequestOptions`
14281
+ **requestOptions:** `SpeakersClient.RequestOptions`
13808
14282
 
13809
14283
  </dd>
13810
14284
  </dl>
@@ -13884,7 +14358,7 @@ await client.voices.pvc.samples.speakers.audio.get("21m00Tcm4TlvDq8ikWAM", "VW7Y
13884
14358
  <dl>
13885
14359
  <dd>
13886
14360
 
13887
- **requestOptions:** `Audio.RequestOptions`
14361
+ **requestOptions:** `AudioClient.RequestOptions`
13888
14362
 
13889
14363
  </dd>
13890
14364
  </dl>
@@ -13948,7 +14422,7 @@ await client.voices.pvc.verification.captcha.get("21m00Tcm4TlvDq8ikWAM");
13948
14422
  <dl>
13949
14423
  <dd>
13950
14424
 
13951
- **requestOptions:** `Captcha.RequestOptions`
14425
+ **requestOptions:** `CaptchaClient.RequestOptions`
13952
14426
 
13953
14427
  </dd>
13954
14428
  </dl>
@@ -14021,7 +14495,7 @@ await client.voices.pvc.verification.captcha.verify("21m00Tcm4TlvDq8ikWAM", {
14021
14495
  <dl>
14022
14496
  <dd>
14023
14497
 
14024
- **requestOptions:** `Captcha.RequestOptions`
14498
+ **requestOptions:** `CaptchaClient.RequestOptions`
14025
14499
 
14026
14500
  </dd>
14027
14501
  </dl>
@@ -14093,7 +14567,7 @@ await client.voices.samples.audio.get("voice_id", "sample_id");
14093
14567
  <dl>
14094
14568
  <dd>
14095
14569
 
14096
- **requestOptions:** `Audio.RequestOptions`
14570
+ **requestOptions:** `AudioClient.RequestOptions`
14097
14571
 
14098
14572
  </dd>
14099
14573
  </dl>
@@ -14159,7 +14633,7 @@ await client.workspace.groups.search({
14159
14633
  <dl>
14160
14634
  <dd>
14161
14635
 
14162
- **requestOptions:** `Groups.RequestOptions`
14636
+ **requestOptions:** `GroupsClient.RequestOptions`
14163
14637
 
14164
14638
  </dd>
14165
14639
  </dl>
@@ -14225,7 +14699,7 @@ await client.workspace.invites.create({
14225
14699
  <dl>
14226
14700
  <dd>
14227
14701
 
14228
- **requestOptions:** `Invites.RequestOptions`
14702
+ **requestOptions:** `InvitesClient.RequestOptions`
14229
14703
 
14230
14704
  </dd>
14231
14705
  </dl>
@@ -14290,7 +14764,7 @@ await client.workspace.invites.createBatch({
14290
14764
  <dl>
14291
14765
  <dd>
14292
14766
 
14293
- **requestOptions:** `Invites.RequestOptions`
14767
+ **requestOptions:** `InvitesClient.RequestOptions`
14294
14768
 
14295
14769
  </dd>
14296
14770
  </dl>
@@ -14355,7 +14829,7 @@ await client.workspace.invites.delete({
14355
14829
  <dl>
14356
14830
  <dd>
14357
14831
 
14358
- **requestOptions:** `Invites.RequestOptions`
14832
+ **requestOptions:** `InvitesClient.RequestOptions`
14359
14833
 
14360
14834
  </dd>
14361
14835
  </dl>
@@ -14421,7 +14895,7 @@ await client.workspace.members.update({
14421
14895
  <dl>
14422
14896
  <dd>
14423
14897
 
14424
- **requestOptions:** `Members.RequestOptions`
14898
+ **requestOptions:** `MembersClient.RequestOptions`
14425
14899
 
14426
14900
  </dd>
14427
14901
  </dl>
@@ -14495,7 +14969,7 @@ await client.workspace.resources.get("resource_id", {
14495
14969
  <dl>
14496
14970
  <dd>
14497
14971
 
14498
- **requestOptions:** `Resources.RequestOptions`
14972
+ **requestOptions:** `ResourcesClient.RequestOptions`
14499
14973
 
14500
14974
  </dd>
14501
14975
  </dl>
@@ -14569,7 +15043,7 @@ await client.workspace.resources.share("resource_id", {
14569
15043
  <dl>
14570
15044
  <dd>
14571
15045
 
14572
- **requestOptions:** `Resources.RequestOptions`
15046
+ **requestOptions:** `ResourcesClient.RequestOptions`
14573
15047
 
14574
15048
  </dd>
14575
15049
  </dl>
@@ -14642,7 +15116,7 @@ await client.workspace.resources.unshare("resource_id", {
14642
15116
  <dl>
14643
15117
  <dd>
14644
15118
 
14645
- **requestOptions:** `Resources.RequestOptions`
15119
+ **requestOptions:** `ResourcesClient.RequestOptions`
14646
15120
 
14647
15121
  </dd>
14648
15122
  </dl>
@@ -14716,7 +15190,7 @@ await client.workspace.groups.members.remove("group_id", {
14716
15190
  <dl>
14717
15191
  <dd>
14718
15192
 
14719
- **requestOptions:** `Members.RequestOptions`
15193
+ **requestOptions:** `MembersClient.RequestOptions`
14720
15194
 
14721
15195
  </dd>
14722
15196
  </dl>
@@ -14789,7 +15263,7 @@ await client.workspace.groups.members.add("group_id", {
14789
15263
  <dl>
14790
15264
  <dd>
14791
15265
 
14792
- **requestOptions:** `Members.RequestOptions`
15266
+ **requestOptions:** `MembersClient.RequestOptions`
14793
15267
 
14794
15268
  </dd>
14795
15269
  </dl>