@elevenlabs/elevenlabs-js 2.0.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 (4170) hide show
  1. package/.mock/asyncapi.yml +856 -0
  2. package/.mock/definition/__package__.yml +7758 -0
  3. package/.mock/definition/api.yml +24 -0
  4. package/.mock/definition/audioIsolation.yml +83 -0
  5. package/.mock/definition/audioNative.yml +198 -0
  6. package/.mock/definition/conversationalAi/agents/link.yml +39 -0
  7. package/.mock/definition/conversationalAi/agents/widget/avatar.yml +44 -0
  8. package/.mock/definition/conversationalAi/agents/widget.yml +77 -0
  9. package/.mock/definition/conversationalAi/agents.yml +651 -0
  10. package/.mock/definition/conversationalAi/batchCalls.yml +139 -0
  11. package/.mock/definition/conversationalAi/conversations/audio.yml +28 -0
  12. package/.mock/definition/conversationalAi/conversations/feedback.yml +47 -0
  13. package/.mock/definition/conversationalAi/conversations.yml +165 -0
  14. package/.mock/definition/conversationalAi/dashboard/settings.yml +73 -0
  15. package/.mock/definition/conversationalAi/knowledgeBase/document.yml +48 -0
  16. package/.mock/definition/conversationalAi/knowledgeBase/documents/chunk.yml +42 -0
  17. package/.mock/definition/conversationalAi/knowledgeBase/documents.yml +346 -0
  18. package/.mock/definition/conversationalAi/knowledgeBase.yml +87 -0
  19. package/.mock/definition/conversationalAi/phoneNumbers.yml +206 -0
  20. package/.mock/definition/conversationalAi/secrets.yml +100 -0
  21. package/.mock/definition/conversationalAi/settings.yml +81 -0
  22. package/.mock/definition/conversationalAi/sipTrunk.yml +45 -0
  23. package/.mock/definition/conversationalAi/twilio.yml +45 -0
  24. package/.mock/definition/conversationalAi.yml +94 -0
  25. package/.mock/definition/dubbing/audio.yml +35 -0
  26. package/.mock/definition/dubbing/resource/language.yml +43 -0
  27. package/.mock/definition/dubbing/resource/segment.yml +83 -0
  28. package/.mock/definition/dubbing/resource/speaker/segment.yml +54 -0
  29. package/.mock/definition/dubbing/resource/speaker.yml +91 -0
  30. package/.mock/definition/dubbing/resource.yml +271 -0
  31. package/.mock/definition/dubbing/transcript.yml +48 -0
  32. package/.mock/definition/dubbing.yml +170 -0
  33. package/.mock/definition/forcedAlignment.yml +60 -0
  34. package/.mock/definition/history.yml +262 -0
  35. package/.mock/definition/models.yml +49 -0
  36. package/.mock/definition/pronunciationDictionaries/rules.yml +99 -0
  37. package/.mock/definition/pronunciationDictionaries.yml +262 -0
  38. package/.mock/definition/samples.yml +46 -0
  39. package/.mock/definition/speechToSpeech.yml +324 -0
  40. package/.mock/definition/speechToText.yml +177 -0
  41. package/.mock/definition/studio/projects/chapters/snapshots.yml +141 -0
  42. package/.mock/definition/studio/projects/chapters.yml +289 -0
  43. package/.mock/definition/studio/projects/content.yml +94 -0
  44. package/.mock/definition/studio/projects/pronunciationDictionaries.yml +70 -0
  45. package/.mock/definition/studio/projects/snapshots.yml +140 -0
  46. package/.mock/definition/studio/projects.yml +579 -0
  47. package/.mock/definition/studio.yml +216 -0
  48. package/.mock/definition/textToSoundEffects.yml +92 -0
  49. package/.mock/definition/textToSpeech.yml +959 -0
  50. package/.mock/definition/textToVoice.yml +355 -0
  51. package/.mock/definition/usage.yml +73 -0
  52. package/.mock/definition/user/subscription.yml +50 -0
  53. package/.mock/definition/user.yml +86 -0
  54. package/.mock/definition/v1TextToSpeechVoiceIdMultiStreamInput.yml +250 -0
  55. package/.mock/definition/v1TextToSpeechVoiceIdStreamInput.yml +207 -0
  56. package/.mock/definition/voices/ivc.yml +57 -0
  57. package/.mock/definition/voices/pvc/samples/audio.yml +44 -0
  58. package/.mock/definition/voices/pvc/samples/speakers/audio.yml +48 -0
  59. package/.mock/definition/voices/pvc/samples/speakers.yml +81 -0
  60. package/.mock/definition/voices/pvc/samples/waveform.yml +44 -0
  61. package/.mock/definition/voices/pvc/samples.yml +159 -0
  62. package/.mock/definition/voices/pvc/verification/captcha.yml +62 -0
  63. package/.mock/definition/voices/pvc/verification.yml +47 -0
  64. package/.mock/definition/voices/pvc.yml +137 -0
  65. package/.mock/definition/voices/samples/audio.yml +35 -0
  66. package/.mock/definition/voices/settings.yml +105 -0
  67. package/.mock/definition/voices.yml +904 -0
  68. package/.mock/definition/workspace/groups/members.yml +82 -0
  69. package/.mock/definition/workspace/groups.yml +41 -0
  70. package/.mock/definition/workspace/invites.yml +141 -0
  71. package/.mock/definition/workspace/members.yml +83 -0
  72. package/.mock/definition/workspace/resources.yml +184 -0
  73. package/.mock/fern.config.json +4 -0
  74. package/.mock/openapi.json +36253 -0
  75. package/Client.d.ts +87 -0
  76. package/Client.js +107 -0
  77. package/LICENSE +21 -0
  78. package/README.md +174 -0
  79. package/api/errors/BadRequestError.d.ts +8 -0
  80. package/api/errors/BadRequestError.js +52 -0
  81. package/api/errors/ForbiddenError.d.ts +8 -0
  82. package/api/errors/ForbiddenError.js +52 -0
  83. package/api/errors/NotFoundError.d.ts +8 -0
  84. package/api/errors/NotFoundError.js +52 -0
  85. package/api/errors/TooEarlyError.d.ts +8 -0
  86. package/api/errors/TooEarlyError.js +52 -0
  87. package/api/errors/UnprocessableEntityError.d.ts +9 -0
  88. package/api/errors/UnprocessableEntityError.js +52 -0
  89. package/api/errors/index.d.ts +5 -0
  90. package/api/errors/index.js +21 -0
  91. package/api/index.d.ts +3 -0
  92. package/api/index.js +19 -0
  93. package/api/resources/audioIsolation/client/Client.d.ts +44 -0
  94. package/api/resources/audioIsolation/client/Client.js +186 -0
  95. package/api/resources/audioIsolation/client/index.d.ts +1 -0
  96. package/api/resources/audioIsolation/client/index.js +17 -0
  97. package/api/resources/audioIsolation/client/requests/BodyAudioIsolationStreamV1AudioIsolationStreamPost.d.ts +10 -0
  98. package/api/resources/audioIsolation/client/requests/BodyAudioIsolationStreamV1AudioIsolationStreamPost.js +5 -0
  99. package/api/resources/audioIsolation/client/requests/BodyAudioIsolationV1AudioIsolationPost.d.ts +10 -0
  100. package/api/resources/audioIsolation/client/requests/BodyAudioIsolationV1AudioIsolationPost.js +5 -0
  101. package/api/resources/audioIsolation/client/requests/index.d.ts +2 -0
  102. package/api/resources/audioIsolation/client/requests/index.js +2 -0
  103. package/api/resources/audioIsolation/index.d.ts +2 -0
  104. package/api/resources/audioIsolation/index.js +18 -0
  105. package/api/resources/audioIsolation/types/AudioIsolationConvertRequestFileFormat.d.ts +8 -0
  106. package/api/resources/audioIsolation/types/AudioIsolationConvertRequestFileFormat.js +10 -0
  107. package/api/resources/audioIsolation/types/AudioIsolationStreamRequestFileFormat.d.ts +8 -0
  108. package/api/resources/audioIsolation/types/AudioIsolationStreamRequestFileFormat.js +10 -0
  109. package/api/resources/audioIsolation/types/index.d.ts +2 -0
  110. package/api/resources/audioIsolation/types/index.js +18 -0
  111. package/api/resources/audioNative/client/Client.d.ts +73 -0
  112. package/api/resources/audioNative/client/Client.js +306 -0
  113. package/api/resources/audioNative/client/index.d.ts +1 -0
  114. package/api/resources/audioNative/client/index.js +17 -0
  115. package/api/resources/audioNative/client/requests/BodyCreatesAudioNativeEnabledProjectV1AudioNativePost.d.ts +35 -0
  116. package/api/resources/audioNative/client/requests/BodyCreatesAudioNativeEnabledProjectV1AudioNativePost.js +5 -0
  117. package/api/resources/audioNative/client/requests/BodyUpdateAudioNativeProjectContentV1AudioNativeProjectIdContentPost.d.ts +15 -0
  118. package/api/resources/audioNative/client/requests/BodyUpdateAudioNativeProjectContentV1AudioNativeProjectIdContentPost.js +5 -0
  119. package/api/resources/audioNative/client/requests/index.d.ts +2 -0
  120. package/api/resources/audioNative/client/requests/index.js +2 -0
  121. package/api/resources/audioNative/index.d.ts +1 -0
  122. package/api/resources/audioNative/index.js +17 -0
  123. package/api/resources/conversationalAi/client/Client.d.ts +91 -0
  124. package/api/resources/conversationalAi/client/Client.js +257 -0
  125. package/api/resources/conversationalAi/client/index.d.ts +1 -0
  126. package/api/resources/conversationalAi/client/index.js +17 -0
  127. package/api/resources/conversationalAi/client/requests/BodyAddToKnowledgeBaseV1ConvaiKnowledgeBasePost.d.ts +15 -0
  128. package/api/resources/conversationalAi/client/requests/BodyAddToKnowledgeBaseV1ConvaiKnowledgeBasePost.js +5 -0
  129. package/api/resources/conversationalAi/client/requests/PatchWorkspaceSecretRequest.d.ts +14 -0
  130. package/api/resources/conversationalAi/client/requests/PatchWorkspaceSecretRequest.js +5 -0
  131. package/api/resources/conversationalAi/client/requests/index.d.ts +2 -0
  132. package/api/resources/conversationalAi/client/requests/index.js +2 -0
  133. package/api/resources/conversationalAi/index.d.ts +2 -0
  134. package/api/resources/conversationalAi/index.js +18 -0
  135. package/api/resources/conversationalAi/resources/agents/client/Client.d.ts +147 -0
  136. package/api/resources/conversationalAi/resources/agents/client/Client.js +540 -0
  137. package/api/resources/conversationalAi/resources/agents/client/index.d.ts +1 -0
  138. package/api/resources/conversationalAi/resources/agents/client/index.js +17 -0
  139. package/api/resources/conversationalAi/resources/agents/client/requests/AgentsListRequest.d.ts +21 -0
  140. package/api/resources/conversationalAi/resources/agents/client/requests/AgentsListRequest.js +5 -0
  141. package/api/resources/conversationalAi/resources/agents/client/requests/BodyCreateAgentV1ConvaiAgentsCreatePost.d.ts +20 -0
  142. package/api/resources/conversationalAi/resources/agents/client/requests/BodyCreateAgentV1ConvaiAgentsCreatePost.js +5 -0
  143. package/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.d.ts +21 -0
  144. package/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.js +5 -0
  145. package/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.d.ts +21 -0
  146. package/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.js +5 -0
  147. package/api/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +15 -0
  148. package/api/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.js +5 -0
  149. package/api/resources/conversationalAi/resources/agents/client/requests/index.d.ts +5 -0
  150. package/api/resources/conversationalAi/resources/agents/client/requests/index.js +2 -0
  151. package/api/resources/conversationalAi/resources/agents/index.d.ts +2 -0
  152. package/api/resources/conversationalAi/resources/agents/index.js +18 -0
  153. package/api/resources/conversationalAi/resources/agents/resources/index.d.ts +3 -0
  154. package/api/resources/conversationalAi/resources/agents/resources/index.js +42 -0
  155. package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.d.ts +44 -0
  156. package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +123 -0
  157. package/api/resources/conversationalAi/resources/agents/resources/link/client/index.d.ts +1 -0
  158. package/api/resources/conversationalAi/resources/agents/resources/link/client/index.js +2 -0
  159. package/api/resources/conversationalAi/resources/agents/resources/link/index.d.ts +1 -0
  160. package/api/resources/conversationalAi/resources/agents/resources/link/index.js +17 -0
  161. package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.d.ts +48 -0
  162. package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +138 -0
  163. package/api/resources/conversationalAi/resources/agents/resources/widget/client/index.d.ts +1 -0
  164. package/api/resources/conversationalAi/resources/agents/resources/widget/client/index.js +17 -0
  165. package/api/resources/conversationalAi/resources/agents/resources/widget/client/requests/WidgetGetRequest.d.ts +13 -0
  166. package/api/resources/conversationalAi/resources/agents/resources/widget/client/requests/WidgetGetRequest.js +5 -0
  167. package/api/resources/conversationalAi/resources/agents/resources/widget/client/requests/index.d.ts +1 -0
  168. package/api/resources/conversationalAi/resources/agents/resources/widget/client/requests/index.js +2 -0
  169. package/api/resources/conversationalAi/resources/agents/resources/widget/index.d.ts +2 -0
  170. package/api/resources/conversationalAi/resources/agents/resources/widget/index.js +18 -0
  171. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.d.ts +47 -0
  172. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +133 -0
  173. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/index.d.ts +1 -0
  174. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/index.js +17 -0
  175. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/requests/BodyPostAgentAvatarV1ConvaiAgentsAgentIdAvatarPost.d.ts +13 -0
  176. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/requests/BodyPostAgentAvatarV1ConvaiAgentsAgentIdAvatarPost.js +5 -0
  177. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/requests/index.d.ts +1 -0
  178. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/requests/index.js +2 -0
  179. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/index.d.ts +1 -0
  180. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/index.js +17 -0
  181. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/index.d.ts +2 -0
  182. package/api/resources/conversationalAi/resources/agents/resources/widget/resources/index.js +41 -0
  183. package/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +77 -0
  184. package/api/resources/conversationalAi/resources/batchCalls/client/Client.js +265 -0
  185. package/api/resources/conversationalAi/resources/batchCalls/client/index.d.ts +1 -0
  186. package/api/resources/conversationalAi/resources/batchCalls/client/index.js +17 -0
  187. package/api/resources/conversationalAi/resources/batchCalls/client/requests/BatchCallsListRequest.d.ts +11 -0
  188. package/api/resources/conversationalAi/resources/batchCalls/client/requests/BatchCallsListRequest.js +5 -0
  189. package/api/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +22 -0
  190. package/api/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.js +5 -0
  191. package/api/resources/conversationalAi/resources/batchCalls/client/requests/index.d.ts +2 -0
  192. package/api/resources/conversationalAi/resources/batchCalls/client/requests/index.js +2 -0
  193. package/api/resources/conversationalAi/resources/batchCalls/index.d.ts +1 -0
  194. package/api/resources/conversationalAi/resources/batchCalls/index.js +17 -0
  195. package/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +91 -0
  196. package/api/resources/conversationalAi/resources/conversations/client/Client.js +352 -0
  197. package/api/resources/conversationalAi/resources/conversations/client/index.d.ts +1 -0
  198. package/api/resources/conversationalAi/resources/conversations/client/index.js +17 -0
  199. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +15 -0
  200. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.js +5 -0
  201. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +34 -0
  202. package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.js +5 -0
  203. package/api/resources/conversationalAi/resources/conversations/client/requests/index.d.ts +2 -0
  204. package/api/resources/conversationalAi/resources/conversations/client/requests/index.js +2 -0
  205. package/api/resources/conversationalAi/resources/conversations/index.d.ts +2 -0
  206. package/api/resources/conversationalAi/resources/conversations/index.js +18 -0
  207. package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.d.ts +37 -0
  208. package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +117 -0
  209. package/api/resources/conversationalAi/resources/conversations/resources/audio/client/index.d.ts +1 -0
  210. package/api/resources/conversationalAi/resources/conversations/resources/audio/client/index.js +2 -0
  211. package/api/resources/conversationalAi/resources/conversations/resources/audio/index.d.ts +1 -0
  212. package/api/resources/conversationalAi/resources/conversations/resources/audio/index.js +17 -0
  213. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.d.ts +47 -0
  214. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +127 -0
  215. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/index.d.ts +1 -0
  216. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/index.js +17 -0
  217. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/BodySendConversationFeedbackV1ConvaiConversationsConversationIdFeedbackPost.d.ts +14 -0
  218. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/BodySendConversationFeedbackV1ConvaiConversationsConversationIdFeedbackPost.js +5 -0
  219. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/index.d.ts +1 -0
  220. package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/index.js +2 -0
  221. package/api/resources/conversationalAi/resources/conversations/resources/feedback/index.d.ts +1 -0
  222. package/api/resources/conversationalAi/resources/conversations/resources/feedback/index.js +17 -0
  223. package/api/resources/conversationalAi/resources/conversations/resources/index.d.ts +3 -0
  224. package/api/resources/conversationalAi/resources/conversations/resources/index.js +42 -0
  225. package/api/resources/conversationalAi/resources/dashboard/client/Client.d.ts +21 -0
  226. package/api/resources/conversationalAi/resources/dashboard/client/Client.js +17 -0
  227. package/api/resources/conversationalAi/resources/dashboard/client/index.d.ts +1 -0
  228. package/api/resources/conversationalAi/resources/dashboard/client/index.js +2 -0
  229. package/api/resources/conversationalAi/resources/dashboard/index.d.ts +2 -0
  230. package/api/resources/conversationalAi/resources/dashboard/index.js +18 -0
  231. package/api/resources/conversationalAi/resources/dashboard/resources/index.d.ts +3 -0
  232. package/api/resources/conversationalAi/resources/dashboard/resources/index.js +42 -0
  233. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.d.ts +56 -0
  234. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +190 -0
  235. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/index.d.ts +1 -0
  236. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/index.js +17 -0
  237. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/PatchConvAiDashboardSettingsRequest.d.ts +11 -0
  238. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/PatchConvAiDashboardSettingsRequest.js +5 -0
  239. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/index.d.ts +1 -0
  240. package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/index.js +2 -0
  241. package/api/resources/conversationalAi/resources/dashboard/resources/settings/index.d.ts +2 -0
  242. package/api/resources/conversationalAi/resources/dashboard/resources/settings/index.js +18 -0
  243. package/api/resources/conversationalAi/resources/dashboard/resources/settings/types/PatchConvAiDashboardSettingsRequestChartsItem.d.ts +16 -0
  244. package/api/resources/conversationalAi/resources/dashboard/resources/settings/types/PatchConvAiDashboardSettingsRequestChartsItem.js +5 -0
  245. package/api/resources/conversationalAi/resources/dashboard/resources/settings/types/index.d.ts +1 -0
  246. package/api/resources/conversationalAi/resources/dashboard/resources/settings/types/index.js +17 -0
  247. package/api/resources/conversationalAi/resources/index.d.ts +20 -0
  248. package/api/resources/conversationalAi/resources/index.js +59 -0
  249. package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.d.ts +50 -0
  250. package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +162 -0
  251. package/api/resources/conversationalAi/resources/knowledgeBase/client/index.d.ts +1 -0
  252. package/api/resources/conversationalAi/resources/knowledgeBase/client/index.js +17 -0
  253. package/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.d.ts +34 -0
  254. package/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.js +5 -0
  255. package/api/resources/conversationalAi/resources/knowledgeBase/client/requests/index.d.ts +1 -0
  256. package/api/resources/conversationalAi/resources/knowledgeBase/client/requests/index.js +2 -0
  257. package/api/resources/conversationalAi/resources/knowledgeBase/index.d.ts +2 -0
  258. package/api/resources/conversationalAi/resources/knowledgeBase/index.js +18 -0
  259. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +47 -0
  260. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +127 -0
  261. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/index.d.ts +1 -0
  262. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/index.js +17 -0
  263. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/RagIndexRequestModel.d.ts +13 -0
  264. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/RagIndexRequestModel.js +5 -0
  265. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/index.d.ts +1 -0
  266. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/index.js +2 -0
  267. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
  268. package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +17 -0
  269. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +148 -0
  270. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +602 -0
  271. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/index.d.ts +1 -0
  272. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/index.js +17 -0
  273. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFileDocumentV1ConvaiKnowledgeBaseFilePost.d.ts +15 -0
  274. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFileDocumentV1ConvaiKnowledgeBaseFilePost.js +5 -0
  275. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.d.ts +15 -0
  276. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.js +5 -0
  277. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +15 -0
  278. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.js +5 -0
  279. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.d.ts +13 -0
  280. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.js +5 -0
  281. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsGetAgentsRequest.d.ts +17 -0
  282. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsGetAgentsRequest.js +5 -0
  283. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.d.ts +5 -0
  284. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.js +2 -0
  285. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/index.d.ts +3 -0
  286. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/index.js +19 -0
  287. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.d.ts +45 -0
  288. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +127 -0
  289. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.d.ts +1 -0
  290. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.js +2 -0
  291. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/index.d.ts +1 -0
  292. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/index.js +17 -0
  293. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +1 -0
  294. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +37 -0
  295. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.d.ts +16 -0
  296. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.js +5 -0
  297. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.d.ts +16 -0
  298. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.js +5 -0
  299. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/index.d.ts +2 -0
  300. package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/index.js +18 -0
  301. package/api/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +5 -0
  302. package/api/resources/conversationalAi/resources/knowledgeBase/resources/index.js +44 -0
  303. package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.d.ts +102 -0
  304. package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +387 -0
  305. package/api/resources/conversationalAi/resources/phoneNumbers/client/index.d.ts +1 -0
  306. package/api/resources/conversationalAi/resources/phoneNumbers/client/index.js +17 -0
  307. package/api/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +10 -0
  308. package/api/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.js +5 -0
  309. package/api/resources/conversationalAi/resources/phoneNumbers/client/requests/index.d.ts +1 -0
  310. package/api/resources/conversationalAi/resources/phoneNumbers/client/requests/index.js +2 -0
  311. package/api/resources/conversationalAi/resources/phoneNumbers/index.d.ts +2 -0
  312. package/api/resources/conversationalAi/resources/phoneNumbers/index.js +18 -0
  313. package/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersCreateRequestBody.d.ts +16 -0
  314. package/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersCreateRequestBody.js +5 -0
  315. package/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersGetResponse.d.ts +13 -0
  316. package/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersGetResponse.js +5 -0
  317. package/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersListResponseItem.d.ts +13 -0
  318. package/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersListResponseItem.js +5 -0
  319. package/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersUpdateResponse.d.ts +13 -0
  320. package/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersUpdateResponse.js +5 -0
  321. package/api/resources/conversationalAi/resources/phoneNumbers/types/index.d.ts +4 -0
  322. package/api/resources/conversationalAi/resources/phoneNumbers/types/index.js +20 -0
  323. package/api/resources/conversationalAi/resources/secrets/client/Client.d.ts +72 -0
  324. package/api/resources/conversationalAi/resources/secrets/client/Client.js +254 -0
  325. package/api/resources/conversationalAi/resources/secrets/client/index.d.ts +1 -0
  326. package/api/resources/conversationalAi/resources/secrets/client/index.js +17 -0
  327. package/api/resources/conversationalAi/resources/secrets/client/requests/PostWorkspaceSecretRequest.d.ts +14 -0
  328. package/api/resources/conversationalAi/resources/secrets/client/requests/PostWorkspaceSecretRequest.js +5 -0
  329. package/api/resources/conversationalAi/resources/secrets/client/requests/index.d.ts +1 -0
  330. package/api/resources/conversationalAi/resources/secrets/client/requests/index.js +2 -0
  331. package/api/resources/conversationalAi/resources/secrets/index.d.ts +1 -0
  332. package/api/resources/conversationalAi/resources/secrets/index.js +17 -0
  333. package/api/resources/conversationalAi/resources/settings/client/Client.d.ts +56 -0
  334. package/api/resources/conversationalAi/resources/settings/client/Client.js +190 -0
  335. package/api/resources/conversationalAi/resources/settings/client/index.d.ts +1 -0
  336. package/api/resources/conversationalAi/resources/settings/client/index.js +17 -0
  337. package/api/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +15 -0
  338. package/api/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.js +5 -0
  339. package/api/resources/conversationalAi/resources/settings/client/requests/index.d.ts +1 -0
  340. package/api/resources/conversationalAi/resources/settings/client/requests/index.js +2 -0
  341. package/api/resources/conversationalAi/resources/settings/index.d.ts +1 -0
  342. package/api/resources/conversationalAi/resources/settings/index.js +17 -0
  343. package/api/resources/conversationalAi/resources/sipTrunk/client/Client.d.ts +48 -0
  344. package/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +131 -0
  345. package/api/resources/conversationalAi/resources/sipTrunk/client/index.d.ts +1 -0
  346. package/api/resources/conversationalAi/resources/sipTrunk/client/index.js +17 -0
  347. package/api/resources/conversationalAi/resources/sipTrunk/client/requests/BodyHandleAnOutboundCallViaSipTrunkV1ConvaiSipTrunkOutboundCallPost.d.ts +18 -0
  348. package/api/resources/conversationalAi/resources/sipTrunk/client/requests/BodyHandleAnOutboundCallViaSipTrunkV1ConvaiSipTrunkOutboundCallPost.js +5 -0
  349. package/api/resources/conversationalAi/resources/sipTrunk/client/requests/index.d.ts +1 -0
  350. package/api/resources/conversationalAi/resources/sipTrunk/client/requests/index.js +2 -0
  351. package/api/resources/conversationalAi/resources/sipTrunk/index.d.ts +1 -0
  352. package/api/resources/conversationalAi/resources/sipTrunk/index.js +17 -0
  353. package/api/resources/conversationalAi/resources/twilio/client/Client.d.ts +48 -0
  354. package/api/resources/conversationalAi/resources/twilio/client/Client.js +131 -0
  355. package/api/resources/conversationalAi/resources/twilio/client/index.d.ts +1 -0
  356. package/api/resources/conversationalAi/resources/twilio/client/index.js +17 -0
  357. package/api/resources/conversationalAi/resources/twilio/client/requests/BodyHandleAnOutboundCallViaTwilioV1ConvaiTwilioOutboundCallPost.d.ts +18 -0
  358. package/api/resources/conversationalAi/resources/twilio/client/requests/BodyHandleAnOutboundCallViaTwilioV1ConvaiTwilioOutboundCallPost.js +5 -0
  359. package/api/resources/conversationalAi/resources/twilio/client/requests/index.d.ts +1 -0
  360. package/api/resources/conversationalAi/resources/twilio/client/requests/index.js +2 -0
  361. package/api/resources/conversationalAi/resources/twilio/index.d.ts +1 -0
  362. package/api/resources/conversationalAi/resources/twilio/index.js +17 -0
  363. package/api/resources/dubbing/client/Client.d.ts +79 -0
  364. package/api/resources/dubbing/client/Client.js +320 -0
  365. package/api/resources/dubbing/client/index.d.ts +1 -0
  366. package/api/resources/dubbing/client/index.js +17 -0
  367. package/api/resources/dubbing/client/requests/BodyDubAVideoOrAnAudioFileV1DubbingPost.d.ts +42 -0
  368. package/api/resources/dubbing/client/requests/BodyDubAVideoOrAnAudioFileV1DubbingPost.js +5 -0
  369. package/api/resources/dubbing/client/requests/index.d.ts +1 -0
  370. package/api/resources/dubbing/client/requests/index.js +2 -0
  371. package/api/resources/dubbing/index.d.ts +2 -0
  372. package/api/resources/dubbing/index.js +18 -0
  373. package/api/resources/dubbing/resources/audio/client/Client.d.ts +40 -0
  374. package/api/resources/dubbing/resources/audio/client/Client.js +126 -0
  375. package/api/resources/dubbing/resources/audio/client/index.d.ts +1 -0
  376. package/api/resources/dubbing/resources/audio/client/index.js +2 -0
  377. package/api/resources/dubbing/resources/audio/index.d.ts +1 -0
  378. package/api/resources/dubbing/resources/audio/index.js +17 -0
  379. package/api/resources/dubbing/resources/index.d.ts +6 -0
  380. package/api/resources/dubbing/resources/index.js +45 -0
  381. package/api/resources/dubbing/resources/resource/client/Client.d.ts +118 -0
  382. package/api/resources/dubbing/resources/resource/client/Client.js +408 -0
  383. package/api/resources/dubbing/resources/resource/client/index.d.ts +1 -0
  384. package/api/resources/dubbing/resources/resource/client/index.js +17 -0
  385. package/api/resources/dubbing/resources/resource/client/requests/BodyDubsAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdDubPost.d.ts +15 -0
  386. package/api/resources/dubbing/resources/resource/client/requests/BodyDubsAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdDubPost.js +5 -0
  387. package/api/resources/dubbing/resources/resource/client/requests/BodyRenderAudioOrVideoForTheGivenLanguageV1DubbingResourceDubbingIdRenderLanguagePost.d.ts +14 -0
  388. package/api/resources/dubbing/resources/resource/client/requests/BodyRenderAudioOrVideoForTheGivenLanguageV1DubbingResourceDubbingIdRenderLanguagePost.js +5 -0
  389. package/api/resources/dubbing/resources/resource/client/requests/BodyTranscribesSegmentsV1DubbingResourceDubbingIdTranscribePost.d.ts +13 -0
  390. package/api/resources/dubbing/resources/resource/client/requests/BodyTranscribesSegmentsV1DubbingResourceDubbingIdTranscribePost.js +5 -0
  391. package/api/resources/dubbing/resources/resource/client/requests/BodyTranslatesAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdTranslatePost.d.ts +15 -0
  392. package/api/resources/dubbing/resources/resource/client/requests/BodyTranslatesAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdTranslatePost.js +5 -0
  393. package/api/resources/dubbing/resources/resource/client/requests/index.d.ts +4 -0
  394. package/api/resources/dubbing/resources/resource/client/requests/index.js +2 -0
  395. package/api/resources/dubbing/resources/resource/index.d.ts +2 -0
  396. package/api/resources/dubbing/resources/resource/index.js +18 -0
  397. package/api/resources/dubbing/resources/resource/resources/index.d.ts +6 -0
  398. package/api/resources/dubbing/resources/resource/resources/index.js +45 -0
  399. package/api/resources/dubbing/resources/resource/resources/language/client/Client.d.ts +45 -0
  400. package/api/resources/dubbing/resources/resource/resources/language/client/Client.js +125 -0
  401. package/api/resources/dubbing/resources/resource/resources/language/client/index.d.ts +1 -0
  402. package/api/resources/dubbing/resources/resource/resources/language/client/index.js +17 -0
  403. package/api/resources/dubbing/resources/resource/resources/language/client/requests/BodyAddALanguageToTheResourceV1DubbingResourceDubbingIdLanguagePost.d.ts +11 -0
  404. package/api/resources/dubbing/resources/resource/resources/language/client/requests/BodyAddALanguageToTheResourceV1DubbingResourceDubbingIdLanguagePost.js +5 -0
  405. package/api/resources/dubbing/resources/resource/resources/language/client/requests/index.d.ts +1 -0
  406. package/api/resources/dubbing/resources/resource/resources/language/client/requests/index.js +2 -0
  407. package/api/resources/dubbing/resources/resource/resources/language/index.d.ts +1 -0
  408. package/api/resources/dubbing/resources/resource/resources/language/index.js +17 -0
  409. package/api/resources/dubbing/resources/resource/resources/segment/client/Client.d.ts +61 -0
  410. package/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +189 -0
  411. package/api/resources/dubbing/resources/resource/resources/segment/client/index.d.ts +1 -0
  412. package/api/resources/dubbing/resources/resource/resources/segment/client/index.js +17 -0
  413. package/api/resources/dubbing/resources/resource/resources/segment/client/requests/SegmentUpdatePayload.d.ts +12 -0
  414. package/api/resources/dubbing/resources/resource/resources/segment/client/requests/SegmentUpdatePayload.js +5 -0
  415. package/api/resources/dubbing/resources/resource/resources/segment/client/requests/index.d.ts +1 -0
  416. package/api/resources/dubbing/resources/resource/resources/segment/client/requests/index.js +2 -0
  417. package/api/resources/dubbing/resources/resource/resources/segment/index.d.ts +1 -0
  418. package/api/resources/dubbing/resources/resource/resources/segment/index.js +17 -0
  419. package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.d.ts +63 -0
  420. package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +196 -0
  421. package/api/resources/dubbing/resources/resource/resources/speaker/client/index.d.ts +1 -0
  422. package/api/resources/dubbing/resources/resource/resources/speaker/client/index.js +17 -0
  423. package/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +13 -0
  424. package/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.js +5 -0
  425. package/api/resources/dubbing/resources/resource/resources/speaker/client/requests/index.d.ts +1 -0
  426. package/api/resources/dubbing/resources/resource/resources/speaker/client/requests/index.js +2 -0
  427. package/api/resources/dubbing/resources/resource/resources/speaker/index.d.ts +2 -0
  428. package/api/resources/dubbing/resources/resource/resources/speaker/index.js +18 -0
  429. package/api/resources/dubbing/resources/resource/resources/speaker/resources/index.d.ts +2 -0
  430. package/api/resources/dubbing/resources/resource/resources/speaker/resources/index.js +41 -0
  431. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.d.ts +49 -0
  432. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +129 -0
  433. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/index.d.ts +1 -0
  434. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/index.js +17 -0
  435. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/SegmentCreatePayload.d.ts +16 -0
  436. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/SegmentCreatePayload.js +5 -0
  437. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/index.d.ts +1 -0
  438. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/index.js +2 -0
  439. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/index.d.ts +1 -0
  440. package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/index.js +17 -0
  441. package/api/resources/dubbing/resources/transcript/client/Client.d.ts +49 -0
  442. package/api/resources/dubbing/resources/transcript/client/Client.js +141 -0
  443. package/api/resources/dubbing/resources/transcript/client/index.d.ts +1 -0
  444. package/api/resources/dubbing/resources/transcript/client/index.js +17 -0
  445. package/api/resources/dubbing/resources/transcript/client/requests/TranscriptGetTranscriptForDubRequest.d.ts +14 -0
  446. package/api/resources/dubbing/resources/transcript/client/requests/TranscriptGetTranscriptForDubRequest.js +5 -0
  447. package/api/resources/dubbing/resources/transcript/client/requests/index.d.ts +1 -0
  448. package/api/resources/dubbing/resources/transcript/client/requests/index.js +2 -0
  449. package/api/resources/dubbing/resources/transcript/index.d.ts +2 -0
  450. package/api/resources/dubbing/resources/transcript/index.js +18 -0
  451. package/api/resources/dubbing/resources/transcript/types/TranscriptGetTranscriptForDubRequestFormatType.d.ts +11 -0
  452. package/api/resources/dubbing/resources/transcript/types/TranscriptGetTranscriptForDubRequestFormatType.js +10 -0
  453. package/api/resources/dubbing/resources/transcript/types/index.d.ts +1 -0
  454. package/api/resources/dubbing/resources/transcript/types/index.js +17 -0
  455. package/api/resources/forcedAlignment/client/Client.d.ts +47 -0
  456. package/api/resources/forcedAlignment/client/Client.js +137 -0
  457. package/api/resources/forcedAlignment/client/index.d.ts +1 -0
  458. package/api/resources/forcedAlignment/client/index.js +17 -0
  459. package/api/resources/forcedAlignment/client/requests/BodyCreateForcedAlignmentV1ForcedAlignmentPost.d.ts +18 -0
  460. package/api/resources/forcedAlignment/client/requests/BodyCreateForcedAlignmentV1ForcedAlignmentPost.js +5 -0
  461. package/api/resources/forcedAlignment/client/requests/index.d.ts +1 -0
  462. package/api/resources/forcedAlignment/client/requests/index.js +2 -0
  463. package/api/resources/forcedAlignment/index.d.ts +1 -0
  464. package/api/resources/forcedAlignment/index.js +17 -0
  465. package/api/resources/history/client/Client.d.ts +84 -0
  466. package/api/resources/history/client/Client.js +377 -0
  467. package/api/resources/history/client/index.d.ts +1 -0
  468. package/api/resources/history/client/index.js +17 -0
  469. package/api/resources/history/client/requests/DownloadHistoryRequest.d.ts +9 -0
  470. package/api/resources/history/client/requests/DownloadHistoryRequest.js +5 -0
  471. package/api/resources/history/client/requests/HistoryListRequest.d.ts +30 -0
  472. package/api/resources/history/client/requests/HistoryListRequest.js +5 -0
  473. package/api/resources/history/client/requests/index.d.ts +2 -0
  474. package/api/resources/history/client/requests/index.js +2 -0
  475. package/api/resources/history/index.d.ts +2 -0
  476. package/api/resources/history/index.js +18 -0
  477. package/api/resources/history/types/HistoryListRequestSource.d.ts +8 -0
  478. package/api/resources/history/types/HistoryListRequestSource.js +10 -0
  479. package/api/resources/history/types/index.d.ts +1 -0
  480. package/api/resources/history/types/index.js +17 -0
  481. package/api/resources/index.d.ts +48 -0
  482. package/api/resources/index.js +87 -0
  483. package/api/resources/models/client/Client.d.ts +46 -0
  484. package/api/resources/models/client/Client.js +125 -0
  485. package/api/resources/models/client/index.d.ts +1 -0
  486. package/api/resources/models/client/index.js +2 -0
  487. package/api/resources/models/index.d.ts +1 -0
  488. package/api/resources/models/index.js +17 -0
  489. package/api/resources/pronunciationDictionaries/client/Client.d.ts +102 -0
  490. package/api/resources/pronunciationDictionaries/client/Client.js +416 -0
  491. package/api/resources/pronunciationDictionaries/client/index.d.ts +1 -0
  492. package/api/resources/pronunciationDictionaries/client/index.js +17 -0
  493. package/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromFilePost.d.ts +20 -0
  494. package/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromFilePost.js +5 -0
  495. package/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPost.d.ts +29 -0
  496. package/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPost.js +5 -0
  497. package/api/resources/pronunciationDictionaries/client/requests/PronunciationDictionariesListRequest.d.ts +26 -0
  498. package/api/resources/pronunciationDictionaries/client/requests/PronunciationDictionariesListRequest.js +5 -0
  499. package/api/resources/pronunciationDictionaries/client/requests/index.d.ts +3 -0
  500. package/api/resources/pronunciationDictionaries/client/requests/index.js +2 -0
  501. package/api/resources/pronunciationDictionaries/index.d.ts +3 -0
  502. package/api/resources/pronunciationDictionaries/index.js +19 -0
  503. package/api/resources/pronunciationDictionaries/resources/index.d.ts +3 -0
  504. package/api/resources/pronunciationDictionaries/resources/index.js +42 -0
  505. package/api/resources/pronunciationDictionaries/resources/rules/client/Client.d.ts +67 -0
  506. package/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +202 -0
  507. package/api/resources/pronunciationDictionaries/resources/rules/client/index.d.ts +1 -0
  508. package/api/resources/pronunciationDictionaries/resources/rules/client/index.js +17 -0
  509. package/api/resources/pronunciationDictionaries/resources/rules/client/requests/PronunciationDictionary.d.ts +22 -0
  510. package/api/resources/pronunciationDictionaries/resources/rules/client/requests/PronunciationDictionary.js +5 -0
  511. package/api/resources/pronunciationDictionaries/resources/rules/client/requests/RemovePronunciationDictionaryRulesRequest.d.ts +13 -0
  512. package/api/resources/pronunciationDictionaries/resources/rules/client/requests/RemovePronunciationDictionaryRulesRequest.js +5 -0
  513. package/api/resources/pronunciationDictionaries/resources/rules/client/requests/index.d.ts +2 -0
  514. package/api/resources/pronunciationDictionaries/resources/rules/client/requests/index.js +2 -0
  515. package/api/resources/pronunciationDictionaries/resources/rules/index.d.ts +2 -0
  516. package/api/resources/pronunciationDictionaries/resources/rules/index.js +18 -0
  517. package/api/resources/pronunciationDictionaries/resources/rules/types/PronunciationDictionaryRule.d.ts +13 -0
  518. package/api/resources/pronunciationDictionaries/resources/rules/types/PronunciationDictionaryRule.js +5 -0
  519. package/api/resources/pronunciationDictionaries/resources/rules/types/index.d.ts +1 -0
  520. package/api/resources/pronunciationDictionaries/resources/rules/types/index.js +17 -0
  521. package/api/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostRulesItem.d.ts +13 -0
  522. package/api/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostRulesItem.js +5 -0
  523. package/api/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostWorkspaceAccess.d.ts +9 -0
  524. package/api/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostWorkspaceAccess.js +11 -0
  525. package/api/resources/pronunciationDictionaries/types/PronunciationDictionariesCreateFromFileRequestWorkspaceAccess.d.ts +9 -0
  526. package/api/resources/pronunciationDictionaries/types/PronunciationDictionariesCreateFromFileRequestWorkspaceAccess.js +11 -0
  527. package/api/resources/pronunciationDictionaries/types/PronunciationDictionariesListRequestSort.d.ts +8 -0
  528. package/api/resources/pronunciationDictionaries/types/PronunciationDictionariesListRequestSort.js +10 -0
  529. package/api/resources/pronunciationDictionaries/types/index.d.ts +4 -0
  530. package/api/resources/pronunciationDictionaries/types/index.js +20 -0
  531. package/api/resources/samples/client/Client.d.ts +48 -0
  532. package/api/resources/samples/client/Client.js +127 -0
  533. package/api/resources/samples/client/index.d.ts +1 -0
  534. package/api/resources/samples/client/index.js +2 -0
  535. package/api/resources/samples/index.d.ts +1 -0
  536. package/api/resources/samples/index.js +17 -0
  537. package/api/resources/speechToSpeech/client/Client.d.ts +44 -0
  538. package/api/resources/speechToSpeech/client/Client.js +232 -0
  539. package/api/resources/speechToSpeech/client/index.d.ts +1 -0
  540. package/api/resources/speechToSpeech/client/index.js +17 -0
  541. package/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechStreamingV1SpeechToSpeechVoiceIdStreamPost.d.ts +45 -0
  542. package/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechStreamingV1SpeechToSpeechVoiceIdStreamPost.js +5 -0
  543. package/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost.d.ts +45 -0
  544. package/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost.js +5 -0
  545. package/api/resources/speechToSpeech/client/requests/index.d.ts +2 -0
  546. package/api/resources/speechToSpeech/client/requests/index.js +2 -0
  547. package/api/resources/speechToSpeech/index.d.ts +2 -0
  548. package/api/resources/speechToSpeech/index.js +18 -0
  549. package/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestFileFormat.d.ts +8 -0
  550. package/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestFileFormat.js +10 -0
  551. package/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.d.ts +28 -0
  552. package/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.js +27 -0
  553. package/api/resources/speechToSpeech/types/SpeechToSpeechStreamRequestFileFormat.d.ts +8 -0
  554. package/api/resources/speechToSpeech/types/SpeechToSpeechStreamRequestFileFormat.js +10 -0
  555. package/api/resources/speechToSpeech/types/SpeechToSpeechStreamRequestOutputFormat.d.ts +28 -0
  556. package/api/resources/speechToSpeech/types/SpeechToSpeechStreamRequestOutputFormat.js +27 -0
  557. package/api/resources/speechToSpeech/types/index.d.ts +4 -0
  558. package/api/resources/speechToSpeech/types/index.js +20 -0
  559. package/api/resources/speechToText/client/Client.d.ts +46 -0
  560. package/api/resources/speechToText/client/Client.js +149 -0
  561. package/api/resources/speechToText/client/index.d.ts +1 -0
  562. package/api/resources/speechToText/client/index.js +17 -0
  563. package/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +36 -0
  564. package/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.js +5 -0
  565. package/api/resources/speechToText/client/requests/index.d.ts +1 -0
  566. package/api/resources/speechToText/client/requests/index.js +2 -0
  567. package/api/resources/speechToText/index.d.ts +2 -0
  568. package/api/resources/speechToText/index.js +18 -0
  569. package/api/resources/speechToText/types/SpeechToTextConvertRequestFileFormat.d.ts +11 -0
  570. package/api/resources/speechToText/types/SpeechToTextConvertRequestFileFormat.js +10 -0
  571. package/api/resources/speechToText/types/SpeechToTextConvertRequestTimestampsGranularity.d.ts +12 -0
  572. package/api/resources/speechToText/types/SpeechToTextConvertRequestTimestampsGranularity.js +11 -0
  573. package/api/resources/speechToText/types/index.d.ts +2 -0
  574. package/api/resources/speechToText/types/index.js +18 -0
  575. package/api/resources/studio/client/Client.d.ts +59 -0
  576. package/api/resources/studio/client/Client.js +144 -0
  577. package/api/resources/studio/client/index.d.ts +1 -0
  578. package/api/resources/studio/client/index.js +17 -0
  579. package/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +49 -0
  580. package/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.js +5 -0
  581. package/api/resources/studio/client/requests/index.d.ts +1 -0
  582. package/api/resources/studio/client/requests/index.js +2 -0
  583. package/api/resources/studio/index.d.ts +3 -0
  584. package/api/resources/studio/index.js +19 -0
  585. package/api/resources/studio/resources/index.d.ts +3 -0
  586. package/api/resources/studio/resources/index.js +42 -0
  587. package/api/resources/studio/resources/projects/client/Client.d.ts +130 -0
  588. package/api/resources/studio/resources/projects/client/Client.js +541 -0
  589. package/api/resources/studio/resources/projects/client/index.d.ts +1 -0
  590. package/api/resources/studio/resources/projects/client/index.js +17 -0
  591. package/api/resources/studio/resources/projects/client/requests/BodyCreateStudioProjectV1StudioProjectsPost.d.ts +79 -0
  592. package/api/resources/studio/resources/projects/client/requests/BodyCreateStudioProjectV1StudioProjectsPost.js +5 -0
  593. package/api/resources/studio/resources/projects/client/requests/BodyUpdateStudioProjectV1StudioProjectsProjectIdPost.d.ts +27 -0
  594. package/api/resources/studio/resources/projects/client/requests/BodyUpdateStudioProjectV1StudioProjectsProjectIdPost.js +5 -0
  595. package/api/resources/studio/resources/projects/client/requests/index.d.ts +2 -0
  596. package/api/resources/studio/resources/projects/client/requests/index.js +2 -0
  597. package/api/resources/studio/resources/projects/index.d.ts +3 -0
  598. package/api/resources/studio/resources/projects/index.js +19 -0
  599. package/api/resources/studio/resources/projects/resources/chapters/client/Client.d.ts +120 -0
  600. package/api/resources/studio/resources/projects/resources/chapters/client/Client.js +452 -0
  601. package/api/resources/studio/resources/projects/resources/chapters/client/index.d.ts +1 -0
  602. package/api/resources/studio/resources/projects/resources/chapters/client/index.js +17 -0
  603. package/api/resources/studio/resources/projects/resources/chapters/client/requests/BodyCreateChapterV1StudioProjectsProjectIdChaptersPost.d.ts +15 -0
  604. package/api/resources/studio/resources/projects/resources/chapters/client/requests/BodyCreateChapterV1StudioProjectsProjectIdChaptersPost.js +5 -0
  605. package/api/resources/studio/resources/projects/resources/chapters/client/requests/BodyUpdateChapterV1StudioProjectsProjectIdChaptersChapterIdPost.d.ts +14 -0
  606. package/api/resources/studio/resources/projects/resources/chapters/client/requests/BodyUpdateChapterV1StudioProjectsProjectIdChaptersChapterIdPost.js +5 -0
  607. package/api/resources/studio/resources/projects/resources/chapters/client/requests/index.d.ts +2 -0
  608. package/api/resources/studio/resources/projects/resources/chapters/client/requests/index.js +2 -0
  609. package/api/resources/studio/resources/projects/resources/chapters/index.d.ts +2 -0
  610. package/api/resources/studio/resources/projects/resources/chapters/index.js +18 -0
  611. package/api/resources/studio/resources/projects/resources/chapters/resources/index.d.ts +2 -0
  612. package/api/resources/studio/resources/projects/resources/chapters/resources/index.js +41 -0
  613. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.d.ts +67 -0
  614. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +246 -0
  615. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/index.d.ts +1 -0
  616. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/index.js +17 -0
  617. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/BodyStreamChapterAudioV1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.d.ts +7 -0
  618. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/BodyStreamChapterAudioV1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.js +5 -0
  619. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/index.d.ts +1 -0
  620. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/index.js +2 -0
  621. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/index.d.ts +1 -0
  622. package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/index.js +17 -0
  623. package/api/resources/studio/resources/projects/resources/content/client/Client.d.ts +45 -0
  624. package/api/resources/studio/resources/projects/resources/content/client/Client.js +136 -0
  625. package/api/resources/studio/resources/projects/resources/content/client/index.d.ts +1 -0
  626. package/api/resources/studio/resources/projects/resources/content/client/index.js +17 -0
  627. package/api/resources/studio/resources/projects/resources/content/client/requests/BodyUpdateStudioProjectContentV1StudioProjectsProjectIdContentPost.d.ts +15 -0
  628. package/api/resources/studio/resources/projects/resources/content/client/requests/BodyUpdateStudioProjectContentV1StudioProjectsProjectIdContentPost.js +5 -0
  629. package/api/resources/studio/resources/projects/resources/content/client/requests/index.d.ts +1 -0
  630. package/api/resources/studio/resources/projects/resources/content/client/requests/index.js +2 -0
  631. package/api/resources/studio/resources/projects/resources/content/index.d.ts +1 -0
  632. package/api/resources/studio/resources/projects/resources/content/index.js +17 -0
  633. package/api/resources/studio/resources/projects/resources/index.d.ts +8 -0
  634. package/api/resources/studio/resources/projects/resources/index.js +47 -0
  635. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.d.ts +49 -0
  636. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +132 -0
  637. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/index.d.ts +1 -0
  638. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/index.js +17 -0
  639. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost.d.ts +18 -0
  640. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost.js +5 -0
  641. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/index.d.ts +1 -0
  642. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/index.js +2 -0
  643. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/index.d.ts +1 -0
  644. package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/index.js +17 -0
  645. package/api/resources/studio/resources/projects/resources/snapshots/client/Client.d.ts +71 -0
  646. package/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +299 -0
  647. package/api/resources/studio/resources/projects/resources/snapshots/client/index.d.ts +1 -0
  648. package/api/resources/studio/resources/projects/resources/snapshots/client/index.js +17 -0
  649. package/api/resources/studio/resources/projects/resources/snapshots/client/requests/BodyStreamStudioProjectAudioV1StudioProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.d.ts +7 -0
  650. package/api/resources/studio/resources/projects/resources/snapshots/client/requests/BodyStreamStudioProjectAudioV1StudioProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.js +5 -0
  651. package/api/resources/studio/resources/projects/resources/snapshots/client/requests/index.d.ts +1 -0
  652. package/api/resources/studio/resources/projects/resources/snapshots/client/requests/index.js +2 -0
  653. package/api/resources/studio/resources/projects/resources/snapshots/index.d.ts +1 -0
  654. package/api/resources/studio/resources/projects/resources/snapshots/index.js +17 -0
  655. package/api/resources/studio/resources/projects/types/ProjectsCreateRequestApplyTextNormalization.d.ts +10 -0
  656. package/api/resources/studio/resources/projects/types/ProjectsCreateRequestApplyTextNormalization.js +12 -0
  657. package/api/resources/studio/resources/projects/types/ProjectsCreateRequestFiction.d.ts +8 -0
  658. package/api/resources/studio/resources/projects/types/ProjectsCreateRequestFiction.js +10 -0
  659. package/api/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.d.ts +10 -0
  660. package/api/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.js +12 -0
  661. package/api/resources/studio/resources/projects/types/ProjectsCreateRequestTargetAudience.d.ts +10 -0
  662. package/api/resources/studio/resources/projects/types/ProjectsCreateRequestTargetAudience.js +12 -0
  663. package/api/resources/studio/resources/projects/types/index.d.ts +4 -0
  664. package/api/resources/studio/resources/projects/types/index.js +20 -0
  665. package/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostDurationScale.d.ts +15 -0
  666. package/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostDurationScale.js +11 -0
  667. package/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostMode.d.ts +16 -0
  668. package/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostMode.js +5 -0
  669. package/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostQualityPreset.d.ts +18 -0
  670. package/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostQualityPreset.js +13 -0
  671. package/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.d.ts +8 -0
  672. package/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.js +5 -0
  673. package/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.d.ts +13 -0
  674. package/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.js +5 -0
  675. package/api/resources/studio/types/index.d.ts +5 -0
  676. package/api/resources/studio/types/index.js +21 -0
  677. package/api/resources/textToSoundEffects/client/Client.d.ts +38 -0
  678. package/api/resources/textToSoundEffects/client/Client.js +135 -0
  679. package/api/resources/textToSoundEffects/client/index.d.ts +1 -0
  680. package/api/resources/textToSoundEffects/client/index.js +17 -0
  681. package/api/resources/textToSoundEffects/client/requests/CreateSoundEffectRequest.d.ts +22 -0
  682. package/api/resources/textToSoundEffects/client/requests/CreateSoundEffectRequest.js +5 -0
  683. package/api/resources/textToSoundEffects/client/requests/index.d.ts +1 -0
  684. package/api/resources/textToSoundEffects/client/requests/index.js +2 -0
  685. package/api/resources/textToSoundEffects/index.d.ts +2 -0
  686. package/api/resources/textToSoundEffects/index.js +18 -0
  687. package/api/resources/textToSoundEffects/types/TextToSoundEffectsConvertRequestOutputFormat.d.ts +28 -0
  688. package/api/resources/textToSoundEffects/types/TextToSoundEffectsConvertRequestOutputFormat.js +27 -0
  689. package/api/resources/textToSoundEffects/types/index.d.ts +1 -0
  690. package/api/resources/textToSoundEffects/types/index.js +17 -0
  691. package/api/resources/textToSpeech/client/Client.d.ts +65 -0
  692. package/api/resources/textToSpeech/client/Client.js +367 -0
  693. package/api/resources/textToSpeech/client/index.d.ts +1 -0
  694. package/api/resources/textToSpeech/client/index.js +17 -0
  695. package/api/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.d.ts +59 -0
  696. package/api/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.js +5 -0
  697. package/api/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.d.ts +59 -0
  698. package/api/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.js +5 -0
  699. package/api/resources/textToSpeech/client/requests/TextToSpeechRequest.d.ts +59 -0
  700. package/api/resources/textToSpeech/client/requests/TextToSpeechRequest.js +5 -0
  701. package/api/resources/textToSpeech/client/requests/TextToSpeechWithTimestampsRequest.d.ts +57 -0
  702. package/api/resources/textToSpeech/client/requests/TextToSpeechWithTimestampsRequest.js +5 -0
  703. package/api/resources/textToSpeech/client/requests/index.d.ts +4 -0
  704. package/api/resources/textToSpeech/client/requests/index.js +2 -0
  705. package/api/resources/textToSpeech/index.d.ts +2 -0
  706. package/api/resources/textToSpeech/index.js +18 -0
  707. package/api/resources/textToSpeech/types/BodyTextToSpeechStreamingV1TextToSpeechVoiceIdStreamPostApplyTextNormalization.d.ts +12 -0
  708. package/api/resources/textToSpeech/types/BodyTextToSpeechStreamingV1TextToSpeechVoiceIdStreamPostApplyTextNormalization.js +11 -0
  709. package/api/resources/textToSpeech/types/BodyTextToSpeechStreamingWithTimestampsV1TextToSpeechVoiceIdStreamWithTimestampsPostApplyTextNormalization.d.ts +12 -0
  710. package/api/resources/textToSpeech/types/BodyTextToSpeechStreamingWithTimestampsV1TextToSpeechVoiceIdStreamWithTimestampsPostApplyTextNormalization.js +11 -0
  711. package/api/resources/textToSpeech/types/BodyTextToSpeechV1TextToSpeechVoiceIdPostApplyTextNormalization.d.ts +12 -0
  712. package/api/resources/textToSpeech/types/BodyTextToSpeechV1TextToSpeechVoiceIdPostApplyTextNormalization.js +11 -0
  713. package/api/resources/textToSpeech/types/BodyTextToSpeechWithTimestampsV1TextToSpeechVoiceIdWithTimestampsPostApplyTextNormalization.d.ts +12 -0
  714. package/api/resources/textToSpeech/types/BodyTextToSpeechWithTimestampsV1TextToSpeechVoiceIdWithTimestampsPostApplyTextNormalization.js +11 -0
  715. package/api/resources/textToSpeech/types/TextToSpeechConvertRequestOutputFormat.d.ts +28 -0
  716. package/api/resources/textToSpeech/types/TextToSpeechConvertRequestOutputFormat.js +27 -0
  717. package/api/resources/textToSpeech/types/TextToSpeechConvertWithTimestampsRequestOutputFormat.d.ts +28 -0
  718. package/api/resources/textToSpeech/types/TextToSpeechConvertWithTimestampsRequestOutputFormat.js +27 -0
  719. package/api/resources/textToSpeech/types/TextToSpeechStreamRequestOutputFormat.d.ts +28 -0
  720. package/api/resources/textToSpeech/types/TextToSpeechStreamRequestOutputFormat.js +27 -0
  721. package/api/resources/textToSpeech/types/TextToSpeechStreamWithTimestampsRequestOutputFormat.d.ts +28 -0
  722. package/api/resources/textToSpeech/types/TextToSpeechStreamWithTimestampsRequestOutputFormat.js +27 -0
  723. package/api/resources/textToSpeech/types/index.d.ts +8 -0
  724. package/api/resources/textToSpeech/types/index.js +24 -0
  725. package/api/resources/textToVoice/client/Client.d.ts +63 -0
  726. package/api/resources/textToVoice/client/Client.js +212 -0
  727. package/api/resources/textToVoice/client/index.d.ts +1 -0
  728. package/api/resources/textToVoice/client/index.js +17 -0
  729. package/api/resources/textToVoice/client/requests/SaveVoicePreviewRequest.d.ts +23 -0
  730. package/api/resources/textToVoice/client/requests/SaveVoicePreviewRequest.js +5 -0
  731. package/api/resources/textToVoice/client/requests/VoiceDesignRequest.d.ts +30 -0
  732. package/api/resources/textToVoice/client/requests/VoiceDesignRequest.js +5 -0
  733. package/api/resources/textToVoice/client/requests/index.d.ts +2 -0
  734. package/api/resources/textToVoice/client/requests/index.js +2 -0
  735. package/api/resources/textToVoice/index.d.ts +2 -0
  736. package/api/resources/textToVoice/index.js +18 -0
  737. package/api/resources/textToVoice/types/TextToVoiceCreatePreviewsRequestOutputFormat.d.ts +28 -0
  738. package/api/resources/textToVoice/types/TextToVoiceCreatePreviewsRequestOutputFormat.js +27 -0
  739. package/api/resources/textToVoice/types/index.d.ts +1 -0
  740. package/api/resources/textToVoice/types/index.js +17 -0
  741. package/api/resources/usage/client/Client.d.ts +47 -0
  742. package/api/resources/usage/client/Client.js +146 -0
  743. package/api/resources/usage/client/index.d.ts +1 -0
  744. package/api/resources/usage/client/index.js +17 -0
  745. package/api/resources/usage/client/requests/UsageGetRequest.d.ts +37 -0
  746. package/api/resources/usage/client/requests/UsageGetRequest.js +5 -0
  747. package/api/resources/usage/client/requests/index.d.ts +1 -0
  748. package/api/resources/usage/client/requests/index.js +2 -0
  749. package/api/resources/usage/index.d.ts +1 -0
  750. package/api/resources/usage/index.js +17 -0
  751. package/api/resources/user/client/Client.d.ts +46 -0
  752. package/api/resources/user/client/Client.js +127 -0
  753. package/api/resources/user/client/index.d.ts +1 -0
  754. package/api/resources/user/client/index.js +2 -0
  755. package/api/resources/user/index.d.ts +2 -0
  756. package/api/resources/user/index.js +18 -0
  757. package/api/resources/user/resources/index.d.ts +1 -0
  758. package/api/resources/user/resources/index.js +37 -0
  759. package/api/resources/user/resources/subscription/client/Client.d.ts +43 -0
  760. package/api/resources/user/resources/subscription/client/Client.js +122 -0
  761. package/api/resources/user/resources/subscription/client/index.d.ts +1 -0
  762. package/api/resources/user/resources/subscription/client/index.js +2 -0
  763. package/api/resources/user/resources/subscription/index.d.ts +1 -0
  764. package/api/resources/user/resources/subscription/index.js +17 -0
  765. package/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/index.d.ts +1 -0
  766. package/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/index.js +17 -0
  767. package/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/ReceiveMessageMulti.d.ts +8 -0
  768. package/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/ReceiveMessageMulti.js +5 -0
  769. package/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/SendMessageMulti.d.ts +8 -0
  770. package/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/SendMessageMulti.js +5 -0
  771. package/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/index.d.ts +2 -0
  772. package/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/index.js +18 -0
  773. package/api/resources/v1TextToSpeechVoiceIdStreamInput/index.d.ts +1 -0
  774. package/api/resources/v1TextToSpeechVoiceIdStreamInput/index.js +17 -0
  775. package/api/resources/v1TextToSpeechVoiceIdStreamInput/types/ReceiveMessage.d.ts +8 -0
  776. package/api/resources/v1TextToSpeechVoiceIdStreamInput/types/ReceiveMessage.js +5 -0
  777. package/api/resources/v1TextToSpeechVoiceIdStreamInput/types/SendMessage.d.ts +8 -0
  778. package/api/resources/v1TextToSpeechVoiceIdStreamInput/types/SendMessage.js +5 -0
  779. package/api/resources/v1TextToSpeechVoiceIdStreamInput/types/index.d.ts +2 -0
  780. package/api/resources/v1TextToSpeechVoiceIdStreamInput/types/index.js +18 -0
  781. package/api/resources/voices/client/Client.d.ts +163 -0
  782. package/api/resources/voices/client/Client.js +726 -0
  783. package/api/resources/voices/client/index.d.ts +1 -0
  784. package/api/resources/voices/client/index.js +17 -0
  785. package/api/resources/voices/client/requests/BodyAddSharedVoiceV1VoicesAddPublicUserIdVoiceIdPost.d.ts +13 -0
  786. package/api/resources/voices/client/requests/BodyAddSharedVoiceV1VoicesAddPublicUserIdVoiceIdPost.js +5 -0
  787. package/api/resources/voices/client/requests/BodyEditVoiceV1VoicesVoiceIdEditPost.d.ts +21 -0
  788. package/api/resources/voices/client/requests/BodyEditVoiceV1VoicesVoiceIdEditPost.js +5 -0
  789. package/api/resources/voices/client/requests/BodyGetSimilarLibraryVoicesV1SimilarVoicesPost.d.ts +15 -0
  790. package/api/resources/voices/client/requests/BodyGetSimilarLibraryVoicesV1SimilarVoicesPost.js +5 -0
  791. package/api/resources/voices/client/requests/VoicesGetAllRequest.d.ts +13 -0
  792. package/api/resources/voices/client/requests/VoicesGetAllRequest.js +5 -0
  793. package/api/resources/voices/client/requests/VoicesGetRequest.d.ts +13 -0
  794. package/api/resources/voices/client/requests/VoicesGetRequest.js +5 -0
  795. package/api/resources/voices/client/requests/VoicesGetSharedRequest.d.ts +78 -0
  796. package/api/resources/voices/client/requests/VoicesGetSharedRequest.js +5 -0
  797. package/api/resources/voices/client/requests/VoicesSearchRequest.d.ts +51 -0
  798. package/api/resources/voices/client/requests/VoicesSearchRequest.js +5 -0
  799. package/api/resources/voices/client/requests/index.d.ts +7 -0
  800. package/api/resources/voices/client/requests/index.js +2 -0
  801. package/api/resources/voices/index.d.ts +3 -0
  802. package/api/resources/voices/index.js +19 -0
  803. package/api/resources/voices/resources/index.d.ts +6 -0
  804. package/api/resources/voices/resources/index.js +45 -0
  805. package/api/resources/voices/resources/ivc/client/Client.d.ts +47 -0
  806. package/api/resources/voices/resources/ivc/client/Client.js +142 -0
  807. package/api/resources/voices/resources/ivc/client/index.d.ts +1 -0
  808. package/api/resources/voices/resources/ivc/client/index.js +17 -0
  809. package/api/resources/voices/resources/ivc/client/requests/BodyAddVoiceV1VoicesAddPost.d.ts +22 -0
  810. package/api/resources/voices/resources/ivc/client/requests/BodyAddVoiceV1VoicesAddPost.js +5 -0
  811. package/api/resources/voices/resources/ivc/client/requests/index.d.ts +1 -0
  812. package/api/resources/voices/resources/ivc/client/requests/index.js +2 -0
  813. package/api/resources/voices/resources/ivc/index.d.ts +1 -0
  814. package/api/resources/voices/resources/ivc/index.js +17 -0
  815. package/api/resources/voices/resources/pvc/client/Client.d.ts +81 -0
  816. package/api/resources/voices/resources/pvc/client/Client.js +266 -0
  817. package/api/resources/voices/resources/pvc/client/index.d.ts +1 -0
  818. package/api/resources/voices/resources/pvc/client/index.js +17 -0
  819. package/api/resources/voices/resources/pvc/client/requests/BodyEditPvcVoiceV1VoicesPvcVoiceIdPost.d.ts +17 -0
  820. package/api/resources/voices/resources/pvc/client/requests/BodyEditPvcVoiceV1VoicesPvcVoiceIdPost.js +5 -0
  821. package/api/resources/voices/resources/pvc/client/requests/BodyRunPvcTrainingV1VoicesPvcVoiceIdTrainPost.d.ts +11 -0
  822. package/api/resources/voices/resources/pvc/client/requests/BodyRunPvcTrainingV1VoicesPvcVoiceIdTrainPost.js +5 -0
  823. package/api/resources/voices/resources/pvc/client/requests/CreatePvcVoiceRequest.d.ts +20 -0
  824. package/api/resources/voices/resources/pvc/client/requests/CreatePvcVoiceRequest.js +5 -0
  825. package/api/resources/voices/resources/pvc/client/requests/index.d.ts +3 -0
  826. package/api/resources/voices/resources/pvc/client/requests/index.js +2 -0
  827. package/api/resources/voices/resources/pvc/index.d.ts +2 -0
  828. package/api/resources/voices/resources/pvc/index.js +18 -0
  829. package/api/resources/voices/resources/pvc/resources/index.d.ts +4 -0
  830. package/api/resources/voices/resources/pvc/resources/index.js +43 -0
  831. package/api/resources/voices/resources/pvc/resources/samples/client/Client.d.ts +85 -0
  832. package/api/resources/voices/resources/pvc/resources/samples/client/Client.js +279 -0
  833. package/api/resources/voices/resources/pvc/resources/samples/client/index.d.ts +1 -0
  834. package/api/resources/voices/resources/pvc/resources/samples/client/index.js +17 -0
  835. package/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyAddSamplesToPvcVoiceV1VoicesPvcVoiceIdSamplesPost.d.ts +15 -0
  836. package/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyAddSamplesToPvcVoiceV1VoicesPvcVoiceIdSamplesPost.js +5 -0
  837. package/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyUpdatePvcVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost.d.ts +17 -0
  838. package/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyUpdatePvcVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost.js +5 -0
  839. package/api/resources/voices/resources/pvc/resources/samples/client/requests/index.d.ts +2 -0
  840. package/api/resources/voices/resources/pvc/resources/samples/client/requests/index.js +2 -0
  841. package/api/resources/voices/resources/pvc/resources/samples/index.d.ts +2 -0
  842. package/api/resources/voices/resources/pvc/resources/samples/index.js +18 -0
  843. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.d.ts +45 -0
  844. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +127 -0
  845. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/index.d.ts +1 -0
  846. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/index.js +2 -0
  847. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/index.d.ts +1 -0
  848. package/api/resources/voices/resources/pvc/resources/samples/resources/audio/index.js +17 -0
  849. package/api/resources/voices/resources/pvc/resources/samples/resources/index.d.ts +3 -0
  850. package/api/resources/voices/resources/pvc/resources/samples/resources/index.js +39 -0
  851. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.d.ts +62 -0
  852. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +197 -0
  853. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/index.d.ts +1 -0
  854. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/index.js +2 -0
  855. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/index.d.ts +2 -0
  856. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/index.js +18 -0
  857. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.d.ts +46 -0
  858. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +125 -0
  859. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/index.d.ts +1 -0
  860. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/index.js +2 -0
  861. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/index.d.ts +1 -0
  862. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/index.js +17 -0
  863. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/index.d.ts +1 -0
  864. package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/index.js +37 -0
  865. package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.d.ts +45 -0
  866. package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +127 -0
  867. package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/index.d.ts +1 -0
  868. package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/index.js +2 -0
  869. package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/index.d.ts +1 -0
  870. package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/index.js +17 -0
  871. package/api/resources/voices/resources/pvc/resources/verification/client/Client.d.ts +50 -0
  872. package/api/resources/voices/resources/pvc/resources/verification/client/Client.js +143 -0
  873. package/api/resources/voices/resources/pvc/resources/verification/client/index.d.ts +1 -0
  874. package/api/resources/voices/resources/pvc/resources/verification/client/index.js +17 -0
  875. package/api/resources/voices/resources/pvc/resources/verification/client/requests/BodyRequestManualVerificationV1VoicesPvcVoiceIdVerificationPost.d.ts +15 -0
  876. package/api/resources/voices/resources/pvc/resources/verification/client/requests/BodyRequestManualVerificationV1VoicesPvcVoiceIdVerificationPost.js +5 -0
  877. package/api/resources/voices/resources/pvc/resources/verification/client/requests/index.d.ts +1 -0
  878. package/api/resources/voices/resources/pvc/resources/verification/client/requests/index.js +2 -0
  879. package/api/resources/voices/resources/pvc/resources/verification/index.d.ts +2 -0
  880. package/api/resources/voices/resources/pvc/resources/verification/index.js +18 -0
  881. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.d.ts +60 -0
  882. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +194 -0
  883. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/index.d.ts +1 -0
  884. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/index.js +17 -0
  885. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/requests/BodyVerifyPvcVoiceCaptchaV1VoicesPvcVoiceIdCaptchaPost.d.ts +13 -0
  886. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/requests/BodyVerifyPvcVoiceCaptchaV1VoicesPvcVoiceIdCaptchaPost.js +5 -0
  887. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/requests/index.d.ts +1 -0
  888. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/requests/index.js +2 -0
  889. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/index.d.ts +1 -0
  890. package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/index.js +17 -0
  891. package/api/resources/voices/resources/pvc/resources/verification/resources/index.d.ts +2 -0
  892. package/api/resources/voices/resources/pvc/resources/verification/resources/index.js +41 -0
  893. package/api/resources/voices/resources/samples/client/Client.d.ts +21 -0
  894. package/api/resources/voices/resources/samples/client/Client.js +17 -0
  895. package/api/resources/voices/resources/samples/client/index.d.ts +1 -0
  896. package/api/resources/voices/resources/samples/client/index.js +2 -0
  897. package/api/resources/voices/resources/samples/index.d.ts +2 -0
  898. package/api/resources/voices/resources/samples/index.js +18 -0
  899. package/api/resources/voices/resources/samples/resources/audio/client/Client.d.ts +37 -0
  900. package/api/resources/voices/resources/samples/resources/audio/client/Client.js +117 -0
  901. package/api/resources/voices/resources/samples/resources/audio/client/index.d.ts +1 -0
  902. package/api/resources/voices/resources/samples/resources/audio/client/index.js +2 -0
  903. package/api/resources/voices/resources/samples/resources/audio/index.d.ts +1 -0
  904. package/api/resources/voices/resources/samples/resources/audio/index.js +17 -0
  905. package/api/resources/voices/resources/samples/resources/index.d.ts +1 -0
  906. package/api/resources/voices/resources/samples/resources/index.js +37 -0
  907. package/api/resources/voices/resources/settings/client/Client.d.ts +74 -0
  908. package/api/resources/voices/resources/settings/client/Client.js +248 -0
  909. package/api/resources/voices/resources/settings/client/index.d.ts +1 -0
  910. package/api/resources/voices/resources/settings/client/index.js +2 -0
  911. package/api/resources/voices/resources/settings/index.d.ts +1 -0
  912. package/api/resources/voices/resources/settings/index.js +17 -0
  913. package/api/resources/voices/types/VoicesGetSharedRequestCategory.d.ts +12 -0
  914. package/api/resources/voices/types/VoicesGetSharedRequestCategory.js +11 -0
  915. package/api/resources/voices/types/index.d.ts +1 -0
  916. package/api/resources/voices/types/index.js +17 -0
  917. package/api/resources/workspace/client/Client.d.ts +30 -0
  918. package/api/resources/workspace/client/Client.js +32 -0
  919. package/api/resources/workspace/client/index.d.ts +1 -0
  920. package/api/resources/workspace/client/index.js +2 -0
  921. package/api/resources/workspace/index.d.ts +2 -0
  922. package/api/resources/workspace/index.js +18 -0
  923. package/api/resources/workspace/resources/groups/client/Client.d.ts +49 -0
  924. package/api/resources/workspace/resources/groups/client/Client.js +137 -0
  925. package/api/resources/workspace/resources/groups/client/index.d.ts +1 -0
  926. package/api/resources/workspace/resources/groups/client/index.js +17 -0
  927. package/api/resources/workspace/resources/groups/client/requests/GroupsSearchRequest.d.ts +15 -0
  928. package/api/resources/workspace/resources/groups/client/requests/GroupsSearchRequest.js +5 -0
  929. package/api/resources/workspace/resources/groups/client/requests/index.d.ts +1 -0
  930. package/api/resources/workspace/resources/groups/client/requests/index.js +2 -0
  931. package/api/resources/workspace/resources/groups/index.d.ts +2 -0
  932. package/api/resources/workspace/resources/groups/index.js +18 -0
  933. package/api/resources/workspace/resources/groups/resources/index.d.ts +2 -0
  934. package/api/resources/workspace/resources/groups/resources/index.js +41 -0
  935. package/api/resources/workspace/resources/groups/resources/members/client/Client.d.ts +63 -0
  936. package/api/resources/workspace/resources/groups/resources/members/client/Client.js +198 -0
  937. package/api/resources/workspace/resources/groups/resources/members/client/index.d.ts +1 -0
  938. package/api/resources/workspace/resources/groups/resources/members/client/index.js +17 -0
  939. package/api/resources/workspace/resources/groups/resources/members/client/requests/AddMemberToGroupRequest.d.ts +13 -0
  940. package/api/resources/workspace/resources/groups/resources/members/client/requests/AddMemberToGroupRequest.js +5 -0
  941. package/api/resources/workspace/resources/groups/resources/members/client/requests/BodyDeleteMemberFromUserGroupV1WorkspaceGroupsGroupIdMembersRemovePost.d.ts +13 -0
  942. package/api/resources/workspace/resources/groups/resources/members/client/requests/BodyDeleteMemberFromUserGroupV1WorkspaceGroupsGroupIdMembersRemovePost.js +5 -0
  943. package/api/resources/workspace/resources/groups/resources/members/client/requests/index.d.ts +2 -0
  944. package/api/resources/workspace/resources/groups/resources/members/client/requests/index.js +2 -0
  945. package/api/resources/workspace/resources/groups/resources/members/index.d.ts +1 -0
  946. package/api/resources/workspace/resources/groups/resources/members/index.js +17 -0
  947. package/api/resources/workspace/resources/index.d.ts +11 -0
  948. package/api/resources/workspace/resources/index.js +50 -0
  949. package/api/resources/workspace/resources/invites/client/Client.d.ts +76 -0
  950. package/api/resources/workspace/resources/invites/client/Client.js +263 -0
  951. package/api/resources/workspace/resources/invites/client/index.d.ts +1 -0
  952. package/api/resources/workspace/resources/invites/client/index.js +17 -0
  953. package/api/resources/workspace/resources/invites/client/requests/BodyDeleteExistingInvitationV1WorkspaceInvitesDelete.d.ts +13 -0
  954. package/api/resources/workspace/resources/invites/client/requests/BodyDeleteExistingInvitationV1WorkspaceInvitesDelete.js +5 -0
  955. package/api/resources/workspace/resources/invites/client/requests/BodyInviteMultipleUsersV1WorkspaceInvitesAddBulkPost.d.ts +15 -0
  956. package/api/resources/workspace/resources/invites/client/requests/BodyInviteMultipleUsersV1WorkspaceInvitesAddBulkPost.js +5 -0
  957. package/api/resources/workspace/resources/invites/client/requests/InviteUserRequest.d.ts +18 -0
  958. package/api/resources/workspace/resources/invites/client/requests/InviteUserRequest.js +5 -0
  959. package/api/resources/workspace/resources/invites/client/requests/index.d.ts +3 -0
  960. package/api/resources/workspace/resources/invites/client/requests/index.js +2 -0
  961. package/api/resources/workspace/resources/invites/index.d.ts +2 -0
  962. package/api/resources/workspace/resources/invites/index.js +18 -0
  963. package/api/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.d.ts +22 -0
  964. package/api/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.js +24 -0
  965. package/api/resources/workspace/resources/invites/types/index.d.ts +1 -0
  966. package/api/resources/workspace/resources/invites/types/index.js +17 -0
  967. package/api/resources/workspace/resources/members/client/Client.d.ts +61 -0
  968. package/api/resources/workspace/resources/members/client/Client.js +196 -0
  969. package/api/resources/workspace/resources/members/client/index.d.ts +1 -0
  970. package/api/resources/workspace/resources/members/client/index.js +17 -0
  971. package/api/resources/workspace/resources/members/client/requests/BodyDeleteMemberV1WorkspaceMembersDelete.d.ts +13 -0
  972. package/api/resources/workspace/resources/members/client/requests/BodyDeleteMemberV1WorkspaceMembersDelete.js +5 -0
  973. package/api/resources/workspace/resources/members/client/requests/UpdateMemberRequest.d.ts +18 -0
  974. package/api/resources/workspace/resources/members/client/requests/UpdateMemberRequest.js +5 -0
  975. package/api/resources/workspace/resources/members/client/requests/index.d.ts +2 -0
  976. package/api/resources/workspace/resources/members/client/requests/index.js +2 -0
  977. package/api/resources/workspace/resources/members/index.d.ts +2 -0
  978. package/api/resources/workspace/resources/members/index.js +18 -0
  979. package/api/resources/workspace/resources/members/types/BodyUpdateMemberV1WorkspaceMembersPostWorkspaceRole.d.ts +8 -0
  980. package/api/resources/workspace/resources/members/types/BodyUpdateMemberV1WorkspaceMembersPostWorkspaceRole.js +10 -0
  981. package/api/resources/workspace/resources/members/types/index.d.ts +1 -0
  982. package/api/resources/workspace/resources/members/types/index.js +17 -0
  983. package/api/resources/workspace/resources/resources/client/Client.d.ts +80 -0
  984. package/api/resources/workspace/resources/resources/client/Client.js +264 -0
  985. package/api/resources/workspace/resources/resources/client/index.d.ts +1 -0
  986. package/api/resources/workspace/resources/resources/client/index.js +17 -0
  987. package/api/resources/workspace/resources/resources/client/requests/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePost.d.ts +23 -0
  988. package/api/resources/workspace/resources/resources/client/requests/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePost.js +5 -0
  989. package/api/resources/workspace/resources/resources/client/requests/BodyUnshareWorkspaceResourceV1WorkspaceResourcesResourceIdUnsharePost.d.ts +20 -0
  990. package/api/resources/workspace/resources/resources/client/requests/BodyUnshareWorkspaceResourceV1WorkspaceResourcesResourceIdUnsharePost.js +5 -0
  991. package/api/resources/workspace/resources/resources/client/requests/ResourcesGetRequest.d.ts +16 -0
  992. package/api/resources/workspace/resources/resources/client/requests/ResourcesGetRequest.js +5 -0
  993. package/api/resources/workspace/resources/resources/client/requests/index.d.ts +3 -0
  994. package/api/resources/workspace/resources/resources/client/requests/index.js +2 -0
  995. package/api/resources/workspace/resources/resources/index.d.ts +2 -0
  996. package/api/resources/workspace/resources/resources/index.js +18 -0
  997. package/api/resources/workspace/resources/resources/types/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePostRole.d.ts +12 -0
  998. package/api/resources/workspace/resources/resources/types/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePostRole.js +11 -0
  999. package/api/resources/workspace/resources/resources/types/index.d.ts +1 -0
  1000. package/api/resources/workspace/resources/resources/types/index.js +17 -0
  1001. package/api/types/AddChapterResponseModel.d.ts +7 -0
  1002. package/api/types/AddChapterResponseModel.js +5 -0
  1003. package/api/types/AddKnowledgeBaseResponseModel.d.ts +8 -0
  1004. package/api/types/AddKnowledgeBaseResponseModel.js +5 -0
  1005. package/api/types/AddProjectRequest.d.ts +70 -0
  1006. package/api/types/AddProjectRequest.js +5 -0
  1007. package/api/types/AddProjectResponseModel.d.ts +7 -0
  1008. package/api/types/AddProjectResponseModel.js +5 -0
  1009. package/api/types/AddPronunciationDictionaryResponseModel.d.ts +22 -0
  1010. package/api/types/AddPronunciationDictionaryResponseModel.js +5 -0
  1011. package/api/types/AddPronunciationDictionaryResponseModelPermissionOnResource.d.ts +9 -0
  1012. package/api/types/AddPronunciationDictionaryResponseModelPermissionOnResource.js +11 -0
  1013. package/api/types/AddSharingVoiceRequest.d.ts +4 -0
  1014. package/api/types/AddSharingVoiceRequest.js +5 -0
  1015. package/api/types/AddVoiceIvcResponseModel.d.ts +9 -0
  1016. package/api/types/AddVoiceIvcResponseModel.js +5 -0
  1017. package/api/types/AddVoiceResponseModel.d.ts +7 -0
  1018. package/api/types/AddVoiceResponseModel.js +5 -0
  1019. package/api/types/AddWorkspaceGroupMemberResponseModel.d.ts +7 -0
  1020. package/api/types/AddWorkspaceGroupMemberResponseModel.js +5 -0
  1021. package/api/types/AddWorkspaceInviteResponseModel.d.ts +7 -0
  1022. package/api/types/AddWorkspaceInviteResponseModel.js +5 -0
  1023. package/api/types/AdditionalFormatResponseModel.d.ts +15 -0
  1024. package/api/types/AdditionalFormatResponseModel.js +5 -0
  1025. package/api/types/AdditionalFormats.d.ts +5 -0
  1026. package/api/types/AdditionalFormats.js +5 -0
  1027. package/api/types/Age.d.ts +4 -0
  1028. package/api/types/Age.js +5 -0
  1029. package/api/types/AgentBan.d.ts +9 -0
  1030. package/api/types/AgentBan.js +5 -0
  1031. package/api/types/AgentCallLimits.d.ts +9 -0
  1032. package/api/types/AgentCallLimits.js +5 -0
  1033. package/api/types/AgentConfig.d.ts +14 -0
  1034. package/api/types/AgentConfig.js +5 -0
  1035. package/api/types/AgentConfigDbModel.d.ts +13 -0
  1036. package/api/types/AgentConfigDbModel.js +5 -0
  1037. package/api/types/AgentConfigOverride.d.ts +12 -0
  1038. package/api/types/AgentConfigOverride.js +5 -0
  1039. package/api/types/AgentConfigOverrideConfig.d.ts +12 -0
  1040. package/api/types/AgentConfigOverrideConfig.js +5 -0
  1041. package/api/types/AgentMetadataResponseModel.d.ts +7 -0
  1042. package/api/types/AgentMetadataResponseModel.js +5 -0
  1043. package/api/types/AgentPlatformSettingsRequestModel.d.ts +22 -0
  1044. package/api/types/AgentPlatformSettingsRequestModel.js +5 -0
  1045. package/api/types/AgentPlatformSettingsResponseModel.d.ts +23 -0
  1046. package/api/types/AgentPlatformSettingsResponseModel.js +5 -0
  1047. package/api/types/AgentSimulatedChatTestResponseModel.d.ts +8 -0
  1048. package/api/types/AgentSimulatedChatTestResponseModel.js +5 -0
  1049. package/api/types/AgentSummaryResponseModel.d.ts +16 -0
  1050. package/api/types/AgentSummaryResponseModel.js +5 -0
  1051. package/api/types/AgentTransfer.d.ts +7 -0
  1052. package/api/types/AgentTransfer.js +5 -0
  1053. package/api/types/AgentWorkspaceOverridesInput.d.ts +9 -0
  1054. package/api/types/AgentWorkspaceOverridesInput.js +5 -0
  1055. package/api/types/AgentWorkspaceOverridesOutput.d.ts +9 -0
  1056. package/api/types/AgentWorkspaceOverridesOutput.js +5 -0
  1057. package/api/types/Alignment.d.ts +28 -0
  1058. package/api/types/Alignment.js +5 -0
  1059. package/api/types/AllowlistItem.d.ts +7 -0
  1060. package/api/types/AllowlistItem.js +5 -0
  1061. package/api/types/ArrayJsonSchemaPropertyInput.d.ts +9 -0
  1062. package/api/types/ArrayJsonSchemaPropertyInput.js +5 -0
  1063. package/api/types/ArrayJsonSchemaPropertyInputItems.d.ts +5 -0
  1064. package/api/types/ArrayJsonSchemaPropertyInputItems.js +5 -0
  1065. package/api/types/ArrayJsonSchemaPropertyOutput.d.ts +9 -0
  1066. package/api/types/ArrayJsonSchemaPropertyOutput.js +5 -0
  1067. package/api/types/ArrayJsonSchemaPropertyOutputItems.d.ts +5 -0
  1068. package/api/types/ArrayJsonSchemaPropertyOutputItems.js +5 -0
  1069. package/api/types/AsrConversationalConfig.d.ts +14 -0
  1070. package/api/types/AsrConversationalConfig.js +5 -0
  1071. package/api/types/AsrInputFormat.d.ts +13 -0
  1072. package/api/types/AsrInputFormat.js +15 -0
  1073. package/api/types/AsrProvider.d.ts +4 -0
  1074. package/api/types/AsrProvider.js +5 -0
  1075. package/api/types/AsrQuality.d.ts +4 -0
  1076. package/api/types/AsrQuality.js +5 -0
  1077. package/api/types/AudioNativeCreateProjectResponseModel.d.ts +11 -0
  1078. package/api/types/AudioNativeCreateProjectResponseModel.js +5 -0
  1079. package/api/types/AudioNativeEditContentResponseModel.d.ts +13 -0
  1080. package/api/types/AudioNativeEditContentResponseModel.js +5 -0
  1081. package/api/types/AudioNativeProjectSettingsResponseModel.d.ts +26 -0
  1082. package/api/types/AudioNativeProjectSettingsResponseModel.js +5 -0
  1083. package/api/types/AudioNativeProjectSettingsResponseModelStatus.d.ts +11 -0
  1084. package/api/types/AudioNativeProjectSettingsResponseModelStatus.js +10 -0
  1085. package/api/types/AudioOutput.d.ts +13 -0
  1086. package/api/types/AudioOutput.js +5 -0
  1087. package/api/types/AudioOutputMulti.d.ts +15 -0
  1088. package/api/types/AudioOutputMulti.js +5 -0
  1089. package/api/types/AudioWithTimestampsResponse.d.ts +12 -0
  1090. package/api/types/AudioWithTimestampsResponse.js +5 -0
  1091. package/api/types/AuthSettings.d.ts +12 -0
  1092. package/api/types/AuthSettings.js +5 -0
  1093. package/api/types/AuthorizationMethod.d.ts +13 -0
  1094. package/api/types/AuthorizationMethod.js +15 -0
  1095. package/api/types/BanReasonType.d.ts +8 -0
  1096. package/api/types/BanReasonType.js +10 -0
  1097. package/api/types/BatchCallDetailedResponse.d.ts +22 -0
  1098. package/api/types/BatchCallDetailedResponse.js +5 -0
  1099. package/api/types/BatchCallRecipientStatus.d.ts +12 -0
  1100. package/api/types/BatchCallRecipientStatus.js +14 -0
  1101. package/api/types/BatchCallResponse.d.ts +18 -0
  1102. package/api/types/BatchCallResponse.js +5 -0
  1103. package/api/types/BatchCallStatus.d.ts +11 -0
  1104. package/api/types/BatchCallStatus.js +13 -0
  1105. package/api/types/BodyAddChapterToAProjectV1ProjectsProjectIdChaptersAddPost.d.ts +9 -0
  1106. package/api/types/BodyAddChapterToAProjectV1ProjectsProjectIdChaptersAddPost.js +5 -0
  1107. package/api/types/BodyAddProjectV1ProjectsAddPostApplyTextNormalization.d.ts +10 -0
  1108. package/api/types/BodyAddProjectV1ProjectsAddPostApplyTextNormalization.js +12 -0
  1109. package/api/types/BodyAddProjectV1ProjectsAddPostFiction.d.ts +8 -0
  1110. package/api/types/BodyAddProjectV1ProjectsAddPostFiction.js +10 -0
  1111. package/api/types/BodyAddProjectV1ProjectsAddPostSourceType.d.ts +10 -0
  1112. package/api/types/BodyAddProjectV1ProjectsAddPostSourceType.js +12 -0
  1113. package/api/types/BodyAddProjectV1ProjectsAddPostTargetAudience.d.ts +10 -0
  1114. package/api/types/BodyAddProjectV1ProjectsAddPostTargetAudience.js +12 -0
  1115. package/api/types/BodyAddToKnowledgeBaseV1ConvaiAddToKnowledgeBasePost.d.ts +11 -0
  1116. package/api/types/BodyAddToKnowledgeBaseV1ConvaiAddToKnowledgeBasePost.js +5 -0
  1117. package/api/types/BodyAddToKnowledgeBaseV1ConvaiAgentsAgentIdAddToKnowledgeBasePost.d.ts +11 -0
  1118. package/api/types/BodyAddToKnowledgeBaseV1ConvaiAgentsAgentIdAddToKnowledgeBasePost.js +5 -0
  1119. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +33 -0
  1120. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.js +5 -0
  1121. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostDurationScale.d.ts +15 -0
  1122. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostDurationScale.js +11 -0
  1123. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostMode.d.ts +16 -0
  1124. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostMode.js +5 -0
  1125. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostQualityPreset.d.ts +18 -0
  1126. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostQualityPreset.js +13 -0
  1127. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSource.d.ts +8 -0
  1128. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSource.js +5 -0
  1129. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSourceItem.d.ts +13 -0
  1130. package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSourceItem.js +5 -0
  1131. package/api/types/BodyEditBasicProjectInfoV1ProjectsProjectIdPost.d.ts +19 -0
  1132. package/api/types/BodyEditBasicProjectInfoV1ProjectsProjectIdPost.js +5 -0
  1133. package/api/types/BodyEditChapterV1ProjectsProjectIdChaptersChapterIdPatch.d.ts +10 -0
  1134. package/api/types/BodyEditChapterV1ProjectsProjectIdChaptersChapterIdPatch.js +5 -0
  1135. package/api/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.d.ts +11 -0
  1136. package/api/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.js +5 -0
  1137. package/api/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostAge.d.ts +12 -0
  1138. package/api/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostAge.js +11 -0
  1139. package/api/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostGender.d.ts +11 -0
  1140. package/api/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostGender.js +10 -0
  1141. package/api/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.d.ts +7 -0
  1142. package/api/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.js +5 -0
  1143. package/api/types/BodyStreamChapterAudioV1ProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.d.ts +7 -0
  1144. package/api/types/BodyStreamChapterAudioV1ProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.js +5 -0
  1145. package/api/types/BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.d.ts +7 -0
  1146. package/api/types/BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.js +5 -0
  1147. package/api/types/BreakdownTypes.d.ts +20 -0
  1148. package/api/types/BreakdownTypes.js +19 -0
  1149. package/api/types/ChapterContentBlockExtendableNodeResponseModel.d.ts +8 -0
  1150. package/api/types/ChapterContentBlockExtendableNodeResponseModel.js +5 -0
  1151. package/api/types/ChapterContentBlockInputModel.d.ts +8 -0
  1152. package/api/types/ChapterContentBlockInputModel.js +5 -0
  1153. package/api/types/ChapterContentBlockResponseModel.d.ts +8 -0
  1154. package/api/types/ChapterContentBlockResponseModel.js +5 -0
  1155. package/api/types/ChapterContentBlockResponseModelNodesItem.d.ts +13 -0
  1156. package/api/types/ChapterContentBlockResponseModelNodesItem.js +5 -0
  1157. package/api/types/ChapterContentBlockTtsNodeResponseModel.d.ts +7 -0
  1158. package/api/types/ChapterContentBlockTtsNodeResponseModel.js +5 -0
  1159. package/api/types/ChapterContentInputModel.d.ts +7 -0
  1160. package/api/types/ChapterContentInputModel.js +5 -0
  1161. package/api/types/ChapterContentParagraphTtsNodeInputModel.d.ts +8 -0
  1162. package/api/types/ChapterContentParagraphTtsNodeInputModel.js +5 -0
  1163. package/api/types/ChapterContentResponseModel.d.ts +7 -0
  1164. package/api/types/ChapterContentResponseModel.js +5 -0
  1165. package/api/types/ChapterResponse.d.ts +22 -0
  1166. package/api/types/ChapterResponse.js +5 -0
  1167. package/api/types/ChapterSnapshotExtendedResponseModel.d.ts +17 -0
  1168. package/api/types/ChapterSnapshotExtendedResponseModel.js +5 -0
  1169. package/api/types/ChapterSnapshotResponse.d.ts +15 -0
  1170. package/api/types/ChapterSnapshotResponse.js +5 -0
  1171. package/api/types/ChapterSnapshotsResponse.d.ts +8 -0
  1172. package/api/types/ChapterSnapshotsResponse.js +5 -0
  1173. package/api/types/ChapterState.d.ts +11 -0
  1174. package/api/types/ChapterState.js +10 -0
  1175. package/api/types/ChapterStatisticsResponse.d.ts +13 -0
  1176. package/api/types/ChapterStatisticsResponse.js +5 -0
  1177. package/api/types/ChapterWithContentResponseModel.d.ts +23 -0
  1178. package/api/types/ChapterWithContentResponseModel.js +5 -0
  1179. package/api/types/ChapterWithContentResponseModelState.d.ts +11 -0
  1180. package/api/types/ChapterWithContentResponseModelState.js +10 -0
  1181. package/api/types/CharacterAlignmentModel.d.ts +8 -0
  1182. package/api/types/CharacterAlignmentModel.js +5 -0
  1183. package/api/types/CharacterAlignmentResponseModel.d.ts +8 -0
  1184. package/api/types/CharacterAlignmentResponseModel.js +5 -0
  1185. package/api/types/CharacterUsageResponse.d.ts +4 -0
  1186. package/api/types/CharacterUsageResponse.js +5 -0
  1187. package/api/types/ClientEvent.d.ts +18 -0
  1188. package/api/types/ClientEvent.js +20 -0
  1189. package/api/types/ClientToolConfigInput.d.ts +20 -0
  1190. package/api/types/ClientToolConfigInput.js +5 -0
  1191. package/api/types/ClientToolConfigOutput.d.ts +20 -0
  1192. package/api/types/ClientToolConfigOutput.js +5 -0
  1193. package/api/types/CloseConnection.d.ts +7 -0
  1194. package/api/types/CloseConnection.js +5 -0
  1195. package/api/types/CloseContext.d.ts +12 -0
  1196. package/api/types/CloseContext.js +5 -0
  1197. package/api/types/CloseSocket.d.ts +10 -0
  1198. package/api/types/CloseSocket.js +5 -0
  1199. package/api/types/ConvAiDynamicVariable.d.ts +9 -0
  1200. package/api/types/ConvAiDynamicVariable.js +5 -0
  1201. package/api/types/ConvAiSecretLocator.d.ts +9 -0
  1202. package/api/types/ConvAiSecretLocator.js +5 -0
  1203. package/api/types/ConvAiStoredSecretDependencies.d.ts +10 -0
  1204. package/api/types/ConvAiStoredSecretDependencies.js +5 -0
  1205. package/api/types/ConvAiStoredSecretDependenciesAgentToolsItem.d.ts +13 -0
  1206. package/api/types/ConvAiStoredSecretDependenciesAgentToolsItem.js +5 -0
  1207. package/api/types/ConvAiStoredSecretDependenciesToolsItem.d.ts +13 -0
  1208. package/api/types/ConvAiStoredSecretDependenciesToolsItem.js +5 -0
  1209. package/api/types/ConvAiWebhooks.d.ts +6 -0
  1210. package/api/types/ConvAiWebhooks.js +5 -0
  1211. package/api/types/ConvAiWorkspaceStoredSecretConfig.d.ts +10 -0
  1212. package/api/types/ConvAiWorkspaceStoredSecretConfig.js +5 -0
  1213. package/api/types/ConversationChargingCommonModel.d.ts +10 -0
  1214. package/api/types/ConversationChargingCommonModel.js +5 -0
  1215. package/api/types/ConversationConfig.d.ts +12 -0
  1216. package/api/types/ConversationConfig.js +5 -0
  1217. package/api/types/ConversationConfigClientOverrideConfigInput.d.ts +12 -0
  1218. package/api/types/ConversationConfigClientOverrideConfigInput.js +5 -0
  1219. package/api/types/ConversationConfigClientOverrideConfigOutput.d.ts +12 -0
  1220. package/api/types/ConversationConfigClientOverrideConfigOutput.js +5 -0
  1221. package/api/types/ConversationConfigClientOverrideInput.d.ts +12 -0
  1222. package/api/types/ConversationConfigClientOverrideInput.js +5 -0
  1223. package/api/types/ConversationConfigClientOverrideOutput.d.ts +12 -0
  1224. package/api/types/ConversationConfigClientOverrideOutput.js +5 -0
  1225. package/api/types/ConversationConfigOverride.d.ts +6 -0
  1226. package/api/types/ConversationConfigOverride.js +5 -0
  1227. package/api/types/ConversationConfigOverrideConfig.d.ts +7 -0
  1228. package/api/types/ConversationConfigOverrideConfig.js +5 -0
  1229. package/api/types/ConversationDeletionSettings.d.ts +11 -0
  1230. package/api/types/ConversationDeletionSettings.js +5 -0
  1231. package/api/types/ConversationHistoryAnalysisCommonModel.d.ts +10 -0
  1232. package/api/types/ConversationHistoryAnalysisCommonModel.js +5 -0
  1233. package/api/types/ConversationHistoryBatchCallModel.d.ts +7 -0
  1234. package/api/types/ConversationHistoryBatchCallModel.js +5 -0
  1235. package/api/types/ConversationHistoryErrorCommonModel.d.ts +7 -0
  1236. package/api/types/ConversationHistoryErrorCommonModel.js +5 -0
  1237. package/api/types/ConversationHistoryEvaluationCriteriaResultCommonModel.d.ts +9 -0
  1238. package/api/types/ConversationHistoryEvaluationCriteriaResultCommonModel.js +5 -0
  1239. package/api/types/ConversationHistoryFeedbackCommonModel.d.ts +9 -0
  1240. package/api/types/ConversationHistoryFeedbackCommonModel.js +5 -0
  1241. package/api/types/ConversationHistoryMetadataCommonModel.d.ts +20 -0
  1242. package/api/types/ConversationHistoryMetadataCommonModel.js +5 -0
  1243. package/api/types/ConversationHistoryMetadataCommonModelPhoneCall.d.ts +13 -0
  1244. package/api/types/ConversationHistoryMetadataCommonModelPhoneCall.js +5 -0
  1245. package/api/types/ConversationHistoryRagUsageCommonModel.d.ts +7 -0
  1246. package/api/types/ConversationHistoryRagUsageCommonModel.js +5 -0
  1247. package/api/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +11 -0
  1248. package/api/types/ConversationHistorySipTrunkingPhoneCallModel.js +5 -0
  1249. package/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +8 -0
  1250. package/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +10 -0
  1251. package/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +19 -0
  1252. package/api/types/ConversationHistoryTranscriptCommonModelInput.js +5 -0
  1253. package/api/types/ConversationHistoryTranscriptCommonModelInputRole.d.ts +8 -0
  1254. package/api/types/ConversationHistoryTranscriptCommonModelInputRole.js +10 -0
  1255. package/api/types/ConversationHistoryTranscriptCommonModelInputSourceMedium.d.ts +8 -0
  1256. package/api/types/ConversationHistoryTranscriptCommonModelInputSourceMedium.js +10 -0
  1257. package/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +19 -0
  1258. package/api/types/ConversationHistoryTranscriptCommonModelOutput.js +5 -0
  1259. package/api/types/ConversationHistoryTranscriptCommonModelOutputRole.d.ts +8 -0
  1260. package/api/types/ConversationHistoryTranscriptCommonModelOutputRole.js +10 -0
  1261. package/api/types/ConversationHistoryTranscriptCommonModelOutputSourceMedium.d.ts +8 -0
  1262. package/api/types/ConversationHistoryTranscriptCommonModelOutputSourceMedium.js +10 -0
  1263. package/api/types/ConversationHistoryTranscriptToolCallClientDetails.d.ts +6 -0
  1264. package/api/types/ConversationHistoryTranscriptToolCallClientDetails.js +5 -0
  1265. package/api/types/ConversationHistoryTranscriptToolCallCommonModel.d.ts +12 -0
  1266. package/api/types/ConversationHistoryTranscriptToolCallCommonModel.js +5 -0
  1267. package/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +13 -0
  1268. package/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.js +5 -0
  1269. package/api/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +11 -0
  1270. package/api/types/ConversationHistoryTranscriptToolCallWebhookDetails.js +5 -0
  1271. package/api/types/ConversationHistoryTranscriptToolResultCommonModel.d.ts +12 -0
  1272. package/api/types/ConversationHistoryTranscriptToolResultCommonModel.js +5 -0
  1273. package/api/types/ConversationHistoryTwilioPhoneCallModel.d.ts +12 -0
  1274. package/api/types/ConversationHistoryTwilioPhoneCallModel.js +5 -0
  1275. package/api/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +8 -0
  1276. package/api/types/ConversationHistoryTwilioPhoneCallModelDirection.js +10 -0
  1277. package/api/types/ConversationInitiationClientDataConfigInput.d.ts +12 -0
  1278. package/api/types/ConversationInitiationClientDataConfigInput.js +5 -0
  1279. package/api/types/ConversationInitiationClientDataConfigOutput.d.ts +12 -0
  1280. package/api/types/ConversationInitiationClientDataConfigOutput.js +5 -0
  1281. package/api/types/ConversationInitiationClientDataInternal.d.ts +9 -0
  1282. package/api/types/ConversationInitiationClientDataInternal.js +5 -0
  1283. package/api/types/ConversationInitiationClientDataInternalDynamicVariablesValue.d.ts +4 -0
  1284. package/api/types/ConversationInitiationClientDataInternalDynamicVariablesValue.js +5 -0
  1285. package/api/types/ConversationInitiationClientDataRequestInput.d.ts +9 -0
  1286. package/api/types/ConversationInitiationClientDataRequestInput.js +5 -0
  1287. package/api/types/ConversationInitiationClientDataRequestInputDynamicVariablesValue.d.ts +4 -0
  1288. package/api/types/ConversationInitiationClientDataRequestInputDynamicVariablesValue.js +5 -0
  1289. package/api/types/ConversationInitiationClientDataRequestOutput.d.ts +9 -0
  1290. package/api/types/ConversationInitiationClientDataRequestOutput.js +5 -0
  1291. package/api/types/ConversationInitiationClientDataRequestOutputDynamicVariablesValue.d.ts +4 -0
  1292. package/api/types/ConversationInitiationClientDataRequestOutputDynamicVariablesValue.js +5 -0
  1293. package/api/types/ConversationInitiationClientDataWebhook.d.ts +10 -0
  1294. package/api/types/ConversationInitiationClientDataWebhook.js +5 -0
  1295. package/api/types/ConversationInitiationClientDataWebhookRequestHeadersValue.d.ts +5 -0
  1296. package/api/types/ConversationInitiationClientDataWebhookRequestHeadersValue.js +5 -0
  1297. package/api/types/ConversationSignedUrlResponseModel.d.ts +6 -0
  1298. package/api/types/ConversationSignedUrlResponseModel.js +5 -0
  1299. package/api/types/ConversationSimulationSpecification.d.ts +13 -0
  1300. package/api/types/ConversationSimulationSpecification.js +5 -0
  1301. package/api/types/ConversationSummaryResponseModel.d.ts +14 -0
  1302. package/api/types/ConversationSummaryResponseModel.js +5 -0
  1303. package/api/types/ConversationSummaryResponseModelStatus.d.ts +11 -0
  1304. package/api/types/ConversationSummaryResponseModelStatus.js +13 -0
  1305. package/api/types/ConversationTokenDbModel.d.ts +14 -0
  1306. package/api/types/ConversationTokenDbModel.js +5 -0
  1307. package/api/types/ConversationTokenPurpose.d.ts +8 -0
  1308. package/api/types/ConversationTokenPurpose.js +10 -0
  1309. package/api/types/ConversationTurnMetrics.d.ts +7 -0
  1310. package/api/types/ConversationTurnMetrics.js +5 -0
  1311. package/api/types/ConversationalConfig.d.ts +18 -0
  1312. package/api/types/ConversationalConfig.js +5 -0
  1313. package/api/types/ConvertChapterResponseModel.d.ts +7 -0
  1314. package/api/types/ConvertChapterResponseModel.js +5 -0
  1315. package/api/types/ConvertProjectResponseModel.d.ts +7 -0
  1316. package/api/types/ConvertProjectResponseModel.js +5 -0
  1317. package/api/types/CreateAgentResponseModel.d.ts +7 -0
  1318. package/api/types/CreateAgentResponseModel.js +5 -0
  1319. package/api/types/CreateAudioNativeProjectRequest.d.ts +4 -0
  1320. package/api/types/CreateAudioNativeProjectRequest.js +5 -0
  1321. package/api/types/CreatePhoneNumberResponseModel.d.ts +7 -0
  1322. package/api/types/CreatePhoneNumberResponseModel.js +5 -0
  1323. package/api/types/CreatePreviouslyGeneratedVoiceRequest.d.ts +15 -0
  1324. package/api/types/CreatePreviouslyGeneratedVoiceRequest.js +5 -0
  1325. package/api/types/CreatePronunciationDictionaryResponseModel.d.ts +7 -0
  1326. package/api/types/CreatePronunciationDictionaryResponseModel.js +5 -0
  1327. package/api/types/CreateSipTrunkPhoneNumberRequest.d.ts +29 -0
  1328. package/api/types/CreateSipTrunkPhoneNumberRequest.js +5 -0
  1329. package/api/types/CreateTranscriptRequest.d.ts +4 -0
  1330. package/api/types/CreateTranscriptRequest.js +5 -0
  1331. package/api/types/CreateTwilioPhoneNumberRequest.d.ts +13 -0
  1332. package/api/types/CreateTwilioPhoneNumberRequest.js +5 -0
  1333. package/api/types/CustomLlm.d.ts +12 -0
  1334. package/api/types/CustomLlm.js +5 -0
  1335. package/api/types/DashboardCallSuccessChartModel.d.ts +6 -0
  1336. package/api/types/DashboardCallSuccessChartModel.js +5 -0
  1337. package/api/types/DashboardCriteriaChartModel.d.ts +7 -0
  1338. package/api/types/DashboardCriteriaChartModel.js +5 -0
  1339. package/api/types/DashboardDataCollectionChartModel.d.ts +7 -0
  1340. package/api/types/DashboardDataCollectionChartModel.js +5 -0
  1341. package/api/types/DataCollectionResultCommonModel.d.ts +10 -0
  1342. package/api/types/DataCollectionResultCommonModel.js +5 -0
  1343. package/api/types/DeleteChapterRequest.d.ts +4 -0
  1344. package/api/types/DeleteChapterRequest.js +5 -0
  1345. package/api/types/DeleteChapterResponseModel.d.ts +7 -0
  1346. package/api/types/DeleteChapterResponseModel.js +5 -0
  1347. package/api/types/DeleteDubbingResponseModel.d.ts +7 -0
  1348. package/api/types/DeleteDubbingResponseModel.js +5 -0
  1349. package/api/types/DeleteHistoryItemResponse.d.ts +7 -0
  1350. package/api/types/DeleteHistoryItemResponse.js +5 -0
  1351. package/api/types/DeleteProjectRequest.d.ts +4 -0
  1352. package/api/types/DeleteProjectRequest.js +5 -0
  1353. package/api/types/DeleteProjectResponseModel.d.ts +7 -0
  1354. package/api/types/DeleteProjectResponseModel.js +5 -0
  1355. package/api/types/DeleteSampleResponse.d.ts +7 -0
  1356. package/api/types/DeleteSampleResponse.js +5 -0
  1357. package/api/types/DeleteVoiceResponseModel.d.ts +7 -0
  1358. package/api/types/DeleteVoiceResponseModel.js +5 -0
  1359. package/api/types/DeleteVoiceSampleResponseModel.d.ts +7 -0
  1360. package/api/types/DeleteVoiceSampleResponseModel.js +5 -0
  1361. package/api/types/DeleteWorkspaceGroupMemberResponseModel.d.ts +7 -0
  1362. package/api/types/DeleteWorkspaceGroupMemberResponseModel.js +5 -0
  1363. package/api/types/DeleteWorkspaceInviteResponseModel.d.ts +7 -0
  1364. package/api/types/DeleteWorkspaceInviteResponseModel.js +5 -0
  1365. package/api/types/DeleteWorkspaceMemberResponseModel.d.ts +7 -0
  1366. package/api/types/DeleteWorkspaceMemberResponseModel.js +5 -0
  1367. package/api/types/DependentAvailableAgentIdentifier.d.ts +10 -0
  1368. package/api/types/DependentAvailableAgentIdentifier.js +5 -0
  1369. package/api/types/DependentAvailableAgentIdentifierAccessLevel.d.ts +9 -0
  1370. package/api/types/DependentAvailableAgentIdentifierAccessLevel.js +11 -0
  1371. package/api/types/DependentAvailableAgentToolIdentifier.d.ts +11 -0
  1372. package/api/types/DependentAvailableAgentToolIdentifier.js +5 -0
  1373. package/api/types/DependentAvailableAgentToolIdentifierAccessLevel.d.ts +9 -0
  1374. package/api/types/DependentAvailableAgentToolIdentifierAccessLevel.js +11 -0
  1375. package/api/types/DependentAvailableToolIdentifier.d.ts +10 -0
  1376. package/api/types/DependentAvailableToolIdentifier.js +5 -0
  1377. package/api/types/DependentAvailableToolIdentifierAccessLevel.d.ts +9 -0
  1378. package/api/types/DependentAvailableToolIdentifierAccessLevel.js +11 -0
  1379. package/api/types/DependentPhoneNumberIdentifier.d.ts +10 -0
  1380. package/api/types/DependentPhoneNumberIdentifier.js +5 -0
  1381. package/api/types/DependentUnknownAgentIdentifier.d.ts +9 -0
  1382. package/api/types/DependentUnknownAgentIdentifier.js +5 -0
  1383. package/api/types/DependentUnknownAgentToolIdentifier.d.ts +9 -0
  1384. package/api/types/DependentUnknownAgentToolIdentifier.js +5 -0
  1385. package/api/types/DependentUnknownToolIdentifier.d.ts +9 -0
  1386. package/api/types/DependentUnknownToolIdentifier.js +5 -0
  1387. package/api/types/DoDubbingResponse.d.ts +9 -0
  1388. package/api/types/DoDubbingResponse.js +5 -0
  1389. package/api/types/DocumentUsageModeEnum.d.ts +8 -0
  1390. package/api/types/DocumentUsageModeEnum.js +10 -0
  1391. package/api/types/DocxExportOptions.d.ts +10 -0
  1392. package/api/types/DocxExportOptions.js +5 -0
  1393. package/api/types/DubbedSegment.d.ts +11 -0
  1394. package/api/types/DubbedSegment.js +5 -0
  1395. package/api/types/DubbingMediaMetadata.d.ts +9 -0
  1396. package/api/types/DubbingMediaMetadata.js +5 -0
  1397. package/api/types/DubbingMediaReference.d.ts +12 -0
  1398. package/api/types/DubbingMediaReference.js +5 -0
  1399. package/api/types/DubbingMetadataResponse.d.ts +18 -0
  1400. package/api/types/DubbingMetadataResponse.js +5 -0
  1401. package/api/types/DubbingRenderResponseModel.d.ts +7 -0
  1402. package/api/types/DubbingRenderResponseModel.js +5 -0
  1403. package/api/types/DubbingResource.d.ts +16 -0
  1404. package/api/types/DubbingResource.js +5 -0
  1405. package/api/types/DynamicVariablesConfig.d.ts +8 -0
  1406. package/api/types/DynamicVariablesConfig.js +5 -0
  1407. package/api/types/DynamicVariablesConfigDynamicVariablePlaceholdersValue.d.ts +4 -0
  1408. package/api/types/DynamicVariablesConfigDynamicVariablePlaceholdersValue.js +5 -0
  1409. package/api/types/EditChapterResponseModel.d.ts +7 -0
  1410. package/api/types/EditChapterResponseModel.js +5 -0
  1411. package/api/types/EditProjectResponseModel.d.ts +7 -0
  1412. package/api/types/EditProjectResponseModel.js +5 -0
  1413. package/api/types/EditVoiceResponseModel.d.ts +7 -0
  1414. package/api/types/EditVoiceResponseModel.js +5 -0
  1415. package/api/types/EditVoiceSettingsRequest.d.ts +4 -0
  1416. package/api/types/EditVoiceSettingsRequest.js +5 -0
  1417. package/api/types/EditVoiceSettingsResponseModel.d.ts +7 -0
  1418. package/api/types/EditVoiceSettingsResponseModel.js +5 -0
  1419. package/api/types/EmbedVariant.d.ts +9 -0
  1420. package/api/types/EmbedVariant.js +11 -0
  1421. package/api/types/EmbeddingModelEnum.d.ts +8 -0
  1422. package/api/types/EmbeddingModelEnum.js +10 -0
  1423. package/api/types/EndCallToolConfig.d.ts +5 -0
  1424. package/api/types/EndCallToolConfig.js +5 -0
  1425. package/api/types/EvaluationSettings.d.ts +12 -0
  1426. package/api/types/EvaluationSettings.js +5 -0
  1427. package/api/types/EvaluationSuccessResult.d.ts +9 -0
  1428. package/api/types/EvaluationSuccessResult.js +11 -0
  1429. package/api/types/ExportOptions.d.ts +25 -0
  1430. package/api/types/ExportOptions.js +5 -0
  1431. package/api/types/ExtendedSubscriptionResponseModelBillingPeriod.d.ts +8 -0
  1432. package/api/types/ExtendedSubscriptionResponseModelBillingPeriod.js +10 -0
  1433. package/api/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.d.ts +8 -0
  1434. package/api/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.js +10 -0
  1435. package/api/types/ExtendedSubscriptionResponseModelCurrency.d.ts +8 -0
  1436. package/api/types/ExtendedSubscriptionResponseModelCurrency.js +10 -0
  1437. package/api/types/ExtendedSubscriptionResponseModelStatus.d.ts +17 -0
  1438. package/api/types/ExtendedSubscriptionResponseModelStatus.js +16 -0
  1439. package/api/types/FeedbackItem.d.ts +21 -0
  1440. package/api/types/FeedbackItem.js +5 -0
  1441. package/api/types/FinalOutput.d.ts +7 -0
  1442. package/api/types/FinalOutput.js +5 -0
  1443. package/api/types/FinalOutputMulti.d.ts +12 -0
  1444. package/api/types/FinalOutputMulti.js +5 -0
  1445. package/api/types/FineTuningResponse.d.ts +35 -0
  1446. package/api/types/FineTuningResponse.js +5 -0
  1447. package/api/types/FineTuningResponseModelStateValue.d.ts +12 -0
  1448. package/api/types/FineTuningResponseModelStateValue.js +14 -0
  1449. package/api/types/FlushContext.d.ts +14 -0
  1450. package/api/types/FlushContext.js +5 -0
  1451. package/api/types/ForcedAlignmentCharacterResponseModel.d.ts +14 -0
  1452. package/api/types/ForcedAlignmentCharacterResponseModel.js +5 -0
  1453. package/api/types/ForcedAlignmentResponseModel.d.ts +13 -0
  1454. package/api/types/ForcedAlignmentResponseModel.js +5 -0
  1455. package/api/types/ForcedAlignmentWordResponseModel.d.ts +14 -0
  1456. package/api/types/ForcedAlignmentWordResponseModel.js +5 -0
  1457. package/api/types/Gender.d.ts +4 -0
  1458. package/api/types/Gender.js +5 -0
  1459. package/api/types/GenerateVoiceRequest.d.ts +16 -0
  1460. package/api/types/GenerateVoiceRequest.js +5 -0
  1461. package/api/types/GenerationConfig.d.ts +33 -0
  1462. package/api/types/GenerationConfig.js +5 -0
  1463. package/api/types/GetAgentEmbedResponseModel.d.ts +8 -0
  1464. package/api/types/GetAgentEmbedResponseModel.js +5 -0
  1465. package/api/types/GetAgentLinkResponseModel.d.ts +10 -0
  1466. package/api/types/GetAgentLinkResponseModel.js +5 -0
  1467. package/api/types/GetAgentResponseModel.d.ts +22 -0
  1468. package/api/types/GetAgentResponseModel.js +5 -0
  1469. package/api/types/GetAgentResponseModelPhoneNumbersItem.d.ts +13 -0
  1470. package/api/types/GetAgentResponseModelPhoneNumbersItem.js +5 -0
  1471. package/api/types/GetAgentsPageResponseModel.d.ts +12 -0
  1472. package/api/types/GetAgentsPageResponseModel.js +5 -0
  1473. package/api/types/GetAudioNativeProjectSettingsResponseModel.d.ts +12 -0
  1474. package/api/types/GetAudioNativeProjectSettingsResponseModel.js +5 -0
  1475. package/api/types/GetChapterRequest.d.ts +4 -0
  1476. package/api/types/GetChapterRequest.js +5 -0
  1477. package/api/types/GetChapterSnapshotsRequest.d.ts +4 -0
  1478. package/api/types/GetChapterSnapshotsRequest.js +5 -0
  1479. package/api/types/GetChaptersRequest.d.ts +4 -0
  1480. package/api/types/GetChaptersRequest.js +5 -0
  1481. package/api/types/GetChaptersResponse.d.ts +7 -0
  1482. package/api/types/GetChaptersResponse.js +5 -0
  1483. package/api/types/GetConvAiDashboardSettingsResponseModel.d.ts +7 -0
  1484. package/api/types/GetConvAiDashboardSettingsResponseModel.js +5 -0
  1485. package/api/types/GetConvAiDashboardSettingsResponseModelChartsItem.d.ts +16 -0
  1486. package/api/types/GetConvAiDashboardSettingsResponseModelChartsItem.js +5 -0
  1487. package/api/types/GetConvAiSettingsResponseModel.d.ts +11 -0
  1488. package/api/types/GetConvAiSettingsResponseModel.js +5 -0
  1489. package/api/types/GetConversationResponseModel.d.ts +16 -0
  1490. package/api/types/GetConversationResponseModel.js +5 -0
  1491. package/api/types/GetConversationResponseModelStatus.d.ts +11 -0
  1492. package/api/types/GetConversationResponseModelStatus.js +13 -0
  1493. package/api/types/GetConversationsPageResponseModel.d.ts +9 -0
  1494. package/api/types/GetConversationsPageResponseModel.js +5 -0
  1495. package/api/types/GetKnowledgeBaseDependentAgentsResponseModel.d.ts +9 -0
  1496. package/api/types/GetKnowledgeBaseDependentAgentsResponseModel.js +5 -0
  1497. package/api/types/GetKnowledgeBaseDependentAgentsResponseModelAgentsItem.d.ts +13 -0
  1498. package/api/types/GetKnowledgeBaseDependentAgentsResponseModelAgentsItem.js +5 -0
  1499. package/api/types/GetKnowledgeBaseFileResponseModel.d.ts +12 -0
  1500. package/api/types/GetKnowledgeBaseFileResponseModel.js +5 -0
  1501. package/api/types/GetKnowledgeBaseListResponseModel.d.ts +9 -0
  1502. package/api/types/GetKnowledgeBaseListResponseModel.js +5 -0
  1503. package/api/types/GetKnowledgeBaseListResponseModelDocumentsItem.d.ts +16 -0
  1504. package/api/types/GetKnowledgeBaseListResponseModelDocumentsItem.js +5 -0
  1505. package/api/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +12 -0
  1506. package/api/types/GetKnowledgeBaseSummaryFileResponseModel.js +5 -0
  1507. package/api/types/GetKnowledgeBaseSummaryFileResponseModelDependentAgentsItem.d.ts +13 -0
  1508. package/api/types/GetKnowledgeBaseSummaryFileResponseModelDependentAgentsItem.js +5 -0
  1509. package/api/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +12 -0
  1510. package/api/types/GetKnowledgeBaseSummaryTextResponseModel.js +5 -0
  1511. package/api/types/GetKnowledgeBaseSummaryTextResponseModelDependentAgentsItem.d.ts +13 -0
  1512. package/api/types/GetKnowledgeBaseSummaryTextResponseModelDependentAgentsItem.js +5 -0
  1513. package/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +13 -0
  1514. package/api/types/GetKnowledgeBaseSummaryUrlResponseModel.js +5 -0
  1515. package/api/types/GetKnowledgeBaseSummaryUrlResponseModelDependentAgentsItem.d.ts +13 -0
  1516. package/api/types/GetKnowledgeBaseSummaryUrlResponseModelDependentAgentsItem.js +5 -0
  1517. package/api/types/GetKnowledgeBaseTextResponseModel.d.ts +12 -0
  1518. package/api/types/GetKnowledgeBaseTextResponseModel.js +5 -0
  1519. package/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +13 -0
  1520. package/api/types/GetKnowledgeBaseUrlResponseModel.js +5 -0
  1521. package/api/types/GetLibraryVoicesResponse.d.ts +11 -0
  1522. package/api/types/GetLibraryVoicesResponse.js +5 -0
  1523. package/api/types/GetPhoneNumberResponse.d.ts +4 -0
  1524. package/api/types/GetPhoneNumberResponse.js +5 -0
  1525. package/api/types/GetPhoneNumberSipTrunkResponseModel.d.ts +15 -0
  1526. package/api/types/GetPhoneNumberSipTrunkResponseModel.js +5 -0
  1527. package/api/types/GetPhoneNumberTwilioResponseModel.d.ts +14 -0
  1528. package/api/types/GetPhoneNumberTwilioResponseModel.js +5 -0
  1529. package/api/types/GetProjectRequest.d.ts +4 -0
  1530. package/api/types/GetProjectRequest.js +5 -0
  1531. package/api/types/GetProjectsRequest.d.ts +4 -0
  1532. package/api/types/GetProjectsRequest.js +5 -0
  1533. package/api/types/GetProjectsResponse.d.ts +8 -0
  1534. package/api/types/GetProjectsResponse.js +5 -0
  1535. package/api/types/GetPronunciationDictionariesMetadataResponseModel.d.ts +12 -0
  1536. package/api/types/GetPronunciationDictionariesMetadataResponseModel.js +5 -0
  1537. package/api/types/GetPronunciationDictionariesResponse.d.ts +4 -0
  1538. package/api/types/GetPronunciationDictionariesResponse.js +5 -0
  1539. package/api/types/GetPronunciationDictionaryMetadataResponse.d.ts +24 -0
  1540. package/api/types/GetPronunciationDictionaryMetadataResponse.js +5 -0
  1541. package/api/types/GetPronunciationDictionaryMetadataResponseModelPermissionOnResource.d.ts +9 -0
  1542. package/api/types/GetPronunciationDictionaryMetadataResponseModelPermissionOnResource.js +11 -0
  1543. package/api/types/GetPronunciationDictionaryResponse.d.ts +4 -0
  1544. package/api/types/GetPronunciationDictionaryResponse.js +5 -0
  1545. package/api/types/GetSpeechHistoryResponse.d.ts +12 -0
  1546. package/api/types/GetSpeechHistoryResponse.js +5 -0
  1547. package/api/types/GetVoicesResponse.d.ts +8 -0
  1548. package/api/types/GetVoicesResponse.js +5 -0
  1549. package/api/types/GetVoicesV2Response.d.ts +10 -0
  1550. package/api/types/GetVoicesV2Response.js +5 -0
  1551. package/api/types/GetWorkspaceSecretsResponseModel.d.ts +7 -0
  1552. package/api/types/GetWorkspaceSecretsResponseModel.js +5 -0
  1553. package/api/types/HistoryAlignmentResponseModel.d.ts +11 -0
  1554. package/api/types/HistoryAlignmentResponseModel.js +5 -0
  1555. package/api/types/HistoryAlignmentsResponseModel.d.ts +10 -0
  1556. package/api/types/HistoryAlignmentsResponseModel.js +5 -0
  1557. package/api/types/HistoryItemResponse.d.ts +7 -0
  1558. package/api/types/HistoryItemResponse.js +5 -0
  1559. package/api/types/HtmlExportOptions.d.ts +10 -0
  1560. package/api/types/HtmlExportOptions.js +5 -0
  1561. package/api/types/HttpValidationError.d.ts +7 -0
  1562. package/api/types/HttpValidationError.js +5 -0
  1563. package/api/types/ImageAvatar.d.ts +7 -0
  1564. package/api/types/ImageAvatar.js +5 -0
  1565. package/api/types/InitialiseContext.d.ts +21 -0
  1566. package/api/types/InitialiseContext.js +5 -0
  1567. package/api/types/InitializeConnection.d.ts +21 -0
  1568. package/api/types/InitializeConnection.js +5 -0
  1569. package/api/types/InitializeConnectionMulti.d.ts +21 -0
  1570. package/api/types/InitializeConnectionMulti.js +5 -0
  1571. package/api/types/InvoiceResponse.d.ts +11 -0
  1572. package/api/types/InvoiceResponse.js +5 -0
  1573. package/api/types/KeepContextAlive.d.ts +12 -0
  1574. package/api/types/KeepContextAlive.js +5 -0
  1575. package/api/types/KnowledgeBaseDocumentChunkResponseModel.d.ts +8 -0
  1576. package/api/types/KnowledgeBaseDocumentChunkResponseModel.js +5 -0
  1577. package/api/types/KnowledgeBaseDocumentMetadataResponseModel.d.ts +8 -0
  1578. package/api/types/KnowledgeBaseDocumentMetadataResponseModel.js +5 -0
  1579. package/api/types/KnowledgeBaseDocumentType.d.ts +9 -0
  1580. package/api/types/KnowledgeBaseDocumentType.js +11 -0
  1581. package/api/types/KnowledgeBaseLocator.d.ts +14 -0
  1582. package/api/types/KnowledgeBaseLocator.js +5 -0
  1583. package/api/types/LanguageAddedResponse.d.ts +6 -0
  1584. package/api/types/LanguageAddedResponse.js +5 -0
  1585. package/api/types/LanguageDetectionToolConfig.d.ts +5 -0
  1586. package/api/types/LanguageDetectionToolConfig.js +5 -0
  1587. package/api/types/LanguagePresetInput.d.ts +10 -0
  1588. package/api/types/LanguagePresetInput.js +5 -0
  1589. package/api/types/LanguagePresetOutput.d.ts +10 -0
  1590. package/api/types/LanguagePresetOutput.js +5 -0
  1591. package/api/types/LanguagePresetTranslation.d.ts +7 -0
  1592. package/api/types/LanguagePresetTranslation.js +5 -0
  1593. package/api/types/LanguageResponse.d.ts +9 -0
  1594. package/api/types/LanguageResponse.js +5 -0
  1595. package/api/types/LibraryVoiceResponse.d.ts +68 -0
  1596. package/api/types/LibraryVoiceResponse.js +5 -0
  1597. package/api/types/LibraryVoiceResponseModelCategory.d.ts +15 -0
  1598. package/api/types/LibraryVoiceResponseModelCategory.js +14 -0
  1599. package/api/types/LiteralJsonSchemaProperty.d.ts +13 -0
  1600. package/api/types/LiteralJsonSchemaProperty.js +5 -0
  1601. package/api/types/LiteralJsonSchemaPropertyConstantValue.d.ts +7 -0
  1602. package/api/types/LiteralJsonSchemaPropertyConstantValue.js +5 -0
  1603. package/api/types/LiteralJsonSchemaPropertyType.d.ts +10 -0
  1604. package/api/types/LiteralJsonSchemaPropertyType.js +12 -0
  1605. package/api/types/Llm.d.ts +26 -0
  1606. package/api/types/Llm.js +28 -0
  1607. package/api/types/LlmCategoryUsage.d.ts +8 -0
  1608. package/api/types/LlmCategoryUsage.js +5 -0
  1609. package/api/types/LlmInputOutputTokensUsage.d.ts +10 -0
  1610. package/api/types/LlmInputOutputTokensUsage.js +5 -0
  1611. package/api/types/LlmTokensCategoryUsage.d.ts +7 -0
  1612. package/api/types/LlmTokensCategoryUsage.js +5 -0
  1613. package/api/types/LlmUsageInput.d.ts +7 -0
  1614. package/api/types/LlmUsageInput.js +5 -0
  1615. package/api/types/LlmUsageOutput.d.ts +7 -0
  1616. package/api/types/LlmUsageOutput.js +5 -0
  1617. package/api/types/ManualVerificationFileResponse.d.ts +15 -0
  1618. package/api/types/ManualVerificationFileResponse.js +5 -0
  1619. package/api/types/ManualVerificationResponse.d.ts +12 -0
  1620. package/api/types/ManualVerificationResponse.js +5 -0
  1621. package/api/types/McpToolConfigInput.d.ts +20 -0
  1622. package/api/types/McpToolConfigInput.js +5 -0
  1623. package/api/types/McpToolConfigOutput.d.ts +20 -0
  1624. package/api/types/McpToolConfigOutput.js +5 -0
  1625. package/api/types/MetricRecord.d.ts +6 -0
  1626. package/api/types/MetricRecord.js +5 -0
  1627. package/api/types/MetricType.d.ts +12 -0
  1628. package/api/types/MetricType.js +14 -0
  1629. package/api/types/Model.d.ts +40 -0
  1630. package/api/types/Model.js +5 -0
  1631. package/api/types/ModelRatesResponseModel.d.ts +7 -0
  1632. package/api/types/ModelRatesResponseModel.js +5 -0
  1633. package/api/types/ModelResponseModelConcurrencyGroup.d.ts +11 -0
  1634. package/api/types/ModelResponseModelConcurrencyGroup.js +10 -0
  1635. package/api/types/ModerationStatusResponseModel.d.ts +24 -0
  1636. package/api/types/ModerationStatusResponseModel.js +5 -0
  1637. package/api/types/ModerationStatusResponseModelSafetyStatus.d.ts +9 -0
  1638. package/api/types/ModerationStatusResponseModelSafetyStatus.js +11 -0
  1639. package/api/types/ModerationStatusResponseModelWarningStatus.d.ts +8 -0
  1640. package/api/types/ModerationStatusResponseModelWarningStatus.js +10 -0
  1641. package/api/types/NormalizedAlignment.d.ts +28 -0
  1642. package/api/types/NormalizedAlignment.js +5 -0
  1643. package/api/types/ObjectJsonSchemaPropertyInput.d.ts +10 -0
  1644. package/api/types/ObjectJsonSchemaPropertyInput.js +5 -0
  1645. package/api/types/ObjectJsonSchemaPropertyInputPropertiesValue.d.ts +5 -0
  1646. package/api/types/ObjectJsonSchemaPropertyInputPropertiesValue.js +5 -0
  1647. package/api/types/ObjectJsonSchemaPropertyOutput.d.ts +10 -0
  1648. package/api/types/ObjectJsonSchemaPropertyOutput.js +5 -0
  1649. package/api/types/ObjectJsonSchemaPropertyOutputPropertiesValue.d.ts +5 -0
  1650. package/api/types/ObjectJsonSchemaPropertyOutputPropertiesValue.js +5 -0
  1651. package/api/types/OrbAvatar.d.ts +9 -0
  1652. package/api/types/OrbAvatar.js +5 -0
  1653. package/api/types/OutboundCallRecipient.d.ts +9 -0
  1654. package/api/types/OutboundCallRecipient.js +5 -0
  1655. package/api/types/OutboundCallRecipientResponseModel.d.ts +13 -0
  1656. package/api/types/OutboundCallRecipientResponseModel.js +5 -0
  1657. package/api/types/OutputFormat.d.ts +50 -0
  1658. package/api/types/OutputFormat.js +19 -0
  1659. package/api/types/PdfExportOptions.d.ts +10 -0
  1660. package/api/types/PdfExportOptions.js +5 -0
  1661. package/api/types/PhoneNumberAgentInfo.d.ts +9 -0
  1662. package/api/types/PhoneNumberAgentInfo.js +5 -0
  1663. package/api/types/PhoneNumberTransfer.d.ts +7 -0
  1664. package/api/types/PhoneNumberTransfer.js +5 -0
  1665. package/api/types/PodcastBulletinMode.d.ts +8 -0
  1666. package/api/types/PodcastBulletinMode.js +5 -0
  1667. package/api/types/PodcastBulletinModeData.d.ts +7 -0
  1668. package/api/types/PodcastBulletinModeData.js +5 -0
  1669. package/api/types/PodcastConversationMode.d.ts +8 -0
  1670. package/api/types/PodcastConversationMode.js +5 -0
  1671. package/api/types/PodcastConversationModeData.d.ts +9 -0
  1672. package/api/types/PodcastConversationModeData.js +5 -0
  1673. package/api/types/PodcastProjectResponseModel.d.ts +8 -0
  1674. package/api/types/PodcastProjectResponseModel.js +5 -0
  1675. package/api/types/PodcastTextSource.d.ts +7 -0
  1676. package/api/types/PodcastTextSource.js +5 -0
  1677. package/api/types/PodcastUrlSource.d.ts +7 -0
  1678. package/api/types/PodcastUrlSource.js +5 -0
  1679. package/api/types/PostAgentAvatarResponseModel.d.ts +7 -0
  1680. package/api/types/PostAgentAvatarResponseModel.js +5 -0
  1681. package/api/types/PostWorkspaceSecretResponseModel.d.ts +8 -0
  1682. package/api/types/PostWorkspaceSecretResponseModel.js +5 -0
  1683. package/api/types/PrivacyConfig.d.ts +17 -0
  1684. package/api/types/PrivacyConfig.js +5 -0
  1685. package/api/types/ProjectCreationMetaResponseModel.d.ts +12 -0
  1686. package/api/types/ProjectCreationMetaResponseModel.js +5 -0
  1687. package/api/types/ProjectCreationMetaResponseModelStatus.d.ts +13 -0
  1688. package/api/types/ProjectCreationMetaResponseModelStatus.js +12 -0
  1689. package/api/types/ProjectCreationMetaResponseModelType.d.ts +12 -0
  1690. package/api/types/ProjectCreationMetaResponseModelType.js +11 -0
  1691. package/api/types/ProjectExtendedResponse.d.ts +74 -0
  1692. package/api/types/ProjectExtendedResponse.js +5 -0
  1693. package/api/types/ProjectExtendedResponseModelAccessLevel.d.ts +12 -0
  1694. package/api/types/ProjectExtendedResponseModelAccessLevel.js +11 -0
  1695. package/api/types/ProjectExtendedResponseModelApplyTextNormalization.d.ts +13 -0
  1696. package/api/types/ProjectExtendedResponseModelApplyTextNormalization.js +12 -0
  1697. package/api/types/ProjectExtendedResponseModelFiction.d.ts +8 -0
  1698. package/api/types/ProjectExtendedResponseModelFiction.js +10 -0
  1699. package/api/types/ProjectExtendedResponseModelQualityPreset.d.ts +14 -0
  1700. package/api/types/ProjectExtendedResponseModelQualityPreset.js +13 -0
  1701. package/api/types/ProjectExtendedResponseModelSourceType.d.ts +10 -0
  1702. package/api/types/ProjectExtendedResponseModelSourceType.js +12 -0
  1703. package/api/types/ProjectExtendedResponseModelTargetAudience.d.ts +10 -0
  1704. package/api/types/ProjectExtendedResponseModelTargetAudience.js +12 -0
  1705. package/api/types/ProjectResponse.d.ts +62 -0
  1706. package/api/types/ProjectResponse.js +5 -0
  1707. package/api/types/ProjectResponseModelAccessLevel.d.ts +12 -0
  1708. package/api/types/ProjectResponseModelAccessLevel.js +11 -0
  1709. package/api/types/ProjectResponseModelFiction.d.ts +8 -0
  1710. package/api/types/ProjectResponseModelFiction.js +10 -0
  1711. package/api/types/ProjectResponseModelSourceType.d.ts +10 -0
  1712. package/api/types/ProjectResponseModelSourceType.js +12 -0
  1713. package/api/types/ProjectResponseModelTargetAudience.d.ts +10 -0
  1714. package/api/types/ProjectResponseModelTargetAudience.js +12 -0
  1715. package/api/types/ProjectSnapshotExtendedResponseModel.d.ts +19 -0
  1716. package/api/types/ProjectSnapshotExtendedResponseModel.js +5 -0
  1717. package/api/types/ProjectSnapshotResponse.d.ts +17 -0
  1718. package/api/types/ProjectSnapshotResponse.js +5 -0
  1719. package/api/types/ProjectSnapshotsResponse.d.ts +8 -0
  1720. package/api/types/ProjectSnapshotsResponse.js +5 -0
  1721. package/api/types/ProjectState.d.ts +13 -0
  1722. package/api/types/ProjectState.js +12 -0
  1723. package/api/types/PromptAgent.d.ts +28 -0
  1724. package/api/types/PromptAgent.js +5 -0
  1725. package/api/types/PromptAgentDbModel.d.ts +29 -0
  1726. package/api/types/PromptAgentDbModel.js +5 -0
  1727. package/api/types/PromptAgentDbModelToolsItem.d.ts +22 -0
  1728. package/api/types/PromptAgentDbModelToolsItem.js +5 -0
  1729. package/api/types/PromptAgentInputToolsItem.d.ts +22 -0
  1730. package/api/types/PromptAgentInputToolsItem.js +5 -0
  1731. package/api/types/PromptAgentOutputToolsItem.d.ts +22 -0
  1732. package/api/types/PromptAgentOutputToolsItem.js +5 -0
  1733. package/api/types/PromptAgentOverride.d.ts +7 -0
  1734. package/api/types/PromptAgentOverride.js +5 -0
  1735. package/api/types/PromptAgentOverrideConfig.d.ts +7 -0
  1736. package/api/types/PromptAgentOverrideConfig.js +5 -0
  1737. package/api/types/PromptEvaluationCriteria.d.ts +17 -0
  1738. package/api/types/PromptEvaluationCriteria.js +5 -0
  1739. package/api/types/PronunciationDictionaryAliasRuleRequestModel.d.ts +9 -0
  1740. package/api/types/PronunciationDictionaryAliasRuleRequestModel.js +5 -0
  1741. package/api/types/PronunciationDictionaryLocator.d.ts +12 -0
  1742. package/api/types/PronunciationDictionaryLocator.js +5 -0
  1743. package/api/types/PronunciationDictionaryLocatorResponseModel.d.ts +7 -0
  1744. package/api/types/PronunciationDictionaryLocatorResponseModel.js +5 -0
  1745. package/api/types/PronunciationDictionaryPhonemeRuleRequestModel.d.ts +11 -0
  1746. package/api/types/PronunciationDictionaryPhonemeRuleRequestModel.js +5 -0
  1747. package/api/types/PronunciationDictionaryRulesResponseModel.d.ts +11 -0
  1748. package/api/types/PronunciationDictionaryRulesResponseModel.js +5 -0
  1749. package/api/types/PronunciationDictionaryVersionLocator.d.ts +9 -0
  1750. package/api/types/PronunciationDictionaryVersionLocator.js +5 -0
  1751. package/api/types/PronunciationDictionaryVersionResponseModel.d.ts +15 -0
  1752. package/api/types/PronunciationDictionaryVersionResponseModel.js +5 -0
  1753. package/api/types/PronunciationDictionaryVersionResponseModelPermissionOnResource.d.ts +9 -0
  1754. package/api/types/PronunciationDictionaryVersionResponseModelPermissionOnResource.js +11 -0
  1755. package/api/types/PydanticPronunciationDictionaryVersionLocator.d.ts +14 -0
  1756. package/api/types/PydanticPronunciationDictionaryVersionLocator.js +5 -0
  1757. package/api/types/QueryParamsJsonSchema.d.ts +8 -0
  1758. package/api/types/QueryParamsJsonSchema.js +5 -0
  1759. package/api/types/RagChunkMetadata.d.ts +8 -0
  1760. package/api/types/RagChunkMetadata.js +5 -0
  1761. package/api/types/RagConfig.d.ts +12 -0
  1762. package/api/types/RagConfig.js +5 -0
  1763. package/api/types/RagIndexResponseModel.d.ts +8 -0
  1764. package/api/types/RagIndexResponseModel.js +5 -0
  1765. package/api/types/RagIndexStatus.d.ts +10 -0
  1766. package/api/types/RagIndexStatus.js +12 -0
  1767. package/api/types/RagRetrievalInfo.d.ts +10 -0
  1768. package/api/types/RagRetrievalInfo.js +5 -0
  1769. package/api/types/ReaderResourceResponseModel.d.ts +10 -0
  1770. package/api/types/ReaderResourceResponseModel.js +5 -0
  1771. package/api/types/ReaderResourceResponseModelResourceType.d.ts +11 -0
  1772. package/api/types/ReaderResourceResponseModelResourceType.js +10 -0
  1773. package/api/types/RealtimeVoiceSettings.d.ts +15 -0
  1774. package/api/types/RealtimeVoiceSettings.js +5 -0
  1775. package/api/types/RecordingResponse.d.ts +15 -0
  1776. package/api/types/RecordingResponse.js +5 -0
  1777. package/api/types/RemoveMemberFromGroupRequest.d.ts +4 -0
  1778. package/api/types/RemoveMemberFromGroupRequest.js +5 -0
  1779. package/api/types/Render.d.ts +12 -0
  1780. package/api/types/Render.js +5 -0
  1781. package/api/types/RenderStatus.d.ts +9 -0
  1782. package/api/types/RenderStatus.js +11 -0
  1783. package/api/types/RenderType.d.ts +13 -0
  1784. package/api/types/RenderType.js +15 -0
  1785. package/api/types/RequestPvcManualVerificationResponseModel.d.ts +7 -0
  1786. package/api/types/RequestPvcManualVerificationResponseModel.js +5 -0
  1787. package/api/types/ResourceAccessInfo.d.ts +14 -0
  1788. package/api/types/ResourceAccessInfo.js +5 -0
  1789. package/api/types/ResourceAccessInfoRole.d.ts +12 -0
  1790. package/api/types/ResourceAccessInfoRole.js +11 -0
  1791. package/api/types/ResourceMetadataResponseModel.d.ts +16 -0
  1792. package/api/types/ResourceMetadataResponseModel.js +5 -0
  1793. package/api/types/ReviewStatus.d.ts +14 -0
  1794. package/api/types/ReviewStatus.js +13 -0
  1795. package/api/types/SafetyCommonModel.d.ts +11 -0
  1796. package/api/types/SafetyCommonModel.js +5 -0
  1797. package/api/types/SafetyEvaluation.d.ts +14 -0
  1798. package/api/types/SafetyEvaluation.js +5 -0
  1799. package/api/types/SafetyResponseModel.d.ts +8 -0
  1800. package/api/types/SafetyResponseModel.js +5 -0
  1801. package/api/types/SafetyRule.d.ts +15 -0
  1802. package/api/types/SafetyRule.js +17 -0
  1803. package/api/types/SecretDependencyType.d.ts +4 -0
  1804. package/api/types/SecretDependencyType.js +5 -0
  1805. package/api/types/SegmentCreateResponse.d.ts +7 -0
  1806. package/api/types/SegmentCreateResponse.js +5 -0
  1807. package/api/types/SegmentDeleteResponse.d.ts +6 -0
  1808. package/api/types/SegmentDeleteResponse.js +5 -0
  1809. package/api/types/SegmentDubResponse.d.ts +6 -0
  1810. package/api/types/SegmentDubResponse.js +5 -0
  1811. package/api/types/SegmentTranscriptionResponse.d.ts +6 -0
  1812. package/api/types/SegmentTranscriptionResponse.js +5 -0
  1813. package/api/types/SegmentTranslationResponse.d.ts +6 -0
  1814. package/api/types/SegmentTranslationResponse.js +5 -0
  1815. package/api/types/SegmentUpdateResponse.d.ts +6 -0
  1816. package/api/types/SegmentUpdateResponse.js +5 -0
  1817. package/api/types/SegmentedJsonExportOptions.d.ts +10 -0
  1818. package/api/types/SegmentedJsonExportOptions.js +5 -0
  1819. package/api/types/SendText.d.ts +32 -0
  1820. package/api/types/SendText.js +5 -0
  1821. package/api/types/SendTextMulti.d.ts +14 -0
  1822. package/api/types/SendTextMulti.js +5 -0
  1823. package/api/types/ShareOptionResponseModel.d.ts +12 -0
  1824. package/api/types/ShareOptionResponseModel.js +5 -0
  1825. package/api/types/ShareOptionResponseModelType.d.ts +12 -0
  1826. package/api/types/ShareOptionResponseModelType.js +11 -0
  1827. package/api/types/SimilarVoice.d.ts +11 -0
  1828. package/api/types/SimilarVoice.js +5 -0
  1829. package/api/types/SimilarVoiceCategory.d.ts +11 -0
  1830. package/api/types/SimilarVoiceCategory.js +13 -0
  1831. package/api/types/SimilarVoicesForSpeakerResponse.d.ts +7 -0
  1832. package/api/types/SimilarVoicesForSpeakerResponse.js +5 -0
  1833. package/api/types/SipMediaEncryptionEnum.d.ts +9 -0
  1834. package/api/types/SipMediaEncryptionEnum.js +11 -0
  1835. package/api/types/SipTrunkConfigResponseModel.d.ts +23 -0
  1836. package/api/types/SipTrunkConfigResponseModel.js +5 -0
  1837. package/api/types/SipTrunkCredentials.d.ts +9 -0
  1838. package/api/types/SipTrunkCredentials.js +5 -0
  1839. package/api/types/SipTrunkOutboundCallResponse.d.ts +9 -0
  1840. package/api/types/SipTrunkOutboundCallResponse.js +5 -0
  1841. package/api/types/SipTrunkTransportEnum.d.ts +10 -0
  1842. package/api/types/SipTrunkTransportEnum.js +12 -0
  1843. package/api/types/SpeakerAudioResponseModel.d.ts +11 -0
  1844. package/api/types/SpeakerAudioResponseModel.js +5 -0
  1845. package/api/types/SpeakerResponseModel.d.ts +12 -0
  1846. package/api/types/SpeakerResponseModel.js +5 -0
  1847. package/api/types/SpeakerSegment.d.ts +11 -0
  1848. package/api/types/SpeakerSegment.js +5 -0
  1849. package/api/types/SpeakerSeparationResponseModel.d.ts +16 -0
  1850. package/api/types/SpeakerSeparationResponseModel.js +5 -0
  1851. package/api/types/SpeakerSeparationResponseModelStatus.d.ts +13 -0
  1852. package/api/types/SpeakerSeparationResponseModelStatus.js +12 -0
  1853. package/api/types/SpeakerTrack.d.ts +11 -0
  1854. package/api/types/SpeakerTrack.js +5 -0
  1855. package/api/types/SpeakerUpdatedResponse.d.ts +6 -0
  1856. package/api/types/SpeakerUpdatedResponse.js +5 -0
  1857. package/api/types/SpeechHistoryItemResponse.d.ts +39 -0
  1858. package/api/types/SpeechHistoryItemResponse.js +5 -0
  1859. package/api/types/SpeechHistoryItemResponseModelSource.d.ts +14 -0
  1860. package/api/types/SpeechHistoryItemResponseModelSource.js +16 -0
  1861. package/api/types/SpeechHistoryItemResponseModelVoiceCategory.d.ts +10 -0
  1862. package/api/types/SpeechHistoryItemResponseModelVoiceCategory.js +12 -0
  1863. package/api/types/SpeechToTextCharacterResponseModel.d.ts +11 -0
  1864. package/api/types/SpeechToTextCharacterResponseModel.js +5 -0
  1865. package/api/types/SpeechToTextChunkResponseModel.d.ts +19 -0
  1866. package/api/types/SpeechToTextChunkResponseModel.js +5 -0
  1867. package/api/types/SpeechToTextWordResponseModel.d.ts +23 -0
  1868. package/api/types/SpeechToTextWordResponseModel.js +5 -0
  1869. package/api/types/SpeechToTextWordResponseModelType.d.ts +12 -0
  1870. package/api/types/SpeechToTextWordResponseModelType.js +11 -0
  1871. package/api/types/SrtExportOptions.d.ts +11 -0
  1872. package/api/types/SrtExportOptions.js +5 -0
  1873. package/api/types/StartPvcVoiceTrainingResponseModel.d.ts +7 -0
  1874. package/api/types/StartPvcVoiceTrainingResponseModel.js +5 -0
  1875. package/api/types/StartSpeakerSeparationResponseModel.d.ts +7 -0
  1876. package/api/types/StartSpeakerSeparationResponseModel.js +5 -0
  1877. package/api/types/StreamingAudioChunkWithTimestampsResponse.d.ts +12 -0
  1878. package/api/types/StreamingAudioChunkWithTimestampsResponse.js +5 -0
  1879. package/api/types/Subscription.d.ts +50 -0
  1880. package/api/types/Subscription.js +5 -0
  1881. package/api/types/SubscriptionExtrasResponseModel.d.ts +28 -0
  1882. package/api/types/SubscriptionExtrasResponseModel.js +5 -0
  1883. package/api/types/SubscriptionResponse.d.ts +46 -0
  1884. package/api/types/SubscriptionResponse.js +5 -0
  1885. package/api/types/SubscriptionResponseModelBillingPeriod.d.ts +8 -0
  1886. package/api/types/SubscriptionResponseModelBillingPeriod.js +10 -0
  1887. package/api/types/SubscriptionResponseModelCharacterRefreshPeriod.d.ts +8 -0
  1888. package/api/types/SubscriptionResponseModelCharacterRefreshPeriod.js +10 -0
  1889. package/api/types/SubscriptionResponseModelCurrency.d.ts +8 -0
  1890. package/api/types/SubscriptionResponseModelCurrency.js +10 -0
  1891. package/api/types/SubscriptionStatus.d.ts +17 -0
  1892. package/api/types/SubscriptionStatus.js +16 -0
  1893. package/api/types/SubscriptionUsageResponseModel.d.ts +21 -0
  1894. package/api/types/SubscriptionUsageResponseModel.js +5 -0
  1895. package/api/types/SystemToolConfigInput.d.ts +15 -0
  1896. package/api/types/SystemToolConfigInput.js +5 -0
  1897. package/api/types/SystemToolConfigInputParams.d.ts +19 -0
  1898. package/api/types/SystemToolConfigInputParams.js +5 -0
  1899. package/api/types/SystemToolConfigOutput.d.ts +15 -0
  1900. package/api/types/SystemToolConfigOutput.js +5 -0
  1901. package/api/types/SystemToolConfigOutputParams.d.ts +19 -0
  1902. package/api/types/SystemToolConfigOutputParams.js +5 -0
  1903. package/api/types/TelephonyProvider.d.ts +8 -0
  1904. package/api/types/TelephonyProvider.js +10 -0
  1905. package/api/types/TextToSpeechApplyTextNormalizationEnum.d.ts +12 -0
  1906. package/api/types/TextToSpeechApplyTextNormalizationEnum.js +11 -0
  1907. package/api/types/TextToSpeechOutputFormatEnum.d.ts +27 -0
  1908. package/api/types/TextToSpeechOutputFormatEnum.js +26 -0
  1909. package/api/types/TextToSpeechStreamRequest.d.ts +4 -0
  1910. package/api/types/TextToSpeechStreamRequest.js +5 -0
  1911. package/api/types/ToolMockConfig.d.ts +7 -0
  1912. package/api/types/ToolMockConfig.js +5 -0
  1913. package/api/types/TransferToAgentToolConfig.d.ts +7 -0
  1914. package/api/types/TransferToAgentToolConfig.js +5 -0
  1915. package/api/types/TransferToNumberToolConfig.d.ts +7 -0
  1916. package/api/types/TransferToNumberToolConfig.js +5 -0
  1917. package/api/types/TtsConversationalConfig.d.ts +22 -0
  1918. package/api/types/TtsConversationalConfig.js +5 -0
  1919. package/api/types/TtsConversationalConfigOverride.d.ts +6 -0
  1920. package/api/types/TtsConversationalConfigOverride.js +5 -0
  1921. package/api/types/TtsConversationalConfigOverrideConfig.d.ts +7 -0
  1922. package/api/types/TtsConversationalConfigOverrideConfig.js +5 -0
  1923. package/api/types/TtsConversationalModel.d.ts +10 -0
  1924. package/api/types/TtsConversationalModel.js +12 -0
  1925. package/api/types/TtsOptimizeStreamingLatency.d.ts +4 -0
  1926. package/api/types/TtsOptimizeStreamingLatency.js +5 -0
  1927. package/api/types/TtsOutputFormat.d.ts +13 -0
  1928. package/api/types/TtsOutputFormat.js +15 -0
  1929. package/api/types/TurnConfig.d.ts +12 -0
  1930. package/api/types/TurnConfig.js +5 -0
  1931. package/api/types/TurnMode.d.ts +8 -0
  1932. package/api/types/TurnMode.js +10 -0
  1933. package/api/types/TwilioOutboundCallResponse.d.ts +9 -0
  1934. package/api/types/TwilioOutboundCallResponse.js +5 -0
  1935. package/api/types/TxtExportOptions.d.ts +11 -0
  1936. package/api/types/TxtExportOptions.js +5 -0
  1937. package/api/types/UpdateAudioNativeProjectRequest.d.ts +4 -0
  1938. package/api/types/UpdateAudioNativeProjectRequest.js +5 -0
  1939. package/api/types/UpdateChapterRequest.d.ts +4 -0
  1940. package/api/types/UpdateChapterRequest.js +5 -0
  1941. package/api/types/UpdateProjectRequest.d.ts +4 -0
  1942. package/api/types/UpdateProjectRequest.js +5 -0
  1943. package/api/types/UpdatePronunciationDictionariesRequest.d.ts +10 -0
  1944. package/api/types/UpdatePronunciationDictionariesRequest.js +5 -0
  1945. package/api/types/UpdateWorkspaceMemberResponseModel.d.ts +7 -0
  1946. package/api/types/UpdateWorkspaceMemberResponseModel.js +5 -0
  1947. package/api/types/UrlAvatar.d.ts +7 -0
  1948. package/api/types/UrlAvatar.js +5 -0
  1949. package/api/types/UsageAggregationInterval.d.ts +14 -0
  1950. package/api/types/UsageAggregationInterval.js +13 -0
  1951. package/api/types/UsageCharactersResponseModel.d.ts +9 -0
  1952. package/api/types/UsageCharactersResponseModel.js +5 -0
  1953. package/api/types/User.d.ts +32 -0
  1954. package/api/types/User.js +5 -0
  1955. package/api/types/UserFeedback.d.ts +8 -0
  1956. package/api/types/UserFeedback.js +5 -0
  1957. package/api/types/UserFeedbackScore.d.ts +8 -0
  1958. package/api/types/UserFeedbackScore.js +10 -0
  1959. package/api/types/UtteranceResponseModel.d.ts +9 -0
  1960. package/api/types/UtteranceResponseModel.js +5 -0
  1961. package/api/types/ValidationError.d.ts +9 -0
  1962. package/api/types/ValidationError.js +5 -0
  1963. package/api/types/ValidationErrorLocItem.d.ts +4 -0
  1964. package/api/types/ValidationErrorLocItem.js +5 -0
  1965. package/api/types/VerificationAttemptResponse.d.ts +18 -0
  1966. package/api/types/VerificationAttemptResponse.js +5 -0
  1967. package/api/types/VerifiedVoiceLanguageResponseModel.d.ts +15 -0
  1968. package/api/types/VerifiedVoiceLanguageResponseModel.js +5 -0
  1969. package/api/types/VerifyPvcVoiceCaptchaResponseModel.d.ts +7 -0
  1970. package/api/types/VerifyPvcVoiceCaptchaResponseModel.js +5 -0
  1971. package/api/types/Voice.d.ts +46 -0
  1972. package/api/types/Voice.js +5 -0
  1973. package/api/types/VoiceDesignPreviewResponse.d.ts +8 -0
  1974. package/api/types/VoiceDesignPreviewResponse.js +5 -0
  1975. package/api/types/VoiceGenerationParameterOptionResponse.d.ts +7 -0
  1976. package/api/types/VoiceGenerationParameterOptionResponse.js +5 -0
  1977. package/api/types/VoiceGenerationParameterResponse.d.ts +13 -0
  1978. package/api/types/VoiceGenerationParameterResponse.js +5 -0
  1979. package/api/types/VoicePreviewResponseModel.d.ts +9 -0
  1980. package/api/types/VoicePreviewResponseModel.js +5 -0
  1981. package/api/types/VoiceResponseModelCategory.d.ts +15 -0
  1982. package/api/types/VoiceResponseModelCategory.js +14 -0
  1983. package/api/types/VoiceResponseModelSafetyControl.d.ts +12 -0
  1984. package/api/types/VoiceResponseModelSafetyControl.js +14 -0
  1985. package/api/types/VoiceSample.d.ts +23 -0
  1986. package/api/types/VoiceSample.js +5 -0
  1987. package/api/types/VoiceSamplePreviewResponseModel.d.ts +15 -0
  1988. package/api/types/VoiceSamplePreviewResponseModel.js +5 -0
  1989. package/api/types/VoiceSampleVisualWaveformResponseModel.d.ts +9 -0
  1990. package/api/types/VoiceSampleVisualWaveformResponseModel.js +5 -0
  1991. package/api/types/VoiceSettings.d.ts +15 -0
  1992. package/api/types/VoiceSettings.js +5 -0
  1993. package/api/types/VoiceSharingModerationCheckResponseModel.d.ts +23 -0
  1994. package/api/types/VoiceSharingModerationCheckResponseModel.js +5 -0
  1995. package/api/types/VoiceSharingResponse.d.ts +72 -0
  1996. package/api/types/VoiceSharingResponse.js +5 -0
  1997. package/api/types/VoiceSharingResponseModelCategory.d.ts +15 -0
  1998. package/api/types/VoiceSharingResponseModelCategory.js +14 -0
  1999. package/api/types/VoiceSharingState.d.ts +13 -0
  2000. package/api/types/VoiceSharingState.js +12 -0
  2001. package/api/types/VoiceVerificationResponse.d.ts +18 -0
  2002. package/api/types/VoiceVerificationResponse.js +5 -0
  2003. package/api/types/WebhookToolApiSchemaConfigInput.d.ts +21 -0
  2004. package/api/types/WebhookToolApiSchemaConfigInput.js +5 -0
  2005. package/api/types/WebhookToolApiSchemaConfigInputMethod.d.ts +14 -0
  2006. package/api/types/WebhookToolApiSchemaConfigInputMethod.js +13 -0
  2007. package/api/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +5 -0
  2008. package/api/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.js +5 -0
  2009. package/api/types/WebhookToolApiSchemaConfigOutput.d.ts +21 -0
  2010. package/api/types/WebhookToolApiSchemaConfigOutput.js +5 -0
  2011. package/api/types/WebhookToolApiSchemaConfigOutputMethod.d.ts +14 -0
  2012. package/api/types/WebhookToolApiSchemaConfigOutputMethod.js +13 -0
  2013. package/api/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +5 -0
  2014. package/api/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.js +5 -0
  2015. package/api/types/WebhookToolConfigInput.d.ts +18 -0
  2016. package/api/types/WebhookToolConfigInput.js +5 -0
  2017. package/api/types/WebhookToolConfigOutput.d.ts +18 -0
  2018. package/api/types/WebhookToolConfigOutput.js +5 -0
  2019. package/api/types/WebsocketTtsClientMessageMulti.d.ts +34 -0
  2020. package/api/types/WebsocketTtsClientMessageMulti.js +5 -0
  2021. package/api/types/WebsocketTtsServerMessageMulti.d.ts +17 -0
  2022. package/api/types/WebsocketTtsServerMessageMulti.js +5 -0
  2023. package/api/types/WidgetConfig.d.ts +64 -0
  2024. package/api/types/WidgetConfig.js +5 -0
  2025. package/api/types/WidgetConfigAvatar.d.ts +19 -0
  2026. package/api/types/WidgetConfigAvatar.js +5 -0
  2027. package/api/types/WidgetConfigResponseModel.d.ts +62 -0
  2028. package/api/types/WidgetConfigResponseModel.js +5 -0
  2029. package/api/types/WidgetConfigResponseModelAvatar.d.ts +19 -0
  2030. package/api/types/WidgetConfigResponseModelAvatar.js +5 -0
  2031. package/api/types/WidgetExpandable.d.ts +10 -0
  2032. package/api/types/WidgetExpandable.js +12 -0
  2033. package/api/types/WidgetFeedbackMode.d.ts +9 -0
  2034. package/api/types/WidgetFeedbackMode.js +11 -0
  2035. package/api/types/WorkspaceBatchCallsResponse.d.ts +11 -0
  2036. package/api/types/WorkspaceBatchCallsResponse.js +5 -0
  2037. package/api/types/WorkspaceGroupByNameResponseModel.d.ts +11 -0
  2038. package/api/types/WorkspaceGroupByNameResponseModel.js +5 -0
  2039. package/api/types/WorkspaceResourceType.d.ts +23 -0
  2040. package/api/types/WorkspaceResourceType.js +22 -0
  2041. package/api/types/index.d.ts +520 -0
  2042. package/api/types/index.js +536 -0
  2043. package/assets/languages.png +0 -0
  2044. package/assets/namespace.png +0 -0
  2045. package/core/fetcher/APIResponse.d.ts +20 -0
  2046. package/core/fetcher/APIResponse.js +2 -0
  2047. package/core/fetcher/Fetcher.d.ts +39 -0
  2048. package/core/fetcher/Fetcher.js +107 -0
  2049. package/core/fetcher/Headers.d.ts +2 -0
  2050. package/core/fetcher/Headers.js +84 -0
  2051. package/core/fetcher/HttpResponsePromise.d.ts +58 -0
  2052. package/core/fetcher/HttpResponsePromise.js +103 -0
  2053. package/core/fetcher/RawResponse.d.ts +29 -0
  2054. package/core/fetcher/RawResponse.js +44 -0
  2055. package/core/fetcher/Supplier.d.ts +4 -0
  2056. package/core/fetcher/Supplier.js +22 -0
  2057. package/core/fetcher/createRequestUrl.d.ts +1 -0
  2058. package/core/fetcher/createRequestUrl.js +12 -0
  2059. package/core/fetcher/getFetchFn.d.ts +4 -0
  2060. package/core/fetcher/getFetchFn.js +68 -0
  2061. package/core/fetcher/getHeader.d.ts +1 -0
  2062. package/core/fetcher/getHeader.js +11 -0
  2063. package/core/fetcher/getRequestBody.d.ts +7 -0
  2064. package/core/fetcher/getRequestBody.js +23 -0
  2065. package/core/fetcher/getResponseBody.d.ts +1 -0
  2066. package/core/fetcher/getResponseBody.js +53 -0
  2067. package/core/fetcher/index.d.ts +8 -0
  2068. package/core/fetcher/index.js +15 -0
  2069. package/core/fetcher/makeRequest.d.ts +1 -0
  2070. package/core/fetcher/makeRequest.js +42 -0
  2071. package/core/fetcher/requestWithRetries.d.ts +1 -0
  2072. package/core/fetcher/requestWithRetries.js +40 -0
  2073. package/core/fetcher/signals.d.ts +11 -0
  2074. package/core/fetcher/signals.js +36 -0
  2075. package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +30 -0
  2076. package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +247 -0
  2077. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +21 -0
  2078. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +126 -0
  2079. package/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +31 -0
  2080. package/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +229 -0
  2081. package/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +18 -0
  2082. package/core/fetcher/stream-wrappers/chooseStreamWrapper.js +59 -0
  2083. package/core/form-data-utils/FormDataWrapper.d.ts +63 -0
  2084. package/core/form-data-utils/FormDataWrapper.js +227 -0
  2085. package/core/form-data-utils/encodeAsFormParameter.d.ts +4 -0
  2086. package/core/form-data-utils/encodeAsFormParameter.js +18 -0
  2087. package/core/form-data-utils/index.d.ts +2 -0
  2088. package/core/form-data-utils/index.js +20 -0
  2089. package/core/index.d.ts +4 -0
  2090. package/core/index.js +20 -0
  2091. package/core/json.d.ts +15 -0
  2092. package/core/json.js +24 -0
  2093. package/core/runtime/index.d.ts +1 -0
  2094. package/core/runtime/index.js +5 -0
  2095. package/core/runtime/runtime.d.ts +9 -0
  2096. package/core/runtime/runtime.js +103 -0
  2097. package/core/streaming-fetcher/Stream.d.ts +47 -0
  2098. package/core/streaming-fetcher/Stream.js +169 -0
  2099. package/core/streaming-fetcher/index.d.ts +1 -0
  2100. package/core/streaming-fetcher/index.js +5 -0
  2101. package/dist/Client.d.ts +87 -0
  2102. package/dist/Client.js +107 -0
  2103. package/dist/api/errors/BadRequestError.d.ts +8 -0
  2104. package/dist/api/errors/BadRequestError.js +52 -0
  2105. package/dist/api/errors/ForbiddenError.d.ts +8 -0
  2106. package/dist/api/errors/ForbiddenError.js +52 -0
  2107. package/dist/api/errors/NotFoundError.d.ts +8 -0
  2108. package/dist/api/errors/NotFoundError.js +52 -0
  2109. package/dist/api/errors/TooEarlyError.d.ts +8 -0
  2110. package/dist/api/errors/TooEarlyError.js +52 -0
  2111. package/dist/api/errors/UnprocessableEntityError.d.ts +9 -0
  2112. package/dist/api/errors/UnprocessableEntityError.js +52 -0
  2113. package/dist/api/errors/index.d.ts +5 -0
  2114. package/dist/api/errors/index.js +21 -0
  2115. package/dist/api/index.d.ts +3 -0
  2116. package/dist/api/index.js +19 -0
  2117. package/dist/api/resources/audioIsolation/client/Client.d.ts +44 -0
  2118. package/dist/api/resources/audioIsolation/client/Client.js +186 -0
  2119. package/dist/api/resources/audioIsolation/client/index.d.ts +1 -0
  2120. package/dist/api/resources/audioIsolation/client/index.js +17 -0
  2121. package/dist/api/resources/audioIsolation/client/requests/BodyAudioIsolationStreamV1AudioIsolationStreamPost.d.ts +10 -0
  2122. package/dist/api/resources/audioIsolation/client/requests/BodyAudioIsolationStreamV1AudioIsolationStreamPost.js +5 -0
  2123. package/dist/api/resources/audioIsolation/client/requests/BodyAudioIsolationV1AudioIsolationPost.d.ts +10 -0
  2124. package/dist/api/resources/audioIsolation/client/requests/BodyAudioIsolationV1AudioIsolationPost.js +5 -0
  2125. package/dist/api/resources/audioIsolation/client/requests/index.d.ts +2 -0
  2126. package/dist/api/resources/audioIsolation/client/requests/index.js +2 -0
  2127. package/dist/api/resources/audioIsolation/index.d.ts +2 -0
  2128. package/dist/api/resources/audioIsolation/index.js +18 -0
  2129. package/dist/api/resources/audioIsolation/types/AudioIsolationConvertRequestFileFormat.d.ts +8 -0
  2130. package/dist/api/resources/audioIsolation/types/AudioIsolationConvertRequestFileFormat.js +10 -0
  2131. package/dist/api/resources/audioIsolation/types/AudioIsolationStreamRequestFileFormat.d.ts +8 -0
  2132. package/dist/api/resources/audioIsolation/types/AudioIsolationStreamRequestFileFormat.js +10 -0
  2133. package/dist/api/resources/audioIsolation/types/index.d.ts +2 -0
  2134. package/dist/api/resources/audioIsolation/types/index.js +18 -0
  2135. package/dist/api/resources/audioNative/client/Client.d.ts +73 -0
  2136. package/dist/api/resources/audioNative/client/Client.js +306 -0
  2137. package/dist/api/resources/audioNative/client/index.d.ts +1 -0
  2138. package/dist/api/resources/audioNative/client/index.js +17 -0
  2139. package/dist/api/resources/audioNative/client/requests/BodyCreatesAudioNativeEnabledProjectV1AudioNativePost.d.ts +35 -0
  2140. package/dist/api/resources/audioNative/client/requests/BodyCreatesAudioNativeEnabledProjectV1AudioNativePost.js +5 -0
  2141. package/dist/api/resources/audioNative/client/requests/BodyUpdateAudioNativeProjectContentV1AudioNativeProjectIdContentPost.d.ts +15 -0
  2142. package/dist/api/resources/audioNative/client/requests/BodyUpdateAudioNativeProjectContentV1AudioNativeProjectIdContentPost.js +5 -0
  2143. package/dist/api/resources/audioNative/client/requests/index.d.ts +2 -0
  2144. package/dist/api/resources/audioNative/client/requests/index.js +2 -0
  2145. package/dist/api/resources/audioNative/index.d.ts +1 -0
  2146. package/dist/api/resources/audioNative/index.js +17 -0
  2147. package/dist/api/resources/conversationalAi/client/Client.d.ts +91 -0
  2148. package/dist/api/resources/conversationalAi/client/Client.js +257 -0
  2149. package/dist/api/resources/conversationalAi/client/index.d.ts +1 -0
  2150. package/dist/api/resources/conversationalAi/client/index.js +17 -0
  2151. package/dist/api/resources/conversationalAi/client/requests/BodyAddToKnowledgeBaseV1ConvaiKnowledgeBasePost.d.ts +15 -0
  2152. package/dist/api/resources/conversationalAi/client/requests/BodyAddToKnowledgeBaseV1ConvaiKnowledgeBasePost.js +5 -0
  2153. package/dist/api/resources/conversationalAi/client/requests/PatchWorkspaceSecretRequest.d.ts +14 -0
  2154. package/dist/api/resources/conversationalAi/client/requests/PatchWorkspaceSecretRequest.js +5 -0
  2155. package/dist/api/resources/conversationalAi/client/requests/index.d.ts +2 -0
  2156. package/dist/api/resources/conversationalAi/client/requests/index.js +2 -0
  2157. package/dist/api/resources/conversationalAi/index.d.ts +2 -0
  2158. package/dist/api/resources/conversationalAi/index.js +18 -0
  2159. package/dist/api/resources/conversationalAi/resources/agents/client/Client.d.ts +147 -0
  2160. package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +540 -0
  2161. package/dist/api/resources/conversationalAi/resources/agents/client/index.d.ts +1 -0
  2162. package/dist/api/resources/conversationalAi/resources/agents/client/index.js +17 -0
  2163. package/dist/api/resources/conversationalAi/resources/agents/client/requests/AgentsListRequest.d.ts +21 -0
  2164. package/dist/api/resources/conversationalAi/resources/agents/client/requests/AgentsListRequest.js +5 -0
  2165. package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodyCreateAgentV1ConvaiAgentsCreatePost.d.ts +20 -0
  2166. package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodyCreateAgentV1ConvaiAgentsCreatePost.js +5 -0
  2167. package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.d.ts +21 -0
  2168. package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.js +5 -0
  2169. package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.d.ts +21 -0
  2170. package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.js +5 -0
  2171. package/dist/api/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +15 -0
  2172. package/dist/api/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.js +5 -0
  2173. package/dist/api/resources/conversationalAi/resources/agents/client/requests/index.d.ts +5 -0
  2174. package/dist/api/resources/conversationalAi/resources/agents/client/requests/index.js +2 -0
  2175. package/dist/api/resources/conversationalAi/resources/agents/index.d.ts +2 -0
  2176. package/dist/api/resources/conversationalAi/resources/agents/index.js +18 -0
  2177. package/dist/api/resources/conversationalAi/resources/agents/resources/index.d.ts +3 -0
  2178. package/dist/api/resources/conversationalAi/resources/agents/resources/index.js +42 -0
  2179. package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.d.ts +44 -0
  2180. package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +123 -0
  2181. package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/index.d.ts +1 -0
  2182. package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/index.js +2 -0
  2183. package/dist/api/resources/conversationalAi/resources/agents/resources/link/index.d.ts +1 -0
  2184. package/dist/api/resources/conversationalAi/resources/agents/resources/link/index.js +17 -0
  2185. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.d.ts +48 -0
  2186. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +138 -0
  2187. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/index.d.ts +1 -0
  2188. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/index.js +17 -0
  2189. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/requests/WidgetGetRequest.d.ts +13 -0
  2190. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/requests/WidgetGetRequest.js +5 -0
  2191. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/requests/index.d.ts +1 -0
  2192. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/requests/index.js +2 -0
  2193. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/index.d.ts +2 -0
  2194. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/index.js +18 -0
  2195. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.d.ts +47 -0
  2196. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +133 -0
  2197. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/index.d.ts +1 -0
  2198. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/index.js +17 -0
  2199. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/requests/BodyPostAgentAvatarV1ConvaiAgentsAgentIdAvatarPost.d.ts +13 -0
  2200. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/requests/BodyPostAgentAvatarV1ConvaiAgentsAgentIdAvatarPost.js +5 -0
  2201. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/requests/index.d.ts +1 -0
  2202. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/requests/index.js +2 -0
  2203. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/index.d.ts +1 -0
  2204. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/index.js +17 -0
  2205. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/index.d.ts +2 -0
  2206. package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/index.js +41 -0
  2207. package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +77 -0
  2208. package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.js +265 -0
  2209. package/dist/api/resources/conversationalAi/resources/batchCalls/client/index.d.ts +1 -0
  2210. package/dist/api/resources/conversationalAi/resources/batchCalls/client/index.js +17 -0
  2211. package/dist/api/resources/conversationalAi/resources/batchCalls/client/requests/BatchCallsListRequest.d.ts +11 -0
  2212. package/dist/api/resources/conversationalAi/resources/batchCalls/client/requests/BatchCallsListRequest.js +5 -0
  2213. package/dist/api/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +22 -0
  2214. package/dist/api/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.js +5 -0
  2215. package/dist/api/resources/conversationalAi/resources/batchCalls/client/requests/index.d.ts +2 -0
  2216. package/dist/api/resources/conversationalAi/resources/batchCalls/client/requests/index.js +2 -0
  2217. package/dist/api/resources/conversationalAi/resources/batchCalls/index.d.ts +1 -0
  2218. package/dist/api/resources/conversationalAi/resources/batchCalls/index.js +17 -0
  2219. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +91 -0
  2220. package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +352 -0
  2221. package/dist/api/resources/conversationalAi/resources/conversations/client/index.d.ts +1 -0
  2222. package/dist/api/resources/conversationalAi/resources/conversations/client/index.js +17 -0
  2223. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +15 -0
  2224. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.js +5 -0
  2225. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +34 -0
  2226. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.js +5 -0
  2227. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/index.d.ts +2 -0
  2228. package/dist/api/resources/conversationalAi/resources/conversations/client/requests/index.js +2 -0
  2229. package/dist/api/resources/conversationalAi/resources/conversations/index.d.ts +2 -0
  2230. package/dist/api/resources/conversationalAi/resources/conversations/index.js +18 -0
  2231. package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.d.ts +37 -0
  2232. package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +117 -0
  2233. package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/index.d.ts +1 -0
  2234. package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/index.js +2 -0
  2235. package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/index.d.ts +1 -0
  2236. package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/index.js +17 -0
  2237. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.d.ts +47 -0
  2238. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +127 -0
  2239. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/index.d.ts +1 -0
  2240. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/index.js +17 -0
  2241. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/BodySendConversationFeedbackV1ConvaiConversationsConversationIdFeedbackPost.d.ts +14 -0
  2242. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/BodySendConversationFeedbackV1ConvaiConversationsConversationIdFeedbackPost.js +5 -0
  2243. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/index.d.ts +1 -0
  2244. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/index.js +2 -0
  2245. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/index.d.ts +1 -0
  2246. package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/index.js +17 -0
  2247. package/dist/api/resources/conversationalAi/resources/conversations/resources/index.d.ts +3 -0
  2248. package/dist/api/resources/conversationalAi/resources/conversations/resources/index.js +42 -0
  2249. package/dist/api/resources/conversationalAi/resources/dashboard/client/Client.d.ts +21 -0
  2250. package/dist/api/resources/conversationalAi/resources/dashboard/client/Client.js +17 -0
  2251. package/dist/api/resources/conversationalAi/resources/dashboard/client/index.d.ts +1 -0
  2252. package/dist/api/resources/conversationalAi/resources/dashboard/client/index.js +2 -0
  2253. package/dist/api/resources/conversationalAi/resources/dashboard/index.d.ts +2 -0
  2254. package/dist/api/resources/conversationalAi/resources/dashboard/index.js +18 -0
  2255. package/dist/api/resources/conversationalAi/resources/dashboard/resources/index.d.ts +3 -0
  2256. package/dist/api/resources/conversationalAi/resources/dashboard/resources/index.js +42 -0
  2257. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.d.ts +56 -0
  2258. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +190 -0
  2259. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/index.d.ts +1 -0
  2260. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/index.js +17 -0
  2261. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/PatchConvAiDashboardSettingsRequest.d.ts +11 -0
  2262. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/PatchConvAiDashboardSettingsRequest.js +5 -0
  2263. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/index.d.ts +1 -0
  2264. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/index.js +2 -0
  2265. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/index.d.ts +2 -0
  2266. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/index.js +18 -0
  2267. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/types/PatchConvAiDashboardSettingsRequestChartsItem.d.ts +16 -0
  2268. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/types/PatchConvAiDashboardSettingsRequestChartsItem.js +5 -0
  2269. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/types/index.d.ts +1 -0
  2270. package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/types/index.js +17 -0
  2271. package/dist/api/resources/conversationalAi/resources/index.d.ts +20 -0
  2272. package/dist/api/resources/conversationalAi/resources/index.js +59 -0
  2273. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.d.ts +50 -0
  2274. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +162 -0
  2275. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/index.d.ts +1 -0
  2276. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/index.js +17 -0
  2277. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.d.ts +34 -0
  2278. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.js +5 -0
  2279. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/requests/index.d.ts +1 -0
  2280. package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/requests/index.js +2 -0
  2281. package/dist/api/resources/conversationalAi/resources/knowledgeBase/index.d.ts +2 -0
  2282. package/dist/api/resources/conversationalAi/resources/knowledgeBase/index.js +18 -0
  2283. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +47 -0
  2284. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +127 -0
  2285. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/index.d.ts +1 -0
  2286. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/index.js +17 -0
  2287. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/RagIndexRequestModel.d.ts +13 -0
  2288. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/RagIndexRequestModel.js +5 -0
  2289. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/index.d.ts +1 -0
  2290. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/index.js +2 -0
  2291. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
  2292. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +17 -0
  2293. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +148 -0
  2294. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +602 -0
  2295. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/index.d.ts +1 -0
  2296. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/index.js +17 -0
  2297. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFileDocumentV1ConvaiKnowledgeBaseFilePost.d.ts +15 -0
  2298. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFileDocumentV1ConvaiKnowledgeBaseFilePost.js +5 -0
  2299. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.d.ts +15 -0
  2300. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.js +5 -0
  2301. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +15 -0
  2302. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.js +5 -0
  2303. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.d.ts +13 -0
  2304. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.js +5 -0
  2305. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsGetAgentsRequest.d.ts +17 -0
  2306. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsGetAgentsRequest.js +5 -0
  2307. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.d.ts +5 -0
  2308. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.js +2 -0
  2309. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/index.d.ts +3 -0
  2310. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/index.js +19 -0
  2311. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.d.ts +45 -0
  2312. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +127 -0
  2313. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.d.ts +1 -0
  2314. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.js +2 -0
  2315. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/index.d.ts +1 -0
  2316. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/index.js +17 -0
  2317. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +1 -0
  2318. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +37 -0
  2319. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.d.ts +16 -0
  2320. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.js +5 -0
  2321. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.d.ts +16 -0
  2322. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.js +5 -0
  2323. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/index.d.ts +2 -0
  2324. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/index.js +18 -0
  2325. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +5 -0
  2326. package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/index.js +44 -0
  2327. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.d.ts +102 -0
  2328. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +387 -0
  2329. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/index.d.ts +1 -0
  2330. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/index.js +17 -0
  2331. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +10 -0
  2332. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.js +5 -0
  2333. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/requests/index.d.ts +1 -0
  2334. package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/requests/index.js +2 -0
  2335. package/dist/api/resources/conversationalAi/resources/phoneNumbers/index.d.ts +2 -0
  2336. package/dist/api/resources/conversationalAi/resources/phoneNumbers/index.js +18 -0
  2337. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersCreateRequestBody.d.ts +16 -0
  2338. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersCreateRequestBody.js +5 -0
  2339. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersGetResponse.d.ts +13 -0
  2340. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersGetResponse.js +5 -0
  2341. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersListResponseItem.d.ts +13 -0
  2342. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersListResponseItem.js +5 -0
  2343. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersUpdateResponse.d.ts +13 -0
  2344. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersUpdateResponse.js +5 -0
  2345. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/index.d.ts +4 -0
  2346. package/dist/api/resources/conversationalAi/resources/phoneNumbers/types/index.js +20 -0
  2347. package/dist/api/resources/conversationalAi/resources/secrets/client/Client.d.ts +72 -0
  2348. package/dist/api/resources/conversationalAi/resources/secrets/client/Client.js +254 -0
  2349. package/dist/api/resources/conversationalAi/resources/secrets/client/index.d.ts +1 -0
  2350. package/dist/api/resources/conversationalAi/resources/secrets/client/index.js +17 -0
  2351. package/dist/api/resources/conversationalAi/resources/secrets/client/requests/PostWorkspaceSecretRequest.d.ts +14 -0
  2352. package/dist/api/resources/conversationalAi/resources/secrets/client/requests/PostWorkspaceSecretRequest.js +5 -0
  2353. package/dist/api/resources/conversationalAi/resources/secrets/client/requests/index.d.ts +1 -0
  2354. package/dist/api/resources/conversationalAi/resources/secrets/client/requests/index.js +2 -0
  2355. package/dist/api/resources/conversationalAi/resources/secrets/index.d.ts +1 -0
  2356. package/dist/api/resources/conversationalAi/resources/secrets/index.js +17 -0
  2357. package/dist/api/resources/conversationalAi/resources/settings/client/Client.d.ts +56 -0
  2358. package/dist/api/resources/conversationalAi/resources/settings/client/Client.js +190 -0
  2359. package/dist/api/resources/conversationalAi/resources/settings/client/index.d.ts +1 -0
  2360. package/dist/api/resources/conversationalAi/resources/settings/client/index.js +17 -0
  2361. package/dist/api/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +15 -0
  2362. package/dist/api/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.js +5 -0
  2363. package/dist/api/resources/conversationalAi/resources/settings/client/requests/index.d.ts +1 -0
  2364. package/dist/api/resources/conversationalAi/resources/settings/client/requests/index.js +2 -0
  2365. package/dist/api/resources/conversationalAi/resources/settings/index.d.ts +1 -0
  2366. package/dist/api/resources/conversationalAi/resources/settings/index.js +17 -0
  2367. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.d.ts +48 -0
  2368. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +131 -0
  2369. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/index.d.ts +1 -0
  2370. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/index.js +17 -0
  2371. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/requests/BodyHandleAnOutboundCallViaSipTrunkV1ConvaiSipTrunkOutboundCallPost.d.ts +18 -0
  2372. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/requests/BodyHandleAnOutboundCallViaSipTrunkV1ConvaiSipTrunkOutboundCallPost.js +5 -0
  2373. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/requests/index.d.ts +1 -0
  2374. package/dist/api/resources/conversationalAi/resources/sipTrunk/client/requests/index.js +2 -0
  2375. package/dist/api/resources/conversationalAi/resources/sipTrunk/index.d.ts +1 -0
  2376. package/dist/api/resources/conversationalAi/resources/sipTrunk/index.js +17 -0
  2377. package/dist/api/resources/conversationalAi/resources/twilio/client/Client.d.ts +48 -0
  2378. package/dist/api/resources/conversationalAi/resources/twilio/client/Client.js +131 -0
  2379. package/dist/api/resources/conversationalAi/resources/twilio/client/index.d.ts +1 -0
  2380. package/dist/api/resources/conversationalAi/resources/twilio/client/index.js +17 -0
  2381. package/dist/api/resources/conversationalAi/resources/twilio/client/requests/BodyHandleAnOutboundCallViaTwilioV1ConvaiTwilioOutboundCallPost.d.ts +18 -0
  2382. package/dist/api/resources/conversationalAi/resources/twilio/client/requests/BodyHandleAnOutboundCallViaTwilioV1ConvaiTwilioOutboundCallPost.js +5 -0
  2383. package/dist/api/resources/conversationalAi/resources/twilio/client/requests/index.d.ts +1 -0
  2384. package/dist/api/resources/conversationalAi/resources/twilio/client/requests/index.js +2 -0
  2385. package/dist/api/resources/conversationalAi/resources/twilio/index.d.ts +1 -0
  2386. package/dist/api/resources/conversationalAi/resources/twilio/index.js +17 -0
  2387. package/dist/api/resources/dubbing/client/Client.d.ts +79 -0
  2388. package/dist/api/resources/dubbing/client/Client.js +320 -0
  2389. package/dist/api/resources/dubbing/client/index.d.ts +1 -0
  2390. package/dist/api/resources/dubbing/client/index.js +17 -0
  2391. package/dist/api/resources/dubbing/client/requests/BodyDubAVideoOrAnAudioFileV1DubbingPost.d.ts +42 -0
  2392. package/dist/api/resources/dubbing/client/requests/BodyDubAVideoOrAnAudioFileV1DubbingPost.js +5 -0
  2393. package/dist/api/resources/dubbing/client/requests/index.d.ts +1 -0
  2394. package/dist/api/resources/dubbing/client/requests/index.js +2 -0
  2395. package/dist/api/resources/dubbing/index.d.ts +2 -0
  2396. package/dist/api/resources/dubbing/index.js +18 -0
  2397. package/dist/api/resources/dubbing/resources/audio/client/Client.d.ts +40 -0
  2398. package/dist/api/resources/dubbing/resources/audio/client/Client.js +126 -0
  2399. package/dist/api/resources/dubbing/resources/audio/client/index.d.ts +1 -0
  2400. package/dist/api/resources/dubbing/resources/audio/client/index.js +2 -0
  2401. package/dist/api/resources/dubbing/resources/audio/index.d.ts +1 -0
  2402. package/dist/api/resources/dubbing/resources/audio/index.js +17 -0
  2403. package/dist/api/resources/dubbing/resources/index.d.ts +6 -0
  2404. package/dist/api/resources/dubbing/resources/index.js +45 -0
  2405. package/dist/api/resources/dubbing/resources/resource/client/Client.d.ts +118 -0
  2406. package/dist/api/resources/dubbing/resources/resource/client/Client.js +408 -0
  2407. package/dist/api/resources/dubbing/resources/resource/client/index.d.ts +1 -0
  2408. package/dist/api/resources/dubbing/resources/resource/client/index.js +17 -0
  2409. package/dist/api/resources/dubbing/resources/resource/client/requests/BodyDubsAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdDubPost.d.ts +15 -0
  2410. package/dist/api/resources/dubbing/resources/resource/client/requests/BodyDubsAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdDubPost.js +5 -0
  2411. package/dist/api/resources/dubbing/resources/resource/client/requests/BodyRenderAudioOrVideoForTheGivenLanguageV1DubbingResourceDubbingIdRenderLanguagePost.d.ts +14 -0
  2412. package/dist/api/resources/dubbing/resources/resource/client/requests/BodyRenderAudioOrVideoForTheGivenLanguageV1DubbingResourceDubbingIdRenderLanguagePost.js +5 -0
  2413. package/dist/api/resources/dubbing/resources/resource/client/requests/BodyTranscribesSegmentsV1DubbingResourceDubbingIdTranscribePost.d.ts +13 -0
  2414. package/dist/api/resources/dubbing/resources/resource/client/requests/BodyTranscribesSegmentsV1DubbingResourceDubbingIdTranscribePost.js +5 -0
  2415. package/dist/api/resources/dubbing/resources/resource/client/requests/BodyTranslatesAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdTranslatePost.d.ts +15 -0
  2416. package/dist/api/resources/dubbing/resources/resource/client/requests/BodyTranslatesAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdTranslatePost.js +5 -0
  2417. package/dist/api/resources/dubbing/resources/resource/client/requests/index.d.ts +4 -0
  2418. package/dist/api/resources/dubbing/resources/resource/client/requests/index.js +2 -0
  2419. package/dist/api/resources/dubbing/resources/resource/index.d.ts +2 -0
  2420. package/dist/api/resources/dubbing/resources/resource/index.js +18 -0
  2421. package/dist/api/resources/dubbing/resources/resource/resources/index.d.ts +6 -0
  2422. package/dist/api/resources/dubbing/resources/resource/resources/index.js +45 -0
  2423. package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.d.ts +45 -0
  2424. package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.js +125 -0
  2425. package/dist/api/resources/dubbing/resources/resource/resources/language/client/index.d.ts +1 -0
  2426. package/dist/api/resources/dubbing/resources/resource/resources/language/client/index.js +17 -0
  2427. package/dist/api/resources/dubbing/resources/resource/resources/language/client/requests/BodyAddALanguageToTheResourceV1DubbingResourceDubbingIdLanguagePost.d.ts +11 -0
  2428. package/dist/api/resources/dubbing/resources/resource/resources/language/client/requests/BodyAddALanguageToTheResourceV1DubbingResourceDubbingIdLanguagePost.js +5 -0
  2429. package/dist/api/resources/dubbing/resources/resource/resources/language/client/requests/index.d.ts +1 -0
  2430. package/dist/api/resources/dubbing/resources/resource/resources/language/client/requests/index.js +2 -0
  2431. package/dist/api/resources/dubbing/resources/resource/resources/language/index.d.ts +1 -0
  2432. package/dist/api/resources/dubbing/resources/resource/resources/language/index.js +17 -0
  2433. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.d.ts +61 -0
  2434. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +189 -0
  2435. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/index.d.ts +1 -0
  2436. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/index.js +17 -0
  2437. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/requests/SegmentUpdatePayload.d.ts +12 -0
  2438. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/requests/SegmentUpdatePayload.js +5 -0
  2439. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/requests/index.d.ts +1 -0
  2440. package/dist/api/resources/dubbing/resources/resource/resources/segment/client/requests/index.js +2 -0
  2441. package/dist/api/resources/dubbing/resources/resource/resources/segment/index.d.ts +1 -0
  2442. package/dist/api/resources/dubbing/resources/resource/resources/segment/index.js +17 -0
  2443. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.d.ts +63 -0
  2444. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +196 -0
  2445. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/index.d.ts +1 -0
  2446. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/index.js +17 -0
  2447. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +13 -0
  2448. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.js +5 -0
  2449. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/requests/index.d.ts +1 -0
  2450. package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/requests/index.js +2 -0
  2451. package/dist/api/resources/dubbing/resources/resource/resources/speaker/index.d.ts +2 -0
  2452. package/dist/api/resources/dubbing/resources/resource/resources/speaker/index.js +18 -0
  2453. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/index.d.ts +2 -0
  2454. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/index.js +41 -0
  2455. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.d.ts +49 -0
  2456. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +129 -0
  2457. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/index.d.ts +1 -0
  2458. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/index.js +17 -0
  2459. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/SegmentCreatePayload.d.ts +16 -0
  2460. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/SegmentCreatePayload.js +5 -0
  2461. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/index.d.ts +1 -0
  2462. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/index.js +2 -0
  2463. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/index.d.ts +1 -0
  2464. package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/index.js +17 -0
  2465. package/dist/api/resources/dubbing/resources/transcript/client/Client.d.ts +49 -0
  2466. package/dist/api/resources/dubbing/resources/transcript/client/Client.js +141 -0
  2467. package/dist/api/resources/dubbing/resources/transcript/client/index.d.ts +1 -0
  2468. package/dist/api/resources/dubbing/resources/transcript/client/index.js +17 -0
  2469. package/dist/api/resources/dubbing/resources/transcript/client/requests/TranscriptGetTranscriptForDubRequest.d.ts +14 -0
  2470. package/dist/api/resources/dubbing/resources/transcript/client/requests/TranscriptGetTranscriptForDubRequest.js +5 -0
  2471. package/dist/api/resources/dubbing/resources/transcript/client/requests/index.d.ts +1 -0
  2472. package/dist/api/resources/dubbing/resources/transcript/client/requests/index.js +2 -0
  2473. package/dist/api/resources/dubbing/resources/transcript/index.d.ts +2 -0
  2474. package/dist/api/resources/dubbing/resources/transcript/index.js +18 -0
  2475. package/dist/api/resources/dubbing/resources/transcript/types/TranscriptGetTranscriptForDubRequestFormatType.d.ts +11 -0
  2476. package/dist/api/resources/dubbing/resources/transcript/types/TranscriptGetTranscriptForDubRequestFormatType.js +10 -0
  2477. package/dist/api/resources/dubbing/resources/transcript/types/index.d.ts +1 -0
  2478. package/dist/api/resources/dubbing/resources/transcript/types/index.js +17 -0
  2479. package/dist/api/resources/forcedAlignment/client/Client.d.ts +47 -0
  2480. package/dist/api/resources/forcedAlignment/client/Client.js +137 -0
  2481. package/dist/api/resources/forcedAlignment/client/index.d.ts +1 -0
  2482. package/dist/api/resources/forcedAlignment/client/index.js +17 -0
  2483. package/dist/api/resources/forcedAlignment/client/requests/BodyCreateForcedAlignmentV1ForcedAlignmentPost.d.ts +18 -0
  2484. package/dist/api/resources/forcedAlignment/client/requests/BodyCreateForcedAlignmentV1ForcedAlignmentPost.js +5 -0
  2485. package/dist/api/resources/forcedAlignment/client/requests/index.d.ts +1 -0
  2486. package/dist/api/resources/forcedAlignment/client/requests/index.js +2 -0
  2487. package/dist/api/resources/forcedAlignment/index.d.ts +1 -0
  2488. package/dist/api/resources/forcedAlignment/index.js +17 -0
  2489. package/dist/api/resources/history/client/Client.d.ts +84 -0
  2490. package/dist/api/resources/history/client/Client.js +377 -0
  2491. package/dist/api/resources/history/client/index.d.ts +1 -0
  2492. package/dist/api/resources/history/client/index.js +17 -0
  2493. package/dist/api/resources/history/client/requests/DownloadHistoryRequest.d.ts +9 -0
  2494. package/dist/api/resources/history/client/requests/DownloadHistoryRequest.js +5 -0
  2495. package/dist/api/resources/history/client/requests/HistoryListRequest.d.ts +30 -0
  2496. package/dist/api/resources/history/client/requests/HistoryListRequest.js +5 -0
  2497. package/dist/api/resources/history/client/requests/index.d.ts +2 -0
  2498. package/dist/api/resources/history/client/requests/index.js +2 -0
  2499. package/dist/api/resources/history/index.d.ts +2 -0
  2500. package/dist/api/resources/history/index.js +18 -0
  2501. package/dist/api/resources/history/types/HistoryListRequestSource.d.ts +8 -0
  2502. package/dist/api/resources/history/types/HistoryListRequestSource.js +10 -0
  2503. package/dist/api/resources/history/types/index.d.ts +1 -0
  2504. package/dist/api/resources/history/types/index.js +17 -0
  2505. package/dist/api/resources/index.d.ts +48 -0
  2506. package/dist/api/resources/index.js +87 -0
  2507. package/dist/api/resources/models/client/Client.d.ts +46 -0
  2508. package/dist/api/resources/models/client/Client.js +125 -0
  2509. package/dist/api/resources/models/client/index.d.ts +1 -0
  2510. package/dist/api/resources/models/client/index.js +2 -0
  2511. package/dist/api/resources/models/index.d.ts +1 -0
  2512. package/dist/api/resources/models/index.js +17 -0
  2513. package/dist/api/resources/pronunciationDictionaries/client/Client.d.ts +102 -0
  2514. package/dist/api/resources/pronunciationDictionaries/client/Client.js +416 -0
  2515. package/dist/api/resources/pronunciationDictionaries/client/index.d.ts +1 -0
  2516. package/dist/api/resources/pronunciationDictionaries/client/index.js +17 -0
  2517. package/dist/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromFilePost.d.ts +20 -0
  2518. package/dist/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromFilePost.js +5 -0
  2519. package/dist/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPost.d.ts +29 -0
  2520. package/dist/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPost.js +5 -0
  2521. package/dist/api/resources/pronunciationDictionaries/client/requests/PronunciationDictionariesListRequest.d.ts +26 -0
  2522. package/dist/api/resources/pronunciationDictionaries/client/requests/PronunciationDictionariesListRequest.js +5 -0
  2523. package/dist/api/resources/pronunciationDictionaries/client/requests/index.d.ts +3 -0
  2524. package/dist/api/resources/pronunciationDictionaries/client/requests/index.js +2 -0
  2525. package/dist/api/resources/pronunciationDictionaries/index.d.ts +3 -0
  2526. package/dist/api/resources/pronunciationDictionaries/index.js +19 -0
  2527. package/dist/api/resources/pronunciationDictionaries/resources/index.d.ts +3 -0
  2528. package/dist/api/resources/pronunciationDictionaries/resources/index.js +42 -0
  2529. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.d.ts +67 -0
  2530. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +202 -0
  2531. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/index.d.ts +1 -0
  2532. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/index.js +17 -0
  2533. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/requests/PronunciationDictionary.d.ts +22 -0
  2534. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/requests/PronunciationDictionary.js +5 -0
  2535. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/requests/RemovePronunciationDictionaryRulesRequest.d.ts +13 -0
  2536. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/requests/RemovePronunciationDictionaryRulesRequest.js +5 -0
  2537. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/requests/index.d.ts +2 -0
  2538. package/dist/api/resources/pronunciationDictionaries/resources/rules/client/requests/index.js +2 -0
  2539. package/dist/api/resources/pronunciationDictionaries/resources/rules/index.d.ts +2 -0
  2540. package/dist/api/resources/pronunciationDictionaries/resources/rules/index.js +18 -0
  2541. package/dist/api/resources/pronunciationDictionaries/resources/rules/types/PronunciationDictionaryRule.d.ts +13 -0
  2542. package/dist/api/resources/pronunciationDictionaries/resources/rules/types/PronunciationDictionaryRule.js +5 -0
  2543. package/dist/api/resources/pronunciationDictionaries/resources/rules/types/index.d.ts +1 -0
  2544. package/dist/api/resources/pronunciationDictionaries/resources/rules/types/index.js +17 -0
  2545. package/dist/api/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostRulesItem.d.ts +13 -0
  2546. package/dist/api/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostRulesItem.js +5 -0
  2547. package/dist/api/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostWorkspaceAccess.d.ts +9 -0
  2548. package/dist/api/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostWorkspaceAccess.js +11 -0
  2549. package/dist/api/resources/pronunciationDictionaries/types/PronunciationDictionariesCreateFromFileRequestWorkspaceAccess.d.ts +9 -0
  2550. package/dist/api/resources/pronunciationDictionaries/types/PronunciationDictionariesCreateFromFileRequestWorkspaceAccess.js +11 -0
  2551. package/dist/api/resources/pronunciationDictionaries/types/PronunciationDictionariesListRequestSort.d.ts +8 -0
  2552. package/dist/api/resources/pronunciationDictionaries/types/PronunciationDictionariesListRequestSort.js +10 -0
  2553. package/dist/api/resources/pronunciationDictionaries/types/index.d.ts +4 -0
  2554. package/dist/api/resources/pronunciationDictionaries/types/index.js +20 -0
  2555. package/dist/api/resources/samples/client/Client.d.ts +48 -0
  2556. package/dist/api/resources/samples/client/Client.js +127 -0
  2557. package/dist/api/resources/samples/client/index.d.ts +1 -0
  2558. package/dist/api/resources/samples/client/index.js +2 -0
  2559. package/dist/api/resources/samples/index.d.ts +1 -0
  2560. package/dist/api/resources/samples/index.js +17 -0
  2561. package/dist/api/resources/speechToSpeech/client/Client.d.ts +44 -0
  2562. package/dist/api/resources/speechToSpeech/client/Client.js +232 -0
  2563. package/dist/api/resources/speechToSpeech/client/index.d.ts +1 -0
  2564. package/dist/api/resources/speechToSpeech/client/index.js +17 -0
  2565. package/dist/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechStreamingV1SpeechToSpeechVoiceIdStreamPost.d.ts +45 -0
  2566. package/dist/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechStreamingV1SpeechToSpeechVoiceIdStreamPost.js +5 -0
  2567. package/dist/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost.d.ts +45 -0
  2568. package/dist/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost.js +5 -0
  2569. package/dist/api/resources/speechToSpeech/client/requests/index.d.ts +2 -0
  2570. package/dist/api/resources/speechToSpeech/client/requests/index.js +2 -0
  2571. package/dist/api/resources/speechToSpeech/index.d.ts +2 -0
  2572. package/dist/api/resources/speechToSpeech/index.js +18 -0
  2573. package/dist/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestFileFormat.d.ts +8 -0
  2574. package/dist/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestFileFormat.js +10 -0
  2575. package/dist/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.d.ts +28 -0
  2576. package/dist/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.js +27 -0
  2577. package/dist/api/resources/speechToSpeech/types/SpeechToSpeechStreamRequestFileFormat.d.ts +8 -0
  2578. package/dist/api/resources/speechToSpeech/types/SpeechToSpeechStreamRequestFileFormat.js +10 -0
  2579. package/dist/api/resources/speechToSpeech/types/SpeechToSpeechStreamRequestOutputFormat.d.ts +28 -0
  2580. package/dist/api/resources/speechToSpeech/types/SpeechToSpeechStreamRequestOutputFormat.js +27 -0
  2581. package/dist/api/resources/speechToSpeech/types/index.d.ts +4 -0
  2582. package/dist/api/resources/speechToSpeech/types/index.js +20 -0
  2583. package/dist/api/resources/speechToText/client/Client.d.ts +46 -0
  2584. package/dist/api/resources/speechToText/client/Client.js +149 -0
  2585. package/dist/api/resources/speechToText/client/index.d.ts +1 -0
  2586. package/dist/api/resources/speechToText/client/index.js +17 -0
  2587. package/dist/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +36 -0
  2588. package/dist/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.js +5 -0
  2589. package/dist/api/resources/speechToText/client/requests/index.d.ts +1 -0
  2590. package/dist/api/resources/speechToText/client/requests/index.js +2 -0
  2591. package/dist/api/resources/speechToText/index.d.ts +2 -0
  2592. package/dist/api/resources/speechToText/index.js +18 -0
  2593. package/dist/api/resources/speechToText/types/SpeechToTextConvertRequestFileFormat.d.ts +11 -0
  2594. package/dist/api/resources/speechToText/types/SpeechToTextConvertRequestFileFormat.js +10 -0
  2595. package/dist/api/resources/speechToText/types/SpeechToTextConvertRequestTimestampsGranularity.d.ts +12 -0
  2596. package/dist/api/resources/speechToText/types/SpeechToTextConvertRequestTimestampsGranularity.js +11 -0
  2597. package/dist/api/resources/speechToText/types/index.d.ts +2 -0
  2598. package/dist/api/resources/speechToText/types/index.js +18 -0
  2599. package/dist/api/resources/studio/client/Client.d.ts +59 -0
  2600. package/dist/api/resources/studio/client/Client.js +144 -0
  2601. package/dist/api/resources/studio/client/index.d.ts +1 -0
  2602. package/dist/api/resources/studio/client/index.js +17 -0
  2603. package/dist/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +49 -0
  2604. package/dist/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.js +5 -0
  2605. package/dist/api/resources/studio/client/requests/index.d.ts +1 -0
  2606. package/dist/api/resources/studio/client/requests/index.js +2 -0
  2607. package/dist/api/resources/studio/index.d.ts +3 -0
  2608. package/dist/api/resources/studio/index.js +19 -0
  2609. package/dist/api/resources/studio/resources/index.d.ts +3 -0
  2610. package/dist/api/resources/studio/resources/index.js +42 -0
  2611. package/dist/api/resources/studio/resources/projects/client/Client.d.ts +130 -0
  2612. package/dist/api/resources/studio/resources/projects/client/Client.js +541 -0
  2613. package/dist/api/resources/studio/resources/projects/client/index.d.ts +1 -0
  2614. package/dist/api/resources/studio/resources/projects/client/index.js +17 -0
  2615. package/dist/api/resources/studio/resources/projects/client/requests/BodyCreateStudioProjectV1StudioProjectsPost.d.ts +79 -0
  2616. package/dist/api/resources/studio/resources/projects/client/requests/BodyCreateStudioProjectV1StudioProjectsPost.js +5 -0
  2617. package/dist/api/resources/studio/resources/projects/client/requests/BodyUpdateStudioProjectV1StudioProjectsProjectIdPost.d.ts +27 -0
  2618. package/dist/api/resources/studio/resources/projects/client/requests/BodyUpdateStudioProjectV1StudioProjectsProjectIdPost.js +5 -0
  2619. package/dist/api/resources/studio/resources/projects/client/requests/index.d.ts +2 -0
  2620. package/dist/api/resources/studio/resources/projects/client/requests/index.js +2 -0
  2621. package/dist/api/resources/studio/resources/projects/index.d.ts +3 -0
  2622. package/dist/api/resources/studio/resources/projects/index.js +19 -0
  2623. package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.d.ts +120 -0
  2624. package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.js +452 -0
  2625. package/dist/api/resources/studio/resources/projects/resources/chapters/client/index.d.ts +1 -0
  2626. package/dist/api/resources/studio/resources/projects/resources/chapters/client/index.js +17 -0
  2627. package/dist/api/resources/studio/resources/projects/resources/chapters/client/requests/BodyCreateChapterV1StudioProjectsProjectIdChaptersPost.d.ts +15 -0
  2628. package/dist/api/resources/studio/resources/projects/resources/chapters/client/requests/BodyCreateChapterV1StudioProjectsProjectIdChaptersPost.js +5 -0
  2629. package/dist/api/resources/studio/resources/projects/resources/chapters/client/requests/BodyUpdateChapterV1StudioProjectsProjectIdChaptersChapterIdPost.d.ts +14 -0
  2630. package/dist/api/resources/studio/resources/projects/resources/chapters/client/requests/BodyUpdateChapterV1StudioProjectsProjectIdChaptersChapterIdPost.js +5 -0
  2631. package/dist/api/resources/studio/resources/projects/resources/chapters/client/requests/index.d.ts +2 -0
  2632. package/dist/api/resources/studio/resources/projects/resources/chapters/client/requests/index.js +2 -0
  2633. package/dist/api/resources/studio/resources/projects/resources/chapters/index.d.ts +2 -0
  2634. package/dist/api/resources/studio/resources/projects/resources/chapters/index.js +18 -0
  2635. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/index.d.ts +2 -0
  2636. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/index.js +41 -0
  2637. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.d.ts +67 -0
  2638. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +246 -0
  2639. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/index.d.ts +1 -0
  2640. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/index.js +17 -0
  2641. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/BodyStreamChapterAudioV1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.d.ts +7 -0
  2642. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/BodyStreamChapterAudioV1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.js +5 -0
  2643. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/index.d.ts +1 -0
  2644. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/index.js +2 -0
  2645. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/index.d.ts +1 -0
  2646. package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/index.js +17 -0
  2647. package/dist/api/resources/studio/resources/projects/resources/content/client/Client.d.ts +45 -0
  2648. package/dist/api/resources/studio/resources/projects/resources/content/client/Client.js +136 -0
  2649. package/dist/api/resources/studio/resources/projects/resources/content/client/index.d.ts +1 -0
  2650. package/dist/api/resources/studio/resources/projects/resources/content/client/index.js +17 -0
  2651. package/dist/api/resources/studio/resources/projects/resources/content/client/requests/BodyUpdateStudioProjectContentV1StudioProjectsProjectIdContentPost.d.ts +15 -0
  2652. package/dist/api/resources/studio/resources/projects/resources/content/client/requests/BodyUpdateStudioProjectContentV1StudioProjectsProjectIdContentPost.js +5 -0
  2653. package/dist/api/resources/studio/resources/projects/resources/content/client/requests/index.d.ts +1 -0
  2654. package/dist/api/resources/studio/resources/projects/resources/content/client/requests/index.js +2 -0
  2655. package/dist/api/resources/studio/resources/projects/resources/content/index.d.ts +1 -0
  2656. package/dist/api/resources/studio/resources/projects/resources/content/index.js +17 -0
  2657. package/dist/api/resources/studio/resources/projects/resources/index.d.ts +8 -0
  2658. package/dist/api/resources/studio/resources/projects/resources/index.js +47 -0
  2659. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.d.ts +49 -0
  2660. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +132 -0
  2661. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/index.d.ts +1 -0
  2662. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/index.js +17 -0
  2663. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost.d.ts +18 -0
  2664. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost.js +5 -0
  2665. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/index.d.ts +1 -0
  2666. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/index.js +2 -0
  2667. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/index.d.ts +1 -0
  2668. package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/index.js +17 -0
  2669. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.d.ts +71 -0
  2670. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +299 -0
  2671. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/index.d.ts +1 -0
  2672. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/index.js +17 -0
  2673. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/requests/BodyStreamStudioProjectAudioV1StudioProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.d.ts +7 -0
  2674. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/requests/BodyStreamStudioProjectAudioV1StudioProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.js +5 -0
  2675. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/requests/index.d.ts +1 -0
  2676. package/dist/api/resources/studio/resources/projects/resources/snapshots/client/requests/index.js +2 -0
  2677. package/dist/api/resources/studio/resources/projects/resources/snapshots/index.d.ts +1 -0
  2678. package/dist/api/resources/studio/resources/projects/resources/snapshots/index.js +17 -0
  2679. package/dist/api/resources/studio/resources/projects/types/ProjectsCreateRequestApplyTextNormalization.d.ts +10 -0
  2680. package/dist/api/resources/studio/resources/projects/types/ProjectsCreateRequestApplyTextNormalization.js +12 -0
  2681. package/dist/api/resources/studio/resources/projects/types/ProjectsCreateRequestFiction.d.ts +8 -0
  2682. package/dist/api/resources/studio/resources/projects/types/ProjectsCreateRequestFiction.js +10 -0
  2683. package/dist/api/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.d.ts +10 -0
  2684. package/dist/api/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.js +12 -0
  2685. package/dist/api/resources/studio/resources/projects/types/ProjectsCreateRequestTargetAudience.d.ts +10 -0
  2686. package/dist/api/resources/studio/resources/projects/types/ProjectsCreateRequestTargetAudience.js +12 -0
  2687. package/dist/api/resources/studio/resources/projects/types/index.d.ts +4 -0
  2688. package/dist/api/resources/studio/resources/projects/types/index.js +20 -0
  2689. package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostDurationScale.d.ts +15 -0
  2690. package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostDurationScale.js +11 -0
  2691. package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostMode.d.ts +16 -0
  2692. package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostMode.js +5 -0
  2693. package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostQualityPreset.d.ts +18 -0
  2694. package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostQualityPreset.js +13 -0
  2695. package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.d.ts +8 -0
  2696. package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.js +5 -0
  2697. package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.d.ts +13 -0
  2698. package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.js +5 -0
  2699. package/dist/api/resources/studio/types/index.d.ts +5 -0
  2700. package/dist/api/resources/studio/types/index.js +21 -0
  2701. package/dist/api/resources/textToSoundEffects/client/Client.d.ts +38 -0
  2702. package/dist/api/resources/textToSoundEffects/client/Client.js +135 -0
  2703. package/dist/api/resources/textToSoundEffects/client/index.d.ts +1 -0
  2704. package/dist/api/resources/textToSoundEffects/client/index.js +17 -0
  2705. package/dist/api/resources/textToSoundEffects/client/requests/CreateSoundEffectRequest.d.ts +22 -0
  2706. package/dist/api/resources/textToSoundEffects/client/requests/CreateSoundEffectRequest.js +5 -0
  2707. package/dist/api/resources/textToSoundEffects/client/requests/index.d.ts +1 -0
  2708. package/dist/api/resources/textToSoundEffects/client/requests/index.js +2 -0
  2709. package/dist/api/resources/textToSoundEffects/index.d.ts +2 -0
  2710. package/dist/api/resources/textToSoundEffects/index.js +18 -0
  2711. package/dist/api/resources/textToSoundEffects/types/TextToSoundEffectsConvertRequestOutputFormat.d.ts +28 -0
  2712. package/dist/api/resources/textToSoundEffects/types/TextToSoundEffectsConvertRequestOutputFormat.js +27 -0
  2713. package/dist/api/resources/textToSoundEffects/types/index.d.ts +1 -0
  2714. package/dist/api/resources/textToSoundEffects/types/index.js +17 -0
  2715. package/dist/api/resources/textToSpeech/client/Client.d.ts +65 -0
  2716. package/dist/api/resources/textToSpeech/client/Client.js +367 -0
  2717. package/dist/api/resources/textToSpeech/client/index.d.ts +1 -0
  2718. package/dist/api/resources/textToSpeech/client/index.js +17 -0
  2719. package/dist/api/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.d.ts +59 -0
  2720. package/dist/api/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.js +5 -0
  2721. package/dist/api/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.d.ts +59 -0
  2722. package/dist/api/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.js +5 -0
  2723. package/dist/api/resources/textToSpeech/client/requests/TextToSpeechRequest.d.ts +59 -0
  2724. package/dist/api/resources/textToSpeech/client/requests/TextToSpeechRequest.js +5 -0
  2725. package/dist/api/resources/textToSpeech/client/requests/TextToSpeechWithTimestampsRequest.d.ts +57 -0
  2726. package/dist/api/resources/textToSpeech/client/requests/TextToSpeechWithTimestampsRequest.js +5 -0
  2727. package/dist/api/resources/textToSpeech/client/requests/index.d.ts +4 -0
  2728. package/dist/api/resources/textToSpeech/client/requests/index.js +2 -0
  2729. package/dist/api/resources/textToSpeech/index.d.ts +2 -0
  2730. package/dist/api/resources/textToSpeech/index.js +18 -0
  2731. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechStreamingV1TextToSpeechVoiceIdStreamPostApplyTextNormalization.d.ts +12 -0
  2732. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechStreamingV1TextToSpeechVoiceIdStreamPostApplyTextNormalization.js +11 -0
  2733. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechStreamingWithTimestampsV1TextToSpeechVoiceIdStreamWithTimestampsPostApplyTextNormalization.d.ts +12 -0
  2734. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechStreamingWithTimestampsV1TextToSpeechVoiceIdStreamWithTimestampsPostApplyTextNormalization.js +11 -0
  2735. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechV1TextToSpeechVoiceIdPostApplyTextNormalization.d.ts +12 -0
  2736. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechV1TextToSpeechVoiceIdPostApplyTextNormalization.js +11 -0
  2737. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechWithTimestampsV1TextToSpeechVoiceIdWithTimestampsPostApplyTextNormalization.d.ts +12 -0
  2738. package/dist/api/resources/textToSpeech/types/BodyTextToSpeechWithTimestampsV1TextToSpeechVoiceIdWithTimestampsPostApplyTextNormalization.js +11 -0
  2739. package/dist/api/resources/textToSpeech/types/TextToSpeechConvertRequestOutputFormat.d.ts +28 -0
  2740. package/dist/api/resources/textToSpeech/types/TextToSpeechConvertRequestOutputFormat.js +27 -0
  2741. package/dist/api/resources/textToSpeech/types/TextToSpeechConvertWithTimestampsRequestOutputFormat.d.ts +28 -0
  2742. package/dist/api/resources/textToSpeech/types/TextToSpeechConvertWithTimestampsRequestOutputFormat.js +27 -0
  2743. package/dist/api/resources/textToSpeech/types/TextToSpeechStreamRequestOutputFormat.d.ts +28 -0
  2744. package/dist/api/resources/textToSpeech/types/TextToSpeechStreamRequestOutputFormat.js +27 -0
  2745. package/dist/api/resources/textToSpeech/types/TextToSpeechStreamWithTimestampsRequestOutputFormat.d.ts +28 -0
  2746. package/dist/api/resources/textToSpeech/types/TextToSpeechStreamWithTimestampsRequestOutputFormat.js +27 -0
  2747. package/dist/api/resources/textToSpeech/types/index.d.ts +8 -0
  2748. package/dist/api/resources/textToSpeech/types/index.js +24 -0
  2749. package/dist/api/resources/textToVoice/client/Client.d.ts +63 -0
  2750. package/dist/api/resources/textToVoice/client/Client.js +212 -0
  2751. package/dist/api/resources/textToVoice/client/index.d.ts +1 -0
  2752. package/dist/api/resources/textToVoice/client/index.js +17 -0
  2753. package/dist/api/resources/textToVoice/client/requests/SaveVoicePreviewRequest.d.ts +23 -0
  2754. package/dist/api/resources/textToVoice/client/requests/SaveVoicePreviewRequest.js +5 -0
  2755. package/dist/api/resources/textToVoice/client/requests/VoiceDesignRequest.d.ts +30 -0
  2756. package/dist/api/resources/textToVoice/client/requests/VoiceDesignRequest.js +5 -0
  2757. package/dist/api/resources/textToVoice/client/requests/index.d.ts +2 -0
  2758. package/dist/api/resources/textToVoice/client/requests/index.js +2 -0
  2759. package/dist/api/resources/textToVoice/index.d.ts +2 -0
  2760. package/dist/api/resources/textToVoice/index.js +18 -0
  2761. package/dist/api/resources/textToVoice/types/TextToVoiceCreatePreviewsRequestOutputFormat.d.ts +28 -0
  2762. package/dist/api/resources/textToVoice/types/TextToVoiceCreatePreviewsRequestOutputFormat.js +27 -0
  2763. package/dist/api/resources/textToVoice/types/index.d.ts +1 -0
  2764. package/dist/api/resources/textToVoice/types/index.js +17 -0
  2765. package/dist/api/resources/usage/client/Client.d.ts +47 -0
  2766. package/dist/api/resources/usage/client/Client.js +146 -0
  2767. package/dist/api/resources/usage/client/index.d.ts +1 -0
  2768. package/dist/api/resources/usage/client/index.js +17 -0
  2769. package/dist/api/resources/usage/client/requests/UsageGetRequest.d.ts +37 -0
  2770. package/dist/api/resources/usage/client/requests/UsageGetRequest.js +5 -0
  2771. package/dist/api/resources/usage/client/requests/index.d.ts +1 -0
  2772. package/dist/api/resources/usage/client/requests/index.js +2 -0
  2773. package/dist/api/resources/usage/index.d.ts +1 -0
  2774. package/dist/api/resources/usage/index.js +17 -0
  2775. package/dist/api/resources/user/client/Client.d.ts +46 -0
  2776. package/dist/api/resources/user/client/Client.js +127 -0
  2777. package/dist/api/resources/user/client/index.d.ts +1 -0
  2778. package/dist/api/resources/user/client/index.js +2 -0
  2779. package/dist/api/resources/user/index.d.ts +2 -0
  2780. package/dist/api/resources/user/index.js +18 -0
  2781. package/dist/api/resources/user/resources/index.d.ts +1 -0
  2782. package/dist/api/resources/user/resources/index.js +37 -0
  2783. package/dist/api/resources/user/resources/subscription/client/Client.d.ts +43 -0
  2784. package/dist/api/resources/user/resources/subscription/client/Client.js +122 -0
  2785. package/dist/api/resources/user/resources/subscription/client/index.d.ts +1 -0
  2786. package/dist/api/resources/user/resources/subscription/client/index.js +2 -0
  2787. package/dist/api/resources/user/resources/subscription/index.d.ts +1 -0
  2788. package/dist/api/resources/user/resources/subscription/index.js +17 -0
  2789. package/dist/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/index.d.ts +1 -0
  2790. package/dist/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/index.js +17 -0
  2791. package/dist/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/ReceiveMessageMulti.d.ts +8 -0
  2792. package/dist/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/ReceiveMessageMulti.js +5 -0
  2793. package/dist/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/SendMessageMulti.d.ts +8 -0
  2794. package/dist/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/SendMessageMulti.js +5 -0
  2795. package/dist/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/index.d.ts +2 -0
  2796. package/dist/api/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/index.js +18 -0
  2797. package/dist/api/resources/v1TextToSpeechVoiceIdStreamInput/index.d.ts +1 -0
  2798. package/dist/api/resources/v1TextToSpeechVoiceIdStreamInput/index.js +17 -0
  2799. package/dist/api/resources/v1TextToSpeechVoiceIdStreamInput/types/ReceiveMessage.d.ts +8 -0
  2800. package/dist/api/resources/v1TextToSpeechVoiceIdStreamInput/types/ReceiveMessage.js +5 -0
  2801. package/dist/api/resources/v1TextToSpeechVoiceIdStreamInput/types/SendMessage.d.ts +8 -0
  2802. package/dist/api/resources/v1TextToSpeechVoiceIdStreamInput/types/SendMessage.js +5 -0
  2803. package/dist/api/resources/v1TextToSpeechVoiceIdStreamInput/types/index.d.ts +2 -0
  2804. package/dist/api/resources/v1TextToSpeechVoiceIdStreamInput/types/index.js +18 -0
  2805. package/dist/api/resources/voices/client/Client.d.ts +163 -0
  2806. package/dist/api/resources/voices/client/Client.js +726 -0
  2807. package/dist/api/resources/voices/client/index.d.ts +1 -0
  2808. package/dist/api/resources/voices/client/index.js +17 -0
  2809. package/dist/api/resources/voices/client/requests/BodyAddSharedVoiceV1VoicesAddPublicUserIdVoiceIdPost.d.ts +13 -0
  2810. package/dist/api/resources/voices/client/requests/BodyAddSharedVoiceV1VoicesAddPublicUserIdVoiceIdPost.js +5 -0
  2811. package/dist/api/resources/voices/client/requests/BodyEditVoiceV1VoicesVoiceIdEditPost.d.ts +21 -0
  2812. package/dist/api/resources/voices/client/requests/BodyEditVoiceV1VoicesVoiceIdEditPost.js +5 -0
  2813. package/dist/api/resources/voices/client/requests/BodyGetSimilarLibraryVoicesV1SimilarVoicesPost.d.ts +15 -0
  2814. package/dist/api/resources/voices/client/requests/BodyGetSimilarLibraryVoicesV1SimilarVoicesPost.js +5 -0
  2815. package/dist/api/resources/voices/client/requests/VoicesGetAllRequest.d.ts +13 -0
  2816. package/dist/api/resources/voices/client/requests/VoicesGetAllRequest.js +5 -0
  2817. package/dist/api/resources/voices/client/requests/VoicesGetRequest.d.ts +13 -0
  2818. package/dist/api/resources/voices/client/requests/VoicesGetRequest.js +5 -0
  2819. package/dist/api/resources/voices/client/requests/VoicesGetSharedRequest.d.ts +78 -0
  2820. package/dist/api/resources/voices/client/requests/VoicesGetSharedRequest.js +5 -0
  2821. package/dist/api/resources/voices/client/requests/VoicesSearchRequest.d.ts +51 -0
  2822. package/dist/api/resources/voices/client/requests/VoicesSearchRequest.js +5 -0
  2823. package/dist/api/resources/voices/client/requests/index.d.ts +7 -0
  2824. package/dist/api/resources/voices/client/requests/index.js +2 -0
  2825. package/dist/api/resources/voices/index.d.ts +3 -0
  2826. package/dist/api/resources/voices/index.js +19 -0
  2827. package/dist/api/resources/voices/resources/index.d.ts +6 -0
  2828. package/dist/api/resources/voices/resources/index.js +45 -0
  2829. package/dist/api/resources/voices/resources/ivc/client/Client.d.ts +47 -0
  2830. package/dist/api/resources/voices/resources/ivc/client/Client.js +142 -0
  2831. package/dist/api/resources/voices/resources/ivc/client/index.d.ts +1 -0
  2832. package/dist/api/resources/voices/resources/ivc/client/index.js +17 -0
  2833. package/dist/api/resources/voices/resources/ivc/client/requests/BodyAddVoiceV1VoicesAddPost.d.ts +22 -0
  2834. package/dist/api/resources/voices/resources/ivc/client/requests/BodyAddVoiceV1VoicesAddPost.js +5 -0
  2835. package/dist/api/resources/voices/resources/ivc/client/requests/index.d.ts +1 -0
  2836. package/dist/api/resources/voices/resources/ivc/client/requests/index.js +2 -0
  2837. package/dist/api/resources/voices/resources/ivc/index.d.ts +1 -0
  2838. package/dist/api/resources/voices/resources/ivc/index.js +17 -0
  2839. package/dist/api/resources/voices/resources/pvc/client/Client.d.ts +81 -0
  2840. package/dist/api/resources/voices/resources/pvc/client/Client.js +266 -0
  2841. package/dist/api/resources/voices/resources/pvc/client/index.d.ts +1 -0
  2842. package/dist/api/resources/voices/resources/pvc/client/index.js +17 -0
  2843. package/dist/api/resources/voices/resources/pvc/client/requests/BodyEditPvcVoiceV1VoicesPvcVoiceIdPost.d.ts +17 -0
  2844. package/dist/api/resources/voices/resources/pvc/client/requests/BodyEditPvcVoiceV1VoicesPvcVoiceIdPost.js +5 -0
  2845. package/dist/api/resources/voices/resources/pvc/client/requests/BodyRunPvcTrainingV1VoicesPvcVoiceIdTrainPost.d.ts +11 -0
  2846. package/dist/api/resources/voices/resources/pvc/client/requests/BodyRunPvcTrainingV1VoicesPvcVoiceIdTrainPost.js +5 -0
  2847. package/dist/api/resources/voices/resources/pvc/client/requests/CreatePvcVoiceRequest.d.ts +20 -0
  2848. package/dist/api/resources/voices/resources/pvc/client/requests/CreatePvcVoiceRequest.js +5 -0
  2849. package/dist/api/resources/voices/resources/pvc/client/requests/index.d.ts +3 -0
  2850. package/dist/api/resources/voices/resources/pvc/client/requests/index.js +2 -0
  2851. package/dist/api/resources/voices/resources/pvc/index.d.ts +2 -0
  2852. package/dist/api/resources/voices/resources/pvc/index.js +18 -0
  2853. package/dist/api/resources/voices/resources/pvc/resources/index.d.ts +4 -0
  2854. package/dist/api/resources/voices/resources/pvc/resources/index.js +43 -0
  2855. package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.d.ts +85 -0
  2856. package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.js +279 -0
  2857. package/dist/api/resources/voices/resources/pvc/resources/samples/client/index.d.ts +1 -0
  2858. package/dist/api/resources/voices/resources/pvc/resources/samples/client/index.js +17 -0
  2859. package/dist/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyAddSamplesToPvcVoiceV1VoicesPvcVoiceIdSamplesPost.d.ts +15 -0
  2860. package/dist/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyAddSamplesToPvcVoiceV1VoicesPvcVoiceIdSamplesPost.js +5 -0
  2861. package/dist/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyUpdatePvcVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost.d.ts +17 -0
  2862. package/dist/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyUpdatePvcVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost.js +5 -0
  2863. package/dist/api/resources/voices/resources/pvc/resources/samples/client/requests/index.d.ts +2 -0
  2864. package/dist/api/resources/voices/resources/pvc/resources/samples/client/requests/index.js +2 -0
  2865. package/dist/api/resources/voices/resources/pvc/resources/samples/index.d.ts +2 -0
  2866. package/dist/api/resources/voices/resources/pvc/resources/samples/index.js +18 -0
  2867. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.d.ts +45 -0
  2868. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +127 -0
  2869. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/index.d.ts +1 -0
  2870. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/index.js +2 -0
  2871. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/index.d.ts +1 -0
  2872. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/index.js +17 -0
  2873. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/index.d.ts +3 -0
  2874. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/index.js +39 -0
  2875. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.d.ts +62 -0
  2876. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +197 -0
  2877. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/index.d.ts +1 -0
  2878. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/index.js +2 -0
  2879. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/index.d.ts +2 -0
  2880. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/index.js +18 -0
  2881. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.d.ts +46 -0
  2882. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +125 -0
  2883. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/index.d.ts +1 -0
  2884. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/index.js +2 -0
  2885. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/index.d.ts +1 -0
  2886. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/index.js +17 -0
  2887. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/index.d.ts +1 -0
  2888. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/index.js +37 -0
  2889. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.d.ts +45 -0
  2890. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +127 -0
  2891. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/index.d.ts +1 -0
  2892. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/index.js +2 -0
  2893. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/index.d.ts +1 -0
  2894. package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/index.js +17 -0
  2895. package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.d.ts +50 -0
  2896. package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.js +143 -0
  2897. package/dist/api/resources/voices/resources/pvc/resources/verification/client/index.d.ts +1 -0
  2898. package/dist/api/resources/voices/resources/pvc/resources/verification/client/index.js +17 -0
  2899. package/dist/api/resources/voices/resources/pvc/resources/verification/client/requests/BodyRequestManualVerificationV1VoicesPvcVoiceIdVerificationPost.d.ts +15 -0
  2900. package/dist/api/resources/voices/resources/pvc/resources/verification/client/requests/BodyRequestManualVerificationV1VoicesPvcVoiceIdVerificationPost.js +5 -0
  2901. package/dist/api/resources/voices/resources/pvc/resources/verification/client/requests/index.d.ts +1 -0
  2902. package/dist/api/resources/voices/resources/pvc/resources/verification/client/requests/index.js +2 -0
  2903. package/dist/api/resources/voices/resources/pvc/resources/verification/index.d.ts +2 -0
  2904. package/dist/api/resources/voices/resources/pvc/resources/verification/index.js +18 -0
  2905. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.d.ts +60 -0
  2906. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +194 -0
  2907. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/index.d.ts +1 -0
  2908. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/index.js +17 -0
  2909. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/requests/BodyVerifyPvcVoiceCaptchaV1VoicesPvcVoiceIdCaptchaPost.d.ts +13 -0
  2910. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/requests/BodyVerifyPvcVoiceCaptchaV1VoicesPvcVoiceIdCaptchaPost.js +5 -0
  2911. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/requests/index.d.ts +1 -0
  2912. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/requests/index.js +2 -0
  2913. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/index.d.ts +1 -0
  2914. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/index.js +17 -0
  2915. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/index.d.ts +2 -0
  2916. package/dist/api/resources/voices/resources/pvc/resources/verification/resources/index.js +41 -0
  2917. package/dist/api/resources/voices/resources/samples/client/Client.d.ts +21 -0
  2918. package/dist/api/resources/voices/resources/samples/client/Client.js +17 -0
  2919. package/dist/api/resources/voices/resources/samples/client/index.d.ts +1 -0
  2920. package/dist/api/resources/voices/resources/samples/client/index.js +2 -0
  2921. package/dist/api/resources/voices/resources/samples/index.d.ts +2 -0
  2922. package/dist/api/resources/voices/resources/samples/index.js +18 -0
  2923. package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.d.ts +37 -0
  2924. package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.js +117 -0
  2925. package/dist/api/resources/voices/resources/samples/resources/audio/client/index.d.ts +1 -0
  2926. package/dist/api/resources/voices/resources/samples/resources/audio/client/index.js +2 -0
  2927. package/dist/api/resources/voices/resources/samples/resources/audio/index.d.ts +1 -0
  2928. package/dist/api/resources/voices/resources/samples/resources/audio/index.js +17 -0
  2929. package/dist/api/resources/voices/resources/samples/resources/index.d.ts +1 -0
  2930. package/dist/api/resources/voices/resources/samples/resources/index.js +37 -0
  2931. package/dist/api/resources/voices/resources/settings/client/Client.d.ts +74 -0
  2932. package/dist/api/resources/voices/resources/settings/client/Client.js +248 -0
  2933. package/dist/api/resources/voices/resources/settings/client/index.d.ts +1 -0
  2934. package/dist/api/resources/voices/resources/settings/client/index.js +2 -0
  2935. package/dist/api/resources/voices/resources/settings/index.d.ts +1 -0
  2936. package/dist/api/resources/voices/resources/settings/index.js +17 -0
  2937. package/dist/api/resources/voices/types/VoicesGetSharedRequestCategory.d.ts +12 -0
  2938. package/dist/api/resources/voices/types/VoicesGetSharedRequestCategory.js +11 -0
  2939. package/dist/api/resources/voices/types/index.d.ts +1 -0
  2940. package/dist/api/resources/voices/types/index.js +17 -0
  2941. package/dist/api/resources/workspace/client/Client.d.ts +30 -0
  2942. package/dist/api/resources/workspace/client/Client.js +32 -0
  2943. package/dist/api/resources/workspace/client/index.d.ts +1 -0
  2944. package/dist/api/resources/workspace/client/index.js +2 -0
  2945. package/dist/api/resources/workspace/index.d.ts +2 -0
  2946. package/dist/api/resources/workspace/index.js +18 -0
  2947. package/dist/api/resources/workspace/resources/groups/client/Client.d.ts +49 -0
  2948. package/dist/api/resources/workspace/resources/groups/client/Client.js +137 -0
  2949. package/dist/api/resources/workspace/resources/groups/client/index.d.ts +1 -0
  2950. package/dist/api/resources/workspace/resources/groups/client/index.js +17 -0
  2951. package/dist/api/resources/workspace/resources/groups/client/requests/GroupsSearchRequest.d.ts +15 -0
  2952. package/dist/api/resources/workspace/resources/groups/client/requests/GroupsSearchRequest.js +5 -0
  2953. package/dist/api/resources/workspace/resources/groups/client/requests/index.d.ts +1 -0
  2954. package/dist/api/resources/workspace/resources/groups/client/requests/index.js +2 -0
  2955. package/dist/api/resources/workspace/resources/groups/index.d.ts +2 -0
  2956. package/dist/api/resources/workspace/resources/groups/index.js +18 -0
  2957. package/dist/api/resources/workspace/resources/groups/resources/index.d.ts +2 -0
  2958. package/dist/api/resources/workspace/resources/groups/resources/index.js +41 -0
  2959. package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.d.ts +63 -0
  2960. package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.js +198 -0
  2961. package/dist/api/resources/workspace/resources/groups/resources/members/client/index.d.ts +1 -0
  2962. package/dist/api/resources/workspace/resources/groups/resources/members/client/index.js +17 -0
  2963. package/dist/api/resources/workspace/resources/groups/resources/members/client/requests/AddMemberToGroupRequest.d.ts +13 -0
  2964. package/dist/api/resources/workspace/resources/groups/resources/members/client/requests/AddMemberToGroupRequest.js +5 -0
  2965. package/dist/api/resources/workspace/resources/groups/resources/members/client/requests/BodyDeleteMemberFromUserGroupV1WorkspaceGroupsGroupIdMembersRemovePost.d.ts +13 -0
  2966. package/dist/api/resources/workspace/resources/groups/resources/members/client/requests/BodyDeleteMemberFromUserGroupV1WorkspaceGroupsGroupIdMembersRemovePost.js +5 -0
  2967. package/dist/api/resources/workspace/resources/groups/resources/members/client/requests/index.d.ts +2 -0
  2968. package/dist/api/resources/workspace/resources/groups/resources/members/client/requests/index.js +2 -0
  2969. package/dist/api/resources/workspace/resources/groups/resources/members/index.d.ts +1 -0
  2970. package/dist/api/resources/workspace/resources/groups/resources/members/index.js +17 -0
  2971. package/dist/api/resources/workspace/resources/index.d.ts +11 -0
  2972. package/dist/api/resources/workspace/resources/index.js +50 -0
  2973. package/dist/api/resources/workspace/resources/invites/client/Client.d.ts +76 -0
  2974. package/dist/api/resources/workspace/resources/invites/client/Client.js +263 -0
  2975. package/dist/api/resources/workspace/resources/invites/client/index.d.ts +1 -0
  2976. package/dist/api/resources/workspace/resources/invites/client/index.js +17 -0
  2977. package/dist/api/resources/workspace/resources/invites/client/requests/BodyDeleteExistingInvitationV1WorkspaceInvitesDelete.d.ts +13 -0
  2978. package/dist/api/resources/workspace/resources/invites/client/requests/BodyDeleteExistingInvitationV1WorkspaceInvitesDelete.js +5 -0
  2979. package/dist/api/resources/workspace/resources/invites/client/requests/BodyInviteMultipleUsersV1WorkspaceInvitesAddBulkPost.d.ts +15 -0
  2980. package/dist/api/resources/workspace/resources/invites/client/requests/BodyInviteMultipleUsersV1WorkspaceInvitesAddBulkPost.js +5 -0
  2981. package/dist/api/resources/workspace/resources/invites/client/requests/InviteUserRequest.d.ts +18 -0
  2982. package/dist/api/resources/workspace/resources/invites/client/requests/InviteUserRequest.js +5 -0
  2983. package/dist/api/resources/workspace/resources/invites/client/requests/index.d.ts +3 -0
  2984. package/dist/api/resources/workspace/resources/invites/client/requests/index.js +2 -0
  2985. package/dist/api/resources/workspace/resources/invites/index.d.ts +2 -0
  2986. package/dist/api/resources/workspace/resources/invites/index.js +18 -0
  2987. package/dist/api/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.d.ts +22 -0
  2988. package/dist/api/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.js +24 -0
  2989. package/dist/api/resources/workspace/resources/invites/types/index.d.ts +1 -0
  2990. package/dist/api/resources/workspace/resources/invites/types/index.js +17 -0
  2991. package/dist/api/resources/workspace/resources/members/client/Client.d.ts +61 -0
  2992. package/dist/api/resources/workspace/resources/members/client/Client.js +196 -0
  2993. package/dist/api/resources/workspace/resources/members/client/index.d.ts +1 -0
  2994. package/dist/api/resources/workspace/resources/members/client/index.js +17 -0
  2995. package/dist/api/resources/workspace/resources/members/client/requests/BodyDeleteMemberV1WorkspaceMembersDelete.d.ts +13 -0
  2996. package/dist/api/resources/workspace/resources/members/client/requests/BodyDeleteMemberV1WorkspaceMembersDelete.js +5 -0
  2997. package/dist/api/resources/workspace/resources/members/client/requests/UpdateMemberRequest.d.ts +18 -0
  2998. package/dist/api/resources/workspace/resources/members/client/requests/UpdateMemberRequest.js +5 -0
  2999. package/dist/api/resources/workspace/resources/members/client/requests/index.d.ts +2 -0
  3000. package/dist/api/resources/workspace/resources/members/client/requests/index.js +2 -0
  3001. package/dist/api/resources/workspace/resources/members/index.d.ts +2 -0
  3002. package/dist/api/resources/workspace/resources/members/index.js +18 -0
  3003. package/dist/api/resources/workspace/resources/members/types/BodyUpdateMemberV1WorkspaceMembersPostWorkspaceRole.d.ts +8 -0
  3004. package/dist/api/resources/workspace/resources/members/types/BodyUpdateMemberV1WorkspaceMembersPostWorkspaceRole.js +10 -0
  3005. package/dist/api/resources/workspace/resources/members/types/index.d.ts +1 -0
  3006. package/dist/api/resources/workspace/resources/members/types/index.js +17 -0
  3007. package/dist/api/resources/workspace/resources/resources/client/Client.d.ts +80 -0
  3008. package/dist/api/resources/workspace/resources/resources/client/Client.js +264 -0
  3009. package/dist/api/resources/workspace/resources/resources/client/index.d.ts +1 -0
  3010. package/dist/api/resources/workspace/resources/resources/client/index.js +17 -0
  3011. package/dist/api/resources/workspace/resources/resources/client/requests/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePost.d.ts +23 -0
  3012. package/dist/api/resources/workspace/resources/resources/client/requests/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePost.js +5 -0
  3013. package/dist/api/resources/workspace/resources/resources/client/requests/BodyUnshareWorkspaceResourceV1WorkspaceResourcesResourceIdUnsharePost.d.ts +20 -0
  3014. package/dist/api/resources/workspace/resources/resources/client/requests/BodyUnshareWorkspaceResourceV1WorkspaceResourcesResourceIdUnsharePost.js +5 -0
  3015. package/dist/api/resources/workspace/resources/resources/client/requests/ResourcesGetRequest.d.ts +16 -0
  3016. package/dist/api/resources/workspace/resources/resources/client/requests/ResourcesGetRequest.js +5 -0
  3017. package/dist/api/resources/workspace/resources/resources/client/requests/index.d.ts +3 -0
  3018. package/dist/api/resources/workspace/resources/resources/client/requests/index.js +2 -0
  3019. package/dist/api/resources/workspace/resources/resources/index.d.ts +2 -0
  3020. package/dist/api/resources/workspace/resources/resources/index.js +18 -0
  3021. package/dist/api/resources/workspace/resources/resources/types/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePostRole.d.ts +12 -0
  3022. package/dist/api/resources/workspace/resources/resources/types/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePostRole.js +11 -0
  3023. package/dist/api/resources/workspace/resources/resources/types/index.d.ts +1 -0
  3024. package/dist/api/resources/workspace/resources/resources/types/index.js +17 -0
  3025. package/dist/api/types/AddChapterResponseModel.d.ts +7 -0
  3026. package/dist/api/types/AddChapterResponseModel.js +5 -0
  3027. package/dist/api/types/AddKnowledgeBaseResponseModel.d.ts +8 -0
  3028. package/dist/api/types/AddKnowledgeBaseResponseModel.js +5 -0
  3029. package/dist/api/types/AddProjectRequest.d.ts +70 -0
  3030. package/dist/api/types/AddProjectRequest.js +5 -0
  3031. package/dist/api/types/AddProjectResponseModel.d.ts +7 -0
  3032. package/dist/api/types/AddProjectResponseModel.js +5 -0
  3033. package/dist/api/types/AddPronunciationDictionaryResponseModel.d.ts +22 -0
  3034. package/dist/api/types/AddPronunciationDictionaryResponseModel.js +5 -0
  3035. package/dist/api/types/AddPronunciationDictionaryResponseModelPermissionOnResource.d.ts +9 -0
  3036. package/dist/api/types/AddPronunciationDictionaryResponseModelPermissionOnResource.js +11 -0
  3037. package/dist/api/types/AddSharingVoiceRequest.d.ts +4 -0
  3038. package/dist/api/types/AddSharingVoiceRequest.js +5 -0
  3039. package/dist/api/types/AddVoiceIvcResponseModel.d.ts +9 -0
  3040. package/dist/api/types/AddVoiceIvcResponseModel.js +5 -0
  3041. package/dist/api/types/AddVoiceResponseModel.d.ts +7 -0
  3042. package/dist/api/types/AddVoiceResponseModel.js +5 -0
  3043. package/dist/api/types/AddWorkspaceGroupMemberResponseModel.d.ts +7 -0
  3044. package/dist/api/types/AddWorkspaceGroupMemberResponseModel.js +5 -0
  3045. package/dist/api/types/AddWorkspaceInviteResponseModel.d.ts +7 -0
  3046. package/dist/api/types/AddWorkspaceInviteResponseModel.js +5 -0
  3047. package/dist/api/types/AdditionalFormatResponseModel.d.ts +15 -0
  3048. package/dist/api/types/AdditionalFormatResponseModel.js +5 -0
  3049. package/dist/api/types/AdditionalFormats.d.ts +5 -0
  3050. package/dist/api/types/AdditionalFormats.js +5 -0
  3051. package/dist/api/types/Age.d.ts +4 -0
  3052. package/dist/api/types/Age.js +5 -0
  3053. package/dist/api/types/AgentBan.d.ts +9 -0
  3054. package/dist/api/types/AgentBan.js +5 -0
  3055. package/dist/api/types/AgentCallLimits.d.ts +9 -0
  3056. package/dist/api/types/AgentCallLimits.js +5 -0
  3057. package/dist/api/types/AgentConfig.d.ts +14 -0
  3058. package/dist/api/types/AgentConfig.js +5 -0
  3059. package/dist/api/types/AgentConfigDbModel.d.ts +13 -0
  3060. package/dist/api/types/AgentConfigDbModel.js +5 -0
  3061. package/dist/api/types/AgentConfigOverride.d.ts +12 -0
  3062. package/dist/api/types/AgentConfigOverride.js +5 -0
  3063. package/dist/api/types/AgentConfigOverrideConfig.d.ts +12 -0
  3064. package/dist/api/types/AgentConfigOverrideConfig.js +5 -0
  3065. package/dist/api/types/AgentMetadataResponseModel.d.ts +7 -0
  3066. package/dist/api/types/AgentMetadataResponseModel.js +5 -0
  3067. package/dist/api/types/AgentPlatformSettingsRequestModel.d.ts +22 -0
  3068. package/dist/api/types/AgentPlatformSettingsRequestModel.js +5 -0
  3069. package/dist/api/types/AgentPlatformSettingsResponseModel.d.ts +23 -0
  3070. package/dist/api/types/AgentPlatformSettingsResponseModel.js +5 -0
  3071. package/dist/api/types/AgentSimulatedChatTestResponseModel.d.ts +8 -0
  3072. package/dist/api/types/AgentSimulatedChatTestResponseModel.js +5 -0
  3073. package/dist/api/types/AgentSummaryResponseModel.d.ts +16 -0
  3074. package/dist/api/types/AgentSummaryResponseModel.js +5 -0
  3075. package/dist/api/types/AgentTransfer.d.ts +7 -0
  3076. package/dist/api/types/AgentTransfer.js +5 -0
  3077. package/dist/api/types/AgentWorkspaceOverridesInput.d.ts +9 -0
  3078. package/dist/api/types/AgentWorkspaceOverridesInput.js +5 -0
  3079. package/dist/api/types/AgentWorkspaceOverridesOutput.d.ts +9 -0
  3080. package/dist/api/types/AgentWorkspaceOverridesOutput.js +5 -0
  3081. package/dist/api/types/Alignment.d.ts +28 -0
  3082. package/dist/api/types/Alignment.js +5 -0
  3083. package/dist/api/types/AllowlistItem.d.ts +7 -0
  3084. package/dist/api/types/AllowlistItem.js +5 -0
  3085. package/dist/api/types/ArrayJsonSchemaPropertyInput.d.ts +9 -0
  3086. package/dist/api/types/ArrayJsonSchemaPropertyInput.js +5 -0
  3087. package/dist/api/types/ArrayJsonSchemaPropertyInputItems.d.ts +5 -0
  3088. package/dist/api/types/ArrayJsonSchemaPropertyInputItems.js +5 -0
  3089. package/dist/api/types/ArrayJsonSchemaPropertyOutput.d.ts +9 -0
  3090. package/dist/api/types/ArrayJsonSchemaPropertyOutput.js +5 -0
  3091. package/dist/api/types/ArrayJsonSchemaPropertyOutputItems.d.ts +5 -0
  3092. package/dist/api/types/ArrayJsonSchemaPropertyOutputItems.js +5 -0
  3093. package/dist/api/types/AsrConversationalConfig.d.ts +14 -0
  3094. package/dist/api/types/AsrConversationalConfig.js +5 -0
  3095. package/dist/api/types/AsrInputFormat.d.ts +13 -0
  3096. package/dist/api/types/AsrInputFormat.js +15 -0
  3097. package/dist/api/types/AsrProvider.d.ts +4 -0
  3098. package/dist/api/types/AsrProvider.js +5 -0
  3099. package/dist/api/types/AsrQuality.d.ts +4 -0
  3100. package/dist/api/types/AsrQuality.js +5 -0
  3101. package/dist/api/types/AudioNativeCreateProjectResponseModel.d.ts +11 -0
  3102. package/dist/api/types/AudioNativeCreateProjectResponseModel.js +5 -0
  3103. package/dist/api/types/AudioNativeEditContentResponseModel.d.ts +13 -0
  3104. package/dist/api/types/AudioNativeEditContentResponseModel.js +5 -0
  3105. package/dist/api/types/AudioNativeProjectSettingsResponseModel.d.ts +26 -0
  3106. package/dist/api/types/AudioNativeProjectSettingsResponseModel.js +5 -0
  3107. package/dist/api/types/AudioNativeProjectSettingsResponseModelStatus.d.ts +11 -0
  3108. package/dist/api/types/AudioNativeProjectSettingsResponseModelStatus.js +10 -0
  3109. package/dist/api/types/AudioOutput.d.ts +13 -0
  3110. package/dist/api/types/AudioOutput.js +5 -0
  3111. package/dist/api/types/AudioOutputMulti.d.ts +15 -0
  3112. package/dist/api/types/AudioOutputMulti.js +5 -0
  3113. package/dist/api/types/AudioWithTimestampsResponse.d.ts +12 -0
  3114. package/dist/api/types/AudioWithTimestampsResponse.js +5 -0
  3115. package/dist/api/types/AuthSettings.d.ts +12 -0
  3116. package/dist/api/types/AuthSettings.js +5 -0
  3117. package/dist/api/types/AuthorizationMethod.d.ts +13 -0
  3118. package/dist/api/types/AuthorizationMethod.js +15 -0
  3119. package/dist/api/types/BanReasonType.d.ts +8 -0
  3120. package/dist/api/types/BanReasonType.js +10 -0
  3121. package/dist/api/types/BatchCallDetailedResponse.d.ts +22 -0
  3122. package/dist/api/types/BatchCallDetailedResponse.js +5 -0
  3123. package/dist/api/types/BatchCallRecipientStatus.d.ts +12 -0
  3124. package/dist/api/types/BatchCallRecipientStatus.js +14 -0
  3125. package/dist/api/types/BatchCallResponse.d.ts +18 -0
  3126. package/dist/api/types/BatchCallResponse.js +5 -0
  3127. package/dist/api/types/BatchCallStatus.d.ts +11 -0
  3128. package/dist/api/types/BatchCallStatus.js +13 -0
  3129. package/dist/api/types/BodyAddChapterToAProjectV1ProjectsProjectIdChaptersAddPost.d.ts +9 -0
  3130. package/dist/api/types/BodyAddChapterToAProjectV1ProjectsProjectIdChaptersAddPost.js +5 -0
  3131. package/dist/api/types/BodyAddProjectV1ProjectsAddPostApplyTextNormalization.d.ts +10 -0
  3132. package/dist/api/types/BodyAddProjectV1ProjectsAddPostApplyTextNormalization.js +12 -0
  3133. package/dist/api/types/BodyAddProjectV1ProjectsAddPostFiction.d.ts +8 -0
  3134. package/dist/api/types/BodyAddProjectV1ProjectsAddPostFiction.js +10 -0
  3135. package/dist/api/types/BodyAddProjectV1ProjectsAddPostSourceType.d.ts +10 -0
  3136. package/dist/api/types/BodyAddProjectV1ProjectsAddPostSourceType.js +12 -0
  3137. package/dist/api/types/BodyAddProjectV1ProjectsAddPostTargetAudience.d.ts +10 -0
  3138. package/dist/api/types/BodyAddProjectV1ProjectsAddPostTargetAudience.js +12 -0
  3139. package/dist/api/types/BodyAddToKnowledgeBaseV1ConvaiAddToKnowledgeBasePost.d.ts +11 -0
  3140. package/dist/api/types/BodyAddToKnowledgeBaseV1ConvaiAddToKnowledgeBasePost.js +5 -0
  3141. package/dist/api/types/BodyAddToKnowledgeBaseV1ConvaiAgentsAgentIdAddToKnowledgeBasePost.d.ts +11 -0
  3142. package/dist/api/types/BodyAddToKnowledgeBaseV1ConvaiAgentsAgentIdAddToKnowledgeBasePost.js +5 -0
  3143. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +33 -0
  3144. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.js +5 -0
  3145. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostDurationScale.d.ts +15 -0
  3146. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostDurationScale.js +11 -0
  3147. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostMode.d.ts +16 -0
  3148. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostMode.js +5 -0
  3149. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostQualityPreset.d.ts +18 -0
  3150. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostQualityPreset.js +13 -0
  3151. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSource.d.ts +8 -0
  3152. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSource.js +5 -0
  3153. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSourceItem.d.ts +13 -0
  3154. package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSourceItem.js +5 -0
  3155. package/dist/api/types/BodyEditBasicProjectInfoV1ProjectsProjectIdPost.d.ts +19 -0
  3156. package/dist/api/types/BodyEditBasicProjectInfoV1ProjectsProjectIdPost.js +5 -0
  3157. package/dist/api/types/BodyEditChapterV1ProjectsProjectIdChaptersChapterIdPatch.d.ts +10 -0
  3158. package/dist/api/types/BodyEditChapterV1ProjectsProjectIdChaptersChapterIdPatch.js +5 -0
  3159. package/dist/api/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.d.ts +11 -0
  3160. package/dist/api/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.js +5 -0
  3161. package/dist/api/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostAge.d.ts +12 -0
  3162. package/dist/api/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostAge.js +11 -0
  3163. package/dist/api/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostGender.d.ts +11 -0
  3164. package/dist/api/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostGender.js +10 -0
  3165. package/dist/api/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.d.ts +7 -0
  3166. package/dist/api/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.js +5 -0
  3167. package/dist/api/types/BodyStreamChapterAudioV1ProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.d.ts +7 -0
  3168. package/dist/api/types/BodyStreamChapterAudioV1ProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.js +5 -0
  3169. package/dist/api/types/BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.d.ts +7 -0
  3170. package/dist/api/types/BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.js +5 -0
  3171. package/dist/api/types/BreakdownTypes.d.ts +20 -0
  3172. package/dist/api/types/BreakdownTypes.js +19 -0
  3173. package/dist/api/types/ChapterContentBlockExtendableNodeResponseModel.d.ts +8 -0
  3174. package/dist/api/types/ChapterContentBlockExtendableNodeResponseModel.js +5 -0
  3175. package/dist/api/types/ChapterContentBlockInputModel.d.ts +8 -0
  3176. package/dist/api/types/ChapterContentBlockInputModel.js +5 -0
  3177. package/dist/api/types/ChapterContentBlockResponseModel.d.ts +8 -0
  3178. package/dist/api/types/ChapterContentBlockResponseModel.js +5 -0
  3179. package/dist/api/types/ChapterContentBlockResponseModelNodesItem.d.ts +13 -0
  3180. package/dist/api/types/ChapterContentBlockResponseModelNodesItem.js +5 -0
  3181. package/dist/api/types/ChapterContentBlockTtsNodeResponseModel.d.ts +7 -0
  3182. package/dist/api/types/ChapterContentBlockTtsNodeResponseModel.js +5 -0
  3183. package/dist/api/types/ChapterContentInputModel.d.ts +7 -0
  3184. package/dist/api/types/ChapterContentInputModel.js +5 -0
  3185. package/dist/api/types/ChapterContentParagraphTtsNodeInputModel.d.ts +8 -0
  3186. package/dist/api/types/ChapterContentParagraphTtsNodeInputModel.js +5 -0
  3187. package/dist/api/types/ChapterContentResponseModel.d.ts +7 -0
  3188. package/dist/api/types/ChapterContentResponseModel.js +5 -0
  3189. package/dist/api/types/ChapterResponse.d.ts +22 -0
  3190. package/dist/api/types/ChapterResponse.js +5 -0
  3191. package/dist/api/types/ChapterSnapshotExtendedResponseModel.d.ts +17 -0
  3192. package/dist/api/types/ChapterSnapshotExtendedResponseModel.js +5 -0
  3193. package/dist/api/types/ChapterSnapshotResponse.d.ts +15 -0
  3194. package/dist/api/types/ChapterSnapshotResponse.js +5 -0
  3195. package/dist/api/types/ChapterSnapshotsResponse.d.ts +8 -0
  3196. package/dist/api/types/ChapterSnapshotsResponse.js +5 -0
  3197. package/dist/api/types/ChapterState.d.ts +11 -0
  3198. package/dist/api/types/ChapterState.js +10 -0
  3199. package/dist/api/types/ChapterStatisticsResponse.d.ts +13 -0
  3200. package/dist/api/types/ChapterStatisticsResponse.js +5 -0
  3201. package/dist/api/types/ChapterWithContentResponseModel.d.ts +23 -0
  3202. package/dist/api/types/ChapterWithContentResponseModel.js +5 -0
  3203. package/dist/api/types/ChapterWithContentResponseModelState.d.ts +11 -0
  3204. package/dist/api/types/ChapterWithContentResponseModelState.js +10 -0
  3205. package/dist/api/types/CharacterAlignmentModel.d.ts +8 -0
  3206. package/dist/api/types/CharacterAlignmentModel.js +5 -0
  3207. package/dist/api/types/CharacterAlignmentResponseModel.d.ts +8 -0
  3208. package/dist/api/types/CharacterAlignmentResponseModel.js +5 -0
  3209. package/dist/api/types/CharacterUsageResponse.d.ts +4 -0
  3210. package/dist/api/types/CharacterUsageResponse.js +5 -0
  3211. package/dist/api/types/ClientEvent.d.ts +18 -0
  3212. package/dist/api/types/ClientEvent.js +20 -0
  3213. package/dist/api/types/ClientToolConfigInput.d.ts +20 -0
  3214. package/dist/api/types/ClientToolConfigInput.js +5 -0
  3215. package/dist/api/types/ClientToolConfigOutput.d.ts +20 -0
  3216. package/dist/api/types/ClientToolConfigOutput.js +5 -0
  3217. package/dist/api/types/CloseConnection.d.ts +7 -0
  3218. package/dist/api/types/CloseConnection.js +5 -0
  3219. package/dist/api/types/CloseContext.d.ts +12 -0
  3220. package/dist/api/types/CloseContext.js +5 -0
  3221. package/dist/api/types/CloseSocket.d.ts +10 -0
  3222. package/dist/api/types/CloseSocket.js +5 -0
  3223. package/dist/api/types/ConvAiDynamicVariable.d.ts +9 -0
  3224. package/dist/api/types/ConvAiDynamicVariable.js +5 -0
  3225. package/dist/api/types/ConvAiSecretLocator.d.ts +9 -0
  3226. package/dist/api/types/ConvAiSecretLocator.js +5 -0
  3227. package/dist/api/types/ConvAiStoredSecretDependencies.d.ts +10 -0
  3228. package/dist/api/types/ConvAiStoredSecretDependencies.js +5 -0
  3229. package/dist/api/types/ConvAiStoredSecretDependenciesAgentToolsItem.d.ts +13 -0
  3230. package/dist/api/types/ConvAiStoredSecretDependenciesAgentToolsItem.js +5 -0
  3231. package/dist/api/types/ConvAiStoredSecretDependenciesToolsItem.d.ts +13 -0
  3232. package/dist/api/types/ConvAiStoredSecretDependenciesToolsItem.js +5 -0
  3233. package/dist/api/types/ConvAiWebhooks.d.ts +6 -0
  3234. package/dist/api/types/ConvAiWebhooks.js +5 -0
  3235. package/dist/api/types/ConvAiWorkspaceStoredSecretConfig.d.ts +10 -0
  3236. package/dist/api/types/ConvAiWorkspaceStoredSecretConfig.js +5 -0
  3237. package/dist/api/types/ConversationChargingCommonModel.d.ts +10 -0
  3238. package/dist/api/types/ConversationChargingCommonModel.js +5 -0
  3239. package/dist/api/types/ConversationConfig.d.ts +12 -0
  3240. package/dist/api/types/ConversationConfig.js +5 -0
  3241. package/dist/api/types/ConversationConfigClientOverrideConfigInput.d.ts +12 -0
  3242. package/dist/api/types/ConversationConfigClientOverrideConfigInput.js +5 -0
  3243. package/dist/api/types/ConversationConfigClientOverrideConfigOutput.d.ts +12 -0
  3244. package/dist/api/types/ConversationConfigClientOverrideConfigOutput.js +5 -0
  3245. package/dist/api/types/ConversationConfigClientOverrideInput.d.ts +12 -0
  3246. package/dist/api/types/ConversationConfigClientOverrideInput.js +5 -0
  3247. package/dist/api/types/ConversationConfigClientOverrideOutput.d.ts +12 -0
  3248. package/dist/api/types/ConversationConfigClientOverrideOutput.js +5 -0
  3249. package/dist/api/types/ConversationConfigOverride.d.ts +6 -0
  3250. package/dist/api/types/ConversationConfigOverride.js +5 -0
  3251. package/dist/api/types/ConversationConfigOverrideConfig.d.ts +7 -0
  3252. package/dist/api/types/ConversationConfigOverrideConfig.js +5 -0
  3253. package/dist/api/types/ConversationDeletionSettings.d.ts +11 -0
  3254. package/dist/api/types/ConversationDeletionSettings.js +5 -0
  3255. package/dist/api/types/ConversationHistoryAnalysisCommonModel.d.ts +10 -0
  3256. package/dist/api/types/ConversationHistoryAnalysisCommonModel.js +5 -0
  3257. package/dist/api/types/ConversationHistoryBatchCallModel.d.ts +7 -0
  3258. package/dist/api/types/ConversationHistoryBatchCallModel.js +5 -0
  3259. package/dist/api/types/ConversationHistoryErrorCommonModel.d.ts +7 -0
  3260. package/dist/api/types/ConversationHistoryErrorCommonModel.js +5 -0
  3261. package/dist/api/types/ConversationHistoryEvaluationCriteriaResultCommonModel.d.ts +9 -0
  3262. package/dist/api/types/ConversationHistoryEvaluationCriteriaResultCommonModel.js +5 -0
  3263. package/dist/api/types/ConversationHistoryFeedbackCommonModel.d.ts +9 -0
  3264. package/dist/api/types/ConversationHistoryFeedbackCommonModel.js +5 -0
  3265. package/dist/api/types/ConversationHistoryMetadataCommonModel.d.ts +20 -0
  3266. package/dist/api/types/ConversationHistoryMetadataCommonModel.js +5 -0
  3267. package/dist/api/types/ConversationHistoryMetadataCommonModelPhoneCall.d.ts +13 -0
  3268. package/dist/api/types/ConversationHistoryMetadataCommonModelPhoneCall.js +5 -0
  3269. package/dist/api/types/ConversationHistoryRagUsageCommonModel.d.ts +7 -0
  3270. package/dist/api/types/ConversationHistoryRagUsageCommonModel.js +5 -0
  3271. package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +11 -0
  3272. package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModel.js +5 -0
  3273. package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +8 -0
  3274. package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +10 -0
  3275. package/dist/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +19 -0
  3276. package/dist/api/types/ConversationHistoryTranscriptCommonModelInput.js +5 -0
  3277. package/dist/api/types/ConversationHistoryTranscriptCommonModelInputRole.d.ts +8 -0
  3278. package/dist/api/types/ConversationHistoryTranscriptCommonModelInputRole.js +10 -0
  3279. package/dist/api/types/ConversationHistoryTranscriptCommonModelInputSourceMedium.d.ts +8 -0
  3280. package/dist/api/types/ConversationHistoryTranscriptCommonModelInputSourceMedium.js +10 -0
  3281. package/dist/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +19 -0
  3282. package/dist/api/types/ConversationHistoryTranscriptCommonModelOutput.js +5 -0
  3283. package/dist/api/types/ConversationHistoryTranscriptCommonModelOutputRole.d.ts +8 -0
  3284. package/dist/api/types/ConversationHistoryTranscriptCommonModelOutputRole.js +10 -0
  3285. package/dist/api/types/ConversationHistoryTranscriptCommonModelOutputSourceMedium.d.ts +8 -0
  3286. package/dist/api/types/ConversationHistoryTranscriptCommonModelOutputSourceMedium.js +10 -0
  3287. package/dist/api/types/ConversationHistoryTranscriptToolCallClientDetails.d.ts +6 -0
  3288. package/dist/api/types/ConversationHistoryTranscriptToolCallClientDetails.js +5 -0
  3289. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModel.d.ts +12 -0
  3290. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModel.js +5 -0
  3291. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +13 -0
  3292. package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.js +5 -0
  3293. package/dist/api/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +11 -0
  3294. package/dist/api/types/ConversationHistoryTranscriptToolCallWebhookDetails.js +5 -0
  3295. package/dist/api/types/ConversationHistoryTranscriptToolResultCommonModel.d.ts +12 -0
  3296. package/dist/api/types/ConversationHistoryTranscriptToolResultCommonModel.js +5 -0
  3297. package/dist/api/types/ConversationHistoryTwilioPhoneCallModel.d.ts +12 -0
  3298. package/dist/api/types/ConversationHistoryTwilioPhoneCallModel.js +5 -0
  3299. package/dist/api/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +8 -0
  3300. package/dist/api/types/ConversationHistoryTwilioPhoneCallModelDirection.js +10 -0
  3301. package/dist/api/types/ConversationInitiationClientDataConfigInput.d.ts +12 -0
  3302. package/dist/api/types/ConversationInitiationClientDataConfigInput.js +5 -0
  3303. package/dist/api/types/ConversationInitiationClientDataConfigOutput.d.ts +12 -0
  3304. package/dist/api/types/ConversationInitiationClientDataConfigOutput.js +5 -0
  3305. package/dist/api/types/ConversationInitiationClientDataInternal.d.ts +9 -0
  3306. package/dist/api/types/ConversationInitiationClientDataInternal.js +5 -0
  3307. package/dist/api/types/ConversationInitiationClientDataInternalDynamicVariablesValue.d.ts +4 -0
  3308. package/dist/api/types/ConversationInitiationClientDataInternalDynamicVariablesValue.js +5 -0
  3309. package/dist/api/types/ConversationInitiationClientDataRequestInput.d.ts +9 -0
  3310. package/dist/api/types/ConversationInitiationClientDataRequestInput.js +5 -0
  3311. package/dist/api/types/ConversationInitiationClientDataRequestInputDynamicVariablesValue.d.ts +4 -0
  3312. package/dist/api/types/ConversationInitiationClientDataRequestInputDynamicVariablesValue.js +5 -0
  3313. package/dist/api/types/ConversationInitiationClientDataRequestOutput.d.ts +9 -0
  3314. package/dist/api/types/ConversationInitiationClientDataRequestOutput.js +5 -0
  3315. package/dist/api/types/ConversationInitiationClientDataRequestOutputDynamicVariablesValue.d.ts +4 -0
  3316. package/dist/api/types/ConversationInitiationClientDataRequestOutputDynamicVariablesValue.js +5 -0
  3317. package/dist/api/types/ConversationInitiationClientDataWebhook.d.ts +10 -0
  3318. package/dist/api/types/ConversationInitiationClientDataWebhook.js +5 -0
  3319. package/dist/api/types/ConversationInitiationClientDataWebhookRequestHeadersValue.d.ts +5 -0
  3320. package/dist/api/types/ConversationInitiationClientDataWebhookRequestHeadersValue.js +5 -0
  3321. package/dist/api/types/ConversationSignedUrlResponseModel.d.ts +6 -0
  3322. package/dist/api/types/ConversationSignedUrlResponseModel.js +5 -0
  3323. package/dist/api/types/ConversationSimulationSpecification.d.ts +13 -0
  3324. package/dist/api/types/ConversationSimulationSpecification.js +5 -0
  3325. package/dist/api/types/ConversationSummaryResponseModel.d.ts +14 -0
  3326. package/dist/api/types/ConversationSummaryResponseModel.js +5 -0
  3327. package/dist/api/types/ConversationSummaryResponseModelStatus.d.ts +11 -0
  3328. package/dist/api/types/ConversationSummaryResponseModelStatus.js +13 -0
  3329. package/dist/api/types/ConversationTokenDbModel.d.ts +14 -0
  3330. package/dist/api/types/ConversationTokenDbModel.js +5 -0
  3331. package/dist/api/types/ConversationTokenPurpose.d.ts +8 -0
  3332. package/dist/api/types/ConversationTokenPurpose.js +10 -0
  3333. package/dist/api/types/ConversationTurnMetrics.d.ts +7 -0
  3334. package/dist/api/types/ConversationTurnMetrics.js +5 -0
  3335. package/dist/api/types/ConversationalConfig.d.ts +18 -0
  3336. package/dist/api/types/ConversationalConfig.js +5 -0
  3337. package/dist/api/types/ConvertChapterResponseModel.d.ts +7 -0
  3338. package/dist/api/types/ConvertChapterResponseModel.js +5 -0
  3339. package/dist/api/types/ConvertProjectResponseModel.d.ts +7 -0
  3340. package/dist/api/types/ConvertProjectResponseModel.js +5 -0
  3341. package/dist/api/types/CreateAgentResponseModel.d.ts +7 -0
  3342. package/dist/api/types/CreateAgentResponseModel.js +5 -0
  3343. package/dist/api/types/CreateAudioNativeProjectRequest.d.ts +4 -0
  3344. package/dist/api/types/CreateAudioNativeProjectRequest.js +5 -0
  3345. package/dist/api/types/CreatePhoneNumberResponseModel.d.ts +7 -0
  3346. package/dist/api/types/CreatePhoneNumberResponseModel.js +5 -0
  3347. package/dist/api/types/CreatePreviouslyGeneratedVoiceRequest.d.ts +15 -0
  3348. package/dist/api/types/CreatePreviouslyGeneratedVoiceRequest.js +5 -0
  3349. package/dist/api/types/CreatePronunciationDictionaryResponseModel.d.ts +7 -0
  3350. package/dist/api/types/CreatePronunciationDictionaryResponseModel.js +5 -0
  3351. package/dist/api/types/CreateSipTrunkPhoneNumberRequest.d.ts +29 -0
  3352. package/dist/api/types/CreateSipTrunkPhoneNumberRequest.js +5 -0
  3353. package/dist/api/types/CreateTranscriptRequest.d.ts +4 -0
  3354. package/dist/api/types/CreateTranscriptRequest.js +5 -0
  3355. package/dist/api/types/CreateTwilioPhoneNumberRequest.d.ts +13 -0
  3356. package/dist/api/types/CreateTwilioPhoneNumberRequest.js +5 -0
  3357. package/dist/api/types/CustomLlm.d.ts +12 -0
  3358. package/dist/api/types/CustomLlm.js +5 -0
  3359. package/dist/api/types/DashboardCallSuccessChartModel.d.ts +6 -0
  3360. package/dist/api/types/DashboardCallSuccessChartModel.js +5 -0
  3361. package/dist/api/types/DashboardCriteriaChartModel.d.ts +7 -0
  3362. package/dist/api/types/DashboardCriteriaChartModel.js +5 -0
  3363. package/dist/api/types/DashboardDataCollectionChartModel.d.ts +7 -0
  3364. package/dist/api/types/DashboardDataCollectionChartModel.js +5 -0
  3365. package/dist/api/types/DataCollectionResultCommonModel.d.ts +10 -0
  3366. package/dist/api/types/DataCollectionResultCommonModel.js +5 -0
  3367. package/dist/api/types/DeleteChapterRequest.d.ts +4 -0
  3368. package/dist/api/types/DeleteChapterRequest.js +5 -0
  3369. package/dist/api/types/DeleteChapterResponseModel.d.ts +7 -0
  3370. package/dist/api/types/DeleteChapterResponseModel.js +5 -0
  3371. package/dist/api/types/DeleteDubbingResponseModel.d.ts +7 -0
  3372. package/dist/api/types/DeleteDubbingResponseModel.js +5 -0
  3373. package/dist/api/types/DeleteHistoryItemResponse.d.ts +7 -0
  3374. package/dist/api/types/DeleteHistoryItemResponse.js +5 -0
  3375. package/dist/api/types/DeleteProjectRequest.d.ts +4 -0
  3376. package/dist/api/types/DeleteProjectRequest.js +5 -0
  3377. package/dist/api/types/DeleteProjectResponseModel.d.ts +7 -0
  3378. package/dist/api/types/DeleteProjectResponseModel.js +5 -0
  3379. package/dist/api/types/DeleteSampleResponse.d.ts +7 -0
  3380. package/dist/api/types/DeleteSampleResponse.js +5 -0
  3381. package/dist/api/types/DeleteVoiceResponseModel.d.ts +7 -0
  3382. package/dist/api/types/DeleteVoiceResponseModel.js +5 -0
  3383. package/dist/api/types/DeleteVoiceSampleResponseModel.d.ts +7 -0
  3384. package/dist/api/types/DeleteVoiceSampleResponseModel.js +5 -0
  3385. package/dist/api/types/DeleteWorkspaceGroupMemberResponseModel.d.ts +7 -0
  3386. package/dist/api/types/DeleteWorkspaceGroupMemberResponseModel.js +5 -0
  3387. package/dist/api/types/DeleteWorkspaceInviteResponseModel.d.ts +7 -0
  3388. package/dist/api/types/DeleteWorkspaceInviteResponseModel.js +5 -0
  3389. package/dist/api/types/DeleteWorkspaceMemberResponseModel.d.ts +7 -0
  3390. package/dist/api/types/DeleteWorkspaceMemberResponseModel.js +5 -0
  3391. package/dist/api/types/DependentAvailableAgentIdentifier.d.ts +10 -0
  3392. package/dist/api/types/DependentAvailableAgentIdentifier.js +5 -0
  3393. package/dist/api/types/DependentAvailableAgentIdentifierAccessLevel.d.ts +9 -0
  3394. package/dist/api/types/DependentAvailableAgentIdentifierAccessLevel.js +11 -0
  3395. package/dist/api/types/DependentAvailableAgentToolIdentifier.d.ts +11 -0
  3396. package/dist/api/types/DependentAvailableAgentToolIdentifier.js +5 -0
  3397. package/dist/api/types/DependentAvailableAgentToolIdentifierAccessLevel.d.ts +9 -0
  3398. package/dist/api/types/DependentAvailableAgentToolIdentifierAccessLevel.js +11 -0
  3399. package/dist/api/types/DependentAvailableToolIdentifier.d.ts +10 -0
  3400. package/dist/api/types/DependentAvailableToolIdentifier.js +5 -0
  3401. package/dist/api/types/DependentAvailableToolIdentifierAccessLevel.d.ts +9 -0
  3402. package/dist/api/types/DependentAvailableToolIdentifierAccessLevel.js +11 -0
  3403. package/dist/api/types/DependentPhoneNumberIdentifier.d.ts +10 -0
  3404. package/dist/api/types/DependentPhoneNumberIdentifier.js +5 -0
  3405. package/dist/api/types/DependentUnknownAgentIdentifier.d.ts +9 -0
  3406. package/dist/api/types/DependentUnknownAgentIdentifier.js +5 -0
  3407. package/dist/api/types/DependentUnknownAgentToolIdentifier.d.ts +9 -0
  3408. package/dist/api/types/DependentUnknownAgentToolIdentifier.js +5 -0
  3409. package/dist/api/types/DependentUnknownToolIdentifier.d.ts +9 -0
  3410. package/dist/api/types/DependentUnknownToolIdentifier.js +5 -0
  3411. package/dist/api/types/DoDubbingResponse.d.ts +9 -0
  3412. package/dist/api/types/DoDubbingResponse.js +5 -0
  3413. package/dist/api/types/DocumentUsageModeEnum.d.ts +8 -0
  3414. package/dist/api/types/DocumentUsageModeEnum.js +10 -0
  3415. package/dist/api/types/DocxExportOptions.d.ts +10 -0
  3416. package/dist/api/types/DocxExportOptions.js +5 -0
  3417. package/dist/api/types/DubbedSegment.d.ts +11 -0
  3418. package/dist/api/types/DubbedSegment.js +5 -0
  3419. package/dist/api/types/DubbingMediaMetadata.d.ts +9 -0
  3420. package/dist/api/types/DubbingMediaMetadata.js +5 -0
  3421. package/dist/api/types/DubbingMediaReference.d.ts +12 -0
  3422. package/dist/api/types/DubbingMediaReference.js +5 -0
  3423. package/dist/api/types/DubbingMetadataResponse.d.ts +18 -0
  3424. package/dist/api/types/DubbingMetadataResponse.js +5 -0
  3425. package/dist/api/types/DubbingRenderResponseModel.d.ts +7 -0
  3426. package/dist/api/types/DubbingRenderResponseModel.js +5 -0
  3427. package/dist/api/types/DubbingResource.d.ts +16 -0
  3428. package/dist/api/types/DubbingResource.js +5 -0
  3429. package/dist/api/types/DynamicVariablesConfig.d.ts +8 -0
  3430. package/dist/api/types/DynamicVariablesConfig.js +5 -0
  3431. package/dist/api/types/DynamicVariablesConfigDynamicVariablePlaceholdersValue.d.ts +4 -0
  3432. package/dist/api/types/DynamicVariablesConfigDynamicVariablePlaceholdersValue.js +5 -0
  3433. package/dist/api/types/EditChapterResponseModel.d.ts +7 -0
  3434. package/dist/api/types/EditChapterResponseModel.js +5 -0
  3435. package/dist/api/types/EditProjectResponseModel.d.ts +7 -0
  3436. package/dist/api/types/EditProjectResponseModel.js +5 -0
  3437. package/dist/api/types/EditVoiceResponseModel.d.ts +7 -0
  3438. package/dist/api/types/EditVoiceResponseModel.js +5 -0
  3439. package/dist/api/types/EditVoiceSettingsRequest.d.ts +4 -0
  3440. package/dist/api/types/EditVoiceSettingsRequest.js +5 -0
  3441. package/dist/api/types/EditVoiceSettingsResponseModel.d.ts +7 -0
  3442. package/dist/api/types/EditVoiceSettingsResponseModel.js +5 -0
  3443. package/dist/api/types/EmbedVariant.d.ts +9 -0
  3444. package/dist/api/types/EmbedVariant.js +11 -0
  3445. package/dist/api/types/EmbeddingModelEnum.d.ts +8 -0
  3446. package/dist/api/types/EmbeddingModelEnum.js +10 -0
  3447. package/dist/api/types/EndCallToolConfig.d.ts +5 -0
  3448. package/dist/api/types/EndCallToolConfig.js +5 -0
  3449. package/dist/api/types/EvaluationSettings.d.ts +12 -0
  3450. package/dist/api/types/EvaluationSettings.js +5 -0
  3451. package/dist/api/types/EvaluationSuccessResult.d.ts +9 -0
  3452. package/dist/api/types/EvaluationSuccessResult.js +11 -0
  3453. package/dist/api/types/ExportOptions.d.ts +25 -0
  3454. package/dist/api/types/ExportOptions.js +5 -0
  3455. package/dist/api/types/ExtendedSubscriptionResponseModelBillingPeriod.d.ts +8 -0
  3456. package/dist/api/types/ExtendedSubscriptionResponseModelBillingPeriod.js +10 -0
  3457. package/dist/api/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.d.ts +8 -0
  3458. package/dist/api/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.js +10 -0
  3459. package/dist/api/types/ExtendedSubscriptionResponseModelCurrency.d.ts +8 -0
  3460. package/dist/api/types/ExtendedSubscriptionResponseModelCurrency.js +10 -0
  3461. package/dist/api/types/ExtendedSubscriptionResponseModelStatus.d.ts +17 -0
  3462. package/dist/api/types/ExtendedSubscriptionResponseModelStatus.js +16 -0
  3463. package/dist/api/types/FeedbackItem.d.ts +21 -0
  3464. package/dist/api/types/FeedbackItem.js +5 -0
  3465. package/dist/api/types/FinalOutput.d.ts +7 -0
  3466. package/dist/api/types/FinalOutput.js +5 -0
  3467. package/dist/api/types/FinalOutputMulti.d.ts +12 -0
  3468. package/dist/api/types/FinalOutputMulti.js +5 -0
  3469. package/dist/api/types/FineTuningResponse.d.ts +35 -0
  3470. package/dist/api/types/FineTuningResponse.js +5 -0
  3471. package/dist/api/types/FineTuningResponseModelStateValue.d.ts +12 -0
  3472. package/dist/api/types/FineTuningResponseModelStateValue.js +14 -0
  3473. package/dist/api/types/FlushContext.d.ts +14 -0
  3474. package/dist/api/types/FlushContext.js +5 -0
  3475. package/dist/api/types/ForcedAlignmentCharacterResponseModel.d.ts +14 -0
  3476. package/dist/api/types/ForcedAlignmentCharacterResponseModel.js +5 -0
  3477. package/dist/api/types/ForcedAlignmentResponseModel.d.ts +13 -0
  3478. package/dist/api/types/ForcedAlignmentResponseModel.js +5 -0
  3479. package/dist/api/types/ForcedAlignmentWordResponseModel.d.ts +14 -0
  3480. package/dist/api/types/ForcedAlignmentWordResponseModel.js +5 -0
  3481. package/dist/api/types/Gender.d.ts +4 -0
  3482. package/dist/api/types/Gender.js +5 -0
  3483. package/dist/api/types/GenerateVoiceRequest.d.ts +16 -0
  3484. package/dist/api/types/GenerateVoiceRequest.js +5 -0
  3485. package/dist/api/types/GenerationConfig.d.ts +33 -0
  3486. package/dist/api/types/GenerationConfig.js +5 -0
  3487. package/dist/api/types/GetAgentEmbedResponseModel.d.ts +8 -0
  3488. package/dist/api/types/GetAgentEmbedResponseModel.js +5 -0
  3489. package/dist/api/types/GetAgentLinkResponseModel.d.ts +10 -0
  3490. package/dist/api/types/GetAgentLinkResponseModel.js +5 -0
  3491. package/dist/api/types/GetAgentResponseModel.d.ts +22 -0
  3492. package/dist/api/types/GetAgentResponseModel.js +5 -0
  3493. package/dist/api/types/GetAgentResponseModelPhoneNumbersItem.d.ts +13 -0
  3494. package/dist/api/types/GetAgentResponseModelPhoneNumbersItem.js +5 -0
  3495. package/dist/api/types/GetAgentsPageResponseModel.d.ts +12 -0
  3496. package/dist/api/types/GetAgentsPageResponseModel.js +5 -0
  3497. package/dist/api/types/GetAudioNativeProjectSettingsResponseModel.d.ts +12 -0
  3498. package/dist/api/types/GetAudioNativeProjectSettingsResponseModel.js +5 -0
  3499. package/dist/api/types/GetChapterRequest.d.ts +4 -0
  3500. package/dist/api/types/GetChapterRequest.js +5 -0
  3501. package/dist/api/types/GetChapterSnapshotsRequest.d.ts +4 -0
  3502. package/dist/api/types/GetChapterSnapshotsRequest.js +5 -0
  3503. package/dist/api/types/GetChaptersRequest.d.ts +4 -0
  3504. package/dist/api/types/GetChaptersRequest.js +5 -0
  3505. package/dist/api/types/GetChaptersResponse.d.ts +7 -0
  3506. package/dist/api/types/GetChaptersResponse.js +5 -0
  3507. package/dist/api/types/GetConvAiDashboardSettingsResponseModel.d.ts +7 -0
  3508. package/dist/api/types/GetConvAiDashboardSettingsResponseModel.js +5 -0
  3509. package/dist/api/types/GetConvAiDashboardSettingsResponseModelChartsItem.d.ts +16 -0
  3510. package/dist/api/types/GetConvAiDashboardSettingsResponseModelChartsItem.js +5 -0
  3511. package/dist/api/types/GetConvAiSettingsResponseModel.d.ts +11 -0
  3512. package/dist/api/types/GetConvAiSettingsResponseModel.js +5 -0
  3513. package/dist/api/types/GetConversationResponseModel.d.ts +16 -0
  3514. package/dist/api/types/GetConversationResponseModel.js +5 -0
  3515. package/dist/api/types/GetConversationResponseModelStatus.d.ts +11 -0
  3516. package/dist/api/types/GetConversationResponseModelStatus.js +13 -0
  3517. package/dist/api/types/GetConversationsPageResponseModel.d.ts +9 -0
  3518. package/dist/api/types/GetConversationsPageResponseModel.js +5 -0
  3519. package/dist/api/types/GetKnowledgeBaseDependentAgentsResponseModel.d.ts +9 -0
  3520. package/dist/api/types/GetKnowledgeBaseDependentAgentsResponseModel.js +5 -0
  3521. package/dist/api/types/GetKnowledgeBaseDependentAgentsResponseModelAgentsItem.d.ts +13 -0
  3522. package/dist/api/types/GetKnowledgeBaseDependentAgentsResponseModelAgentsItem.js +5 -0
  3523. package/dist/api/types/GetKnowledgeBaseFileResponseModel.d.ts +12 -0
  3524. package/dist/api/types/GetKnowledgeBaseFileResponseModel.js +5 -0
  3525. package/dist/api/types/GetKnowledgeBaseListResponseModel.d.ts +9 -0
  3526. package/dist/api/types/GetKnowledgeBaseListResponseModel.js +5 -0
  3527. package/dist/api/types/GetKnowledgeBaseListResponseModelDocumentsItem.d.ts +16 -0
  3528. package/dist/api/types/GetKnowledgeBaseListResponseModelDocumentsItem.js +5 -0
  3529. package/dist/api/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +12 -0
  3530. package/dist/api/types/GetKnowledgeBaseSummaryFileResponseModel.js +5 -0
  3531. package/dist/api/types/GetKnowledgeBaseSummaryFileResponseModelDependentAgentsItem.d.ts +13 -0
  3532. package/dist/api/types/GetKnowledgeBaseSummaryFileResponseModelDependentAgentsItem.js +5 -0
  3533. package/dist/api/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +12 -0
  3534. package/dist/api/types/GetKnowledgeBaseSummaryTextResponseModel.js +5 -0
  3535. package/dist/api/types/GetKnowledgeBaseSummaryTextResponseModelDependentAgentsItem.d.ts +13 -0
  3536. package/dist/api/types/GetKnowledgeBaseSummaryTextResponseModelDependentAgentsItem.js +5 -0
  3537. package/dist/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +13 -0
  3538. package/dist/api/types/GetKnowledgeBaseSummaryUrlResponseModel.js +5 -0
  3539. package/dist/api/types/GetKnowledgeBaseSummaryUrlResponseModelDependentAgentsItem.d.ts +13 -0
  3540. package/dist/api/types/GetKnowledgeBaseSummaryUrlResponseModelDependentAgentsItem.js +5 -0
  3541. package/dist/api/types/GetKnowledgeBaseTextResponseModel.d.ts +12 -0
  3542. package/dist/api/types/GetKnowledgeBaseTextResponseModel.js +5 -0
  3543. package/dist/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +13 -0
  3544. package/dist/api/types/GetKnowledgeBaseUrlResponseModel.js +5 -0
  3545. package/dist/api/types/GetLibraryVoicesResponse.d.ts +11 -0
  3546. package/dist/api/types/GetLibraryVoicesResponse.js +5 -0
  3547. package/dist/api/types/GetPhoneNumberResponse.d.ts +4 -0
  3548. package/dist/api/types/GetPhoneNumberResponse.js +5 -0
  3549. package/dist/api/types/GetPhoneNumberSipTrunkResponseModel.d.ts +15 -0
  3550. package/dist/api/types/GetPhoneNumberSipTrunkResponseModel.js +5 -0
  3551. package/dist/api/types/GetPhoneNumberTwilioResponseModel.d.ts +14 -0
  3552. package/dist/api/types/GetPhoneNumberTwilioResponseModel.js +5 -0
  3553. package/dist/api/types/GetProjectRequest.d.ts +4 -0
  3554. package/dist/api/types/GetProjectRequest.js +5 -0
  3555. package/dist/api/types/GetProjectsRequest.d.ts +4 -0
  3556. package/dist/api/types/GetProjectsRequest.js +5 -0
  3557. package/dist/api/types/GetProjectsResponse.d.ts +8 -0
  3558. package/dist/api/types/GetProjectsResponse.js +5 -0
  3559. package/dist/api/types/GetPronunciationDictionariesMetadataResponseModel.d.ts +12 -0
  3560. package/dist/api/types/GetPronunciationDictionariesMetadataResponseModel.js +5 -0
  3561. package/dist/api/types/GetPronunciationDictionariesResponse.d.ts +4 -0
  3562. package/dist/api/types/GetPronunciationDictionariesResponse.js +5 -0
  3563. package/dist/api/types/GetPronunciationDictionaryMetadataResponse.d.ts +24 -0
  3564. package/dist/api/types/GetPronunciationDictionaryMetadataResponse.js +5 -0
  3565. package/dist/api/types/GetPronunciationDictionaryMetadataResponseModelPermissionOnResource.d.ts +9 -0
  3566. package/dist/api/types/GetPronunciationDictionaryMetadataResponseModelPermissionOnResource.js +11 -0
  3567. package/dist/api/types/GetPronunciationDictionaryResponse.d.ts +4 -0
  3568. package/dist/api/types/GetPronunciationDictionaryResponse.js +5 -0
  3569. package/dist/api/types/GetSpeechHistoryResponse.d.ts +12 -0
  3570. package/dist/api/types/GetSpeechHistoryResponse.js +5 -0
  3571. package/dist/api/types/GetVoicesResponse.d.ts +8 -0
  3572. package/dist/api/types/GetVoicesResponse.js +5 -0
  3573. package/dist/api/types/GetVoicesV2Response.d.ts +10 -0
  3574. package/dist/api/types/GetVoicesV2Response.js +5 -0
  3575. package/dist/api/types/GetWorkspaceSecretsResponseModel.d.ts +7 -0
  3576. package/dist/api/types/GetWorkspaceSecretsResponseModel.js +5 -0
  3577. package/dist/api/types/HistoryAlignmentResponseModel.d.ts +11 -0
  3578. package/dist/api/types/HistoryAlignmentResponseModel.js +5 -0
  3579. package/dist/api/types/HistoryAlignmentsResponseModel.d.ts +10 -0
  3580. package/dist/api/types/HistoryAlignmentsResponseModel.js +5 -0
  3581. package/dist/api/types/HistoryItemResponse.d.ts +7 -0
  3582. package/dist/api/types/HistoryItemResponse.js +5 -0
  3583. package/dist/api/types/HtmlExportOptions.d.ts +10 -0
  3584. package/dist/api/types/HtmlExportOptions.js +5 -0
  3585. package/dist/api/types/HttpValidationError.d.ts +7 -0
  3586. package/dist/api/types/HttpValidationError.js +5 -0
  3587. package/dist/api/types/ImageAvatar.d.ts +7 -0
  3588. package/dist/api/types/ImageAvatar.js +5 -0
  3589. package/dist/api/types/InitialiseContext.d.ts +21 -0
  3590. package/dist/api/types/InitialiseContext.js +5 -0
  3591. package/dist/api/types/InitializeConnection.d.ts +21 -0
  3592. package/dist/api/types/InitializeConnection.js +5 -0
  3593. package/dist/api/types/InitializeConnectionMulti.d.ts +21 -0
  3594. package/dist/api/types/InitializeConnectionMulti.js +5 -0
  3595. package/dist/api/types/InvoiceResponse.d.ts +11 -0
  3596. package/dist/api/types/InvoiceResponse.js +5 -0
  3597. package/dist/api/types/KeepContextAlive.d.ts +12 -0
  3598. package/dist/api/types/KeepContextAlive.js +5 -0
  3599. package/dist/api/types/KnowledgeBaseDocumentChunkResponseModel.d.ts +8 -0
  3600. package/dist/api/types/KnowledgeBaseDocumentChunkResponseModel.js +5 -0
  3601. package/dist/api/types/KnowledgeBaseDocumentMetadataResponseModel.d.ts +8 -0
  3602. package/dist/api/types/KnowledgeBaseDocumentMetadataResponseModel.js +5 -0
  3603. package/dist/api/types/KnowledgeBaseDocumentType.d.ts +9 -0
  3604. package/dist/api/types/KnowledgeBaseDocumentType.js +11 -0
  3605. package/dist/api/types/KnowledgeBaseLocator.d.ts +14 -0
  3606. package/dist/api/types/KnowledgeBaseLocator.js +5 -0
  3607. package/dist/api/types/LanguageAddedResponse.d.ts +6 -0
  3608. package/dist/api/types/LanguageAddedResponse.js +5 -0
  3609. package/dist/api/types/LanguageDetectionToolConfig.d.ts +5 -0
  3610. package/dist/api/types/LanguageDetectionToolConfig.js +5 -0
  3611. package/dist/api/types/LanguagePresetInput.d.ts +10 -0
  3612. package/dist/api/types/LanguagePresetInput.js +5 -0
  3613. package/dist/api/types/LanguagePresetOutput.d.ts +10 -0
  3614. package/dist/api/types/LanguagePresetOutput.js +5 -0
  3615. package/dist/api/types/LanguagePresetTranslation.d.ts +7 -0
  3616. package/dist/api/types/LanguagePresetTranslation.js +5 -0
  3617. package/dist/api/types/LanguageResponse.d.ts +9 -0
  3618. package/dist/api/types/LanguageResponse.js +5 -0
  3619. package/dist/api/types/LibraryVoiceResponse.d.ts +68 -0
  3620. package/dist/api/types/LibraryVoiceResponse.js +5 -0
  3621. package/dist/api/types/LibraryVoiceResponseModelCategory.d.ts +15 -0
  3622. package/dist/api/types/LibraryVoiceResponseModelCategory.js +14 -0
  3623. package/dist/api/types/LiteralJsonSchemaProperty.d.ts +13 -0
  3624. package/dist/api/types/LiteralJsonSchemaProperty.js +5 -0
  3625. package/dist/api/types/LiteralJsonSchemaPropertyConstantValue.d.ts +7 -0
  3626. package/dist/api/types/LiteralJsonSchemaPropertyConstantValue.js +5 -0
  3627. package/dist/api/types/LiteralJsonSchemaPropertyType.d.ts +10 -0
  3628. package/dist/api/types/LiteralJsonSchemaPropertyType.js +12 -0
  3629. package/dist/api/types/Llm.d.ts +26 -0
  3630. package/dist/api/types/Llm.js +28 -0
  3631. package/dist/api/types/LlmCategoryUsage.d.ts +8 -0
  3632. package/dist/api/types/LlmCategoryUsage.js +5 -0
  3633. package/dist/api/types/LlmInputOutputTokensUsage.d.ts +10 -0
  3634. package/dist/api/types/LlmInputOutputTokensUsage.js +5 -0
  3635. package/dist/api/types/LlmTokensCategoryUsage.d.ts +7 -0
  3636. package/dist/api/types/LlmTokensCategoryUsage.js +5 -0
  3637. package/dist/api/types/LlmUsageInput.d.ts +7 -0
  3638. package/dist/api/types/LlmUsageInput.js +5 -0
  3639. package/dist/api/types/LlmUsageOutput.d.ts +7 -0
  3640. package/dist/api/types/LlmUsageOutput.js +5 -0
  3641. package/dist/api/types/ManualVerificationFileResponse.d.ts +15 -0
  3642. package/dist/api/types/ManualVerificationFileResponse.js +5 -0
  3643. package/dist/api/types/ManualVerificationResponse.d.ts +12 -0
  3644. package/dist/api/types/ManualVerificationResponse.js +5 -0
  3645. package/dist/api/types/McpToolConfigInput.d.ts +20 -0
  3646. package/dist/api/types/McpToolConfigInput.js +5 -0
  3647. package/dist/api/types/McpToolConfigOutput.d.ts +20 -0
  3648. package/dist/api/types/McpToolConfigOutput.js +5 -0
  3649. package/dist/api/types/MetricRecord.d.ts +6 -0
  3650. package/dist/api/types/MetricRecord.js +5 -0
  3651. package/dist/api/types/MetricType.d.ts +12 -0
  3652. package/dist/api/types/MetricType.js +14 -0
  3653. package/dist/api/types/Model.d.ts +40 -0
  3654. package/dist/api/types/Model.js +5 -0
  3655. package/dist/api/types/ModelRatesResponseModel.d.ts +7 -0
  3656. package/dist/api/types/ModelRatesResponseModel.js +5 -0
  3657. package/dist/api/types/ModelResponseModelConcurrencyGroup.d.ts +11 -0
  3658. package/dist/api/types/ModelResponseModelConcurrencyGroup.js +10 -0
  3659. package/dist/api/types/ModerationStatusResponseModel.d.ts +24 -0
  3660. package/dist/api/types/ModerationStatusResponseModel.js +5 -0
  3661. package/dist/api/types/ModerationStatusResponseModelSafetyStatus.d.ts +9 -0
  3662. package/dist/api/types/ModerationStatusResponseModelSafetyStatus.js +11 -0
  3663. package/dist/api/types/ModerationStatusResponseModelWarningStatus.d.ts +8 -0
  3664. package/dist/api/types/ModerationStatusResponseModelWarningStatus.js +10 -0
  3665. package/dist/api/types/NormalizedAlignment.d.ts +28 -0
  3666. package/dist/api/types/NormalizedAlignment.js +5 -0
  3667. package/dist/api/types/ObjectJsonSchemaPropertyInput.d.ts +10 -0
  3668. package/dist/api/types/ObjectJsonSchemaPropertyInput.js +5 -0
  3669. package/dist/api/types/ObjectJsonSchemaPropertyInputPropertiesValue.d.ts +5 -0
  3670. package/dist/api/types/ObjectJsonSchemaPropertyInputPropertiesValue.js +5 -0
  3671. package/dist/api/types/ObjectJsonSchemaPropertyOutput.d.ts +10 -0
  3672. package/dist/api/types/ObjectJsonSchemaPropertyOutput.js +5 -0
  3673. package/dist/api/types/ObjectJsonSchemaPropertyOutputPropertiesValue.d.ts +5 -0
  3674. package/dist/api/types/ObjectJsonSchemaPropertyOutputPropertiesValue.js +5 -0
  3675. package/dist/api/types/OrbAvatar.d.ts +9 -0
  3676. package/dist/api/types/OrbAvatar.js +5 -0
  3677. package/dist/api/types/OutboundCallRecipient.d.ts +9 -0
  3678. package/dist/api/types/OutboundCallRecipient.js +5 -0
  3679. package/dist/api/types/OutboundCallRecipientResponseModel.d.ts +13 -0
  3680. package/dist/api/types/OutboundCallRecipientResponseModel.js +5 -0
  3681. package/dist/api/types/OutputFormat.d.ts +50 -0
  3682. package/dist/api/types/OutputFormat.js +19 -0
  3683. package/dist/api/types/PdfExportOptions.d.ts +10 -0
  3684. package/dist/api/types/PdfExportOptions.js +5 -0
  3685. package/dist/api/types/PhoneNumberAgentInfo.d.ts +9 -0
  3686. package/dist/api/types/PhoneNumberAgentInfo.js +5 -0
  3687. package/dist/api/types/PhoneNumberTransfer.d.ts +7 -0
  3688. package/dist/api/types/PhoneNumberTransfer.js +5 -0
  3689. package/dist/api/types/PodcastBulletinMode.d.ts +8 -0
  3690. package/dist/api/types/PodcastBulletinMode.js +5 -0
  3691. package/dist/api/types/PodcastBulletinModeData.d.ts +7 -0
  3692. package/dist/api/types/PodcastBulletinModeData.js +5 -0
  3693. package/dist/api/types/PodcastConversationMode.d.ts +8 -0
  3694. package/dist/api/types/PodcastConversationMode.js +5 -0
  3695. package/dist/api/types/PodcastConversationModeData.d.ts +9 -0
  3696. package/dist/api/types/PodcastConversationModeData.js +5 -0
  3697. package/dist/api/types/PodcastProjectResponseModel.d.ts +8 -0
  3698. package/dist/api/types/PodcastProjectResponseModel.js +5 -0
  3699. package/dist/api/types/PodcastTextSource.d.ts +7 -0
  3700. package/dist/api/types/PodcastTextSource.js +5 -0
  3701. package/dist/api/types/PodcastUrlSource.d.ts +7 -0
  3702. package/dist/api/types/PodcastUrlSource.js +5 -0
  3703. package/dist/api/types/PostAgentAvatarResponseModel.d.ts +7 -0
  3704. package/dist/api/types/PostAgentAvatarResponseModel.js +5 -0
  3705. package/dist/api/types/PostWorkspaceSecretResponseModel.d.ts +8 -0
  3706. package/dist/api/types/PostWorkspaceSecretResponseModel.js +5 -0
  3707. package/dist/api/types/PrivacyConfig.d.ts +17 -0
  3708. package/dist/api/types/PrivacyConfig.js +5 -0
  3709. package/dist/api/types/ProjectCreationMetaResponseModel.d.ts +12 -0
  3710. package/dist/api/types/ProjectCreationMetaResponseModel.js +5 -0
  3711. package/dist/api/types/ProjectCreationMetaResponseModelStatus.d.ts +13 -0
  3712. package/dist/api/types/ProjectCreationMetaResponseModelStatus.js +12 -0
  3713. package/dist/api/types/ProjectCreationMetaResponseModelType.d.ts +12 -0
  3714. package/dist/api/types/ProjectCreationMetaResponseModelType.js +11 -0
  3715. package/dist/api/types/ProjectExtendedResponse.d.ts +74 -0
  3716. package/dist/api/types/ProjectExtendedResponse.js +5 -0
  3717. package/dist/api/types/ProjectExtendedResponseModelAccessLevel.d.ts +12 -0
  3718. package/dist/api/types/ProjectExtendedResponseModelAccessLevel.js +11 -0
  3719. package/dist/api/types/ProjectExtendedResponseModelApplyTextNormalization.d.ts +13 -0
  3720. package/dist/api/types/ProjectExtendedResponseModelApplyTextNormalization.js +12 -0
  3721. package/dist/api/types/ProjectExtendedResponseModelFiction.d.ts +8 -0
  3722. package/dist/api/types/ProjectExtendedResponseModelFiction.js +10 -0
  3723. package/dist/api/types/ProjectExtendedResponseModelQualityPreset.d.ts +14 -0
  3724. package/dist/api/types/ProjectExtendedResponseModelQualityPreset.js +13 -0
  3725. package/dist/api/types/ProjectExtendedResponseModelSourceType.d.ts +10 -0
  3726. package/dist/api/types/ProjectExtendedResponseModelSourceType.js +12 -0
  3727. package/dist/api/types/ProjectExtendedResponseModelTargetAudience.d.ts +10 -0
  3728. package/dist/api/types/ProjectExtendedResponseModelTargetAudience.js +12 -0
  3729. package/dist/api/types/ProjectResponse.d.ts +62 -0
  3730. package/dist/api/types/ProjectResponse.js +5 -0
  3731. package/dist/api/types/ProjectResponseModelAccessLevel.d.ts +12 -0
  3732. package/dist/api/types/ProjectResponseModelAccessLevel.js +11 -0
  3733. package/dist/api/types/ProjectResponseModelFiction.d.ts +8 -0
  3734. package/dist/api/types/ProjectResponseModelFiction.js +10 -0
  3735. package/dist/api/types/ProjectResponseModelSourceType.d.ts +10 -0
  3736. package/dist/api/types/ProjectResponseModelSourceType.js +12 -0
  3737. package/dist/api/types/ProjectResponseModelTargetAudience.d.ts +10 -0
  3738. package/dist/api/types/ProjectResponseModelTargetAudience.js +12 -0
  3739. package/dist/api/types/ProjectSnapshotExtendedResponseModel.d.ts +19 -0
  3740. package/dist/api/types/ProjectSnapshotExtendedResponseModel.js +5 -0
  3741. package/dist/api/types/ProjectSnapshotResponse.d.ts +17 -0
  3742. package/dist/api/types/ProjectSnapshotResponse.js +5 -0
  3743. package/dist/api/types/ProjectSnapshotsResponse.d.ts +8 -0
  3744. package/dist/api/types/ProjectSnapshotsResponse.js +5 -0
  3745. package/dist/api/types/ProjectState.d.ts +13 -0
  3746. package/dist/api/types/ProjectState.js +12 -0
  3747. package/dist/api/types/PromptAgent.d.ts +28 -0
  3748. package/dist/api/types/PromptAgent.js +5 -0
  3749. package/dist/api/types/PromptAgentDbModel.d.ts +29 -0
  3750. package/dist/api/types/PromptAgentDbModel.js +5 -0
  3751. package/dist/api/types/PromptAgentDbModelToolsItem.d.ts +22 -0
  3752. package/dist/api/types/PromptAgentDbModelToolsItem.js +5 -0
  3753. package/dist/api/types/PromptAgentInputToolsItem.d.ts +22 -0
  3754. package/dist/api/types/PromptAgentInputToolsItem.js +5 -0
  3755. package/dist/api/types/PromptAgentOutputToolsItem.d.ts +22 -0
  3756. package/dist/api/types/PromptAgentOutputToolsItem.js +5 -0
  3757. package/dist/api/types/PromptAgentOverride.d.ts +7 -0
  3758. package/dist/api/types/PromptAgentOverride.js +5 -0
  3759. package/dist/api/types/PromptAgentOverrideConfig.d.ts +7 -0
  3760. package/dist/api/types/PromptAgentOverrideConfig.js +5 -0
  3761. package/dist/api/types/PromptEvaluationCriteria.d.ts +17 -0
  3762. package/dist/api/types/PromptEvaluationCriteria.js +5 -0
  3763. package/dist/api/types/PronunciationDictionaryAliasRuleRequestModel.d.ts +9 -0
  3764. package/dist/api/types/PronunciationDictionaryAliasRuleRequestModel.js +5 -0
  3765. package/dist/api/types/PronunciationDictionaryLocator.d.ts +12 -0
  3766. package/dist/api/types/PronunciationDictionaryLocator.js +5 -0
  3767. package/dist/api/types/PronunciationDictionaryLocatorResponseModel.d.ts +7 -0
  3768. package/dist/api/types/PronunciationDictionaryLocatorResponseModel.js +5 -0
  3769. package/dist/api/types/PronunciationDictionaryPhonemeRuleRequestModel.d.ts +11 -0
  3770. package/dist/api/types/PronunciationDictionaryPhonemeRuleRequestModel.js +5 -0
  3771. package/dist/api/types/PronunciationDictionaryRulesResponseModel.d.ts +11 -0
  3772. package/dist/api/types/PronunciationDictionaryRulesResponseModel.js +5 -0
  3773. package/dist/api/types/PronunciationDictionaryVersionLocator.d.ts +9 -0
  3774. package/dist/api/types/PronunciationDictionaryVersionLocator.js +5 -0
  3775. package/dist/api/types/PronunciationDictionaryVersionResponseModel.d.ts +15 -0
  3776. package/dist/api/types/PronunciationDictionaryVersionResponseModel.js +5 -0
  3777. package/dist/api/types/PronunciationDictionaryVersionResponseModelPermissionOnResource.d.ts +9 -0
  3778. package/dist/api/types/PronunciationDictionaryVersionResponseModelPermissionOnResource.js +11 -0
  3779. package/dist/api/types/PydanticPronunciationDictionaryVersionLocator.d.ts +14 -0
  3780. package/dist/api/types/PydanticPronunciationDictionaryVersionLocator.js +5 -0
  3781. package/dist/api/types/QueryParamsJsonSchema.d.ts +8 -0
  3782. package/dist/api/types/QueryParamsJsonSchema.js +5 -0
  3783. package/dist/api/types/RagChunkMetadata.d.ts +8 -0
  3784. package/dist/api/types/RagChunkMetadata.js +5 -0
  3785. package/dist/api/types/RagConfig.d.ts +12 -0
  3786. package/dist/api/types/RagConfig.js +5 -0
  3787. package/dist/api/types/RagIndexResponseModel.d.ts +8 -0
  3788. package/dist/api/types/RagIndexResponseModel.js +5 -0
  3789. package/dist/api/types/RagIndexStatus.d.ts +10 -0
  3790. package/dist/api/types/RagIndexStatus.js +12 -0
  3791. package/dist/api/types/RagRetrievalInfo.d.ts +10 -0
  3792. package/dist/api/types/RagRetrievalInfo.js +5 -0
  3793. package/dist/api/types/ReaderResourceResponseModel.d.ts +10 -0
  3794. package/dist/api/types/ReaderResourceResponseModel.js +5 -0
  3795. package/dist/api/types/ReaderResourceResponseModelResourceType.d.ts +11 -0
  3796. package/dist/api/types/ReaderResourceResponseModelResourceType.js +10 -0
  3797. package/dist/api/types/RealtimeVoiceSettings.d.ts +15 -0
  3798. package/dist/api/types/RealtimeVoiceSettings.js +5 -0
  3799. package/dist/api/types/RecordingResponse.d.ts +15 -0
  3800. package/dist/api/types/RecordingResponse.js +5 -0
  3801. package/dist/api/types/RemoveMemberFromGroupRequest.d.ts +4 -0
  3802. package/dist/api/types/RemoveMemberFromGroupRequest.js +5 -0
  3803. package/dist/api/types/Render.d.ts +12 -0
  3804. package/dist/api/types/Render.js +5 -0
  3805. package/dist/api/types/RenderStatus.d.ts +9 -0
  3806. package/dist/api/types/RenderStatus.js +11 -0
  3807. package/dist/api/types/RenderType.d.ts +13 -0
  3808. package/dist/api/types/RenderType.js +15 -0
  3809. package/dist/api/types/RequestPvcManualVerificationResponseModel.d.ts +7 -0
  3810. package/dist/api/types/RequestPvcManualVerificationResponseModel.js +5 -0
  3811. package/dist/api/types/ResourceAccessInfo.d.ts +14 -0
  3812. package/dist/api/types/ResourceAccessInfo.js +5 -0
  3813. package/dist/api/types/ResourceAccessInfoRole.d.ts +12 -0
  3814. package/dist/api/types/ResourceAccessInfoRole.js +11 -0
  3815. package/dist/api/types/ResourceMetadataResponseModel.d.ts +16 -0
  3816. package/dist/api/types/ResourceMetadataResponseModel.js +5 -0
  3817. package/dist/api/types/ReviewStatus.d.ts +14 -0
  3818. package/dist/api/types/ReviewStatus.js +13 -0
  3819. package/dist/api/types/SafetyCommonModel.d.ts +11 -0
  3820. package/dist/api/types/SafetyCommonModel.js +5 -0
  3821. package/dist/api/types/SafetyEvaluation.d.ts +14 -0
  3822. package/dist/api/types/SafetyEvaluation.js +5 -0
  3823. package/dist/api/types/SafetyResponseModel.d.ts +8 -0
  3824. package/dist/api/types/SafetyResponseModel.js +5 -0
  3825. package/dist/api/types/SafetyRule.d.ts +15 -0
  3826. package/dist/api/types/SafetyRule.js +17 -0
  3827. package/dist/api/types/SecretDependencyType.d.ts +4 -0
  3828. package/dist/api/types/SecretDependencyType.js +5 -0
  3829. package/dist/api/types/SegmentCreateResponse.d.ts +7 -0
  3830. package/dist/api/types/SegmentCreateResponse.js +5 -0
  3831. package/dist/api/types/SegmentDeleteResponse.d.ts +6 -0
  3832. package/dist/api/types/SegmentDeleteResponse.js +5 -0
  3833. package/dist/api/types/SegmentDubResponse.d.ts +6 -0
  3834. package/dist/api/types/SegmentDubResponse.js +5 -0
  3835. package/dist/api/types/SegmentTranscriptionResponse.d.ts +6 -0
  3836. package/dist/api/types/SegmentTranscriptionResponse.js +5 -0
  3837. package/dist/api/types/SegmentTranslationResponse.d.ts +6 -0
  3838. package/dist/api/types/SegmentTranslationResponse.js +5 -0
  3839. package/dist/api/types/SegmentUpdateResponse.d.ts +6 -0
  3840. package/dist/api/types/SegmentUpdateResponse.js +5 -0
  3841. package/dist/api/types/SegmentedJsonExportOptions.d.ts +10 -0
  3842. package/dist/api/types/SegmentedJsonExportOptions.js +5 -0
  3843. package/dist/api/types/SendText.d.ts +32 -0
  3844. package/dist/api/types/SendText.js +5 -0
  3845. package/dist/api/types/SendTextMulti.d.ts +14 -0
  3846. package/dist/api/types/SendTextMulti.js +5 -0
  3847. package/dist/api/types/ShareOptionResponseModel.d.ts +12 -0
  3848. package/dist/api/types/ShareOptionResponseModel.js +5 -0
  3849. package/dist/api/types/ShareOptionResponseModelType.d.ts +12 -0
  3850. package/dist/api/types/ShareOptionResponseModelType.js +11 -0
  3851. package/dist/api/types/SimilarVoice.d.ts +11 -0
  3852. package/dist/api/types/SimilarVoice.js +5 -0
  3853. package/dist/api/types/SimilarVoiceCategory.d.ts +11 -0
  3854. package/dist/api/types/SimilarVoiceCategory.js +13 -0
  3855. package/dist/api/types/SimilarVoicesForSpeakerResponse.d.ts +7 -0
  3856. package/dist/api/types/SimilarVoicesForSpeakerResponse.js +5 -0
  3857. package/dist/api/types/SipMediaEncryptionEnum.d.ts +9 -0
  3858. package/dist/api/types/SipMediaEncryptionEnum.js +11 -0
  3859. package/dist/api/types/SipTrunkConfigResponseModel.d.ts +23 -0
  3860. package/dist/api/types/SipTrunkConfigResponseModel.js +5 -0
  3861. package/dist/api/types/SipTrunkCredentials.d.ts +9 -0
  3862. package/dist/api/types/SipTrunkCredentials.js +5 -0
  3863. package/dist/api/types/SipTrunkOutboundCallResponse.d.ts +9 -0
  3864. package/dist/api/types/SipTrunkOutboundCallResponse.js +5 -0
  3865. package/dist/api/types/SipTrunkTransportEnum.d.ts +10 -0
  3866. package/dist/api/types/SipTrunkTransportEnum.js +12 -0
  3867. package/dist/api/types/SpeakerAudioResponseModel.d.ts +11 -0
  3868. package/dist/api/types/SpeakerAudioResponseModel.js +5 -0
  3869. package/dist/api/types/SpeakerResponseModel.d.ts +12 -0
  3870. package/dist/api/types/SpeakerResponseModel.js +5 -0
  3871. package/dist/api/types/SpeakerSegment.d.ts +11 -0
  3872. package/dist/api/types/SpeakerSegment.js +5 -0
  3873. package/dist/api/types/SpeakerSeparationResponseModel.d.ts +16 -0
  3874. package/dist/api/types/SpeakerSeparationResponseModel.js +5 -0
  3875. package/dist/api/types/SpeakerSeparationResponseModelStatus.d.ts +13 -0
  3876. package/dist/api/types/SpeakerSeparationResponseModelStatus.js +12 -0
  3877. package/dist/api/types/SpeakerTrack.d.ts +11 -0
  3878. package/dist/api/types/SpeakerTrack.js +5 -0
  3879. package/dist/api/types/SpeakerUpdatedResponse.d.ts +6 -0
  3880. package/dist/api/types/SpeakerUpdatedResponse.js +5 -0
  3881. package/dist/api/types/SpeechHistoryItemResponse.d.ts +39 -0
  3882. package/dist/api/types/SpeechHistoryItemResponse.js +5 -0
  3883. package/dist/api/types/SpeechHistoryItemResponseModelSource.d.ts +14 -0
  3884. package/dist/api/types/SpeechHistoryItemResponseModelSource.js +16 -0
  3885. package/dist/api/types/SpeechHistoryItemResponseModelVoiceCategory.d.ts +10 -0
  3886. package/dist/api/types/SpeechHistoryItemResponseModelVoiceCategory.js +12 -0
  3887. package/dist/api/types/SpeechToTextCharacterResponseModel.d.ts +11 -0
  3888. package/dist/api/types/SpeechToTextCharacterResponseModel.js +5 -0
  3889. package/dist/api/types/SpeechToTextChunkResponseModel.d.ts +19 -0
  3890. package/dist/api/types/SpeechToTextChunkResponseModel.js +5 -0
  3891. package/dist/api/types/SpeechToTextWordResponseModel.d.ts +23 -0
  3892. package/dist/api/types/SpeechToTextWordResponseModel.js +5 -0
  3893. package/dist/api/types/SpeechToTextWordResponseModelType.d.ts +12 -0
  3894. package/dist/api/types/SpeechToTextWordResponseModelType.js +11 -0
  3895. package/dist/api/types/SrtExportOptions.d.ts +11 -0
  3896. package/dist/api/types/SrtExportOptions.js +5 -0
  3897. package/dist/api/types/StartPvcVoiceTrainingResponseModel.d.ts +7 -0
  3898. package/dist/api/types/StartPvcVoiceTrainingResponseModel.js +5 -0
  3899. package/dist/api/types/StartSpeakerSeparationResponseModel.d.ts +7 -0
  3900. package/dist/api/types/StartSpeakerSeparationResponseModel.js +5 -0
  3901. package/dist/api/types/StreamingAudioChunkWithTimestampsResponse.d.ts +12 -0
  3902. package/dist/api/types/StreamingAudioChunkWithTimestampsResponse.js +5 -0
  3903. package/dist/api/types/Subscription.d.ts +50 -0
  3904. package/dist/api/types/Subscription.js +5 -0
  3905. package/dist/api/types/SubscriptionExtrasResponseModel.d.ts +28 -0
  3906. package/dist/api/types/SubscriptionExtrasResponseModel.js +5 -0
  3907. package/dist/api/types/SubscriptionResponse.d.ts +46 -0
  3908. package/dist/api/types/SubscriptionResponse.js +5 -0
  3909. package/dist/api/types/SubscriptionResponseModelBillingPeriod.d.ts +8 -0
  3910. package/dist/api/types/SubscriptionResponseModelBillingPeriod.js +10 -0
  3911. package/dist/api/types/SubscriptionResponseModelCharacterRefreshPeriod.d.ts +8 -0
  3912. package/dist/api/types/SubscriptionResponseModelCharacterRefreshPeriod.js +10 -0
  3913. package/dist/api/types/SubscriptionResponseModelCurrency.d.ts +8 -0
  3914. package/dist/api/types/SubscriptionResponseModelCurrency.js +10 -0
  3915. package/dist/api/types/SubscriptionStatus.d.ts +17 -0
  3916. package/dist/api/types/SubscriptionStatus.js +16 -0
  3917. package/dist/api/types/SubscriptionUsageResponseModel.d.ts +21 -0
  3918. package/dist/api/types/SubscriptionUsageResponseModel.js +5 -0
  3919. package/dist/api/types/SystemToolConfigInput.d.ts +15 -0
  3920. package/dist/api/types/SystemToolConfigInput.js +5 -0
  3921. package/dist/api/types/SystemToolConfigInputParams.d.ts +19 -0
  3922. package/dist/api/types/SystemToolConfigInputParams.js +5 -0
  3923. package/dist/api/types/SystemToolConfigOutput.d.ts +15 -0
  3924. package/dist/api/types/SystemToolConfigOutput.js +5 -0
  3925. package/dist/api/types/SystemToolConfigOutputParams.d.ts +19 -0
  3926. package/dist/api/types/SystemToolConfigOutputParams.js +5 -0
  3927. package/dist/api/types/TelephonyProvider.d.ts +8 -0
  3928. package/dist/api/types/TelephonyProvider.js +10 -0
  3929. package/dist/api/types/TextToSpeechApplyTextNormalizationEnum.d.ts +12 -0
  3930. package/dist/api/types/TextToSpeechApplyTextNormalizationEnum.js +11 -0
  3931. package/dist/api/types/TextToSpeechOutputFormatEnum.d.ts +27 -0
  3932. package/dist/api/types/TextToSpeechOutputFormatEnum.js +26 -0
  3933. package/dist/api/types/TextToSpeechStreamRequest.d.ts +4 -0
  3934. package/dist/api/types/TextToSpeechStreamRequest.js +5 -0
  3935. package/dist/api/types/ToolMockConfig.d.ts +7 -0
  3936. package/dist/api/types/ToolMockConfig.js +5 -0
  3937. package/dist/api/types/TransferToAgentToolConfig.d.ts +7 -0
  3938. package/dist/api/types/TransferToAgentToolConfig.js +5 -0
  3939. package/dist/api/types/TransferToNumberToolConfig.d.ts +7 -0
  3940. package/dist/api/types/TransferToNumberToolConfig.js +5 -0
  3941. package/dist/api/types/TtsConversationalConfig.d.ts +22 -0
  3942. package/dist/api/types/TtsConversationalConfig.js +5 -0
  3943. package/dist/api/types/TtsConversationalConfigOverride.d.ts +6 -0
  3944. package/dist/api/types/TtsConversationalConfigOverride.js +5 -0
  3945. package/dist/api/types/TtsConversationalConfigOverrideConfig.d.ts +7 -0
  3946. package/dist/api/types/TtsConversationalConfigOverrideConfig.js +5 -0
  3947. package/dist/api/types/TtsConversationalModel.d.ts +10 -0
  3948. package/dist/api/types/TtsConversationalModel.js +12 -0
  3949. package/dist/api/types/TtsOptimizeStreamingLatency.d.ts +4 -0
  3950. package/dist/api/types/TtsOptimizeStreamingLatency.js +5 -0
  3951. package/dist/api/types/TtsOutputFormat.d.ts +13 -0
  3952. package/dist/api/types/TtsOutputFormat.js +15 -0
  3953. package/dist/api/types/TurnConfig.d.ts +12 -0
  3954. package/dist/api/types/TurnConfig.js +5 -0
  3955. package/dist/api/types/TurnMode.d.ts +8 -0
  3956. package/dist/api/types/TurnMode.js +10 -0
  3957. package/dist/api/types/TwilioOutboundCallResponse.d.ts +9 -0
  3958. package/dist/api/types/TwilioOutboundCallResponse.js +5 -0
  3959. package/dist/api/types/TxtExportOptions.d.ts +11 -0
  3960. package/dist/api/types/TxtExportOptions.js +5 -0
  3961. package/dist/api/types/UpdateAudioNativeProjectRequest.d.ts +4 -0
  3962. package/dist/api/types/UpdateAudioNativeProjectRequest.js +5 -0
  3963. package/dist/api/types/UpdateChapterRequest.d.ts +4 -0
  3964. package/dist/api/types/UpdateChapterRequest.js +5 -0
  3965. package/dist/api/types/UpdateProjectRequest.d.ts +4 -0
  3966. package/dist/api/types/UpdateProjectRequest.js +5 -0
  3967. package/dist/api/types/UpdatePronunciationDictionariesRequest.d.ts +10 -0
  3968. package/dist/api/types/UpdatePronunciationDictionariesRequest.js +5 -0
  3969. package/dist/api/types/UpdateWorkspaceMemberResponseModel.d.ts +7 -0
  3970. package/dist/api/types/UpdateWorkspaceMemberResponseModel.js +5 -0
  3971. package/dist/api/types/UrlAvatar.d.ts +7 -0
  3972. package/dist/api/types/UrlAvatar.js +5 -0
  3973. package/dist/api/types/UsageAggregationInterval.d.ts +14 -0
  3974. package/dist/api/types/UsageAggregationInterval.js +13 -0
  3975. package/dist/api/types/UsageCharactersResponseModel.d.ts +9 -0
  3976. package/dist/api/types/UsageCharactersResponseModel.js +5 -0
  3977. package/dist/api/types/User.d.ts +32 -0
  3978. package/dist/api/types/User.js +5 -0
  3979. package/dist/api/types/UserFeedback.d.ts +8 -0
  3980. package/dist/api/types/UserFeedback.js +5 -0
  3981. package/dist/api/types/UserFeedbackScore.d.ts +8 -0
  3982. package/dist/api/types/UserFeedbackScore.js +10 -0
  3983. package/dist/api/types/UtteranceResponseModel.d.ts +9 -0
  3984. package/dist/api/types/UtteranceResponseModel.js +5 -0
  3985. package/dist/api/types/ValidationError.d.ts +9 -0
  3986. package/dist/api/types/ValidationError.js +5 -0
  3987. package/dist/api/types/ValidationErrorLocItem.d.ts +4 -0
  3988. package/dist/api/types/ValidationErrorLocItem.js +5 -0
  3989. package/dist/api/types/VerificationAttemptResponse.d.ts +18 -0
  3990. package/dist/api/types/VerificationAttemptResponse.js +5 -0
  3991. package/dist/api/types/VerifiedVoiceLanguageResponseModel.d.ts +15 -0
  3992. package/dist/api/types/VerifiedVoiceLanguageResponseModel.js +5 -0
  3993. package/dist/api/types/VerifyPvcVoiceCaptchaResponseModel.d.ts +7 -0
  3994. package/dist/api/types/VerifyPvcVoiceCaptchaResponseModel.js +5 -0
  3995. package/dist/api/types/Voice.d.ts +46 -0
  3996. package/dist/api/types/Voice.js +5 -0
  3997. package/dist/api/types/VoiceDesignPreviewResponse.d.ts +8 -0
  3998. package/dist/api/types/VoiceDesignPreviewResponse.js +5 -0
  3999. package/dist/api/types/VoiceGenerationParameterOptionResponse.d.ts +7 -0
  4000. package/dist/api/types/VoiceGenerationParameterOptionResponse.js +5 -0
  4001. package/dist/api/types/VoiceGenerationParameterResponse.d.ts +13 -0
  4002. package/dist/api/types/VoiceGenerationParameterResponse.js +5 -0
  4003. package/dist/api/types/VoicePreviewResponseModel.d.ts +9 -0
  4004. package/dist/api/types/VoicePreviewResponseModel.js +5 -0
  4005. package/dist/api/types/VoiceResponseModelCategory.d.ts +15 -0
  4006. package/dist/api/types/VoiceResponseModelCategory.js +14 -0
  4007. package/dist/api/types/VoiceResponseModelSafetyControl.d.ts +12 -0
  4008. package/dist/api/types/VoiceResponseModelSafetyControl.js +14 -0
  4009. package/dist/api/types/VoiceSample.d.ts +23 -0
  4010. package/dist/api/types/VoiceSample.js +5 -0
  4011. package/dist/api/types/VoiceSamplePreviewResponseModel.d.ts +15 -0
  4012. package/dist/api/types/VoiceSamplePreviewResponseModel.js +5 -0
  4013. package/dist/api/types/VoiceSampleVisualWaveformResponseModel.d.ts +9 -0
  4014. package/dist/api/types/VoiceSampleVisualWaveformResponseModel.js +5 -0
  4015. package/dist/api/types/VoiceSettings.d.ts +15 -0
  4016. package/dist/api/types/VoiceSettings.js +5 -0
  4017. package/dist/api/types/VoiceSharingModerationCheckResponseModel.d.ts +23 -0
  4018. package/dist/api/types/VoiceSharingModerationCheckResponseModel.js +5 -0
  4019. package/dist/api/types/VoiceSharingResponse.d.ts +72 -0
  4020. package/dist/api/types/VoiceSharingResponse.js +5 -0
  4021. package/dist/api/types/VoiceSharingResponseModelCategory.d.ts +15 -0
  4022. package/dist/api/types/VoiceSharingResponseModelCategory.js +14 -0
  4023. package/dist/api/types/VoiceSharingState.d.ts +13 -0
  4024. package/dist/api/types/VoiceSharingState.js +12 -0
  4025. package/dist/api/types/VoiceVerificationResponse.d.ts +18 -0
  4026. package/dist/api/types/VoiceVerificationResponse.js +5 -0
  4027. package/dist/api/types/WebhookToolApiSchemaConfigInput.d.ts +21 -0
  4028. package/dist/api/types/WebhookToolApiSchemaConfigInput.js +5 -0
  4029. package/dist/api/types/WebhookToolApiSchemaConfigInputMethod.d.ts +14 -0
  4030. package/dist/api/types/WebhookToolApiSchemaConfigInputMethod.js +13 -0
  4031. package/dist/api/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +5 -0
  4032. package/dist/api/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.js +5 -0
  4033. package/dist/api/types/WebhookToolApiSchemaConfigOutput.d.ts +21 -0
  4034. package/dist/api/types/WebhookToolApiSchemaConfigOutput.js +5 -0
  4035. package/dist/api/types/WebhookToolApiSchemaConfigOutputMethod.d.ts +14 -0
  4036. package/dist/api/types/WebhookToolApiSchemaConfigOutputMethod.js +13 -0
  4037. package/dist/api/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +5 -0
  4038. package/dist/api/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.js +5 -0
  4039. package/dist/api/types/WebhookToolConfigInput.d.ts +18 -0
  4040. package/dist/api/types/WebhookToolConfigInput.js +5 -0
  4041. package/dist/api/types/WebhookToolConfigOutput.d.ts +18 -0
  4042. package/dist/api/types/WebhookToolConfigOutput.js +5 -0
  4043. package/dist/api/types/WebsocketTtsClientMessageMulti.d.ts +34 -0
  4044. package/dist/api/types/WebsocketTtsClientMessageMulti.js +5 -0
  4045. package/dist/api/types/WebsocketTtsServerMessageMulti.d.ts +17 -0
  4046. package/dist/api/types/WebsocketTtsServerMessageMulti.js +5 -0
  4047. package/dist/api/types/WidgetConfig.d.ts +64 -0
  4048. package/dist/api/types/WidgetConfig.js +5 -0
  4049. package/dist/api/types/WidgetConfigAvatar.d.ts +19 -0
  4050. package/dist/api/types/WidgetConfigAvatar.js +5 -0
  4051. package/dist/api/types/WidgetConfigResponseModel.d.ts +62 -0
  4052. package/dist/api/types/WidgetConfigResponseModel.js +5 -0
  4053. package/dist/api/types/WidgetConfigResponseModelAvatar.d.ts +19 -0
  4054. package/dist/api/types/WidgetConfigResponseModelAvatar.js +5 -0
  4055. package/dist/api/types/WidgetExpandable.d.ts +10 -0
  4056. package/dist/api/types/WidgetExpandable.js +12 -0
  4057. package/dist/api/types/WidgetFeedbackMode.d.ts +9 -0
  4058. package/dist/api/types/WidgetFeedbackMode.js +11 -0
  4059. package/dist/api/types/WorkspaceBatchCallsResponse.d.ts +11 -0
  4060. package/dist/api/types/WorkspaceBatchCallsResponse.js +5 -0
  4061. package/dist/api/types/WorkspaceGroupByNameResponseModel.d.ts +11 -0
  4062. package/dist/api/types/WorkspaceGroupByNameResponseModel.js +5 -0
  4063. package/dist/api/types/WorkspaceResourceType.d.ts +23 -0
  4064. package/dist/api/types/WorkspaceResourceType.js +22 -0
  4065. package/dist/api/types/index.d.ts +520 -0
  4066. package/dist/api/types/index.js +536 -0
  4067. package/dist/core/fetcher/APIResponse.d.ts +20 -0
  4068. package/dist/core/fetcher/APIResponse.js +2 -0
  4069. package/dist/core/fetcher/Fetcher.d.ts +39 -0
  4070. package/dist/core/fetcher/Fetcher.js +107 -0
  4071. package/dist/core/fetcher/Headers.d.ts +2 -0
  4072. package/dist/core/fetcher/Headers.js +84 -0
  4073. package/dist/core/fetcher/HttpResponsePromise.d.ts +58 -0
  4074. package/dist/core/fetcher/HttpResponsePromise.js +103 -0
  4075. package/dist/core/fetcher/RawResponse.d.ts +29 -0
  4076. package/dist/core/fetcher/RawResponse.js +44 -0
  4077. package/dist/core/fetcher/Supplier.d.ts +4 -0
  4078. package/dist/core/fetcher/Supplier.js +22 -0
  4079. package/dist/core/fetcher/createRequestUrl.d.ts +1 -0
  4080. package/dist/core/fetcher/createRequestUrl.js +12 -0
  4081. package/dist/core/fetcher/getFetchFn.d.ts +4 -0
  4082. package/dist/core/fetcher/getFetchFn.js +68 -0
  4083. package/dist/core/fetcher/getHeader.d.ts +1 -0
  4084. package/dist/core/fetcher/getHeader.js +11 -0
  4085. package/dist/core/fetcher/getRequestBody.d.ts +7 -0
  4086. package/dist/core/fetcher/getRequestBody.js +23 -0
  4087. package/dist/core/fetcher/getResponseBody.d.ts +1 -0
  4088. package/dist/core/fetcher/getResponseBody.js +53 -0
  4089. package/dist/core/fetcher/index.d.ts +8 -0
  4090. package/dist/core/fetcher/index.js +15 -0
  4091. package/dist/core/fetcher/makeRequest.d.ts +1 -0
  4092. package/dist/core/fetcher/makeRequest.js +42 -0
  4093. package/dist/core/fetcher/requestWithRetries.d.ts +1 -0
  4094. package/dist/core/fetcher/requestWithRetries.js +40 -0
  4095. package/dist/core/fetcher/signals.d.ts +11 -0
  4096. package/dist/core/fetcher/signals.js +36 -0
  4097. package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +30 -0
  4098. package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +247 -0
  4099. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +21 -0
  4100. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +126 -0
  4101. package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +31 -0
  4102. package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +229 -0
  4103. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +18 -0
  4104. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.js +59 -0
  4105. package/dist/core/form-data-utils/FormDataWrapper.d.ts +63 -0
  4106. package/dist/core/form-data-utils/FormDataWrapper.js +227 -0
  4107. package/dist/core/form-data-utils/encodeAsFormParameter.d.ts +4 -0
  4108. package/dist/core/form-data-utils/encodeAsFormParameter.js +18 -0
  4109. package/dist/core/form-data-utils/index.d.ts +2 -0
  4110. package/dist/core/form-data-utils/index.js +20 -0
  4111. package/dist/core/index.d.ts +4 -0
  4112. package/dist/core/index.js +20 -0
  4113. package/dist/core/json.d.ts +15 -0
  4114. package/dist/core/json.js +24 -0
  4115. package/dist/core/runtime/index.d.ts +1 -0
  4116. package/dist/core/runtime/index.js +5 -0
  4117. package/dist/core/runtime/runtime.d.ts +9 -0
  4118. package/dist/core/runtime/runtime.js +103 -0
  4119. package/dist/core/streaming-fetcher/Stream.d.ts +47 -0
  4120. package/dist/core/streaming-fetcher/Stream.js +169 -0
  4121. package/dist/core/streaming-fetcher/index.d.ts +1 -0
  4122. package/dist/core/streaming-fetcher/index.js +5 -0
  4123. package/dist/environments.d.ts +22 -0
  4124. package/dist/environments.js +20 -0
  4125. package/dist/errors/ElevenLabsError.d.ts +15 -0
  4126. package/dist/errors/ElevenLabsError.js +30 -0
  4127. package/dist/errors/ElevenLabsTimeoutError.d.ts +6 -0
  4128. package/dist/errors/ElevenLabsTimeoutError.js +13 -0
  4129. package/dist/errors/index.d.ts +2 -0
  4130. package/dist/errors/index.js +7 -0
  4131. package/dist/index.d.ts +4 -0
  4132. package/dist/index.js +46 -0
  4133. package/dist/version.d.ts +1 -0
  4134. package/dist/version.js +4 -0
  4135. package/dist/wrapper/ElevenLabsClient.d.ts +22 -0
  4136. package/dist/wrapper/ElevenLabsClient.js +54 -0
  4137. package/dist/wrapper/index.d.ts +3 -0
  4138. package/dist/wrapper/index.js +9 -0
  4139. package/dist/wrapper/play.d.ts +2 -0
  4140. package/dist/wrapper/play.js +57 -0
  4141. package/dist/wrapper/stream.d.ts +2 -0
  4142. package/dist/wrapper/stream.js +63 -0
  4143. package/dist/wrapper/webhooks.d.ts +16 -0
  4144. package/dist/wrapper/webhooks.js +67 -0
  4145. package/environments.d.ts +22 -0
  4146. package/environments.js +20 -0
  4147. package/errors/ElevenLabsError.d.ts +15 -0
  4148. package/errors/ElevenLabsError.js +30 -0
  4149. package/errors/ElevenLabsTimeoutError.d.ts +6 -0
  4150. package/errors/ElevenLabsTimeoutError.js +13 -0
  4151. package/errors/index.d.ts +2 -0
  4152. package/errors/index.js +7 -0
  4153. package/index.d.ts +4 -0
  4154. package/index.js +46 -0
  4155. package/jest.config.mjs +8 -0
  4156. package/package.json +50 -0
  4157. package/reference.md +9966 -0
  4158. package/scripts/rename-to-esm-files.js +115 -0
  4159. package/version.d.ts +1 -0
  4160. package/version.js +4 -0
  4161. package/wrapper/ElevenLabsClient.d.ts +22 -0
  4162. package/wrapper/ElevenLabsClient.js +54 -0
  4163. package/wrapper/index.d.ts +3 -0
  4164. package/wrapper/index.js +9 -0
  4165. package/wrapper/play.d.ts +2 -0
  4166. package/wrapper/play.js +57 -0
  4167. package/wrapper/stream.d.ts +2 -0
  4168. package/wrapper/stream.js +63 -0
  4169. package/wrapper/webhooks.d.ts +16 -0
  4170. package/wrapper/webhooks.js +67 -0
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Serialize a value to JSON
3
+ * @param value A JavaScript value, usually an object or array, to be converted.
4
+ * @param replacer A function that transforms the results.
5
+ * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.
6
+ * @returns JSON string
7
+ */
8
+ export declare const toJson: (value: unknown, replacer?: (this: unknown, key: string, value: unknown) => unknown, space?: string | number) => string;
9
+ /**
10
+ * Parse JSON string to object, array, or other type
11
+ * @param text A valid JSON string.
12
+ * @param reviver A function that transforms the results. This function is called for each member of the object. If a member contains nested objects, the nested objects are transformed before the parent object is.
13
+ * @returns Parsed object, array, or other type
14
+ */
15
+ export declare function fromJson<T = unknown>(text: string, reviver?: (this: unknown, key: string, value: unknown) => unknown): T;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.toJson = void 0;
4
+ exports.fromJson = fromJson;
5
+ /**
6
+ * Serialize a value to JSON
7
+ * @param value A JavaScript value, usually an object or array, to be converted.
8
+ * @param replacer A function that transforms the results.
9
+ * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.
10
+ * @returns JSON string
11
+ */
12
+ const toJson = (value, replacer, space) => {
13
+ return JSON.stringify(value, replacer, space);
14
+ };
15
+ exports.toJson = toJson;
16
+ /**
17
+ * Parse JSON string to object, array, or other type
18
+ * @param text A valid JSON string.
19
+ * @param reviver A function that transforms the results. This function is called for each member of the object. If a member contains nested objects, the nested objects are transformed before the parent object is.
20
+ * @returns Parsed object, array, or other type
21
+ */
22
+ function fromJson(text, reviver) {
23
+ return JSON.parse(text, reviver);
24
+ }
@@ -0,0 +1 @@
1
+ export { RUNTIME } from "./runtime";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RUNTIME = void 0;
4
+ var runtime_1 = require("./runtime");
5
+ Object.defineProperty(exports, "RUNTIME", { enumerable: true, get: function () { return runtime_1.RUNTIME; } });
@@ -0,0 +1,9 @@
1
+ /**
2
+ * A constant that indicates which environment and version the SDK is running in.
3
+ */
4
+ export declare const RUNTIME: Runtime;
5
+ export interface Runtime {
6
+ type: "browser" | "web-worker" | "deno" | "bun" | "node" | "react-native" | "unknown" | "workerd" | "edge-runtime";
7
+ version?: string;
8
+ parsedVersion?: number;
9
+ }
@@ -0,0 +1,103 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RUNTIME = void 0;
4
+ /**
5
+ * A constant that indicates which environment and version the SDK is running in.
6
+ */
7
+ exports.RUNTIME = evaluateRuntime();
8
+ function evaluateRuntime() {
9
+ var _a, _b, _c, _d, _e;
10
+ /**
11
+ * A constant that indicates whether the environment the code is running is a Web Browser.
12
+ */
13
+ const isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined";
14
+ if (isBrowser) {
15
+ return {
16
+ type: "browser",
17
+ version: window.navigator.userAgent,
18
+ };
19
+ }
20
+ /**
21
+ * A constant that indicates whether the environment the code is running is Cloudflare.
22
+ * https://developers.cloudflare.com/workers/runtime-apis/web-standards/#navigatoruseragent
23
+ */
24
+ const isCloudflare = typeof globalThis !== "undefined" && ((_a = globalThis === null || globalThis === void 0 ? void 0 : globalThis.navigator) === null || _a === void 0 ? void 0 : _a.userAgent) === "Cloudflare-Workers";
25
+ if (isCloudflare) {
26
+ return {
27
+ type: "workerd",
28
+ };
29
+ }
30
+ /**
31
+ * A constant that indicates whether the environment the code is running is Edge Runtime.
32
+ * https://vercel.com/docs/functions/runtimes/edge-runtime#check-if-you're-running-on-the-edge-runtime
33
+ */
34
+ const isEdgeRuntime = typeof EdgeRuntime === "string";
35
+ if (isEdgeRuntime) {
36
+ return {
37
+ type: "edge-runtime",
38
+ };
39
+ }
40
+ /**
41
+ * A constant that indicates whether the environment the code is running is a Web Worker.
42
+ */
43
+ const isWebWorker = typeof self === "object" &&
44
+ // @ts-ignore
45
+ typeof (self === null || self === void 0 ? void 0 : self.importScripts) === "function" &&
46
+ (((_b = self.constructor) === null || _b === void 0 ? void 0 : _b.name) === "DedicatedWorkerGlobalScope" ||
47
+ ((_c = self.constructor) === null || _c === void 0 ? void 0 : _c.name) === "ServiceWorkerGlobalScope" ||
48
+ ((_d = self.constructor) === null || _d === void 0 ? void 0 : _d.name) === "SharedWorkerGlobalScope");
49
+ if (isWebWorker) {
50
+ return {
51
+ type: "web-worker",
52
+ };
53
+ }
54
+ /**
55
+ * A constant that indicates whether the environment the code is running is Deno.
56
+ * FYI Deno spoofs process.versions.node, see https://deno.land/std@0.177.0/node/process.ts?s=versions
57
+ */
58
+ const isDeno = typeof Deno !== "undefined" && typeof Deno.version !== "undefined" && typeof Deno.version.deno !== "undefined";
59
+ if (isDeno) {
60
+ return {
61
+ type: "deno",
62
+ version: Deno.version.deno,
63
+ };
64
+ }
65
+ /**
66
+ * A constant that indicates whether the environment the code is running is Bun.sh.
67
+ */
68
+ const isBun = typeof Bun !== "undefined" && typeof Bun.version !== "undefined";
69
+ if (isBun) {
70
+ return {
71
+ type: "bun",
72
+ version: Bun.version,
73
+ };
74
+ }
75
+ /**
76
+ * A constant that indicates whether the environment the code is running is Node.JS.
77
+ */
78
+ const isNode = typeof process !== "undefined" &&
79
+ "version" in process &&
80
+ !!process.version &&
81
+ "versions" in process &&
82
+ !!((_e = process.versions) === null || _e === void 0 ? void 0 : _e.node);
83
+ if (isNode) {
84
+ return {
85
+ type: "node",
86
+ version: process.versions.node,
87
+ parsedVersion: Number(process.versions.node.split(".")[0]),
88
+ };
89
+ }
90
+ /**
91
+ * A constant that indicates whether the environment the code is running is in React-Native.
92
+ * https://github.com/facebook/react-native/blob/main/packages/react-native/Libraries/Core/setUpNavigator.js
93
+ */
94
+ const isReactNative = typeof navigator !== "undefined" && (navigator === null || navigator === void 0 ? void 0 : navigator.product) === "ReactNative";
95
+ if (isReactNative) {
96
+ return {
97
+ type: "react-native",
98
+ };
99
+ }
100
+ return {
101
+ type: "unknown",
102
+ };
103
+ }
@@ -0,0 +1,47 @@
1
+ import { Readable } from "stream";
2
+ export declare namespace Stream {
3
+ interface Args {
4
+ /**
5
+ * The HTTP response stream to read from.
6
+ */
7
+ stream: Readable | ReadableStream;
8
+ /**
9
+ * The event shape to use for parsing the stream data.
10
+ */
11
+ eventShape: JsonEvent | SseEvent;
12
+ /**
13
+ * An abort signal to stop the stream.
14
+ */
15
+ signal?: AbortSignal;
16
+ }
17
+ interface JsonEvent {
18
+ type: "json";
19
+ messageTerminator: string;
20
+ }
21
+ interface SseEvent {
22
+ type: "sse";
23
+ streamTerminator?: string;
24
+ }
25
+ }
26
+ export declare class Stream<T> implements AsyncIterable<T> {
27
+ private stream;
28
+ private parse;
29
+ /**
30
+ * The prefix to use for each message. For example,
31
+ * for SSE, the prefix is "data: ".
32
+ */
33
+ private prefix;
34
+ private messageTerminator;
35
+ private streamTerminator;
36
+ private controller;
37
+ constructor({ stream, parse, eventShape, signal }: Stream.Args & {
38
+ parse: (val: unknown) => Promise<T>;
39
+ });
40
+ private iterMessages;
41
+ [Symbol.asyncIterator](): AsyncIterator<T, void, unknown>;
42
+ private decodeChunk;
43
+ }
44
+ /**
45
+ * Browser polyfill for ReadableStream
46
+ */
47
+ export declare function readableStreamAsyncIterable<T>(stream: any): AsyncIterableIterator<T>;
@@ -0,0 +1,169 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __asyncValues = (this && this.__asyncValues) || function (o) {
12
+ if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
13
+ var m = o[Symbol.asyncIterator], i;
14
+ return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
15
+ function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
16
+ function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
17
+ };
18
+ var __await = (this && this.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }
19
+ var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) {
20
+ if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
21
+ var g = generator.apply(thisArg, _arguments || []), i, q = [];
22
+ return i = Object.create((typeof AsyncIterator === "function" ? AsyncIterator : Object).prototype), verb("next"), verb("throw"), verb("return", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;
23
+ function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }
24
+ function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }
25
+ function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
26
+ function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
27
+ function fulfill(value) { resume("next", value); }
28
+ function reject(value) { resume("throw", value); }
29
+ function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
30
+ };
31
+ Object.defineProperty(exports, "__esModule", { value: true });
32
+ exports.Stream = void 0;
33
+ exports.readableStreamAsyncIterable = readableStreamAsyncIterable;
34
+ const runtime_1 = require("../runtime");
35
+ const DATA_PREFIX = "data:";
36
+ class Stream {
37
+ constructor({ stream, parse, eventShape, signal }) {
38
+ this.controller = new AbortController();
39
+ this.stream = stream;
40
+ this.parse = parse;
41
+ if (eventShape.type === "sse") {
42
+ this.prefix = DATA_PREFIX;
43
+ this.messageTerminator = "\n";
44
+ this.streamTerminator = eventShape.streamTerminator;
45
+ }
46
+ else {
47
+ this.messageTerminator = eventShape.messageTerminator;
48
+ }
49
+ signal === null || signal === void 0 ? void 0 : signal.addEventListener("abort", () => this.controller.abort());
50
+ }
51
+ iterMessages() {
52
+ return __asyncGenerator(this, arguments, function* iterMessages_1() {
53
+ var _a, e_1, _b, _c;
54
+ this.controller.signal;
55
+ const stream = readableStreamAsyncIterable(this.stream);
56
+ let buf = "";
57
+ let prefixSeen = false;
58
+ try {
59
+ for (var _d = true, stream_1 = __asyncValues(stream), stream_1_1; stream_1_1 = yield __await(stream_1.next()), _a = stream_1_1.done, !_a; _d = true) {
60
+ _c = stream_1_1.value;
61
+ _d = false;
62
+ const chunk = _c;
63
+ buf += this.decodeChunk(chunk);
64
+ let terminatorIndex;
65
+ while ((terminatorIndex = buf.indexOf(this.messageTerminator)) >= 0) {
66
+ let line = buf.slice(0, terminatorIndex + 1);
67
+ buf = buf.slice(terminatorIndex + this.messageTerminator.length);
68
+ if (!line.trim()) {
69
+ continue;
70
+ }
71
+ if (!prefixSeen && this.prefix != null) {
72
+ const prefixIndex = line.indexOf(this.prefix);
73
+ if (prefixIndex === -1) {
74
+ continue;
75
+ }
76
+ prefixSeen = true;
77
+ line = line.slice(prefixIndex + this.prefix.length);
78
+ }
79
+ if (this.streamTerminator != null && line.includes(this.streamTerminator)) {
80
+ return yield __await(void 0);
81
+ }
82
+ const message = yield __await(this.parse(JSON.parse(line)));
83
+ yield yield __await(message);
84
+ prefixSeen = false;
85
+ }
86
+ }
87
+ }
88
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
89
+ finally {
90
+ try {
91
+ if (!_d && !_a && (_b = stream_1.return)) yield __await(_b.call(stream_1));
92
+ }
93
+ finally { if (e_1) throw e_1.error; }
94
+ }
95
+ });
96
+ }
97
+ [Symbol.asyncIterator]() {
98
+ return __asyncGenerator(this, arguments, function* _a() {
99
+ var _b, e_2, _c, _d;
100
+ try {
101
+ for (var _e = true, _f = __asyncValues(this.iterMessages()), _g; _g = yield __await(_f.next()), _b = _g.done, !_b; _e = true) {
102
+ _d = _g.value;
103
+ _e = false;
104
+ const message = _d;
105
+ yield yield __await(message);
106
+ }
107
+ }
108
+ catch (e_2_1) { e_2 = { error: e_2_1 }; }
109
+ finally {
110
+ try {
111
+ if (!_e && !_b && (_c = _f.return)) yield __await(_c.call(_f));
112
+ }
113
+ finally { if (e_2) throw e_2.error; }
114
+ }
115
+ });
116
+ }
117
+ decodeChunk(chunk) {
118
+ let decoded = "";
119
+ // If TextDecoder is present, use it
120
+ if (typeof TextDecoder !== "undefined") {
121
+ const decoder = new TextDecoder("utf8");
122
+ decoded += decoder.decode(chunk);
123
+ }
124
+ // Buffer is present in Node.js environment
125
+ else if (runtime_1.RUNTIME.type === "node" && typeof chunk !== "undefined") {
126
+ decoded += Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk);
127
+ }
128
+ return decoded;
129
+ }
130
+ }
131
+ exports.Stream = Stream;
132
+ /**
133
+ * Browser polyfill for ReadableStream
134
+ */
135
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
136
+ function readableStreamAsyncIterable(stream) {
137
+ if (stream[Symbol.asyncIterator]) {
138
+ return stream;
139
+ }
140
+ const reader = stream.getReader();
141
+ return {
142
+ next() {
143
+ return __awaiter(this, void 0, void 0, function* () {
144
+ try {
145
+ const result = yield reader.read();
146
+ if (result === null || result === void 0 ? void 0 : result.done) {
147
+ reader.releaseLock();
148
+ } // release lock when stream becomes closed
149
+ return result;
150
+ }
151
+ catch (e) {
152
+ reader.releaseLock(); // release lock when stream becomes errored
153
+ throw e;
154
+ }
155
+ });
156
+ },
157
+ return() {
158
+ return __awaiter(this, void 0, void 0, function* () {
159
+ const cancelPromise = reader.cancel();
160
+ reader.releaseLock();
161
+ yield cancelPromise;
162
+ return { done: true, value: undefined };
163
+ });
164
+ },
165
+ [Symbol.asyncIterator]() {
166
+ return this;
167
+ },
168
+ };
169
+ }
@@ -0,0 +1 @@
1
+ export { Stream } from "./Stream";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Stream = void 0;
4
+ var Stream_1 = require("./Stream");
5
+ Object.defineProperty(exports, "Stream", { enumerable: true, get: function () { return Stream_1.Stream; } });
@@ -0,0 +1,22 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface ElevenLabsEnvironmentUrls {
5
+ base: string;
6
+ wss: string;
7
+ }
8
+ export declare const ElevenLabsEnvironment: {
9
+ readonly Production: {
10
+ readonly base: "https://api.elevenlabs.io";
11
+ readonly wss: "wss://api.elevenlabs.io";
12
+ };
13
+ readonly ProductionUs: {
14
+ readonly base: "https://api.us.elevenlabs.io";
15
+ readonly wss: "wss://api.elevenlabs.io";
16
+ };
17
+ readonly ProductionEu: {
18
+ readonly base: "https://api.eu.residency.elevenlabs.io";
19
+ readonly wss: "wss://api.elevenlabs.io";
20
+ };
21
+ };
22
+ export type ElevenLabsEnvironment = typeof ElevenLabsEnvironment.Production | typeof ElevenLabsEnvironment.ProductionUs | typeof ElevenLabsEnvironment.ProductionEu;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ElevenLabsEnvironment = void 0;
7
+ exports.ElevenLabsEnvironment = {
8
+ Production: {
9
+ base: "https://api.elevenlabs.io",
10
+ wss: "wss://api.elevenlabs.io",
11
+ },
12
+ ProductionUs: {
13
+ base: "https://api.us.elevenlabs.io",
14
+ wss: "wss://api.elevenlabs.io",
15
+ },
16
+ ProductionEu: {
17
+ base: "https://api.eu.residency.elevenlabs.io",
18
+ wss: "wss://api.elevenlabs.io",
19
+ },
20
+ };
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../core";
5
+ export declare class ElevenLabsError extends Error {
6
+ readonly statusCode?: number;
7
+ readonly body?: unknown;
8
+ readonly rawResponse?: core.RawResponse;
9
+ constructor({ message, statusCode, body, rawResponse, }: {
10
+ message?: string;
11
+ statusCode?: number;
12
+ body?: unknown;
13
+ rawResponse?: core.RawResponse;
14
+ });
15
+ }
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ElevenLabsError = void 0;
7
+ const json_1 = require("../core/json");
8
+ class ElevenLabsError extends Error {
9
+ constructor({ message, statusCode, body, rawResponse, }) {
10
+ super(buildMessage({ message, statusCode, body }));
11
+ Object.setPrototypeOf(this, ElevenLabsError.prototype);
12
+ this.statusCode = statusCode;
13
+ this.body = body;
14
+ this.rawResponse = rawResponse;
15
+ }
16
+ }
17
+ exports.ElevenLabsError = ElevenLabsError;
18
+ function buildMessage({ message, statusCode, body, }) {
19
+ let lines = [];
20
+ if (message != null) {
21
+ lines.push(message);
22
+ }
23
+ if (statusCode != null) {
24
+ lines.push(`Status code: ${statusCode.toString()}`);
25
+ }
26
+ if (body != null) {
27
+ lines.push(`Body: ${(0, json_1.toJson)(body, undefined, 2)}`);
28
+ }
29
+ return lines.join("\n");
30
+ }
@@ -0,0 +1,6 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export declare class ElevenLabsTimeoutError extends Error {
5
+ constructor(message: string);
6
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ElevenLabsTimeoutError = void 0;
7
+ class ElevenLabsTimeoutError extends Error {
8
+ constructor(message) {
9
+ super(message);
10
+ Object.setPrototypeOf(this, ElevenLabsTimeoutError.prototype);
11
+ }
12
+ }
13
+ exports.ElevenLabsTimeoutError = ElevenLabsTimeoutError;
@@ -0,0 +1,2 @@
1
+ export { ElevenLabsError } from "./ElevenLabsError";
2
+ export { ElevenLabsTimeoutError } from "./ElevenLabsTimeoutError";
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ElevenLabsTimeoutError = exports.ElevenLabsError = void 0;
4
+ var ElevenLabsError_1 = require("./ElevenLabsError");
5
+ Object.defineProperty(exports, "ElevenLabsError", { enumerable: true, get: function () { return ElevenLabsError_1.ElevenLabsError; } });
6
+ var ElevenLabsTimeoutError_1 = require("./ElevenLabsTimeoutError");
7
+ Object.defineProperty(exports, "ElevenLabsTimeoutError", { enumerable: true, get: function () { return ElevenLabsTimeoutError_1.ElevenLabsTimeoutError; } });
@@ -0,0 +1,4 @@
1
+ export * as ElevenLabs from "./api";
2
+ export * from "./wrapper";
3
+ export { ElevenLabsEnvironment } from "./environments";
4
+ export { ElevenLabsError, ElevenLabsTimeoutError } from "./errors";
package/dist/index.js ADDED
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
36
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
37
+ };
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.ElevenLabsTimeoutError = exports.ElevenLabsError = exports.ElevenLabsEnvironment = exports.ElevenLabs = void 0;
40
+ exports.ElevenLabs = __importStar(require("./api"));
41
+ __exportStar(require("./wrapper"), exports);
42
+ var environments_1 = require("./environments");
43
+ Object.defineProperty(exports, "ElevenLabsEnvironment", { enumerable: true, get: function () { return environments_1.ElevenLabsEnvironment; } });
44
+ var errors_1 = require("./errors");
45
+ Object.defineProperty(exports, "ElevenLabsError", { enumerable: true, get: function () { return errors_1.ElevenLabsError; } });
46
+ Object.defineProperty(exports, "ElevenLabsTimeoutError", { enumerable: true, get: function () { return errors_1.ElevenLabsTimeoutError; } });
@@ -0,0 +1 @@
1
+ export declare const SDK_VERSION = "v2.0.0";
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SDK_VERSION = void 0;
4
+ exports.SDK_VERSION = "v2.0.0";
@@ -0,0 +1,22 @@
1
+ import { ElevenLabsClient as FernClient } from "../Client";
2
+ import * as ElevenLabs from "../api";
3
+ import * as core from "../core";
4
+ import { WebhooksClient } from "./webhooks";
5
+ export declare namespace ElevenLabsClient {
6
+ interface Options extends FernClient.Options {
7
+ /**
8
+ * Your ElevenLabs API Key. Defaults to the environment
9
+ * variable ELEVENLABS_API_KEY.
10
+ */
11
+ apiKey?: core.Supplier<string>;
12
+ }
13
+ interface GeneratAudioBulk extends ElevenLabs.TextToSpeechRequest {
14
+ }
15
+ interface GenerateAudioStream extends ElevenLabs.StreamTextToSpeechRequest {
16
+ stream: true;
17
+ }
18
+ }
19
+ export declare class ElevenLabsClient extends FernClient {
20
+ readonly webhooks: WebhooksClient;
21
+ constructor(options?: ElevenLabsClient.Options);
22
+ }
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.ElevenLabsClient = void 0;
37
+ const Client_1 = require("../Client");
38
+ const errors = __importStar(require("../errors"));
39
+ const webhooks_1 = require("./webhooks");
40
+ class ElevenLabsClient extends Client_1.ElevenLabsClient {
41
+ constructor(options = {}) {
42
+ var _a;
43
+ const apiKey = (_a = options.apiKey) !== null && _a !== void 0 ? _a : process.env.ELEVENLABS_API_KEY;
44
+ if (apiKey == null) {
45
+ throw new errors.ElevenLabsError({
46
+ message: "Please pass in your ElevenLabs API Key or export ELEVENLABS_API_KEY in your environment.",
47
+ });
48
+ }
49
+ options.apiKey = apiKey;
50
+ super(options);
51
+ this.webhooks = new webhooks_1.WebhooksClient();
52
+ }
53
+ }
54
+ exports.ElevenLabsClient = ElevenLabsClient;