@elevenlabs/elevenlabs-js 2.26.0 → 2.28.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.
- package/.fern/metadata.json +2 -2
- package/BaseClient.d.ts +5 -1
- package/BaseClient.js +48 -0
- package/Client.d.ts +76 -76
- package/Client.js +29 -49
- package/api/errors/BadRequestError.js +5 -1
- package/api/errors/ConflictError.js +5 -1
- package/api/errors/ForbiddenError.js +5 -1
- package/api/errors/NotFoundError.js +5 -1
- package/api/errors/TooEarlyError.js +5 -1
- package/api/errors/UnauthorizedError.js +5 -1
- package/api/errors/UnprocessableEntityError.js +5 -1
- package/api/resources/audioIsolation/client/Client.d.ts +8 -8
- package/api/resources/audioIsolation/client/Client.js +9 -35
- package/api/resources/audioNative/client/Client.d.ts +12 -12
- package/api/resources/audioNative/client/Client.js +13 -53
- package/api/resources/conversationalAi/client/Client.d.ts +69 -69
- package/api/resources/conversationalAi/client/Client.js +55 -109
- package/api/resources/conversationalAi/resources/agents/client/Client.d.ts +36 -36
- package/api/resources/conversationalAi/resources/agents/client/Client.js +29 -153
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.d.ts +8 -8
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +9 -21
- package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.d.ts +8 -8
- package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +9 -21
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.d.ts +8 -8
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +9 -21
- package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.d.ts +11 -11
- package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +10 -22
- package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.d.ts +8 -8
- package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +9 -21
- package/api/resources/conversationalAi/resources/analytics/client/Client.d.ts +9 -9
- package/api/resources/conversationalAi/resources/analytics/client/Client.js +7 -6
- package/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.d.ts +8 -8
- package/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.js +9 -21
- package/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +16 -16
- package/api/resources/conversationalAi/resources/batchCalls/client/Client.js +17 -85
- package/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +22 -22
- package/api/resources/conversationalAi/resources/conversations/client/Client.js +19 -87
- package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.d.ts +7 -7
- package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +8 -20
- package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.d.ts +8 -8
- package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +9 -21
- package/api/resources/conversationalAi/resources/dashboard/client/Client.d.ts +9 -9
- package/api/resources/conversationalAi/resources/dashboard/client/Client.js +7 -6
- package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.d.ts +10 -10
- package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +11 -37
- package/api/resources/conversationalAi/resources/index.d.ts +2 -0
- package/api/resources/conversationalAi/resources/index.js +2 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.d.ts +36 -14
- package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +92 -23
- package/api/resources/conversationalAi/resources/knowledgeBase/client/requests/BodyComputeRagIndexesInBatchV1ConvaiKnowledgeBaseRagIndexPost.d.ts +15 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.d.ts +9 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/client/requests/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/index.js +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +8 -8
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +9 -21
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +28 -25
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +32 -134
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFileDocumentV1ConvaiKnowledgeBaseFilePost.d.ts +2 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.d.ts +2 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +2 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.d.ts +8 -8
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +9 -21
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +3 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +7 -1
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/Client.d.ts +26 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/Client.js +130 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/index.js +17 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/requests/SummariesGetRequest.d.ts +8 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/requests/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/requests/index.js +2 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/index.d.ts +2 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/index.js +18 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/SummariesGetResponseValue.d.ts +10 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/index.js +17 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.d.ts +4 -1
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.d.ts +4 -1
- package/api/resources/conversationalAi/resources/knowledgeBase/types/KnowledgeBaseGetOrCreateRagIndexesResponseValue.d.ts +10 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/types/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/types/index.js +17 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/Client.d.ts +8 -8
- package/api/resources/conversationalAi/resources/llmUsage/client/Client.js +9 -21
- package/api/resources/conversationalAi/resources/mcpServers/client/Client.d.ts +28 -28
- package/api/resources/conversationalAi/resources/mcpServers/client/Client.js +21 -89
- package/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.d.ts +8 -8
- package/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.js +9 -21
- package/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.d.ts +10 -10
- package/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.js +11 -37
- package/api/resources/conversationalAi/resources/mcpServers/resources/toolConfigs/client/Client.d.ts +14 -14
- package/api/resources/conversationalAi/resources/mcpServers/resources/toolConfigs/client/Client.js +15 -69
- package/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.d.ts +8 -8
- package/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.js +9 -21
- package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.d.ts +16 -16
- package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +17 -85
- package/api/resources/conversationalAi/resources/secrets/client/Client.d.ts +14 -14
- package/api/resources/conversationalAi/resources/secrets/client/Client.js +15 -69
- package/api/resources/conversationalAi/resources/settings/client/Client.d.ts +10 -10
- package/api/resources/conversationalAi/resources/settings/client/Client.js +11 -37
- package/api/resources/conversationalAi/resources/sipTrunk/client/Client.d.ts +8 -8
- package/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +9 -21
- package/api/resources/conversationalAi/resources/tests/client/Client.d.ts +21 -21
- package/api/resources/conversationalAi/resources/tests/client/Client.js +20 -102
- package/api/resources/conversationalAi/resources/tests/resources/invocations/client/Client.d.ts +12 -12
- package/api/resources/conversationalAi/resources/tests/resources/invocations/client/Client.js +13 -53
- package/api/resources/conversationalAi/resources/tools/client/Client.d.ts +18 -18
- package/api/resources/conversationalAi/resources/tools/client/Client.js +19 -101
- package/api/resources/conversationalAi/resources/twilio/client/Client.d.ts +25 -8
- package/api/resources/conversationalAi/resources/twilio/client/Client.js +67 -20
- package/api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +16 -0
- package/api/resources/conversationalAi/resources/twilio/client/requests/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/twilio/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/twilio/index.js +1 -0
- package/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +5 -0
- package/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +8 -0
- package/api/resources/conversationalAi/resources/twilio/types/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/twilio/types/index.js +17 -0
- package/api/resources/dubbing/client/Client.d.ts +23 -23
- package/api/resources/dubbing/client/Client.js +18 -72
- package/api/resources/dubbing/resources/audio/client/Client.d.ts +7 -7
- package/api/resources/dubbing/resources/audio/client/Client.js +8 -20
- package/api/resources/dubbing/resources/resource/client/Client.d.ts +28 -28
- package/api/resources/dubbing/resources/resource/client/Client.js +23 -105
- package/api/resources/dubbing/resources/resource/resources/language/client/Client.d.ts +8 -8
- package/api/resources/dubbing/resources/resource/resources/language/client/Client.js +9 -21
- package/api/resources/dubbing/resources/resource/resources/segment/client/Client.d.ts +10 -10
- package/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +11 -37
- package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.d.ts +15 -15
- package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +14 -54
- package/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.d.ts +6 -0
- package/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +6 -0
- package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.d.ts +8 -8
- package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +9 -21
- package/api/resources/dubbing/resources/transcript/client/Client.d.ts +8 -8
- package/api/resources/dubbing/resources/transcript/client/Client.js +9 -21
- package/api/resources/forcedAlignment/client/Client.d.ts +8 -8
- package/api/resources/forcedAlignment/client/Client.js +9 -21
- package/api/resources/history/client/Client.d.ts +14 -14
- package/api/resources/history/client/Client.js +15 -83
- package/api/resources/models/client/Client.d.ts +8 -8
- package/api/resources/models/client/Client.js +9 -21
- package/api/resources/music/client/Client.d.ts +13 -13
- package/api/resources/music/client/Client.js +15 -66
- package/api/resources/music/client/requests/BodyComposeMusicV1MusicPost.d.ts +2 -0
- package/api/resources/music/client/requests/BodyComposeMusicWithADetailedResponseV1MusicDetailedPost.d.ts +4 -0
- package/api/resources/music/client/requests/BodyStemSeparationV1MusicStemSeparationPost.d.ts +2 -0
- package/api/resources/music/resources/compositionPlan/client/Client.d.ts +8 -8
- package/api/resources/music/resources/compositionPlan/client/Client.js +9 -21
- package/api/resources/pronunciationDictionaries/client/Client.d.ts +20 -20
- package/api/resources/pronunciationDictionaries/client/Client.js +19 -101
- package/api/resources/pronunciationDictionaries/resources/rules/client/Client.d.ts +10 -10
- package/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +11 -37
- package/api/resources/samples/client/Client.d.ts +8 -8
- package/api/resources/samples/client/Client.js +9 -21
- package/api/resources/serviceAccounts/client/Client.d.ts +11 -11
- package/api/resources/serviceAccounts/client/Client.js +10 -22
- package/api/resources/serviceAccounts/resources/apiKeys/client/Client.d.ts +16 -16
- package/api/resources/serviceAccounts/resources/apiKeys/client/Client.js +17 -71
- package/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.d.ts +1 -1
- package/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.d.ts +1 -1
- package/api/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissions.d.ts +1 -1
- package/api/resources/serviceAccounts/resources/apiKeys/types/{BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.d.ts → BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.d.ts} +2 -2
- package/{dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.js → api/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.js} +2 -2
- package/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissions.d.ts +1 -1
- package/api/resources/serviceAccounts/resources/apiKeys/types/{BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.d.ts → BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.d.ts} +2 -2
- package/{dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.js → api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.js} +2 -2
- package/api/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +2 -2
- package/api/resources/serviceAccounts/resources/apiKeys/types/index.js +2 -2
- package/api/resources/speechToSpeech/client/Client.d.ts +8 -8
- package/api/resources/speechToSpeech/client/Client.js +9 -35
- package/api/resources/speechToText/client/Client.d.ts +11 -11
- package/api/resources/speechToText/client/Client.js +10 -22
- package/api/resources/speechToText/resources/transcripts/client/Client.d.ts +10 -10
- package/api/resources/speechToText/resources/transcripts/client/Client.js +11 -37
- package/api/resources/studio/client/Client.d.ts +12 -11
- package/api/resources/studio/client/Client.js +11 -22
- package/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +1 -0
- package/api/resources/studio/resources/projects/client/Client.d.ts +30 -30
- package/api/resources/studio/resources/projects/client/Client.js +23 -105
- package/api/resources/studio/resources/projects/client/requests/BodyCreateStudioProjectV1StudioProjectsPost.d.ts +7 -1
- package/api/resources/studio/resources/projects/resources/chapters/client/Client.d.ts +21 -21
- package/api/resources/studio/resources/projects/resources/chapters/client/Client.js +20 -102
- package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.d.ts +11 -11
- package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +12 -52
- package/api/resources/studio/resources/projects/resources/content/client/Client.d.ts +8 -8
- package/api/resources/studio/resources/projects/resources/content/client/Client.js +9 -21
- package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.d.ts +8 -8
- package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +9 -21
- package/api/resources/studio/resources/projects/resources/snapshots/client/Client.d.ts +12 -12
- package/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +13 -67
- package/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.d.ts +1 -1
- package/api/resources/studio/types/{BodyCreatePodcastV1StudioPodcastsPostSourceItem.d.ts → BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.d.ts} +2 -2
- package/api/resources/studio/types/index.d.ts +1 -1
- package/api/resources/studio/types/index.js +1 -1
- package/api/resources/textToDialogue/client/Client.d.ts +11 -11
- package/api/resources/textToDialogue/client/Client.js +12 -66
- package/api/resources/textToDialogue/client/requests/BodyTextToDialogueFullWithTimestamps.d.ts +1 -1
- package/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.d.ts +1 -1
- package/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.d.ts +1 -1
- package/api/resources/textToDialogue/client/requests/BodyTextToDialogueStreamWithTimestamps.d.ts +1 -1
- package/api/resources/textToDialogue/types/BodyTextToDialogueFullWithTimestampsApplyTextNormalization.d.ts +1 -1
- package/api/resources/textToDialogue/types/BodyTextToDialogueFullWithTimestampsApplyTextNormalization.js +1 -1
- package/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPostApplyTextNormalization.d.ts +1 -1
- package/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPostApplyTextNormalization.js +1 -1
- package/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceV1TextToDialoguePostApplyTextNormalization.d.ts +1 -1
- package/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceV1TextToDialoguePostApplyTextNormalization.js +1 -1
- package/api/resources/textToDialogue/types/BodyTextToDialogueStreamWithTimestampsApplyTextNormalization.d.ts +1 -1
- package/api/resources/textToDialogue/types/BodyTextToDialogueStreamWithTimestampsApplyTextNormalization.js +1 -1
- package/api/resources/textToSoundEffects/client/Client.d.ts +7 -7
- package/api/resources/textToSoundEffects/client/Client.js +8 -20
- package/api/resources/textToSpeech/client/Client.d.ts +11 -11
- package/api/resources/textToSpeech/client/Client.js +12 -66
- package/api/resources/textToSpeech/client/requests/BodyTextToSpeechFull.d.ts +1 -1
- package/api/resources/textToSpeech/client/requests/BodyTextToSpeechFullWithTimestamps.d.ts +1 -1
- package/api/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.d.ts +1 -1
- package/api/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.d.ts +1 -1
- package/api/resources/textToSpeech/types/BodyTextToSpeechFullApplyTextNormalization.d.ts +1 -1
- package/api/resources/textToSpeech/types/BodyTextToSpeechFullApplyTextNormalization.js +1 -1
- package/api/resources/textToSpeech/types/BodyTextToSpeechFullWithTimestampsApplyTextNormalization.d.ts +1 -1
- package/api/resources/textToSpeech/types/BodyTextToSpeechFullWithTimestampsApplyTextNormalization.js +1 -1
- package/api/resources/textToSpeech/types/BodyTextToSpeechStreamApplyTextNormalization.d.ts +1 -1
- package/api/resources/textToSpeech/types/BodyTextToSpeechStreamApplyTextNormalization.js +1 -1
- package/api/resources/textToSpeech/types/BodyTextToSpeechStreamWithTimestampsApplyTextNormalization.d.ts +1 -1
- package/api/resources/textToSpeech/types/BodyTextToSpeechStreamWithTimestampsApplyTextNormalization.js +1 -1
- package/api/resources/textToVoice/client/Client.d.ts +17 -17
- package/api/resources/textToVoice/client/Client.js +16 -70
- package/api/resources/textToVoice/resources/preview/client/Client.d.ts +7 -7
- package/api/resources/textToVoice/resources/preview/client/Client.js +8 -20
- package/api/resources/tokens/client/Client.d.ts +9 -9
- package/api/resources/tokens/client/Client.js +7 -6
- package/api/resources/tokens/resources/singleUse/client/Client.d.ts +8 -8
- package/api/resources/tokens/resources/singleUse/client/Client.js +9 -21
- package/api/resources/usage/client/Client.d.ts +8 -8
- package/api/resources/usage/client/Client.js +9 -21
- package/api/resources/user/client/Client.d.ts +11 -11
- package/api/resources/user/client/Client.js +10 -22
- package/api/resources/user/resources/subscription/client/Client.d.ts +8 -8
- package/api/resources/user/resources/subscription/client/Client.js +9 -21
- package/api/resources/voices/client/Client.d.ts +34 -34
- package/api/resources/voices/client/Client.js +27 -137
- package/api/resources/voices/client/requests/VoicesSearchRequest.d.ts +2 -2
- package/api/resources/voices/resources/ivc/client/Client.d.ts +8 -8
- package/api/resources/voices/resources/ivc/client/Client.js +9 -21
- package/api/resources/voices/resources/pvc/client/Client.d.ts +18 -18
- package/api/resources/voices/resources/pvc/client/Client.js +15 -55
- package/api/resources/voices/resources/pvc/resources/samples/client/Client.d.ts +21 -21
- package/api/resources/voices/resources/pvc/resources/samples/client/Client.js +16 -56
- package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.d.ts +8 -8
- package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +9 -21
- package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.d.ts +13 -13
- package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +12 -38
- package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.d.ts +8 -8
- package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +9 -21
- package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.d.ts +8 -8
- package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +9 -21
- package/api/resources/voices/resources/pvc/resources/verification/client/Client.d.ts +11 -11
- package/api/resources/voices/resources/pvc/resources/verification/client/Client.js +10 -22
- package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.d.ts +10 -10
- package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +11 -37
- package/api/resources/voices/resources/samples/client/Client.d.ts +9 -9
- package/api/resources/voices/resources/samples/client/Client.js +7 -6
- package/api/resources/voices/resources/samples/resources/audio/client/Client.d.ts +7 -7
- package/api/resources/voices/resources/samples/resources/audio/client/Client.js +8 -20
- package/api/resources/voices/resources/settings/client/Client.d.ts +12 -12
- package/api/resources/voices/resources/settings/client/Client.js +13 -53
- package/api/resources/webhooks/client/Client.d.ts +14 -14
- package/api/resources/webhooks/client/Client.js +15 -69
- package/api/resources/workspace/client/Client.d.ts +18 -18
- package/api/resources/workspace/client/Client.js +10 -9
- package/api/resources/workspace/resources/groups/client/Client.d.ts +11 -11
- package/api/resources/workspace/resources/groups/client/Client.js +10 -22
- package/api/resources/workspace/resources/groups/resources/members/client/Client.d.ts +10 -10
- package/api/resources/workspace/resources/groups/resources/members/client/Client.js +11 -37
- package/api/resources/workspace/resources/invites/client/Client.d.ts +12 -12
- package/api/resources/workspace/resources/invites/client/Client.js +13 -53
- package/api/resources/workspace/resources/members/client/Client.d.ts +8 -8
- package/api/resources/workspace/resources/members/client/Client.js +9 -21
- package/api/resources/workspace/resources/resources/client/Client.d.ts +12 -12
- package/api/resources/workspace/resources/resources/client/Client.js +13 -53
- package/api/types/AgentConfig.d.ts +2 -0
- package/api/types/AgentConfigApiModelWorkflowOverrideInput.d.ts +2 -0
- package/api/types/AgentConfigApiModelWorkflowOverrideOutput.d.ts +2 -0
- package/api/types/BackupLlmDefault.d.ts +3 -1
- package/api/types/BackupLlmDisabled.d.ts +3 -1
- package/api/types/BackupLlmOverride.d.ts +1 -0
- package/api/types/BatchCallDetailedResponse.d.ts +1 -0
- package/api/types/BatchCallResponse.d.ts +1 -0
- package/api/types/BatchCallWhatsAppParams.d.ts +1 -1
- package/api/types/BatchFailureResponseModel.d.ts +5 -0
- package/api/types/BillingPeriod.d.ts +7 -0
- package/api/types/{SubscriptionResponseModelBillingPeriod.js → BillingPeriod.js} +2 -2
- package/api/types/CharacterRefreshPeriod.d.ts +7 -0
- package/{dist/api/types/SubscriptionResponseModelBillingPeriod.js → api/types/CharacterRefreshPeriod.js} +2 -2
- package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +14 -0
- package/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -1
- package/api/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +1 -1
- package/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -1
- package/api/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +1 -1
- package/api/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.d.ts +0 -1
- package/api/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.js +0 -1
- package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +7 -0
- package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js +3 -0
- package/{dist/api/types/ConversationHistoryTranscriptToolCallCommonModel.d.ts → api/types/ConversationHistoryTranscriptToolCallCommonModelInput.d.ts} +2 -2
- package/api/types/ConversationHistoryTranscriptToolCallCommonModelInput.js +3 -0
- package/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +16 -0
- package/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js +3 -0
- package/api/types/ConversationHistoryTranscriptToolCallCommonModelOutput.d.ts +9 -0
- package/api/types/ConversationHistoryTranscriptToolCallCommonModelOutput.js +3 -0
- package/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +16 -0
- package/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +3 -0
- package/api/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +1 -0
- package/api/types/ConversationTokenDbModel.d.ts +2 -0
- package/api/types/DetailedMusicResponse.d.ts +2 -0
- package/{dist/api/types/DiscountResposneModel.d.ts → api/types/DiscountResponseModel.d.ts} +1 -1
- package/api/types/DiscountResponseModel.js +3 -0
- package/api/types/DubbingResource.d.ts +2 -2
- package/api/types/GetKnowledgeBaseFileResponseModel.d.ts +4 -0
- package/api/types/GetKnowledgeBaseFolderResponseModel.d.ts +13 -0
- package/api/types/GetKnowledgeBaseFolderResponseModel.js +3 -0
- package/api/types/GetKnowledgeBaseListResponseModelDocumentsItem.d.ts +4 -1
- package/api/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +2 -0
- package/api/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +12 -0
- package/api/types/GetKnowledgeBaseSummaryFolderResponseModel.js +3 -0
- package/api/types/GetKnowledgeBaseSummaryFolderResponseModelDependentAgentsItem.d.ts +10 -0
- package/api/types/GetKnowledgeBaseSummaryFolderResponseModelDependentAgentsItem.js +3 -0
- package/api/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +2 -0
- package/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +2 -0
- package/api/types/GetKnowledgeBaseTextResponseModel.d.ts +4 -0
- package/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +5 -1
- package/api/types/GetOrCreateRagIndexRequestModel.d.ts +9 -0
- package/api/types/GetOrCreateRagIndexRequestModel.js +3 -0
- package/api/types/GetVoicesV2Response.d.ts +4 -0
- package/api/types/InvoiceResponse.d.ts +1 -1
- package/api/types/KnowledgeBaseDocumentType.d.ts +1 -0
- package/api/types/KnowledgeBaseDocumentType.js +1 -0
- package/api/types/KnowledgeBaseFolderPathSegmentResponseModel.d.ts +4 -0
- package/api/types/KnowledgeBaseFolderPathSegmentResponseModel.js +3 -0
- package/api/types/KnowledgeBaseSummaryBatchSuccessfulResponseModel.d.ts +4 -0
- package/api/types/KnowledgeBaseSummaryBatchSuccessfulResponseModel.js +3 -0
- package/api/types/KnowledgeBaseSummaryBatchSuccessfulResponseModelData.d.ts +16 -0
- package/api/types/KnowledgeBaseSummaryBatchSuccessfulResponseModelData.js +3 -0
- package/api/types/MultipartMusicResponse.d.ts +1 -1
- package/api/types/PendingSubscriptionSwitchResponseModel.d.ts +1 -1
- package/api/types/PodcastTextSource.d.ts +2 -0
- package/api/types/PodcastUrlSource.d.ts +2 -0
- package/api/types/RagConfig.d.ts +2 -0
- package/api/types/RagConfigWorkflowOverride.d.ts +2 -0
- package/api/types/RagIndexBatchSuccessfulResponseModel.d.ts +4 -0
- package/api/types/RagIndexBatchSuccessfulResponseModel.js +3 -0
- package/api/types/RagIndexStatus.d.ts +1 -0
- package/api/types/RagIndexStatus.js +1 -0
- package/api/types/Subscription.d.ts +2 -2
- package/api/types/SubscriptionResponse.d.ts +2 -2
- package/api/types/SystemToolConfigInput.d.ts +2 -0
- package/api/types/SystemToolConfigOutput.d.ts +2 -0
- package/api/types/WhatsAppConversationInfo.d.ts +3 -1
- package/api/types/WhatsAppConversationInfoDirection.d.ts +6 -0
- package/api/types/WhatsAppConversationInfoDirection.js +9 -0
- package/api/types/WidgetConfig.d.ts +2 -0
- package/api/types/WidgetConfigResponse.d.ts +2 -0
- package/api/types/WordTimestamp.d.ts +5 -0
- package/api/types/WordTimestamp.js +3 -0
- package/api/types/WorkflowToolNestedToolsStepModelInput.d.ts +1 -1
- package/api/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +1 -1
- package/api/types/WorkflowToolNestedToolsStepModelOutput.d.ts +1 -1
- package/api/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +1 -1
- package/api/types/WorkspaceResourceType.d.ts +1 -0
- package/api/types/WorkspaceResourceType.js +1 -0
- package/api/types/index.d.ts +20 -8
- package/api/types/index.js +20 -8
- package/core/fetcher/BinaryResponse.d.ts +6 -7
- package/core/fetcher/Fetcher.d.ts +5 -1
- package/core/fetcher/Fetcher.js +2 -1
- package/core/fetcher/getResponseBody.js +18 -4
- package/core/fetcher/signals.d.ts +1 -1
- package/core/runtime/runtime.js +11 -10
- package/core/schemas/builders/object/object.js +14 -1
- package/dist/BaseClient.d.ts +5 -1
- package/dist/BaseClient.js +48 -0
- package/dist/Client.d.ts +76 -76
- package/dist/Client.js +29 -49
- package/dist/api/errors/BadRequestError.js +5 -1
- package/dist/api/errors/ConflictError.js +5 -1
- package/dist/api/errors/ForbiddenError.js +5 -1
- package/dist/api/errors/NotFoundError.js +5 -1
- package/dist/api/errors/TooEarlyError.js +5 -1
- package/dist/api/errors/UnauthorizedError.js +5 -1
- package/dist/api/errors/UnprocessableEntityError.js +5 -1
- package/dist/api/resources/audioIsolation/client/Client.d.ts +8 -8
- package/dist/api/resources/audioIsolation/client/Client.js +9 -35
- package/dist/api/resources/audioNative/client/Client.d.ts +12 -12
- package/dist/api/resources/audioNative/client/Client.js +13 -53
- package/dist/api/resources/conversationalAi/client/Client.d.ts +69 -69
- package/dist/api/resources/conversationalAi/client/Client.js +55 -109
- package/dist/api/resources/conversationalAi/resources/agents/client/Client.d.ts +36 -36
- package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +29 -153
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +9 -21
- package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +9 -21
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +9 -21
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.d.ts +11 -11
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +10 -22
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +9 -21
- package/dist/api/resources/conversationalAi/resources/analytics/client/Client.d.ts +9 -9
- package/dist/api/resources/conversationalAi/resources/analytics/client/Client.js +7 -6
- package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.js +9 -21
- package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +16 -16
- package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.js +17 -85
- package/dist/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +22 -22
- package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +19 -87
- package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.d.ts +7 -7
- package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +8 -20
- package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +9 -21
- package/dist/api/resources/conversationalAi/resources/dashboard/client/Client.d.ts +9 -9
- package/dist/api/resources/conversationalAi/resources/dashboard/client/Client.js +7 -6
- package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.d.ts +10 -10
- package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +11 -37
- package/dist/api/resources/conversationalAi/resources/index.d.ts +2 -0
- package/dist/api/resources/conversationalAi/resources/index.js +2 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.d.ts +36 -14
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +92 -23
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/requests/BodyComputeRagIndexesInBatchV1ConvaiKnowledgeBaseRagIndexPost.d.ts +15 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/requests/BodyComputeRagIndexesInBatchV1ConvaiKnowledgeBaseRagIndexPost.js +3 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.d.ts +9 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/index.js +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +9 -21
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +28 -25
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +32 -134
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFileDocumentV1ConvaiKnowledgeBaseFilePost.d.ts +2 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.d.ts +2 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +2 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +9 -21
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +3 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +7 -1
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/Client.d.ts +26 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/Client.js +130 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/requests/SummariesGetRequest.d.ts +8 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/requests/SummariesGetRequest.js +3 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/requests/index.js +2 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/index.d.ts +2 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/index.js +18 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/SummariesGetResponseValue.d.ts +10 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/SummariesGetResponseValue.js +3 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.d.ts +4 -1
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.d.ts +4 -1
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/types/KnowledgeBaseGetOrCreateRagIndexesResponseValue.d.ts +10 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/types/KnowledgeBaseGetOrCreateRagIndexesResponseValue.js +3 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/types/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/types/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.js +9 -21
- package/dist/api/resources/conversationalAi/resources/mcpServers/client/Client.d.ts +28 -28
- package/dist/api/resources/conversationalAi/resources/mcpServers/client/Client.js +21 -89
- package/dist/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.js +9 -21
- package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.d.ts +10 -10
- package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.js +11 -37
- package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolConfigs/client/Client.d.ts +14 -14
- package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolConfigs/client/Client.js +15 -69
- package/dist/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.js +9 -21
- package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.d.ts +16 -16
- package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +17 -85
- package/dist/api/resources/conversationalAi/resources/secrets/client/Client.d.ts +14 -14
- package/dist/api/resources/conversationalAi/resources/secrets/client/Client.js +15 -69
- package/dist/api/resources/conversationalAi/resources/settings/client/Client.d.ts +10 -10
- package/dist/api/resources/conversationalAi/resources/settings/client/Client.js +11 -37
- package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +9 -21
- package/dist/api/resources/conversationalAi/resources/tests/client/Client.d.ts +21 -21
- package/dist/api/resources/conversationalAi/resources/tests/client/Client.js +20 -102
- package/dist/api/resources/conversationalAi/resources/tests/resources/invocations/client/Client.d.ts +12 -12
- package/dist/api/resources/conversationalAi/resources/tests/resources/invocations/client/Client.js +13 -53
- package/dist/api/resources/conversationalAi/resources/tools/client/Client.d.ts +18 -18
- package/dist/api/resources/conversationalAi/resources/tools/client/Client.js +19 -101
- package/dist/api/resources/conversationalAi/resources/twilio/client/Client.d.ts +25 -8
- package/dist/api/resources/conversationalAi/resources/twilio/client/Client.js +67 -20
- package/dist/api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +16 -0
- package/dist/api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js +3 -0
- package/dist/api/resources/conversationalAi/resources/twilio/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/twilio/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/twilio/index.js +1 -0
- package/dist/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +5 -0
- package/dist/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +8 -0
- package/dist/api/resources/conversationalAi/resources/twilio/types/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/twilio/types/index.js +17 -0
- package/dist/api/resources/dubbing/client/Client.d.ts +23 -23
- package/dist/api/resources/dubbing/client/Client.js +18 -72
- package/dist/api/resources/dubbing/resources/audio/client/Client.d.ts +7 -7
- package/dist/api/resources/dubbing/resources/audio/client/Client.js +8 -20
- package/dist/api/resources/dubbing/resources/resource/client/Client.d.ts +28 -28
- package/dist/api/resources/dubbing/resources/resource/client/Client.js +23 -105
- package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.d.ts +8 -8
- package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.js +9 -21
- package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.d.ts +10 -10
- package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +11 -37
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.d.ts +15 -15
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +14 -54
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.d.ts +6 -0
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +6 -0
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.d.ts +8 -8
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +9 -21
- package/dist/api/resources/dubbing/resources/transcript/client/Client.d.ts +8 -8
- package/dist/api/resources/dubbing/resources/transcript/client/Client.js +9 -21
- package/dist/api/resources/forcedAlignment/client/Client.d.ts +8 -8
- package/dist/api/resources/forcedAlignment/client/Client.js +9 -21
- package/dist/api/resources/history/client/Client.d.ts +14 -14
- package/dist/api/resources/history/client/Client.js +15 -83
- package/dist/api/resources/models/client/Client.d.ts +8 -8
- package/dist/api/resources/models/client/Client.js +9 -21
- package/dist/api/resources/music/client/Client.d.ts +13 -13
- package/dist/api/resources/music/client/Client.js +15 -66
- package/dist/api/resources/music/client/requests/BodyComposeMusicV1MusicPost.d.ts +2 -0
- package/dist/api/resources/music/client/requests/BodyComposeMusicWithADetailedResponseV1MusicDetailedPost.d.ts +4 -0
- package/dist/api/resources/music/client/requests/BodyStemSeparationV1MusicStemSeparationPost.d.ts +2 -0
- package/dist/api/resources/music/resources/compositionPlan/client/Client.d.ts +8 -8
- package/dist/api/resources/music/resources/compositionPlan/client/Client.js +9 -21
- package/dist/api/resources/pronunciationDictionaries/client/Client.d.ts +20 -20
- package/dist/api/resources/pronunciationDictionaries/client/Client.js +19 -101
- package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.d.ts +10 -10
- package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +11 -37
- package/dist/api/resources/samples/client/Client.d.ts +8 -8
- package/dist/api/resources/samples/client/Client.js +9 -21
- package/dist/api/resources/serviceAccounts/client/Client.d.ts +11 -11
- package/dist/api/resources/serviceAccounts/client/Client.js +10 -22
- package/dist/api/resources/serviceAccounts/resources/apiKeys/client/Client.d.ts +16 -16
- package/dist/api/resources/serviceAccounts/resources/apiKeys/client/Client.js +17 -71
- package/dist/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.d.ts +1 -1
- package/dist/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.d.ts +1 -1
- package/dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissions.d.ts +1 -1
- package/dist/api/resources/serviceAccounts/resources/apiKeys/types/{BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.d.ts → BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.d.ts} +2 -2
- package/{api/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.js → dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.js} +2 -2
- package/dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissions.d.ts +1 -1
- package/dist/api/resources/serviceAccounts/resources/apiKeys/types/{BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.d.ts → BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.d.ts} +2 -2
- package/{api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.js → dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.js} +2 -2
- package/dist/api/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +2 -2
- package/dist/api/resources/serviceAccounts/resources/apiKeys/types/index.js +2 -2
- package/dist/api/resources/speechToSpeech/client/Client.d.ts +8 -8
- package/dist/api/resources/speechToSpeech/client/Client.js +9 -35
- package/dist/api/resources/speechToText/client/Client.d.ts +11 -11
- package/dist/api/resources/speechToText/client/Client.js +10 -22
- package/dist/api/resources/speechToText/resources/transcripts/client/Client.d.ts +10 -10
- package/dist/api/resources/speechToText/resources/transcripts/client/Client.js +11 -37
- package/dist/api/resources/studio/client/Client.d.ts +12 -11
- package/dist/api/resources/studio/client/Client.js +11 -22
- package/dist/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +1 -0
- package/dist/api/resources/studio/resources/projects/client/Client.d.ts +30 -30
- package/dist/api/resources/studio/resources/projects/client/Client.js +23 -105
- package/dist/api/resources/studio/resources/projects/client/requests/BodyCreateStudioProjectV1StudioProjectsPost.d.ts +7 -1
- package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.d.ts +21 -21
- package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.js +20 -102
- package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.d.ts +11 -11
- package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +12 -52
- package/dist/api/resources/studio/resources/projects/resources/content/client/Client.d.ts +8 -8
- package/dist/api/resources/studio/resources/projects/resources/content/client/Client.js +9 -21
- package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.d.ts +8 -8
- package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +9 -21
- package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.d.ts +12 -12
- package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +13 -67
- package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.d.ts +1 -1
- package/dist/api/resources/studio/types/{BodyCreatePodcastV1StudioPodcastsPostSourceItem.d.ts → BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.d.ts} +2 -2
- package/dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.js +3 -0
- package/dist/api/resources/studio/types/index.d.ts +1 -1
- package/dist/api/resources/studio/types/index.js +1 -1
- package/dist/api/resources/textToDialogue/client/Client.d.ts +11 -11
- package/dist/api/resources/textToDialogue/client/Client.js +12 -66
- package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueFullWithTimestamps.d.ts +1 -1
- package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.d.ts +1 -1
- package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.d.ts +1 -1
- package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueStreamWithTimestamps.d.ts +1 -1
- package/dist/api/resources/textToDialogue/types/BodyTextToDialogueFullWithTimestampsApplyTextNormalization.d.ts +1 -1
- package/dist/api/resources/textToDialogue/types/BodyTextToDialogueFullWithTimestampsApplyTextNormalization.js +1 -1
- package/dist/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPostApplyTextNormalization.d.ts +1 -1
- package/dist/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPostApplyTextNormalization.js +1 -1
- package/dist/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceV1TextToDialoguePostApplyTextNormalization.d.ts +1 -1
- package/dist/api/resources/textToDialogue/types/BodyTextToDialogueMultiVoiceV1TextToDialoguePostApplyTextNormalization.js +1 -1
- package/dist/api/resources/textToDialogue/types/BodyTextToDialogueStreamWithTimestampsApplyTextNormalization.d.ts +1 -1
- package/dist/api/resources/textToDialogue/types/BodyTextToDialogueStreamWithTimestampsApplyTextNormalization.js +1 -1
- package/dist/api/resources/textToSoundEffects/client/Client.d.ts +7 -7
- package/dist/api/resources/textToSoundEffects/client/Client.js +8 -20
- package/dist/api/resources/textToSpeech/client/Client.d.ts +11 -11
- package/dist/api/resources/textToSpeech/client/Client.js +12 -66
- package/dist/api/resources/textToSpeech/client/requests/BodyTextToSpeechFull.d.ts +1 -1
- package/dist/api/resources/textToSpeech/client/requests/BodyTextToSpeechFullWithTimestamps.d.ts +1 -1
- package/dist/api/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.d.ts +1 -1
- package/dist/api/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.d.ts +1 -1
- package/dist/api/resources/textToSpeech/types/BodyTextToSpeechFullApplyTextNormalization.d.ts +1 -1
- package/dist/api/resources/textToSpeech/types/BodyTextToSpeechFullApplyTextNormalization.js +1 -1
- package/dist/api/resources/textToSpeech/types/BodyTextToSpeechFullWithTimestampsApplyTextNormalization.d.ts +1 -1
- package/dist/api/resources/textToSpeech/types/BodyTextToSpeechFullWithTimestampsApplyTextNormalization.js +1 -1
- package/dist/api/resources/textToSpeech/types/BodyTextToSpeechStreamApplyTextNormalization.d.ts +1 -1
- package/dist/api/resources/textToSpeech/types/BodyTextToSpeechStreamApplyTextNormalization.js +1 -1
- package/dist/api/resources/textToSpeech/types/BodyTextToSpeechStreamWithTimestampsApplyTextNormalization.d.ts +1 -1
- package/dist/api/resources/textToSpeech/types/BodyTextToSpeechStreamWithTimestampsApplyTextNormalization.js +1 -1
- package/dist/api/resources/textToVoice/client/Client.d.ts +17 -17
- package/dist/api/resources/textToVoice/client/Client.js +16 -70
- package/dist/api/resources/textToVoice/resources/preview/client/Client.d.ts +7 -7
- package/dist/api/resources/textToVoice/resources/preview/client/Client.js +8 -20
- package/dist/api/resources/tokens/client/Client.d.ts +9 -9
- package/dist/api/resources/tokens/client/Client.js +7 -6
- package/dist/api/resources/tokens/resources/singleUse/client/Client.d.ts +8 -8
- package/dist/api/resources/tokens/resources/singleUse/client/Client.js +9 -21
- package/dist/api/resources/usage/client/Client.d.ts +8 -8
- package/dist/api/resources/usage/client/Client.js +9 -21
- package/dist/api/resources/user/client/Client.d.ts +11 -11
- package/dist/api/resources/user/client/Client.js +10 -22
- package/dist/api/resources/user/resources/subscription/client/Client.d.ts +8 -8
- package/dist/api/resources/user/resources/subscription/client/Client.js +9 -21
- package/dist/api/resources/voices/client/Client.d.ts +34 -34
- package/dist/api/resources/voices/client/Client.js +27 -137
- package/dist/api/resources/voices/client/requests/VoicesSearchRequest.d.ts +2 -2
- package/dist/api/resources/voices/resources/ivc/client/Client.d.ts +8 -8
- package/dist/api/resources/voices/resources/ivc/client/Client.js +9 -21
- package/dist/api/resources/voices/resources/pvc/client/Client.d.ts +18 -18
- package/dist/api/resources/voices/resources/pvc/client/Client.js +15 -55
- package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.d.ts +21 -21
- package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.js +16 -56
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.d.ts +8 -8
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +9 -21
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.d.ts +13 -13
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +12 -38
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.d.ts +8 -8
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +9 -21
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.d.ts +8 -8
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +9 -21
- package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.d.ts +11 -11
- package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.js +10 -22
- package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.d.ts +10 -10
- package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +11 -37
- package/dist/api/resources/voices/resources/samples/client/Client.d.ts +9 -9
- package/dist/api/resources/voices/resources/samples/client/Client.js +7 -6
- package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.d.ts +7 -7
- package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.js +8 -20
- package/dist/api/resources/voices/resources/settings/client/Client.d.ts +12 -12
- package/dist/api/resources/voices/resources/settings/client/Client.js +13 -53
- package/dist/api/resources/webhooks/client/Client.d.ts +14 -14
- package/dist/api/resources/webhooks/client/Client.js +15 -69
- package/dist/api/resources/workspace/client/Client.d.ts +18 -18
- package/dist/api/resources/workspace/client/Client.js +10 -9
- package/dist/api/resources/workspace/resources/groups/client/Client.d.ts +11 -11
- package/dist/api/resources/workspace/resources/groups/client/Client.js +10 -22
- package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.d.ts +10 -10
- package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.js +11 -37
- package/dist/api/resources/workspace/resources/invites/client/Client.d.ts +12 -12
- package/dist/api/resources/workspace/resources/invites/client/Client.js +13 -53
- package/dist/api/resources/workspace/resources/members/client/Client.d.ts +8 -8
- package/dist/api/resources/workspace/resources/members/client/Client.js +9 -21
- package/dist/api/resources/workspace/resources/resources/client/Client.d.ts +12 -12
- package/dist/api/resources/workspace/resources/resources/client/Client.js +13 -53
- package/dist/api/types/AgentConfig.d.ts +2 -0
- package/dist/api/types/AgentConfigApiModelWorkflowOverrideInput.d.ts +2 -0
- package/dist/api/types/AgentConfigApiModelWorkflowOverrideOutput.d.ts +2 -0
- package/dist/api/types/BackupLlmDefault.d.ts +3 -1
- package/dist/api/types/BackupLlmDisabled.d.ts +3 -1
- package/dist/api/types/BackupLlmOverride.d.ts +1 -0
- package/dist/api/types/BatchCallDetailedResponse.d.ts +1 -0
- package/dist/api/types/BatchCallResponse.d.ts +1 -0
- package/dist/api/types/BatchCallWhatsAppParams.d.ts +1 -1
- package/dist/api/types/BatchFailureResponseModel.d.ts +5 -0
- package/dist/api/types/BatchFailureResponseModel.js +3 -0
- package/dist/api/types/BillingPeriod.d.ts +7 -0
- package/{api/types/ExtendedSubscriptionResponseModelBillingPeriod.js → dist/api/types/BillingPeriod.js} +2 -2
- package/dist/api/types/CharacterRefreshPeriod.d.ts +7 -0
- package/dist/api/types/{ExtendedSubscriptionResponseModelBillingPeriod.js → CharacterRefreshPeriod.js} +2 -2
- package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +14 -0
- package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js +3 -0
- package/dist/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -1
- package/dist/api/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +1 -1
- package/dist/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -1
- package/dist/api/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +1 -1
- package/dist/api/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.d.ts +0 -1
- package/dist/api/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.js +0 -1
- package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +7 -0
- package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js +3 -0
- package/{api/types/ConversationHistoryTranscriptToolCallCommonModel.d.ts → dist/api/types/ConversationHistoryTranscriptToolCallCommonModelInput.d.ts} +2 -2
- package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelInput.js +3 -0
- package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +16 -0
- package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js +3 -0
- package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelOutput.d.ts +9 -0
- package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelOutput.js +3 -0
- package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +16 -0
- package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +3 -0
- package/dist/api/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +1 -0
- package/dist/api/types/ConversationTokenDbModel.d.ts +2 -0
- package/dist/api/types/DetailedMusicResponse.d.ts +2 -0
- package/{api/types/DiscountResposneModel.d.ts → dist/api/types/DiscountResponseModel.d.ts} +1 -1
- package/dist/api/types/DiscountResponseModel.js +3 -0
- package/dist/api/types/DubbingResource.d.ts +2 -2
- package/dist/api/types/GetKnowledgeBaseFileResponseModel.d.ts +4 -0
- package/dist/api/types/GetKnowledgeBaseFolderResponseModel.d.ts +13 -0
- package/dist/api/types/GetKnowledgeBaseFolderResponseModel.js +3 -0
- package/dist/api/types/GetKnowledgeBaseListResponseModelDocumentsItem.d.ts +4 -1
- package/dist/api/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +2 -0
- package/dist/api/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +12 -0
- package/dist/api/types/GetKnowledgeBaseSummaryFolderResponseModel.js +3 -0
- package/dist/api/types/GetKnowledgeBaseSummaryFolderResponseModelDependentAgentsItem.d.ts +10 -0
- package/dist/api/types/GetKnowledgeBaseSummaryFolderResponseModelDependentAgentsItem.js +3 -0
- package/dist/api/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +2 -0
- package/dist/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +2 -0
- package/dist/api/types/GetKnowledgeBaseTextResponseModel.d.ts +4 -0
- package/dist/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +5 -1
- package/dist/api/types/GetOrCreateRagIndexRequestModel.d.ts +9 -0
- package/dist/api/types/GetOrCreateRagIndexRequestModel.js +3 -0
- package/dist/api/types/GetVoicesV2Response.d.ts +4 -0
- package/dist/api/types/InvoiceResponse.d.ts +1 -1
- package/dist/api/types/KnowledgeBaseDocumentType.d.ts +1 -0
- package/dist/api/types/KnowledgeBaseDocumentType.js +1 -0
- package/dist/api/types/KnowledgeBaseFolderPathSegmentResponseModel.d.ts +4 -0
- package/dist/api/types/KnowledgeBaseFolderPathSegmentResponseModel.js +3 -0
- package/dist/api/types/KnowledgeBaseSummaryBatchSuccessfulResponseModel.d.ts +4 -0
- package/dist/api/types/KnowledgeBaseSummaryBatchSuccessfulResponseModel.js +3 -0
- package/dist/api/types/KnowledgeBaseSummaryBatchSuccessfulResponseModelData.d.ts +16 -0
- package/dist/api/types/KnowledgeBaseSummaryBatchSuccessfulResponseModelData.js +3 -0
- package/dist/api/types/MultipartMusicResponse.d.ts +1 -1
- package/dist/api/types/PendingSubscriptionSwitchResponseModel.d.ts +1 -1
- package/dist/api/types/PodcastTextSource.d.ts +2 -0
- package/dist/api/types/PodcastUrlSource.d.ts +2 -0
- package/dist/api/types/RagConfig.d.ts +2 -0
- package/dist/api/types/RagConfigWorkflowOverride.d.ts +2 -0
- package/dist/api/types/RagIndexBatchSuccessfulResponseModel.d.ts +4 -0
- package/dist/api/types/RagIndexBatchSuccessfulResponseModel.js +3 -0
- package/dist/api/types/RagIndexStatus.d.ts +1 -0
- package/dist/api/types/RagIndexStatus.js +1 -0
- package/dist/api/types/Subscription.d.ts +2 -2
- package/dist/api/types/SubscriptionResponse.d.ts +2 -2
- package/dist/api/types/SystemToolConfigInput.d.ts +2 -0
- package/dist/api/types/SystemToolConfigOutput.d.ts +2 -0
- package/dist/api/types/WhatsAppConversationInfo.d.ts +3 -1
- package/dist/api/types/WhatsAppConversationInfoDirection.d.ts +6 -0
- package/dist/api/types/WhatsAppConversationInfoDirection.js +9 -0
- package/dist/api/types/WidgetConfig.d.ts +2 -0
- package/dist/api/types/WidgetConfigResponse.d.ts +2 -0
- package/dist/api/types/WordTimestamp.d.ts +5 -0
- package/dist/api/types/WordTimestamp.js +3 -0
- package/dist/api/types/WorkflowToolNestedToolsStepModelInput.d.ts +1 -1
- package/dist/api/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +1 -1
- package/dist/api/types/WorkflowToolNestedToolsStepModelOutput.d.ts +1 -1
- package/dist/api/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +1 -1
- package/dist/api/types/WorkspaceResourceType.d.ts +1 -0
- package/dist/api/types/WorkspaceResourceType.js +1 -0
- package/dist/api/types/index.d.ts +20 -8
- package/dist/api/types/index.js +20 -8
- package/dist/core/fetcher/BinaryResponse.d.ts +6 -7
- package/dist/core/fetcher/Fetcher.d.ts +5 -1
- package/dist/core/fetcher/Fetcher.js +2 -1
- package/dist/core/fetcher/getResponseBody.js +18 -4
- package/dist/core/fetcher/signals.d.ts +1 -1
- package/dist/core/runtime/runtime.js +11 -10
- package/dist/core/schemas/builders/object/object.js +14 -1
- package/dist/errors/ElevenLabsError.js +5 -1
- package/dist/errors/ElevenLabsTimeoutError.js +5 -1
- package/dist/errors/handleNonStatusCodeError.d.ts +2 -0
- package/dist/errors/handleNonStatusCodeError.js +65 -0
- package/dist/serialization/resources/conversationalAi/resources/index.d.ts +3 -0
- package/dist/serialization/resources/conversationalAi/resources/index.js +3 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/client/getOrCreateRagIndexes.d.ts +8 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/client/getOrCreateRagIndexes.js +40 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/client/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/client/index.js +41 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/client/requests/BodyComputeRagIndexesInBatchV1ConvaiKnowledgeBaseRagIndexPost.d.ts +10 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/client/requests/BodyComputeRagIndexesInBatchV1ConvaiKnowledgeBaseRagIndexPost.js +42 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/index.js +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.js +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.js +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/index.js +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +41 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/get.d.ts +8 -0
- package/{serialization/types/SubscriptionResponseModelCharacterRefreshPeriod.js → dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/get.js} +4 -3
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/index.js +37 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/index.js +18 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/SummariesGetResponseValue.d.ts +15 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/SummariesGetResponseValue.js +49 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.d.ts +5 -1
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.js +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.d.ts +5 -1
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.js +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/types/KnowledgeBaseGetOrCreateRagIndexesResponseValue.d.ts +15 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/types/KnowledgeBaseGetOrCreateRagIndexesResponseValue.js +49 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/types/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/types/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +15 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js +47 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/index.js +3 -1
- package/dist/serialization/resources/conversationalAi/resources/twilio/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/index.js +1 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +7 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +39 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/types/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/types/index.js +17 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.d.ts +3 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.js +3 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +3 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.js +3 -0
- package/dist/serialization/resources/music/client/requests/BodyComposeMusicV1MusicPost.d.ts +1 -0
- package/dist/serialization/resources/music/client/requests/BodyComposeMusicV1MusicPost.js +1 -0
- package/dist/serialization/resources/music/client/requests/BodyComposeMusicWithADetailedResponseV1MusicDetailedPost.d.ts +2 -0
- package/dist/serialization/resources/music/client/requests/BodyComposeMusicWithADetailedResponseV1MusicDetailedPost.js +2 -0
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissions.d.ts +2 -2
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissions.js +2 -2
- package/{serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.d.ts → dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.d.ts} +2 -2
- package/{serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.js → dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.js} +2 -2
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissions.d.ts +2 -2
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissions.js +2 -2
- package/{serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.d.ts → dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.d.ts} +2 -2
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/{BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.js → BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.js} +2 -2
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +2 -2
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/index.js +2 -2
- package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.d.ts +2 -2
- package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.js +2 -2
- package/dist/serialization/resources/studio/types/{BodyCreatePodcastV1StudioPodcastsPostSourceItem.d.ts → BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.d.ts} +3 -3
- package/{serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.js → dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.js} +2 -2
- package/dist/serialization/resources/studio/types/index.d.ts +1 -1
- package/dist/serialization/resources/studio/types/index.js +1 -1
- package/dist/serialization/types/AgentConfig.d.ts +1 -0
- package/dist/serialization/types/AgentConfig.js +1 -0
- package/dist/serialization/types/AgentConfigApiModelWorkflowOverrideInput.d.ts +1 -0
- package/dist/serialization/types/AgentConfigApiModelWorkflowOverrideInput.js +1 -0
- package/dist/serialization/types/AgentConfigApiModelWorkflowOverrideOutput.d.ts +1 -0
- package/dist/serialization/types/AgentConfigApiModelWorkflowOverrideOutput.js +1 -0
- package/dist/serialization/types/BackupLlmDefault.d.ts +3 -1
- package/dist/serialization/types/BackupLlmDefault.js +3 -1
- package/dist/serialization/types/BackupLlmDisabled.d.ts +3 -1
- package/dist/serialization/types/BackupLlmDisabled.js +3 -1
- package/dist/serialization/types/BackupLlmOverride.d.ts +1 -0
- package/dist/serialization/types/BackupLlmOverride.js +1 -0
- package/dist/serialization/types/BatchCallDetailedResponse.d.ts +1 -0
- package/dist/serialization/types/BatchCallDetailedResponse.js +1 -0
- package/dist/serialization/types/BatchCallResponse.d.ts +1 -0
- package/dist/serialization/types/BatchCallResponse.js +1 -0
- package/dist/serialization/types/BatchCallWhatsAppParams.d.ts +1 -1
- package/dist/serialization/types/BatchCallWhatsAppParams.js +1 -1
- package/dist/serialization/types/BatchFailureResponseModel.d.ts +11 -0
- package/dist/serialization/types/BatchFailureResponseModel.js +43 -0
- package/dist/serialization/types/BillingPeriod.d.ts +7 -0
- package/dist/serialization/types/{SubscriptionResponseModelBillingPeriod.js → BillingPeriod.js} +2 -2
- package/dist/serialization/types/CharacterRefreshPeriod.d.ts +7 -0
- package/{serialization/types/SubscriptionResponseModelBillingPeriod.js → dist/serialization/types/CharacterRefreshPeriod.js} +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +20 -0
- package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js +52 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +2 -1
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.js +2 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +2 -1
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.js +2 -0
- package/dist/serialization/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.d.ts +1 -1
- package/dist/serialization/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.js +1 -1
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +13 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js +45 -0
- package/dist/serialization/types/{ConversationHistoryTranscriptToolCallCommonModel.d.ts → ConversationHistoryTranscriptToolCallCommonModelInput.d.ts} +4 -4
- package/{serialization/types/ConversationHistoryTranscriptToolCallCommonModel.js → dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInput.js} +4 -4
- package/{serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts → dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts} +7 -3
- package/dist/serialization/types/{ConversationHistoryTranscriptToolCallCommonModelToolDetails.js → ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js} +4 -2
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutput.d.ts +16 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutput.js +48 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +23 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +53 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +1 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallWebhookDetails.js +1 -0
- package/dist/serialization/types/ConversationTokenDbModel.d.ts +1 -0
- package/dist/serialization/types/ConversationTokenDbModel.js +1 -0
- package/dist/serialization/types/DetailedMusicResponse.d.ts +2 -0
- package/dist/serialization/types/DetailedMusicResponse.js +2 -0
- package/{serialization/types/DiscountResposneModel.d.ts → dist/serialization/types/DiscountResponseModel.d.ts} +2 -2
- package/dist/serialization/types/{DiscountResposneModel.js → DiscountResponseModel.js} +2 -2
- package/dist/serialization/types/DubbingResource.d.ts +2 -2
- package/dist/serialization/types/DubbingResource.js +2 -2
- package/dist/serialization/types/GetKnowledgeBaseFileResponseModel.d.ts +3 -0
- package/dist/serialization/types/GetKnowledgeBaseFileResponseModel.js +3 -0
- package/dist/serialization/types/GetKnowledgeBaseFolderResponseModel.d.ts +20 -0
- package/dist/serialization/types/GetKnowledgeBaseFolderResponseModel.js +52 -0
- package/dist/serialization/types/GetKnowledgeBaseListResponseModelDocumentsItem.d.ts +5 -1
- package/dist/serialization/types/GetKnowledgeBaseListResponseModelDocumentsItem.js +2 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +1 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.js +1 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +20 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.js +52 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryFolderResponseModelDependentAgentsItem.d.ts +15 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryFolderResponseModelDependentAgentsItem.js +49 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +1 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.js +1 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +1 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.js +1 -0
- package/dist/serialization/types/GetKnowledgeBaseTextResponseModel.d.ts +3 -0
- package/dist/serialization/types/GetKnowledgeBaseTextResponseModel.js +3 -0
- package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +4 -1
- package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.js +4 -1
- package/dist/serialization/types/GetOrCreateRagIndexRequestModel.d.ts +12 -0
- package/dist/serialization/types/GetOrCreateRagIndexRequestModel.js +44 -0
- package/dist/serialization/types/InvoiceResponse.d.ts +2 -2
- package/dist/serialization/types/InvoiceResponse.js +2 -2
- package/dist/serialization/types/KnowledgeBaseDocumentType.d.ts +1 -1
- package/dist/serialization/types/KnowledgeBaseDocumentType.js +1 -1
- package/dist/serialization/types/KnowledgeBaseFolderPathSegmentResponseModel.d.ts +10 -0
- package/dist/serialization/types/{SubscriptionResponseModelCharacterRefreshPeriod.js → KnowledgeBaseFolderPathSegmentResponseModel.js} +5 -2
- package/dist/serialization/types/KnowledgeBaseSummaryBatchSuccessfulResponseModel.d.ts +10 -0
- package/dist/serialization/types/KnowledgeBaseSummaryBatchSuccessfulResponseModel.js +42 -0
- package/dist/serialization/types/KnowledgeBaseSummaryBatchSuccessfulResponseModelData.d.ts +23 -0
- package/dist/serialization/types/KnowledgeBaseSummaryBatchSuccessfulResponseModelData.js +53 -0
- package/dist/serialization/types/PendingSubscriptionSwitchResponseModel.d.ts +2 -2
- package/dist/serialization/types/PendingSubscriptionSwitchResponseModel.js +2 -2
- package/dist/serialization/types/PodcastTextSource.d.ts +1 -0
- package/dist/serialization/types/PodcastTextSource.js +1 -0
- package/dist/serialization/types/PodcastUrlSource.d.ts +1 -0
- package/dist/serialization/types/PodcastUrlSource.js +1 -0
- package/dist/serialization/types/RagConfig.d.ts +1 -0
- package/dist/serialization/types/RagConfig.js +1 -0
- package/dist/serialization/types/RagConfigWorkflowOverride.d.ts +1 -0
- package/dist/serialization/types/RagConfigWorkflowOverride.js +1 -0
- package/dist/serialization/types/RagIndexBatchSuccessfulResponseModel.d.ts +10 -0
- package/dist/serialization/types/RagIndexBatchSuccessfulResponseModel.js +42 -0
- package/dist/serialization/types/RagIndexStatus.d.ts +1 -1
- package/dist/serialization/types/RagIndexStatus.js +1 -0
- package/dist/serialization/types/Subscription.d.ts +4 -4
- package/dist/serialization/types/Subscription.js +4 -4
- package/dist/serialization/types/SubscriptionResponse.d.ts +4 -4
- package/dist/serialization/types/SubscriptionResponse.js +4 -4
- package/dist/serialization/types/SystemToolConfigInput.d.ts +1 -0
- package/dist/serialization/types/SystemToolConfigInput.js +1 -0
- package/dist/serialization/types/SystemToolConfigOutput.d.ts +1 -0
- package/dist/serialization/types/SystemToolConfigOutput.js +1 -0
- package/dist/serialization/types/WhatsAppConversationInfo.d.ts +3 -1
- package/dist/serialization/types/WhatsAppConversationInfo.js +3 -1
- package/dist/serialization/types/WhatsAppConversationInfoDirection.d.ts +7 -0
- package/dist/serialization/types/{ExtendedSubscriptionResponseModelBillingPeriod.js → WhatsAppConversationInfoDirection.js} +2 -2
- package/dist/serialization/types/WidgetConfig.d.ts +1 -0
- package/dist/serialization/types/WidgetConfig.js +1 -0
- package/dist/serialization/types/WidgetConfigResponse.d.ts +1 -0
- package/dist/serialization/types/WidgetConfigResponse.js +1 -0
- package/dist/serialization/types/WordTimestamp.d.ts +11 -0
- package/dist/serialization/types/{PendingSubscriptionSwitchResponseModelNextBillingPeriod.js → WordTimestamp.js} +6 -2
- package/dist/serialization/types/WorkflowToolNestedToolsStepModelInput.d.ts +2 -2
- package/dist/serialization/types/WorkflowToolNestedToolsStepModelInput.js +2 -2
- package/dist/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +2 -1
- package/dist/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.js +2 -0
- package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutput.d.ts +2 -2
- package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutput.js +2 -2
- package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +2 -1
- package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.js +2 -0
- package/dist/serialization/types/WorkspaceResourceType.d.ts +1 -1
- package/dist/serialization/types/WorkspaceResourceType.js +1 -0
- package/dist/serialization/types/index.d.ts +20 -8
- package/dist/serialization/types/index.js +20 -8
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/wrapper/ElevenLabsClient.d.ts +1 -1
- package/dist/wrapper/music.d.ts +4 -4
- package/dist/wrapper/music.js +1 -1
- package/dist/wrapper/realtime/scribe.d.ts +2 -2
- package/dist/wrapper/realtime/scribe.js +3 -0
- package/dist/wrapper/speechToText.d.ts +1 -1
- package/dist/wrapper/speechToText.js +1 -1
- package/dist/wrapper/webhooks.d.ts +1 -1
- package/dist/wrapper/webhooks.js +1 -1
- package/errors/ElevenLabsError.js +5 -1
- package/errors/ElevenLabsTimeoutError.js +5 -1
- package/errors/handleNonStatusCodeError.d.ts +2 -0
- package/errors/handleNonStatusCodeError.js +65 -0
- package/package.json +1 -1
- package/reference.md +451 -247
- package/serialization/resources/conversationalAi/resources/index.d.ts +3 -0
- package/serialization/resources/conversationalAi/resources/index.js +3 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/client/getOrCreateRagIndexes.d.ts +8 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/client/getOrCreateRagIndexes.js +40 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/client/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/client/index.js +41 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/client/requests/BodyComputeRagIndexesInBatchV1ConvaiKnowledgeBaseRagIndexPost.d.ts +10 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/client/requests/BodyComputeRagIndexesInBatchV1ConvaiKnowledgeBaseRagIndexPost.js +42 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/index.js +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.js +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.js +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/index.js +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +41 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/get.d.ts +8 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/get.js +40 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/index.js +37 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/index.js +18 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/SummariesGetResponseValue.d.ts +15 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/SummariesGetResponseValue.js +49 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.d.ts +5 -1
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.js +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.d.ts +5 -1
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.js +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/types/KnowledgeBaseGetOrCreateRagIndexesResponseValue.d.ts +15 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/types/KnowledgeBaseGetOrCreateRagIndexesResponseValue.js +49 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/types/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/types/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +15 -0
- package/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js +47 -0
- package/serialization/resources/conversationalAi/resources/twilio/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/twilio/client/requests/index.js +3 -1
- package/serialization/resources/conversationalAi/resources/twilio/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/twilio/index.js +1 -0
- package/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +7 -0
- package/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +39 -0
- package/serialization/resources/conversationalAi/resources/twilio/types/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/twilio/types/index.js +17 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.d.ts +3 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyCreateANewSpeakerV1DubbingResourceDubbingIdSpeakerPost.js +3 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +3 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.js +3 -0
- package/serialization/resources/music/client/requests/BodyComposeMusicV1MusicPost.d.ts +1 -0
- package/serialization/resources/music/client/requests/BodyComposeMusicV1MusicPost.js +1 -0
- package/serialization/resources/music/client/requests/BodyComposeMusicWithADetailedResponseV1MusicDetailedPost.d.ts +2 -0
- package/serialization/resources/music/client/requests/BodyComposeMusicWithADetailedResponseV1MusicDetailedPost.js +2 -0
- package/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissions.d.ts +2 -2
- package/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissions.js +2 -2
- package/{dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.d.ts → serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.d.ts} +2 -2
- package/{dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsItem.js → serialization/resources/serviceAccounts/resources/apiKeys/types/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPostPermissionsZeroItem.js} +2 -2
- package/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissions.d.ts +2 -2
- package/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissions.js +2 -2
- package/{dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.d.ts → serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.d.ts} +2 -2
- package/serialization/resources/serviceAccounts/resources/apiKeys/types/{BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsItem.js → BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchPermissionsZeroItem.js} +2 -2
- package/serialization/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +2 -2
- package/serialization/resources/serviceAccounts/resources/apiKeys/types/index.js +2 -2
- package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.d.ts +2 -2
- package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.js +2 -2
- package/serialization/resources/studio/types/{BodyCreatePodcastV1StudioPodcastsPostSourceItem.d.ts → BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.d.ts} +3 -3
- package/{dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.js → serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.js} +2 -2
- package/serialization/resources/studio/types/index.d.ts +1 -1
- package/serialization/resources/studio/types/index.js +1 -1
- package/serialization/types/AgentConfig.d.ts +1 -0
- package/serialization/types/AgentConfig.js +1 -0
- package/serialization/types/AgentConfigApiModelWorkflowOverrideInput.d.ts +1 -0
- package/serialization/types/AgentConfigApiModelWorkflowOverrideInput.js +1 -0
- package/serialization/types/AgentConfigApiModelWorkflowOverrideOutput.d.ts +1 -0
- package/serialization/types/AgentConfigApiModelWorkflowOverrideOutput.js +1 -0
- package/serialization/types/BackupLlmDefault.d.ts +3 -1
- package/serialization/types/BackupLlmDefault.js +3 -1
- package/serialization/types/BackupLlmDisabled.d.ts +3 -1
- package/serialization/types/BackupLlmDisabled.js +3 -1
- package/serialization/types/BackupLlmOverride.d.ts +1 -0
- package/serialization/types/BackupLlmOverride.js +1 -0
- package/serialization/types/BatchCallDetailedResponse.d.ts +1 -0
- package/serialization/types/BatchCallDetailedResponse.js +1 -0
- package/serialization/types/BatchCallResponse.d.ts +1 -0
- package/serialization/types/BatchCallResponse.js +1 -0
- package/serialization/types/BatchCallWhatsAppParams.d.ts +1 -1
- package/serialization/types/BatchCallWhatsAppParams.js +1 -1
- package/serialization/types/BatchFailureResponseModel.d.ts +11 -0
- package/serialization/types/BatchFailureResponseModel.js +43 -0
- package/serialization/types/BillingPeriod.d.ts +7 -0
- package/serialization/types/{ExtendedSubscriptionResponseModelBillingPeriod.js → BillingPeriod.js} +2 -2
- package/serialization/types/CharacterRefreshPeriod.d.ts +7 -0
- package/serialization/types/CharacterRefreshPeriod.js +39 -0
- package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +20 -0
- package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js +52 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +2 -2
- package/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +2 -2
- package/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +2 -1
- package/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.js +2 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +2 -2
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +2 -2
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +2 -1
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.js +2 -0
- package/serialization/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.d.ts +1 -1
- package/serialization/types/ConversationHistoryTranscriptOtherToolsResultCommonModelType.js +1 -1
- package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +13 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js +45 -0
- package/serialization/types/{ConversationHistoryTranscriptToolCallCommonModel.d.ts → ConversationHistoryTranscriptToolCallCommonModelInput.d.ts} +4 -4
- package/{dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModel.js → serialization/types/ConversationHistoryTranscriptToolCallCommonModelInput.js} +4 -4
- package/{dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts → serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts} +7 -3
- package/serialization/types/{ConversationHistoryTranscriptToolCallCommonModelToolDetails.js → ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js} +4 -2
- package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutput.d.ts +16 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutput.js +48 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +23 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +53 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +1 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallWebhookDetails.js +1 -0
- package/serialization/types/ConversationTokenDbModel.d.ts +1 -0
- package/serialization/types/ConversationTokenDbModel.js +1 -0
- package/serialization/types/DetailedMusicResponse.d.ts +2 -0
- package/serialization/types/DetailedMusicResponse.js +2 -0
- package/{dist/serialization/types/DiscountResposneModel.d.ts → serialization/types/DiscountResponseModel.d.ts} +2 -2
- package/serialization/types/{DiscountResposneModel.js → DiscountResponseModel.js} +2 -2
- package/serialization/types/DubbingResource.d.ts +2 -2
- package/serialization/types/DubbingResource.js +2 -2
- package/serialization/types/GetKnowledgeBaseFileResponseModel.d.ts +3 -0
- package/serialization/types/GetKnowledgeBaseFileResponseModel.js +3 -0
- package/serialization/types/GetKnowledgeBaseFolderResponseModel.d.ts +20 -0
- package/serialization/types/GetKnowledgeBaseFolderResponseModel.js +52 -0
- package/serialization/types/GetKnowledgeBaseListResponseModelDocumentsItem.d.ts +5 -1
- package/serialization/types/GetKnowledgeBaseListResponseModelDocumentsItem.js +2 -0
- package/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +1 -0
- package/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.js +1 -0
- package/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +20 -0
- package/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.js +52 -0
- package/serialization/types/GetKnowledgeBaseSummaryFolderResponseModelDependentAgentsItem.d.ts +15 -0
- package/serialization/types/GetKnowledgeBaseSummaryFolderResponseModelDependentAgentsItem.js +49 -0
- package/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +1 -0
- package/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.js +1 -0
- package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +1 -0
- package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.js +1 -0
- package/serialization/types/GetKnowledgeBaseTextResponseModel.d.ts +3 -0
- package/serialization/types/GetKnowledgeBaseTextResponseModel.js +3 -0
- package/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +4 -1
- package/serialization/types/GetKnowledgeBaseUrlResponseModel.js +4 -1
- package/serialization/types/GetOrCreateRagIndexRequestModel.d.ts +12 -0
- package/serialization/types/GetOrCreateRagIndexRequestModel.js +44 -0
- package/serialization/types/InvoiceResponse.d.ts +2 -2
- package/serialization/types/InvoiceResponse.js +2 -2
- package/serialization/types/KnowledgeBaseDocumentType.d.ts +1 -1
- package/serialization/types/KnowledgeBaseDocumentType.js +1 -1
- package/serialization/types/KnowledgeBaseFolderPathSegmentResponseModel.d.ts +10 -0
- package/serialization/types/KnowledgeBaseFolderPathSegmentResponseModel.js +42 -0
- package/serialization/types/KnowledgeBaseSummaryBatchSuccessfulResponseModel.d.ts +10 -0
- package/serialization/types/KnowledgeBaseSummaryBatchSuccessfulResponseModel.js +42 -0
- package/serialization/types/KnowledgeBaseSummaryBatchSuccessfulResponseModelData.d.ts +23 -0
- package/serialization/types/KnowledgeBaseSummaryBatchSuccessfulResponseModelData.js +53 -0
- package/serialization/types/PendingSubscriptionSwitchResponseModel.d.ts +2 -2
- package/serialization/types/PendingSubscriptionSwitchResponseModel.js +2 -2
- package/serialization/types/PodcastTextSource.d.ts +1 -0
- package/serialization/types/PodcastTextSource.js +1 -0
- package/serialization/types/PodcastUrlSource.d.ts +1 -0
- package/serialization/types/PodcastUrlSource.js +1 -0
- package/serialization/types/RagConfig.d.ts +1 -0
- package/serialization/types/RagConfig.js +1 -0
- package/serialization/types/RagConfigWorkflowOverride.d.ts +1 -0
- package/serialization/types/RagConfigWorkflowOverride.js +1 -0
- package/serialization/types/RagIndexBatchSuccessfulResponseModel.d.ts +10 -0
- package/serialization/types/RagIndexBatchSuccessfulResponseModel.js +42 -0
- package/serialization/types/RagIndexStatus.d.ts +1 -1
- package/serialization/types/RagIndexStatus.js +1 -0
- package/serialization/types/Subscription.d.ts +4 -4
- package/serialization/types/Subscription.js +4 -4
- package/serialization/types/SubscriptionResponse.d.ts +4 -4
- package/serialization/types/SubscriptionResponse.js +4 -4
- package/serialization/types/SystemToolConfigInput.d.ts +1 -0
- package/serialization/types/SystemToolConfigInput.js +1 -0
- package/serialization/types/SystemToolConfigOutput.d.ts +1 -0
- package/serialization/types/SystemToolConfigOutput.js +1 -0
- package/serialization/types/WhatsAppConversationInfo.d.ts +3 -1
- package/serialization/types/WhatsAppConversationInfo.js +3 -1
- package/serialization/types/WhatsAppConversationInfoDirection.d.ts +7 -0
- package/serialization/types/WhatsAppConversationInfoDirection.js +39 -0
- package/serialization/types/WidgetConfig.d.ts +1 -0
- package/serialization/types/WidgetConfig.js +1 -0
- package/serialization/types/WidgetConfigResponse.d.ts +1 -0
- package/serialization/types/WidgetConfigResponse.js +1 -0
- package/serialization/types/WordTimestamp.d.ts +11 -0
- package/{dist/serialization/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.js → serialization/types/WordTimestamp.js} +6 -2
- package/serialization/types/WorkflowToolNestedToolsStepModelInput.d.ts +2 -2
- package/serialization/types/WorkflowToolNestedToolsStepModelInput.js +2 -2
- package/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +2 -1
- package/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.js +2 -0
- package/serialization/types/WorkflowToolNestedToolsStepModelOutput.d.ts +2 -2
- package/serialization/types/WorkflowToolNestedToolsStepModelOutput.js +2 -2
- package/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +2 -1
- package/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.js +2 -0
- package/serialization/types/WorkspaceResourceType.d.ts +1 -1
- package/serialization/types/WorkspaceResourceType.js +1 -0
- package/serialization/types/index.d.ts +20 -8
- package/serialization/types/index.js +20 -8
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/wrapper/ElevenLabsClient.d.ts +1 -1
- package/wrapper/music.d.ts +4 -4
- package/wrapper/music.js +1 -1
- package/wrapper/realtime/scribe.d.ts +2 -2
- package/wrapper/realtime/scribe.js +3 -0
- package/wrapper/speechToText.d.ts +1 -1
- package/wrapper/speechToText.js +1 -1
- package/wrapper/webhooks.d.ts +1 -1
- package/wrapper/webhooks.js +1 -1
- package/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +0 -13
- package/api/types/ExtendedSubscriptionResponseModelBillingPeriod.d.ts +0 -7
- package/api/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -7
- package/api/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.js +0 -10
- package/api/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.d.ts +0 -8
- package/api/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.js +0 -11
- package/api/types/SubscriptionResponseModelBillingPeriod.d.ts +0 -7
- package/api/types/SubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -7
- package/api/types/SubscriptionResponseModelCharacterRefreshPeriod.js +0 -10
- package/core/fetcher/ResponseWithBody.d.ts +0 -4
- package/core/fetcher/ResponseWithBody.js +0 -6
- package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +0 -13
- package/dist/api/types/ExtendedSubscriptionResponseModelBillingPeriod.d.ts +0 -7
- package/dist/api/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -7
- package/dist/api/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.js +0 -10
- package/dist/api/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.d.ts +0 -8
- package/dist/api/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.js +0 -11
- package/dist/api/types/SubscriptionResponseModelBillingPeriod.d.ts +0 -7
- package/dist/api/types/SubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -7
- package/dist/api/types/SubscriptionResponseModelCharacterRefreshPeriod.js +0 -10
- package/dist/core/fetcher/ResponseWithBody.d.ts +0 -4
- package/dist/core/fetcher/ResponseWithBody.js +0 -6
- package/dist/serialization/types/ExtendedSubscriptionResponseModelBillingPeriod.d.ts +0 -7
- package/dist/serialization/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -7
- package/dist/serialization/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.d.ts +0 -7
- package/dist/serialization/types/SubscriptionResponseModelBillingPeriod.d.ts +0 -7
- package/dist/serialization/types/SubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -7
- package/serialization/types/ExtendedSubscriptionResponseModelBillingPeriod.d.ts +0 -7
- package/serialization/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -7
- package/serialization/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.js +0 -39
- package/serialization/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.d.ts +0 -7
- package/serialization/types/PendingSubscriptionSwitchResponseModelNextBillingPeriod.js +0 -39
- package/serialization/types/SubscriptionResponseModelBillingPeriod.d.ts +0 -7
- package/serialization/types/SubscriptionResponseModelCharacterRefreshPeriod.d.ts +0 -7
- /package/api/resources/{studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.js → conversationalAi/resources/knowledgeBase/client/requests/BodyComputeRagIndexesInBatchV1ConvaiKnowledgeBaseRagIndexPost.js} +0 -0
- /package/api/{types/ConversationHistoryTranscriptToolCallCommonModel.js → resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/requests/SummariesGetRequest.js} +0 -0
- /package/api/{types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.js → resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/types/SummariesGetResponseValue.js} +0 -0
- /package/api/{types/DiscountResposneModel.js → resources/conversationalAi/resources/knowledgeBase/types/KnowledgeBaseGetOrCreateRagIndexesResponseValue.js} +0 -0
- /package/{dist/api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.js → api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js} +0 -0
- /package/{dist/api/types/ConversationHistoryTranscriptToolCallCommonModel.js → api/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceTwoItem.js} +0 -0
- /package/{dist/api/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.js → api/types/BatchFailureResponseModel.js} +0 -0
- /package/{dist/api/types/DiscountResposneModel.js → api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js} +0 -0
package/reference.md
CHANGED
|
@@ -117,7 +117,7 @@ await client.history.list({
|
|
|
117
117
|
<dl>
|
|
118
118
|
<dd>
|
|
119
119
|
|
|
120
|
-
**requestOptions:** `
|
|
120
|
+
**requestOptions:** `HistoryClient.RequestOptions`
|
|
121
121
|
|
|
122
122
|
</dd>
|
|
123
123
|
</dl>
|
|
@@ -180,7 +180,7 @@ await client.history.get("VW7YKqPnjY4h39yTbx2L");
|
|
|
180
180
|
<dl>
|
|
181
181
|
<dd>
|
|
182
182
|
|
|
183
|
-
**requestOptions:** `
|
|
183
|
+
**requestOptions:** `HistoryClient.RequestOptions`
|
|
184
184
|
|
|
185
185
|
</dd>
|
|
186
186
|
</dl>
|
|
@@ -243,7 +243,7 @@ await client.history.delete("VW7YKqPnjY4h39yTbx2L");
|
|
|
243
243
|
<dl>
|
|
244
244
|
<dd>
|
|
245
245
|
|
|
246
|
-
**requestOptions:** `
|
|
246
|
+
**requestOptions:** `HistoryClient.RequestOptions`
|
|
247
247
|
|
|
248
248
|
</dd>
|
|
249
249
|
</dl>
|
|
@@ -306,7 +306,7 @@ await client.history.getAudio("history_item_id");
|
|
|
306
306
|
<dl>
|
|
307
307
|
<dd>
|
|
308
308
|
|
|
309
|
-
**requestOptions:** `
|
|
309
|
+
**requestOptions:** `HistoryClient.RequestOptions`
|
|
310
310
|
|
|
311
311
|
</dd>
|
|
312
312
|
</dl>
|
|
@@ -371,7 +371,7 @@ await client.history.download({
|
|
|
371
371
|
<dl>
|
|
372
372
|
<dd>
|
|
373
373
|
|
|
374
|
-
**requestOptions:** `
|
|
374
|
+
**requestOptions:** `HistoryClient.RequestOptions`
|
|
375
375
|
|
|
376
376
|
</dd>
|
|
377
377
|
</dl>
|
|
@@ -437,7 +437,7 @@ await client.textToSoundEffects.convert({
|
|
|
437
437
|
<dl>
|
|
438
438
|
<dd>
|
|
439
439
|
|
|
440
|
-
**requestOptions:** `
|
|
440
|
+
**requestOptions:** `TextToSoundEffectsClient.RequestOptions`
|
|
441
441
|
|
|
442
442
|
</dd>
|
|
443
443
|
</dl>
|
|
@@ -510,7 +510,7 @@ await client.samples.delete("21m00Tcm4TlvDq8ikWAM", "VW7YKqPnjY4h39yTbx2L");
|
|
|
510
510
|
<dl>
|
|
511
511
|
<dd>
|
|
512
512
|
|
|
513
|
-
**requestOptions:** `
|
|
513
|
+
**requestOptions:** `SamplesClient.RequestOptions`
|
|
514
514
|
|
|
515
515
|
</dd>
|
|
516
516
|
</dl>
|
|
@@ -586,7 +586,7 @@ await client.textToSpeech.convert("JBFqnCBsd6RMkjVDRZzb", {
|
|
|
586
586
|
<dl>
|
|
587
587
|
<dd>
|
|
588
588
|
|
|
589
|
-
**requestOptions:** `
|
|
589
|
+
**requestOptions:** `TextToSpeechClient.RequestOptions`
|
|
590
590
|
|
|
591
591
|
</dd>
|
|
592
592
|
</dl>
|
|
@@ -662,7 +662,7 @@ await client.textToSpeech.convertWithTimestamps("21m00Tcm4TlvDq8ikWAM", {
|
|
|
662
662
|
<dl>
|
|
663
663
|
<dd>
|
|
664
664
|
|
|
665
|
-
**requestOptions:** `
|
|
665
|
+
**requestOptions:** `TextToSpeechClient.RequestOptions`
|
|
666
666
|
|
|
667
667
|
</dd>
|
|
668
668
|
</dl>
|
|
@@ -737,7 +737,7 @@ await client.textToSpeech.stream("JBFqnCBsd6RMkjVDRZzb", {
|
|
|
737
737
|
<dl>
|
|
738
738
|
<dd>
|
|
739
739
|
|
|
740
|
-
**requestOptions:** `
|
|
740
|
+
**requestOptions:** `TextToSpeechClient.RequestOptions`
|
|
741
741
|
|
|
742
742
|
</dd>
|
|
743
743
|
</dl>
|
|
@@ -815,7 +815,7 @@ for await (const item of response) {
|
|
|
815
815
|
<dl>
|
|
816
816
|
<dd>
|
|
817
817
|
|
|
818
|
-
**requestOptions:** `
|
|
818
|
+
**requestOptions:** `TextToSpeechClient.RequestOptions`
|
|
819
819
|
|
|
820
820
|
</dd>
|
|
821
821
|
</dl>
|
|
@@ -887,7 +887,7 @@ await client.textToDialogue.convert({
|
|
|
887
887
|
<dl>
|
|
888
888
|
<dd>
|
|
889
889
|
|
|
890
|
-
**requestOptions:** `
|
|
890
|
+
**requestOptions:** `TextToDialogueClient.RequestOptions`
|
|
891
891
|
|
|
892
892
|
</dd>
|
|
893
893
|
</dl>
|
|
@@ -958,7 +958,7 @@ await client.textToDialogue.stream({
|
|
|
958
958
|
<dl>
|
|
959
959
|
<dd>
|
|
960
960
|
|
|
961
|
-
**requestOptions:** `
|
|
961
|
+
**requestOptions:** `TextToDialogueClient.RequestOptions`
|
|
962
962
|
|
|
963
963
|
</dd>
|
|
964
964
|
</dl>
|
|
@@ -1033,7 +1033,7 @@ for await (const item of response) {
|
|
|
1033
1033
|
<dl>
|
|
1034
1034
|
<dd>
|
|
1035
1035
|
|
|
1036
|
-
**requestOptions:** `
|
|
1036
|
+
**requestOptions:** `TextToDialogueClient.RequestOptions`
|
|
1037
1037
|
|
|
1038
1038
|
</dd>
|
|
1039
1039
|
</dl>
|
|
@@ -1105,7 +1105,7 @@ await client.textToDialogue.convertWithTimestamps({
|
|
|
1105
1105
|
<dl>
|
|
1106
1106
|
<dd>
|
|
1107
1107
|
|
|
1108
|
-
**requestOptions:** `
|
|
1108
|
+
**requestOptions:** `TextToDialogueClient.RequestOptions`
|
|
1109
1109
|
|
|
1110
1110
|
</dd>
|
|
1111
1111
|
</dl>
|
|
@@ -1181,7 +1181,7 @@ await client.speechToSpeech.convert("JBFqnCBsd6RMkjVDRZzb", {
|
|
|
1181
1181
|
<dl>
|
|
1182
1182
|
<dd>
|
|
1183
1183
|
|
|
1184
|
-
**requestOptions:** `
|
|
1184
|
+
**requestOptions:** `SpeechToSpeechClient.RequestOptions`
|
|
1185
1185
|
|
|
1186
1186
|
</dd>
|
|
1187
1187
|
</dl>
|
|
@@ -1256,7 +1256,7 @@ await client.speechToSpeech.stream("JBFqnCBsd6RMkjVDRZzb", {
|
|
|
1256
1256
|
<dl>
|
|
1257
1257
|
<dd>
|
|
1258
1258
|
|
|
1259
|
-
**requestOptions:** `
|
|
1259
|
+
**requestOptions:** `SpeechToSpeechClient.RequestOptions`
|
|
1260
1260
|
|
|
1261
1261
|
</dd>
|
|
1262
1262
|
</dl>
|
|
@@ -1323,7 +1323,7 @@ await client.textToVoice.createPreviews({
|
|
|
1323
1323
|
<dl>
|
|
1324
1324
|
<dd>
|
|
1325
1325
|
|
|
1326
|
-
**requestOptions:** `
|
|
1326
|
+
**requestOptions:** `TextToVoiceClient.RequestOptions`
|
|
1327
1327
|
|
|
1328
1328
|
</dd>
|
|
1329
1329
|
</dl>
|
|
@@ -1390,7 +1390,7 @@ await client.textToVoice.create({
|
|
|
1390
1390
|
<dl>
|
|
1391
1391
|
<dd>
|
|
1392
1392
|
|
|
1393
|
-
**requestOptions:** `
|
|
1393
|
+
**requestOptions:** `TextToVoiceClient.RequestOptions`
|
|
1394
1394
|
|
|
1395
1395
|
</dd>
|
|
1396
1396
|
</dl>
|
|
@@ -1456,7 +1456,7 @@ await client.textToVoice.design({
|
|
|
1456
1456
|
<dl>
|
|
1457
1457
|
<dd>
|
|
1458
1458
|
|
|
1459
|
-
**requestOptions:** `
|
|
1459
|
+
**requestOptions:** `TextToVoiceClient.RequestOptions`
|
|
1460
1460
|
|
|
1461
1461
|
</dd>
|
|
1462
1462
|
</dl>
|
|
@@ -1530,7 +1530,7 @@ await client.textToVoice.remix("21m00Tcm4TlvDq8ikWAM", {
|
|
|
1530
1530
|
<dl>
|
|
1531
1531
|
<dd>
|
|
1532
1532
|
|
|
1533
|
-
**requestOptions:** `
|
|
1533
|
+
**requestOptions:** `TextToVoiceClient.RequestOptions`
|
|
1534
1534
|
|
|
1535
1535
|
</dd>
|
|
1536
1536
|
</dl>
|
|
@@ -1586,7 +1586,7 @@ await client.user.get();
|
|
|
1586
1586
|
<dl>
|
|
1587
1587
|
<dd>
|
|
1588
1588
|
|
|
1589
|
-
**requestOptions:** `
|
|
1589
|
+
**requestOptions:** `UserClient.RequestOptions`
|
|
1590
1590
|
|
|
1591
1591
|
</dd>
|
|
1592
1592
|
</dl>
|
|
@@ -1652,7 +1652,7 @@ await client.voices.getAll({
|
|
|
1652
1652
|
<dl>
|
|
1653
1653
|
<dd>
|
|
1654
1654
|
|
|
1655
|
-
**requestOptions:** `
|
|
1655
|
+
**requestOptions:** `VoicesClient.RequestOptions`
|
|
1656
1656
|
|
|
1657
1657
|
</dd>
|
|
1658
1658
|
</dl>
|
|
@@ -1726,7 +1726,7 @@ await client.voices.search({
|
|
|
1726
1726
|
<dl>
|
|
1727
1727
|
<dd>
|
|
1728
1728
|
|
|
1729
|
-
**requestOptions:** `
|
|
1729
|
+
**requestOptions:** `VoicesClient.RequestOptions`
|
|
1730
1730
|
|
|
1731
1731
|
</dd>
|
|
1732
1732
|
</dl>
|
|
@@ -1799,7 +1799,7 @@ await client.voices.get("21m00Tcm4TlvDq8ikWAM", {
|
|
|
1799
1799
|
<dl>
|
|
1800
1800
|
<dd>
|
|
1801
1801
|
|
|
1802
|
-
**requestOptions:** `
|
|
1802
|
+
**requestOptions:** `VoicesClient.RequestOptions`
|
|
1803
1803
|
|
|
1804
1804
|
</dd>
|
|
1805
1805
|
</dl>
|
|
@@ -1862,7 +1862,7 @@ await client.voices.delete("21m00Tcm4TlvDq8ikWAM");
|
|
|
1862
1862
|
<dl>
|
|
1863
1863
|
<dd>
|
|
1864
1864
|
|
|
1865
|
-
**requestOptions:** `
|
|
1865
|
+
**requestOptions:** `VoicesClient.RequestOptions`
|
|
1866
1866
|
|
|
1867
1867
|
</dd>
|
|
1868
1868
|
</dl>
|
|
@@ -1935,7 +1935,7 @@ await client.voices.update("21m00Tcm4TlvDq8ikWAM", {
|
|
|
1935
1935
|
<dl>
|
|
1936
1936
|
<dd>
|
|
1937
1937
|
|
|
1938
|
-
**requestOptions:** `
|
|
1938
|
+
**requestOptions:** `VoicesClient.RequestOptions`
|
|
1939
1939
|
|
|
1940
1940
|
</dd>
|
|
1941
1941
|
</dl>
|
|
@@ -2016,7 +2016,7 @@ await client.voices.share("63e06b7e7cafdc46be4d2e0b3f045940231ae058d508589653d74
|
|
|
2016
2016
|
<dl>
|
|
2017
2017
|
<dd>
|
|
2018
2018
|
|
|
2019
|
-
**requestOptions:** `
|
|
2019
|
+
**requestOptions:** `VoicesClient.RequestOptions`
|
|
2020
2020
|
|
|
2021
2021
|
</dd>
|
|
2022
2022
|
</dl>
|
|
@@ -2096,7 +2096,7 @@ await client.voices.getShared({
|
|
|
2096
2096
|
<dl>
|
|
2097
2097
|
<dd>
|
|
2098
2098
|
|
|
2099
|
-
**requestOptions:** `
|
|
2099
|
+
**requestOptions:** `VoicesClient.RequestOptions`
|
|
2100
2100
|
|
|
2101
2101
|
</dd>
|
|
2102
2102
|
</dl>
|
|
@@ -2159,7 +2159,7 @@ await client.voices.findSimilarVoices({});
|
|
|
2159
2159
|
<dl>
|
|
2160
2160
|
<dd>
|
|
2161
2161
|
|
|
2162
|
-
**requestOptions:** `
|
|
2162
|
+
**requestOptions:** `VoicesClient.RequestOptions`
|
|
2163
2163
|
|
|
2164
2164
|
</dd>
|
|
2165
2165
|
</dl>
|
|
@@ -2210,6 +2210,7 @@ await client.studio.createPodcast({
|
|
|
2210
2210
|
}
|
|
2211
2211
|
},
|
|
2212
2212
|
source: {
|
|
2213
|
+
type: "text",
|
|
2213
2214
|
text: "This is a test podcast."
|
|
2214
2215
|
}
|
|
2215
2216
|
});
|
|
@@ -2236,7 +2237,7 @@ await client.studio.createPodcast({
|
|
|
2236
2237
|
<dl>
|
|
2237
2238
|
<dd>
|
|
2238
2239
|
|
|
2239
|
-
**requestOptions:** `
|
|
2240
|
+
**requestOptions:** `StudioClient.RequestOptions`
|
|
2240
2241
|
|
|
2241
2242
|
</dd>
|
|
2242
2243
|
</dl>
|
|
@@ -2307,7 +2308,7 @@ await client.dubbing.list({
|
|
|
2307
2308
|
<dl>
|
|
2308
2309
|
<dd>
|
|
2309
2310
|
|
|
2310
|
-
**requestOptions:** `
|
|
2311
|
+
**requestOptions:** `DubbingClient.RequestOptions`
|
|
2311
2312
|
|
|
2312
2313
|
</dd>
|
|
2313
2314
|
</dl>
|
|
@@ -2370,7 +2371,7 @@ await client.dubbing.create({});
|
|
|
2370
2371
|
<dl>
|
|
2371
2372
|
<dd>
|
|
2372
2373
|
|
|
2373
|
-
**requestOptions:** `
|
|
2374
|
+
**requestOptions:** `DubbingClient.RequestOptions`
|
|
2374
2375
|
|
|
2375
2376
|
</dd>
|
|
2376
2377
|
</dl>
|
|
@@ -2433,7 +2434,7 @@ await client.dubbing.get("dubbing_id");
|
|
|
2433
2434
|
<dl>
|
|
2434
2435
|
<dd>
|
|
2435
2436
|
|
|
2436
|
-
**requestOptions:** `
|
|
2437
|
+
**requestOptions:** `DubbingClient.RequestOptions`
|
|
2437
2438
|
|
|
2438
2439
|
</dd>
|
|
2439
2440
|
</dl>
|
|
@@ -2496,7 +2497,7 @@ await client.dubbing.delete("dubbing_id");
|
|
|
2496
2497
|
<dl>
|
|
2497
2498
|
<dd>
|
|
2498
2499
|
|
|
2499
|
-
**requestOptions:** `
|
|
2500
|
+
**requestOptions:** `DubbingClient.RequestOptions`
|
|
2500
2501
|
|
|
2501
2502
|
</dd>
|
|
2502
2503
|
</dl>
|
|
@@ -2552,7 +2553,7 @@ await client.models.list();
|
|
|
2552
2553
|
<dl>
|
|
2553
2554
|
<dd>
|
|
2554
2555
|
|
|
2555
|
-
**requestOptions:** `
|
|
2556
|
+
**requestOptions:** `ModelsClient.RequestOptions`
|
|
2556
2557
|
|
|
2557
2558
|
</dd>
|
|
2558
2559
|
</dl>
|
|
@@ -2618,7 +2619,7 @@ await client.audioNative.create({
|
|
|
2618
2619
|
<dl>
|
|
2619
2620
|
<dd>
|
|
2620
2621
|
|
|
2621
|
-
**requestOptions:** `
|
|
2622
|
+
**requestOptions:** `AudioNativeClient.RequestOptions`
|
|
2622
2623
|
|
|
2623
2624
|
</dd>
|
|
2624
2625
|
</dl>
|
|
@@ -2681,7 +2682,7 @@ await client.audioNative.getSettings("21m00Tcm4TlvDq8ikWAM");
|
|
|
2681
2682
|
<dl>
|
|
2682
2683
|
<dd>
|
|
2683
2684
|
|
|
2684
|
-
**requestOptions:** `
|
|
2685
|
+
**requestOptions:** `AudioNativeClient.RequestOptions`
|
|
2685
2686
|
|
|
2686
2687
|
</dd>
|
|
2687
2688
|
</dl>
|
|
@@ -2752,7 +2753,7 @@ await client.audioNative.update("21m00Tcm4TlvDq8ikWAM", {});
|
|
|
2752
2753
|
<dl>
|
|
2753
2754
|
<dd>
|
|
2754
2755
|
|
|
2755
|
-
**requestOptions:** `
|
|
2756
|
+
**requestOptions:** `AudioNativeClient.RequestOptions`
|
|
2756
2757
|
|
|
2757
2758
|
</dd>
|
|
2758
2759
|
</dl>
|
|
@@ -2824,7 +2825,7 @@ await client.usage.get({
|
|
|
2824
2825
|
<dl>
|
|
2825
2826
|
<dd>
|
|
2826
2827
|
|
|
2827
|
-
**requestOptions:** `
|
|
2828
|
+
**requestOptions:** `UsageClient.RequestOptions`
|
|
2828
2829
|
|
|
2829
2830
|
</dd>
|
|
2830
2831
|
</dl>
|
|
@@ -2890,7 +2891,7 @@ await client.pronunciationDictionaries.createFromFile({
|
|
|
2890
2891
|
<dl>
|
|
2891
2892
|
<dd>
|
|
2892
2893
|
|
|
2893
|
-
**requestOptions:** `
|
|
2894
|
+
**requestOptions:** `PronunciationDictionariesClient.RequestOptions`
|
|
2894
2895
|
|
|
2895
2896
|
</dd>
|
|
2896
2897
|
</dl>
|
|
@@ -2960,7 +2961,7 @@ await client.pronunciationDictionaries.createFromRules({
|
|
|
2960
2961
|
<dl>
|
|
2961
2962
|
<dd>
|
|
2962
2963
|
|
|
2963
|
-
**requestOptions:** `
|
|
2964
|
+
**requestOptions:** `PronunciationDictionariesClient.RequestOptions`
|
|
2964
2965
|
|
|
2965
2966
|
</dd>
|
|
2966
2967
|
</dl>
|
|
@@ -3023,7 +3024,7 @@ await client.pronunciationDictionaries.get("21m00Tcm4TlvDq8ikWAM");
|
|
|
3023
3024
|
<dl>
|
|
3024
3025
|
<dd>
|
|
3025
3026
|
|
|
3026
|
-
**requestOptions:** `
|
|
3027
|
+
**requestOptions:** `PronunciationDictionariesClient.RequestOptions`
|
|
3027
3028
|
|
|
3028
3029
|
</dd>
|
|
3029
3030
|
</dl>
|
|
@@ -3094,7 +3095,7 @@ await client.pronunciationDictionaries.update("21m00Tcm4TlvDq8ikWAM");
|
|
|
3094
3095
|
<dl>
|
|
3095
3096
|
<dd>
|
|
3096
3097
|
|
|
3097
|
-
**requestOptions:** `
|
|
3098
|
+
**requestOptions:** `PronunciationDictionariesClient.RequestOptions`
|
|
3098
3099
|
|
|
3099
3100
|
</dd>
|
|
3100
3101
|
</dl>
|
|
@@ -3165,7 +3166,7 @@ await client.pronunciationDictionaries.download("dictionary_id", "version_id");
|
|
|
3165
3166
|
<dl>
|
|
3166
3167
|
<dd>
|
|
3167
3168
|
|
|
3168
|
-
**requestOptions:** `
|
|
3169
|
+
**requestOptions:** `PronunciationDictionariesClient.RequestOptions`
|
|
3169
3170
|
|
|
3170
3171
|
</dd>
|
|
3171
3172
|
</dl>
|
|
@@ -3233,7 +3234,7 @@ await client.pronunciationDictionaries.list({
|
|
|
3233
3234
|
<dl>
|
|
3234
3235
|
<dd>
|
|
3235
3236
|
|
|
3236
|
-
**requestOptions:** `
|
|
3237
|
+
**requestOptions:** `PronunciationDictionariesClient.RequestOptions`
|
|
3237
3238
|
|
|
3238
3239
|
</dd>
|
|
3239
3240
|
</dl>
|
|
@@ -3289,7 +3290,7 @@ await client.serviceAccounts.list();
|
|
|
3289
3290
|
<dl>
|
|
3290
3291
|
<dd>
|
|
3291
3292
|
|
|
3292
|
-
**requestOptions:** `
|
|
3293
|
+
**requestOptions:** `ServiceAccountsClient.RequestOptions`
|
|
3293
3294
|
|
|
3294
3295
|
</dd>
|
|
3295
3296
|
</dl>
|
|
@@ -3355,7 +3356,7 @@ await client.webhooks.list({
|
|
|
3355
3356
|
<dl>
|
|
3356
3357
|
<dd>
|
|
3357
3358
|
|
|
3358
|
-
**requestOptions:** `
|
|
3359
|
+
**requestOptions:** `WebhooksClient.RequestOptions`
|
|
3359
3360
|
|
|
3360
3361
|
</dd>
|
|
3361
3362
|
</dl>
|
|
@@ -3424,7 +3425,7 @@ await client.webhooks.create({
|
|
|
3424
3425
|
<dl>
|
|
3425
3426
|
<dd>
|
|
3426
3427
|
|
|
3427
|
-
**requestOptions:** `
|
|
3428
|
+
**requestOptions:** `WebhooksClient.RequestOptions`
|
|
3428
3429
|
|
|
3429
3430
|
</dd>
|
|
3430
3431
|
</dl>
|
|
@@ -3487,7 +3488,7 @@ await client.webhooks.delete("G007vmtq9uWYl7SUW9zGS8GZZa1K");
|
|
|
3487
3488
|
<dl>
|
|
3488
3489
|
<dd>
|
|
3489
3490
|
|
|
3490
|
-
**requestOptions:** `
|
|
3491
|
+
**requestOptions:** `WebhooksClient.RequestOptions`
|
|
3491
3492
|
|
|
3492
3493
|
</dd>
|
|
3493
3494
|
</dl>
|
|
@@ -3561,7 +3562,7 @@ await client.webhooks.update("G007vmtq9uWYl7SUW9zGS8GZZa1K", {
|
|
|
3561
3562
|
<dl>
|
|
3562
3563
|
<dd>
|
|
3563
3564
|
|
|
3564
|
-
**requestOptions:** `
|
|
3565
|
+
**requestOptions:** `WebhooksClient.RequestOptions`
|
|
3565
3566
|
|
|
3566
3567
|
</dd>
|
|
3567
3568
|
</dl>
|
|
@@ -3628,7 +3629,7 @@ await client.speechToText.convert({
|
|
|
3628
3629
|
<dl>
|
|
3629
3630
|
<dd>
|
|
3630
3631
|
|
|
3631
|
-
**requestOptions:** `
|
|
3632
|
+
**requestOptions:** `SpeechToTextClient.RequestOptions`
|
|
3632
3633
|
|
|
3633
3634
|
</dd>
|
|
3634
3635
|
</dl>
|
|
@@ -3695,7 +3696,7 @@ await client.forcedAlignment.create({
|
|
|
3695
3696
|
<dl>
|
|
3696
3697
|
<dd>
|
|
3697
3698
|
|
|
3698
|
-
**requestOptions:** `
|
|
3699
|
+
**requestOptions:** `ForcedAlignmentClient.RequestOptions`
|
|
3699
3700
|
|
|
3700
3701
|
</dd>
|
|
3701
3702
|
</dl>
|
|
@@ -3761,7 +3762,7 @@ await client.conversationalAi.addToKnowledgeBase({
|
|
|
3761
3762
|
<dl>
|
|
3762
3763
|
<dd>
|
|
3763
3764
|
|
|
3764
|
-
**requestOptions:** `
|
|
3765
|
+
**requestOptions:** `ConversationalAiClient.RequestOptions`
|
|
3765
3766
|
|
|
3766
3767
|
</dd>
|
|
3767
3768
|
</dl>
|
|
@@ -3773,7 +3774,7 @@ await client.conversationalAi.addToKnowledgeBase({
|
|
|
3773
3774
|
</dl>
|
|
3774
3775
|
</details>
|
|
3775
3776
|
|
|
3776
|
-
<details><summary><code>client.conversationalAi.<a href="/src/api/resources/conversationalAi/client/Client.ts">
|
|
3777
|
+
<details><summary><code>client.conversationalAi.<a href="/src/api/resources/conversationalAi/client/Client.ts">ragIndexOverview</a>() -> ElevenLabs.RagIndexOverviewResponseModel</code></summary>
|
|
3777
3778
|
<dl>
|
|
3778
3779
|
<dd>
|
|
3779
3780
|
|
|
@@ -3785,7 +3786,7 @@ await client.conversationalAi.addToKnowledgeBase({
|
|
|
3785
3786
|
<dl>
|
|
3786
3787
|
<dd>
|
|
3787
3788
|
|
|
3788
|
-
Provides information
|
|
3789
|
+
Provides total size and other information of RAG indexes used by knowledgebase documents
|
|
3789
3790
|
</dd>
|
|
3790
3791
|
</dl>
|
|
3791
3792
|
</dd>
|
|
@@ -3800,7 +3801,7 @@ Provides information about all RAG indexes of the specified knowledgebase docume
|
|
|
3800
3801
|
<dd>
|
|
3801
3802
|
|
|
3802
3803
|
```typescript
|
|
3803
|
-
await client.conversationalAi.
|
|
3804
|
+
await client.conversationalAi.ragIndexOverview();
|
|
3804
3805
|
|
|
3805
3806
|
```
|
|
3806
3807
|
</dd>
|
|
@@ -3816,15 +3817,7 @@ await client.conversationalAi.getDocumentRagIndexes("21m00Tcm4TlvDq8ikWAM");
|
|
|
3816
3817
|
<dl>
|
|
3817
3818
|
<dd>
|
|
3818
3819
|
|
|
3819
|
-
**
|
|
3820
|
-
|
|
3821
|
-
</dd>
|
|
3822
|
-
</dl>
|
|
3823
|
-
|
|
3824
|
-
<dl>
|
|
3825
|
-
<dd>
|
|
3826
|
-
|
|
3827
|
-
**requestOptions:** `ConversationalAi.RequestOptions`
|
|
3820
|
+
**requestOptions:** `ConversationalAiClient.RequestOptions`
|
|
3828
3821
|
|
|
3829
3822
|
</dd>
|
|
3830
3823
|
</dl>
|
|
@@ -3836,7 +3829,7 @@ await client.conversationalAi.getDocumentRagIndexes("21m00Tcm4TlvDq8ikWAM");
|
|
|
3836
3829
|
</dl>
|
|
3837
3830
|
</details>
|
|
3838
3831
|
|
|
3839
|
-
<details><summary><code>client.conversationalAi.<a href="/src/api/resources/conversationalAi/client/Client.ts">
|
|
3832
|
+
<details><summary><code>client.conversationalAi.<a href="/src/api/resources/conversationalAi/client/Client.ts">getDocumentRagIndexes</a>(documentation_id) -> ElevenLabs.RagDocumentIndexesResponseModel</code></summary>
|
|
3840
3833
|
<dl>
|
|
3841
3834
|
<dd>
|
|
3842
3835
|
|
|
@@ -3848,7 +3841,7 @@ await client.conversationalAi.getDocumentRagIndexes("21m00Tcm4TlvDq8ikWAM");
|
|
|
3848
3841
|
<dl>
|
|
3849
3842
|
<dd>
|
|
3850
3843
|
|
|
3851
|
-
|
|
3844
|
+
Provides information about all RAG indexes of the specified knowledgebase document.
|
|
3852
3845
|
</dd>
|
|
3853
3846
|
</dl>
|
|
3854
3847
|
</dd>
|
|
@@ -3863,7 +3856,7 @@ Delete RAG index for the knowledgebase document.
|
|
|
3863
3856
|
<dd>
|
|
3864
3857
|
|
|
3865
3858
|
```typescript
|
|
3866
|
-
await client.conversationalAi.
|
|
3859
|
+
await client.conversationalAi.getDocumentRagIndexes("21m00Tcm4TlvDq8ikWAM");
|
|
3867
3860
|
|
|
3868
3861
|
```
|
|
3869
3862
|
</dd>
|
|
@@ -3887,15 +3880,7 @@ await client.conversationalAi.deleteDocumentRagIndex("21m00Tcm4TlvDq8ikWAM", "21
|
|
|
3887
3880
|
<dl>
|
|
3888
3881
|
<dd>
|
|
3889
3882
|
|
|
3890
|
-
**
|
|
3891
|
-
|
|
3892
|
-
</dd>
|
|
3893
|
-
</dl>
|
|
3894
|
-
|
|
3895
|
-
<dl>
|
|
3896
|
-
<dd>
|
|
3897
|
-
|
|
3898
|
-
**requestOptions:** `ConversationalAi.RequestOptions`
|
|
3883
|
+
**requestOptions:** `ConversationalAiClient.RequestOptions`
|
|
3899
3884
|
|
|
3900
3885
|
</dd>
|
|
3901
3886
|
</dl>
|
|
@@ -3907,7 +3892,7 @@ await client.conversationalAi.deleteDocumentRagIndex("21m00Tcm4TlvDq8ikWAM", "21
|
|
|
3907
3892
|
</dl>
|
|
3908
3893
|
</details>
|
|
3909
3894
|
|
|
3910
|
-
<details><summary><code>client.conversationalAi.<a href="/src/api/resources/conversationalAi/client/Client.ts">
|
|
3895
|
+
<details><summary><code>client.conversationalAi.<a href="/src/api/resources/conversationalAi/client/Client.ts">deleteDocumentRagIndex</a>(documentation_id, rag_index_id) -> ElevenLabs.RagDocumentIndexResponseModel</code></summary>
|
|
3911
3896
|
<dl>
|
|
3912
3897
|
<dd>
|
|
3913
3898
|
|
|
@@ -3919,7 +3904,7 @@ await client.conversationalAi.deleteDocumentRagIndex("21m00Tcm4TlvDq8ikWAM", "21
|
|
|
3919
3904
|
<dl>
|
|
3920
3905
|
<dd>
|
|
3921
3906
|
|
|
3922
|
-
|
|
3907
|
+
Delete RAG index for the knowledgebase document.
|
|
3923
3908
|
</dd>
|
|
3924
3909
|
</dl>
|
|
3925
3910
|
</dd>
|
|
@@ -3934,7 +3919,7 @@ Provides total size and other information of RAG indexes used by knowledgebase d
|
|
|
3934
3919
|
<dd>
|
|
3935
3920
|
|
|
3936
3921
|
```typescript
|
|
3937
|
-
await client.conversationalAi.
|
|
3922
|
+
await client.conversationalAi.deleteDocumentRagIndex("21m00Tcm4TlvDq8ikWAM", "21m00Tcm4TlvDq8ikWAM");
|
|
3938
3923
|
|
|
3939
3924
|
```
|
|
3940
3925
|
</dd>
|
|
@@ -3950,7 +3935,23 @@ await client.conversationalAi.ragIndexOverview();
|
|
|
3950
3935
|
<dl>
|
|
3951
3936
|
<dd>
|
|
3952
3937
|
|
|
3953
|
-
**
|
|
3938
|
+
**documentation_id:** `string` — The id of a document from the knowledge base. This is returned on document addition.
|
|
3939
|
+
|
|
3940
|
+
</dd>
|
|
3941
|
+
</dl>
|
|
3942
|
+
|
|
3943
|
+
<dl>
|
|
3944
|
+
<dd>
|
|
3945
|
+
|
|
3946
|
+
**rag_index_id:** `string` — The id of RAG index of document from the knowledge base.
|
|
3947
|
+
|
|
3948
|
+
</dd>
|
|
3949
|
+
</dl>
|
|
3950
|
+
|
|
3951
|
+
<dl>
|
|
3952
|
+
<dd>
|
|
3953
|
+
|
|
3954
|
+
**requestOptions:** `ConversationalAiClient.RequestOptions`
|
|
3954
3955
|
|
|
3955
3956
|
</dd>
|
|
3956
3957
|
</dl>
|
|
@@ -4014,7 +4015,7 @@ await client.music.compose();
|
|
|
4014
4015
|
<dl>
|
|
4015
4016
|
<dd>
|
|
4016
4017
|
|
|
4017
|
-
**requestOptions:** `
|
|
4018
|
+
**requestOptions:** `MusicClient.RequestOptions`
|
|
4018
4019
|
|
|
4019
4020
|
</dd>
|
|
4020
4021
|
</dl>
|
|
@@ -4077,7 +4078,7 @@ await client.music.composeDetailed();
|
|
|
4077
4078
|
<dl>
|
|
4078
4079
|
<dd>
|
|
4079
4080
|
|
|
4080
|
-
**requestOptions:** `
|
|
4081
|
+
**requestOptions:** `MusicClient.RequestOptions`
|
|
4081
4082
|
|
|
4082
4083
|
</dd>
|
|
4083
4084
|
</dl>
|
|
@@ -4140,7 +4141,7 @@ await client.music.stream();
|
|
|
4140
4141
|
<dl>
|
|
4141
4142
|
<dd>
|
|
4142
4143
|
|
|
4143
|
-
**requestOptions:** `
|
|
4144
|
+
**requestOptions:** `MusicClient.RequestOptions`
|
|
4144
4145
|
|
|
4145
4146
|
</dd>
|
|
4146
4147
|
</dl>
|
|
@@ -4207,7 +4208,7 @@ await client.conversationalAi.conversations.getSignedUrl({
|
|
|
4207
4208
|
<dl>
|
|
4208
4209
|
<dd>
|
|
4209
4210
|
|
|
4210
|
-
**requestOptions:** `
|
|
4211
|
+
**requestOptions:** `ConversationsClient.RequestOptions`
|
|
4211
4212
|
|
|
4212
4213
|
</dd>
|
|
4213
4214
|
</dl>
|
|
@@ -4273,7 +4274,7 @@ await client.conversationalAi.conversations.getWebrtcToken({
|
|
|
4273
4274
|
<dl>
|
|
4274
4275
|
<dd>
|
|
4275
4276
|
|
|
4276
|
-
**requestOptions:** `
|
|
4277
|
+
**requestOptions:** `ConversationsClient.RequestOptions`
|
|
4277
4278
|
|
|
4278
4279
|
</dd>
|
|
4279
4280
|
</dl>
|
|
@@ -4351,7 +4352,7 @@ await client.conversationalAi.conversations.list({
|
|
|
4351
4352
|
<dl>
|
|
4352
4353
|
<dd>
|
|
4353
4354
|
|
|
4354
|
-
**requestOptions:** `
|
|
4355
|
+
**requestOptions:** `ConversationsClient.RequestOptions`
|
|
4355
4356
|
|
|
4356
4357
|
</dd>
|
|
4357
4358
|
</dl>
|
|
@@ -4414,7 +4415,7 @@ await client.conversationalAi.conversations.get("123");
|
|
|
4414
4415
|
<dl>
|
|
4415
4416
|
<dd>
|
|
4416
4417
|
|
|
4417
|
-
**requestOptions:** `
|
|
4418
|
+
**requestOptions:** `ConversationsClient.RequestOptions`
|
|
4418
4419
|
|
|
4419
4420
|
</dd>
|
|
4420
4421
|
</dl>
|
|
@@ -4477,7 +4478,7 @@ await client.conversationalAi.conversations.delete("21m00Tcm4TlvDq8ikWAM");
|
|
|
4477
4478
|
<dl>
|
|
4478
4479
|
<dd>
|
|
4479
4480
|
|
|
4480
|
-
**requestOptions:** `
|
|
4481
|
+
**requestOptions:** `ConversationsClient.RequestOptions`
|
|
4481
4482
|
|
|
4482
4483
|
</dd>
|
|
4483
4484
|
</dl>
|
|
@@ -4545,7 +4546,74 @@ await client.conversationalAi.twilio.outboundCall({
|
|
|
4545
4546
|
<dl>
|
|
4546
4547
|
<dd>
|
|
4547
4548
|
|
|
4548
|
-
**requestOptions:** `
|
|
4549
|
+
**requestOptions:** `TwilioClient.RequestOptions`
|
|
4550
|
+
|
|
4551
|
+
</dd>
|
|
4552
|
+
</dl>
|
|
4553
|
+
</dd>
|
|
4554
|
+
</dl>
|
|
4555
|
+
|
|
4556
|
+
|
|
4557
|
+
</dd>
|
|
4558
|
+
</dl>
|
|
4559
|
+
</details>
|
|
4560
|
+
|
|
4561
|
+
<details><summary><code>client.conversationalAi.twilio.<a href="/src/api/resources/conversationalAi/resources/twilio/client/Client.ts">registerCall</a>({ ...params }) -> void</code></summary>
|
|
4562
|
+
<dl>
|
|
4563
|
+
<dd>
|
|
4564
|
+
|
|
4565
|
+
#### 📝 Description
|
|
4566
|
+
|
|
4567
|
+
<dl>
|
|
4568
|
+
<dd>
|
|
4569
|
+
|
|
4570
|
+
<dl>
|
|
4571
|
+
<dd>
|
|
4572
|
+
|
|
4573
|
+
Register a Twilio call and return TwiML to connect the call
|
|
4574
|
+
</dd>
|
|
4575
|
+
</dl>
|
|
4576
|
+
</dd>
|
|
4577
|
+
</dl>
|
|
4578
|
+
|
|
4579
|
+
#### 🔌 Usage
|
|
4580
|
+
|
|
4581
|
+
<dl>
|
|
4582
|
+
<dd>
|
|
4583
|
+
|
|
4584
|
+
<dl>
|
|
4585
|
+
<dd>
|
|
4586
|
+
|
|
4587
|
+
```typescript
|
|
4588
|
+
await client.conversationalAi.twilio.registerCall({
|
|
4589
|
+
agentId: "agent_id",
|
|
4590
|
+
fromNumber: "from_number",
|
|
4591
|
+
toNumber: "to_number"
|
|
4592
|
+
});
|
|
4593
|
+
|
|
4594
|
+
```
|
|
4595
|
+
</dd>
|
|
4596
|
+
</dl>
|
|
4597
|
+
</dd>
|
|
4598
|
+
</dl>
|
|
4599
|
+
|
|
4600
|
+
#### ⚙️ Parameters
|
|
4601
|
+
|
|
4602
|
+
<dl>
|
|
4603
|
+
<dd>
|
|
4604
|
+
|
|
4605
|
+
<dl>
|
|
4606
|
+
<dd>
|
|
4607
|
+
|
|
4608
|
+
**request:** `ElevenLabs.conversationalAi.BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost`
|
|
4609
|
+
|
|
4610
|
+
</dd>
|
|
4611
|
+
</dl>
|
|
4612
|
+
|
|
4613
|
+
<dl>
|
|
4614
|
+
<dd>
|
|
4615
|
+
|
|
4616
|
+
**requestOptions:** `TwilioClient.RequestOptions`
|
|
4549
4617
|
|
|
4550
4618
|
</dd>
|
|
4551
4619
|
</dl>
|
|
@@ -4611,7 +4679,7 @@ await client.conversationalAi.agents.create({
|
|
|
4611
4679
|
<dl>
|
|
4612
4680
|
<dd>
|
|
4613
4681
|
|
|
4614
|
-
**requestOptions:** `
|
|
4682
|
+
**requestOptions:** `AgentsClient.RequestOptions`
|
|
4615
4683
|
|
|
4616
4684
|
</dd>
|
|
4617
4685
|
</dl>
|
|
@@ -4674,7 +4742,7 @@ await client.conversationalAi.agents.get("agent_3701k3ttaq12ewp8b7qv5rfyszkz");
|
|
|
4674
4742
|
<dl>
|
|
4675
4743
|
<dd>
|
|
4676
4744
|
|
|
4677
|
-
**requestOptions:** `
|
|
4745
|
+
**requestOptions:** `AgentsClient.RequestOptions`
|
|
4678
4746
|
|
|
4679
4747
|
</dd>
|
|
4680
4748
|
</dl>
|
|
@@ -4737,7 +4805,7 @@ await client.conversationalAi.agents.delete("agent_3701k3ttaq12ewp8b7qv5rfyszkz"
|
|
|
4737
4805
|
<dl>
|
|
4738
4806
|
<dd>
|
|
4739
4807
|
|
|
4740
|
-
**requestOptions:** `
|
|
4808
|
+
**requestOptions:** `AgentsClient.RequestOptions`
|
|
4741
4809
|
|
|
4742
4810
|
</dd>
|
|
4743
4811
|
</dl>
|
|
@@ -4808,7 +4876,7 @@ await client.conversationalAi.agents.update("agent_3701k3ttaq12ewp8b7qv5rfyszkz"
|
|
|
4808
4876
|
<dl>
|
|
4809
4877
|
<dd>
|
|
4810
4878
|
|
|
4811
|
-
**requestOptions:** `
|
|
4879
|
+
**requestOptions:** `AgentsClient.RequestOptions`
|
|
4812
4880
|
|
|
4813
4881
|
</dd>
|
|
4814
4882
|
</dl>
|
|
@@ -4878,7 +4946,7 @@ await client.conversationalAi.agents.list({
|
|
|
4878
4946
|
<dl>
|
|
4879
4947
|
<dd>
|
|
4880
4948
|
|
|
4881
|
-
**requestOptions:** `
|
|
4949
|
+
**requestOptions:** `AgentsClient.RequestOptions`
|
|
4882
4950
|
|
|
4883
4951
|
</dd>
|
|
4884
4952
|
</dl>
|
|
@@ -4949,7 +5017,7 @@ await client.conversationalAi.agents.duplicate("agent_3701k3ttaq12ewp8b7qv5rfysz
|
|
|
4949
5017
|
<dl>
|
|
4950
5018
|
<dd>
|
|
4951
5019
|
|
|
4952
|
-
**requestOptions:** `
|
|
5020
|
+
**requestOptions:** `AgentsClient.RequestOptions`
|
|
4953
5021
|
|
|
4954
5022
|
</dd>
|
|
4955
5023
|
</dl>
|
|
@@ -5028,7 +5096,7 @@ await client.conversationalAi.agents.simulateConversation("agent_3701k3ttaq12ewp
|
|
|
5028
5096
|
<dl>
|
|
5029
5097
|
<dd>
|
|
5030
5098
|
|
|
5031
|
-
**requestOptions:** `
|
|
5099
|
+
**requestOptions:** `AgentsClient.RequestOptions`
|
|
5032
5100
|
|
|
5033
5101
|
</dd>
|
|
5034
5102
|
</dl>
|
|
@@ -5107,7 +5175,7 @@ await client.conversationalAi.agents.simulateConversationStream("agent_3701k3tta
|
|
|
5107
5175
|
<dl>
|
|
5108
5176
|
<dd>
|
|
5109
5177
|
|
|
5110
|
-
**requestOptions:** `
|
|
5178
|
+
**requestOptions:** `AgentsClient.RequestOptions`
|
|
5111
5179
|
|
|
5112
5180
|
</dd>
|
|
5113
5181
|
</dl>
|
|
@@ -5182,7 +5250,7 @@ await client.conversationalAi.agents.runTests("agent_3701k3ttaq12ewp8b7qv5rfyszk
|
|
|
5182
5250
|
<dl>
|
|
5183
5251
|
<dd>
|
|
5184
5252
|
|
|
5185
|
-
**requestOptions:** `
|
|
5253
|
+
**requestOptions:** `AgentsClient.RequestOptions`
|
|
5186
5254
|
|
|
5187
5255
|
</dd>
|
|
5188
5256
|
</dl>
|
|
@@ -5261,7 +5329,7 @@ await client.conversationalAi.tests.create({
|
|
|
5261
5329
|
<dl>
|
|
5262
5330
|
<dd>
|
|
5263
5331
|
|
|
5264
|
-
**requestOptions:** `
|
|
5332
|
+
**requestOptions:** `TestsClient.RequestOptions`
|
|
5265
5333
|
|
|
5266
5334
|
</dd>
|
|
5267
5335
|
</dl>
|
|
@@ -5324,7 +5392,7 @@ await client.conversationalAi.tests.get("TeaqRRdTcIfIu2i7BYfT");
|
|
|
5324
5392
|
<dl>
|
|
5325
5393
|
<dd>
|
|
5326
5394
|
|
|
5327
|
-
**requestOptions:** `
|
|
5395
|
+
**requestOptions:** `TestsClient.RequestOptions`
|
|
5328
5396
|
|
|
5329
5397
|
</dd>
|
|
5330
5398
|
</dl>
|
|
@@ -5410,7 +5478,7 @@ await client.conversationalAi.tests.update("TeaqRRdTcIfIu2i7BYfT", {
|
|
|
5410
5478
|
<dl>
|
|
5411
5479
|
<dd>
|
|
5412
5480
|
|
|
5413
|
-
**requestOptions:** `
|
|
5481
|
+
**requestOptions:** `TestsClient.RequestOptions`
|
|
5414
5482
|
|
|
5415
5483
|
</dd>
|
|
5416
5484
|
</dl>
|
|
@@ -5473,7 +5541,7 @@ await client.conversationalAi.tests.delete("TeaqRRdTcIfIu2i7BYfT");
|
|
|
5473
5541
|
<dl>
|
|
5474
5542
|
<dd>
|
|
5475
5543
|
|
|
5476
|
-
**requestOptions:** `
|
|
5544
|
+
**requestOptions:** `TestsClient.RequestOptions`
|
|
5477
5545
|
|
|
5478
5546
|
</dd>
|
|
5479
5547
|
</dl>
|
|
@@ -5538,7 +5606,7 @@ await client.conversationalAi.tests.summaries({
|
|
|
5538
5606
|
<dl>
|
|
5539
5607
|
<dd>
|
|
5540
5608
|
|
|
5541
|
-
**requestOptions:** `
|
|
5609
|
+
**requestOptions:** `TestsClient.RequestOptions`
|
|
5542
5610
|
|
|
5543
5611
|
</dd>
|
|
5544
5612
|
</dl>
|
|
@@ -5605,7 +5673,7 @@ await client.conversationalAi.tests.list({
|
|
|
5605
5673
|
<dl>
|
|
5606
5674
|
<dd>
|
|
5607
5675
|
|
|
5608
|
-
**requestOptions:** `
|
|
5676
|
+
**requestOptions:** `TestsClient.RequestOptions`
|
|
5609
5677
|
|
|
5610
5678
|
</dd>
|
|
5611
5679
|
</dl>
|
|
@@ -5661,7 +5729,7 @@ await client.conversationalAi.phoneNumbers.list();
|
|
|
5661
5729
|
<dl>
|
|
5662
5730
|
<dd>
|
|
5663
5731
|
|
|
5664
|
-
**requestOptions:** `
|
|
5732
|
+
**requestOptions:** `PhoneNumbersClient.RequestOptions`
|
|
5665
5733
|
|
|
5666
5734
|
</dd>
|
|
5667
5735
|
</dl>
|
|
@@ -5730,7 +5798,7 @@ await client.conversationalAi.phoneNumbers.create({
|
|
|
5730
5798
|
<dl>
|
|
5731
5799
|
<dd>
|
|
5732
5800
|
|
|
5733
|
-
**requestOptions:** `
|
|
5801
|
+
**requestOptions:** `PhoneNumbersClient.RequestOptions`
|
|
5734
5802
|
|
|
5735
5803
|
</dd>
|
|
5736
5804
|
</dl>
|
|
@@ -5793,7 +5861,7 @@ await client.conversationalAi.phoneNumbers.get("TeaqRRdTcIfIu2i7BYfT");
|
|
|
5793
5861
|
<dl>
|
|
5794
5862
|
<dd>
|
|
5795
5863
|
|
|
5796
|
-
**requestOptions:** `
|
|
5864
|
+
**requestOptions:** `PhoneNumbersClient.RequestOptions`
|
|
5797
5865
|
|
|
5798
5866
|
</dd>
|
|
5799
5867
|
</dl>
|
|
@@ -5856,7 +5924,7 @@ await client.conversationalAi.phoneNumbers.delete("TeaqRRdTcIfIu2i7BYfT");
|
|
|
5856
5924
|
<dl>
|
|
5857
5925
|
<dd>
|
|
5858
5926
|
|
|
5859
|
-
**requestOptions:** `
|
|
5927
|
+
**requestOptions:** `PhoneNumbersClient.RequestOptions`
|
|
5860
5928
|
|
|
5861
5929
|
</dd>
|
|
5862
5930
|
</dl>
|
|
@@ -5927,7 +5995,7 @@ await client.conversationalAi.phoneNumbers.update("TeaqRRdTcIfIu2i7BYfT");
|
|
|
5927
5995
|
<dl>
|
|
5928
5996
|
<dd>
|
|
5929
5997
|
|
|
5930
|
-
**requestOptions:** `
|
|
5998
|
+
**requestOptions:** `PhoneNumbersClient.RequestOptions`
|
|
5931
5999
|
|
|
5932
6000
|
</dd>
|
|
5933
6001
|
</dl>
|
|
@@ -5995,7 +6063,7 @@ await client.conversationalAi.llmUsage.calculate({
|
|
|
5995
6063
|
<dl>
|
|
5996
6064
|
<dd>
|
|
5997
6065
|
|
|
5998
|
-
**requestOptions:** `
|
|
6066
|
+
**requestOptions:** `LlmUsageClient.RequestOptions`
|
|
5999
6067
|
|
|
6000
6068
|
</dd>
|
|
6001
6069
|
</dl>
|
|
@@ -6039,6 +6107,9 @@ await client.conversationalAi.knowledgeBase.list({
|
|
|
6039
6107
|
pageSize: 1,
|
|
6040
6108
|
search: "search",
|
|
6041
6109
|
showOnlyOwnedDocuments: true,
|
|
6110
|
+
parentFolderId: "parent_folder_id",
|
|
6111
|
+
ancestorFolderId: "ancestor_folder_id",
|
|
6112
|
+
foldersFirst: true,
|
|
6042
6113
|
sortDirection: "asc",
|
|
6043
6114
|
sortBy: "name",
|
|
6044
6115
|
useTypesense: true,
|
|
@@ -6067,7 +6138,76 @@ await client.conversationalAi.knowledgeBase.list({
|
|
|
6067
6138
|
<dl>
|
|
6068
6139
|
<dd>
|
|
6069
6140
|
|
|
6070
|
-
**requestOptions:** `
|
|
6141
|
+
**requestOptions:** `KnowledgeBaseClient.RequestOptions`
|
|
6142
|
+
|
|
6143
|
+
</dd>
|
|
6144
|
+
</dl>
|
|
6145
|
+
</dd>
|
|
6146
|
+
</dl>
|
|
6147
|
+
|
|
6148
|
+
|
|
6149
|
+
</dd>
|
|
6150
|
+
</dl>
|
|
6151
|
+
</details>
|
|
6152
|
+
|
|
6153
|
+
<details><summary><code>client.conversationalAi.knowledgeBase.<a href="/src/api/resources/conversationalAi/resources/knowledgeBase/client/Client.ts">getOrCreateRagIndexes</a>({ ...params }) -> Record<string, ElevenLabs.KnowledgeBaseGetOrCreateRagIndexesResponseValue></code></summary>
|
|
6154
|
+
<dl>
|
|
6155
|
+
<dd>
|
|
6156
|
+
|
|
6157
|
+
#### 📝 Description
|
|
6158
|
+
|
|
6159
|
+
<dl>
|
|
6160
|
+
<dd>
|
|
6161
|
+
|
|
6162
|
+
<dl>
|
|
6163
|
+
<dd>
|
|
6164
|
+
|
|
6165
|
+
Retrieves and/or creates RAG indexes for multiple knowledge base documents in a single request.
|
|
6166
|
+
</dd>
|
|
6167
|
+
</dl>
|
|
6168
|
+
</dd>
|
|
6169
|
+
</dl>
|
|
6170
|
+
|
|
6171
|
+
#### 🔌 Usage
|
|
6172
|
+
|
|
6173
|
+
<dl>
|
|
6174
|
+
<dd>
|
|
6175
|
+
|
|
6176
|
+
<dl>
|
|
6177
|
+
<dd>
|
|
6178
|
+
|
|
6179
|
+
```typescript
|
|
6180
|
+
await client.conversationalAi.knowledgeBase.getOrCreateRagIndexes({
|
|
6181
|
+
items: [{
|
|
6182
|
+
documentId: "document_id",
|
|
6183
|
+
createIfMissing: true,
|
|
6184
|
+
model: "e5_mistral_7b_instruct"
|
|
6185
|
+
}]
|
|
6186
|
+
});
|
|
6187
|
+
|
|
6188
|
+
```
|
|
6189
|
+
</dd>
|
|
6190
|
+
</dl>
|
|
6191
|
+
</dd>
|
|
6192
|
+
</dl>
|
|
6193
|
+
|
|
6194
|
+
#### ⚙️ Parameters
|
|
6195
|
+
|
|
6196
|
+
<dl>
|
|
6197
|
+
<dd>
|
|
6198
|
+
|
|
6199
|
+
<dl>
|
|
6200
|
+
<dd>
|
|
6201
|
+
|
|
6202
|
+
**request:** `ElevenLabs.conversationalAi.BodyComputeRagIndexesInBatchV1ConvaiKnowledgeBaseRagIndexPost`
|
|
6203
|
+
|
|
6204
|
+
</dd>
|
|
6205
|
+
</dl>
|
|
6206
|
+
|
|
6207
|
+
<dl>
|
|
6208
|
+
<dd>
|
|
6209
|
+
|
|
6210
|
+
**requestOptions:** `KnowledgeBaseClient.RequestOptions`
|
|
6071
6211
|
|
|
6072
6212
|
</dd>
|
|
6073
6213
|
</dl>
|
|
@@ -6123,7 +6263,7 @@ await client.conversationalAi.tools.list();
|
|
|
6123
6263
|
<dl>
|
|
6124
6264
|
<dd>
|
|
6125
6265
|
|
|
6126
|
-
**requestOptions:** `
|
|
6266
|
+
**requestOptions:** `ToolsClient.RequestOptions`
|
|
6127
6267
|
|
|
6128
6268
|
</dd>
|
|
6129
6269
|
</dl>
|
|
@@ -6193,7 +6333,7 @@ await client.conversationalAi.tools.create({
|
|
|
6193
6333
|
<dl>
|
|
6194
6334
|
<dd>
|
|
6195
6335
|
|
|
6196
|
-
**requestOptions:** `
|
|
6336
|
+
**requestOptions:** `ToolsClient.RequestOptions`
|
|
6197
6337
|
|
|
6198
6338
|
</dd>
|
|
6199
6339
|
</dl>
|
|
@@ -6256,7 +6396,7 @@ await client.conversationalAi.tools.get("tool_id");
|
|
|
6256
6396
|
<dl>
|
|
6257
6397
|
<dd>
|
|
6258
6398
|
|
|
6259
|
-
**requestOptions:** `
|
|
6399
|
+
**requestOptions:** `ToolsClient.RequestOptions`
|
|
6260
6400
|
|
|
6261
6401
|
</dd>
|
|
6262
6402
|
</dl>
|
|
@@ -6319,7 +6459,7 @@ await client.conversationalAi.tools.delete("tool_id");
|
|
|
6319
6459
|
<dl>
|
|
6320
6460
|
<dd>
|
|
6321
6461
|
|
|
6322
|
-
**requestOptions:** `
|
|
6462
|
+
**requestOptions:** `ToolsClient.RequestOptions`
|
|
6323
6463
|
|
|
6324
6464
|
</dd>
|
|
6325
6465
|
</dl>
|
|
@@ -6397,7 +6537,7 @@ await client.conversationalAi.tools.update("tool_id", {
|
|
|
6397
6537
|
<dl>
|
|
6398
6538
|
<dd>
|
|
6399
6539
|
|
|
6400
|
-
**requestOptions:** `
|
|
6540
|
+
**requestOptions:** `ToolsClient.RequestOptions`
|
|
6401
6541
|
|
|
6402
6542
|
</dd>
|
|
6403
6543
|
</dl>
|
|
@@ -6471,7 +6611,7 @@ await client.conversationalAi.tools.getDependentAgents("tool_id", {
|
|
|
6471
6611
|
<dl>
|
|
6472
6612
|
<dd>
|
|
6473
6613
|
|
|
6474
|
-
**requestOptions:** `
|
|
6614
|
+
**requestOptions:** `ToolsClient.RequestOptions`
|
|
6475
6615
|
|
|
6476
6616
|
</dd>
|
|
6477
6617
|
</dl>
|
|
@@ -6527,7 +6667,7 @@ await client.conversationalAi.settings.get();
|
|
|
6527
6667
|
<dl>
|
|
6528
6668
|
<dd>
|
|
6529
6669
|
|
|
6530
|
-
**requestOptions:** `
|
|
6670
|
+
**requestOptions:** `SettingsClient.RequestOptions`
|
|
6531
6671
|
|
|
6532
6672
|
</dd>
|
|
6533
6673
|
</dl>
|
|
@@ -6590,7 +6730,7 @@ await client.conversationalAi.settings.update();
|
|
|
6590
6730
|
<dl>
|
|
6591
6731
|
<dd>
|
|
6592
6732
|
|
|
6593
|
-
**requestOptions:** `
|
|
6733
|
+
**requestOptions:** `SettingsClient.RequestOptions`
|
|
6594
6734
|
|
|
6595
6735
|
</dd>
|
|
6596
6736
|
</dl>
|
|
@@ -6646,7 +6786,7 @@ await client.conversationalAi.secrets.list();
|
|
|
6646
6786
|
<dl>
|
|
6647
6787
|
<dd>
|
|
6648
6788
|
|
|
6649
|
-
**requestOptions:** `
|
|
6789
|
+
**requestOptions:** `SecretsClient.RequestOptions`
|
|
6650
6790
|
|
|
6651
6791
|
</dd>
|
|
6652
6792
|
</dl>
|
|
@@ -6712,7 +6852,7 @@ await client.conversationalAi.secrets.create({
|
|
|
6712
6852
|
<dl>
|
|
6713
6853
|
<dd>
|
|
6714
6854
|
|
|
6715
|
-
**requestOptions:** `
|
|
6855
|
+
**requestOptions:** `SecretsClient.RequestOptions`
|
|
6716
6856
|
|
|
6717
6857
|
</dd>
|
|
6718
6858
|
</dl>
|
|
@@ -6775,7 +6915,7 @@ await client.conversationalAi.secrets.delete("secret_id");
|
|
|
6775
6915
|
<dl>
|
|
6776
6916
|
<dd>
|
|
6777
6917
|
|
|
6778
|
-
**requestOptions:** `
|
|
6918
|
+
**requestOptions:** `SecretsClient.RequestOptions`
|
|
6779
6919
|
|
|
6780
6920
|
</dd>
|
|
6781
6921
|
</dl>
|
|
@@ -6849,7 +6989,7 @@ await client.conversationalAi.secrets.update("secret_id", {
|
|
|
6849
6989
|
<dl>
|
|
6850
6990
|
<dd>
|
|
6851
6991
|
|
|
6852
|
-
**requestOptions:** `
|
|
6992
|
+
**requestOptions:** `SecretsClient.RequestOptions`
|
|
6853
6993
|
|
|
6854
6994
|
</dd>
|
|
6855
6995
|
</dl>
|
|
@@ -6917,7 +7057,7 @@ await client.conversationalAi.batchCalls.create({
|
|
|
6917
7057
|
<dl>
|
|
6918
7058
|
<dd>
|
|
6919
7059
|
|
|
6920
|
-
**requestOptions:** `
|
|
7060
|
+
**requestOptions:** `BatchCallsClient.RequestOptions`
|
|
6921
7061
|
|
|
6922
7062
|
</dd>
|
|
6923
7063
|
</dl>
|
|
@@ -6983,7 +7123,7 @@ await client.conversationalAi.batchCalls.list({
|
|
|
6983
7123
|
<dl>
|
|
6984
7124
|
<dd>
|
|
6985
7125
|
|
|
6986
|
-
**requestOptions:** `
|
|
7126
|
+
**requestOptions:** `BatchCallsClient.RequestOptions`
|
|
6987
7127
|
|
|
6988
7128
|
</dd>
|
|
6989
7129
|
</dl>
|
|
@@ -7046,7 +7186,7 @@ await client.conversationalAi.batchCalls.get("batch_id");
|
|
|
7046
7186
|
<dl>
|
|
7047
7187
|
<dd>
|
|
7048
7188
|
|
|
7049
|
-
**requestOptions:** `
|
|
7189
|
+
**requestOptions:** `BatchCallsClient.RequestOptions`
|
|
7050
7190
|
|
|
7051
7191
|
</dd>
|
|
7052
7192
|
</dl>
|
|
@@ -7109,7 +7249,7 @@ await client.conversationalAi.batchCalls.cancel("batch_id");
|
|
|
7109
7249
|
<dl>
|
|
7110
7250
|
<dd>
|
|
7111
7251
|
|
|
7112
|
-
**requestOptions:** `
|
|
7252
|
+
**requestOptions:** `BatchCallsClient.RequestOptions`
|
|
7113
7253
|
|
|
7114
7254
|
</dd>
|
|
7115
7255
|
</dl>
|
|
@@ -7172,7 +7312,7 @@ await client.conversationalAi.batchCalls.retry("batch_id");
|
|
|
7172
7312
|
<dl>
|
|
7173
7313
|
<dd>
|
|
7174
7314
|
|
|
7175
|
-
**requestOptions:** `
|
|
7315
|
+
**requestOptions:** `BatchCallsClient.RequestOptions`
|
|
7176
7316
|
|
|
7177
7317
|
</dd>
|
|
7178
7318
|
</dl>
|
|
@@ -7240,7 +7380,7 @@ await client.conversationalAi.sipTrunk.outboundCall({
|
|
|
7240
7380
|
<dl>
|
|
7241
7381
|
<dd>
|
|
7242
7382
|
|
|
7243
|
-
**requestOptions:** `
|
|
7383
|
+
**requestOptions:** `SipTrunkClient.RequestOptions`
|
|
7244
7384
|
|
|
7245
7385
|
</dd>
|
|
7246
7386
|
</dl>
|
|
@@ -7296,7 +7436,7 @@ await client.conversationalAi.mcpServers.list();
|
|
|
7296
7436
|
<dl>
|
|
7297
7437
|
<dd>
|
|
7298
7438
|
|
|
7299
|
-
**requestOptions:** `
|
|
7439
|
+
**requestOptions:** `McpServersClient.RequestOptions`
|
|
7300
7440
|
|
|
7301
7441
|
</dd>
|
|
7302
7442
|
</dl>
|
|
@@ -7364,7 +7504,7 @@ await client.conversationalAi.mcpServers.create({
|
|
|
7364
7504
|
<dl>
|
|
7365
7505
|
<dd>
|
|
7366
7506
|
|
|
7367
|
-
**requestOptions:** `
|
|
7507
|
+
**requestOptions:** `McpServersClient.RequestOptions`
|
|
7368
7508
|
|
|
7369
7509
|
</dd>
|
|
7370
7510
|
</dl>
|
|
@@ -7427,7 +7567,7 @@ await client.conversationalAi.mcpServers.get("mcp_server_id");
|
|
|
7427
7567
|
<dl>
|
|
7428
7568
|
<dd>
|
|
7429
7569
|
|
|
7430
|
-
**requestOptions:** `
|
|
7570
|
+
**requestOptions:** `McpServersClient.RequestOptions`
|
|
7431
7571
|
|
|
7432
7572
|
</dd>
|
|
7433
7573
|
</dl>
|
|
@@ -7490,7 +7630,7 @@ await client.conversationalAi.mcpServers.delete("mcp_server_id");
|
|
|
7490
7630
|
<dl>
|
|
7491
7631
|
<dd>
|
|
7492
7632
|
|
|
7493
|
-
**requestOptions:** `
|
|
7633
|
+
**requestOptions:** `McpServersClient.RequestOptions`
|
|
7494
7634
|
|
|
7495
7635
|
</dd>
|
|
7496
7636
|
</dl>
|
|
@@ -7561,7 +7701,7 @@ await client.conversationalAi.mcpServers.update("mcp_server_id");
|
|
|
7561
7701
|
<dl>
|
|
7562
7702
|
<dd>
|
|
7563
7703
|
|
|
7564
|
-
**requestOptions:** `
|
|
7704
|
+
**requestOptions:** `McpServersClient.RequestOptions`
|
|
7565
7705
|
|
|
7566
7706
|
</dd>
|
|
7567
7707
|
</dl>
|
|
@@ -7635,7 +7775,7 @@ await client.conversationalAi.agents.widget.get("agent_3701k3ttaq12ewp8b7qv5rfys
|
|
|
7635
7775
|
<dl>
|
|
7636
7776
|
<dd>
|
|
7637
7777
|
|
|
7638
|
-
**requestOptions:** `
|
|
7778
|
+
**requestOptions:** `WidgetClient.RequestOptions`
|
|
7639
7779
|
|
|
7640
7780
|
</dd>
|
|
7641
7781
|
</dl>
|
|
@@ -7699,7 +7839,7 @@ await client.conversationalAi.agents.link.get("agent_3701k3ttaq12ewp8b7qv5rfyszk
|
|
|
7699
7839
|
<dl>
|
|
7700
7840
|
<dd>
|
|
7701
7841
|
|
|
7702
|
-
**requestOptions:** `
|
|
7842
|
+
**requestOptions:** `LinkClient.RequestOptions`
|
|
7703
7843
|
|
|
7704
7844
|
</dd>
|
|
7705
7845
|
</dl>
|
|
@@ -7763,7 +7903,7 @@ await client.conversationalAi.agents.knowledgeBase.size("agent_id");
|
|
|
7763
7903
|
<dl>
|
|
7764
7904
|
<dd>
|
|
7765
7905
|
|
|
7766
|
-
**requestOptions:** `
|
|
7906
|
+
**requestOptions:** `KnowledgeBaseClient.RequestOptions`
|
|
7767
7907
|
|
|
7768
7908
|
</dd>
|
|
7769
7909
|
</dl>
|
|
@@ -7835,7 +7975,7 @@ await client.conversationalAi.agents.llmUsage.calculate("agent_id");
|
|
|
7835
7975
|
<dl>
|
|
7836
7976
|
<dd>
|
|
7837
7977
|
|
|
7838
|
-
**requestOptions:** `
|
|
7978
|
+
**requestOptions:** `LlmUsageClient.RequestOptions`
|
|
7839
7979
|
|
|
7840
7980
|
</dd>
|
|
7841
7981
|
</dl>
|
|
@@ -7909,7 +8049,7 @@ await client.conversationalAi.agents.widget.avatar.create("agent_3701k3ttaq12ewp
|
|
|
7909
8049
|
<dl>
|
|
7910
8050
|
<dd>
|
|
7911
8051
|
|
|
7912
|
-
**requestOptions:** `
|
|
8052
|
+
**requestOptions:** `AvatarClient.RequestOptions`
|
|
7913
8053
|
|
|
7914
8054
|
</dd>
|
|
7915
8055
|
</dl>
|
|
@@ -7975,7 +8115,7 @@ await client.conversationalAi.analytics.liveCount.get({
|
|
|
7975
8115
|
<dl>
|
|
7976
8116
|
<dd>
|
|
7977
8117
|
|
|
7978
|
-
**requestOptions:** `
|
|
8118
|
+
**requestOptions:** `LiveCountClient.RequestOptions`
|
|
7979
8119
|
|
|
7980
8120
|
</dd>
|
|
7981
8121
|
</dl>
|
|
@@ -8039,7 +8179,7 @@ await client.conversationalAi.conversations.audio.get("conversation_id");
|
|
|
8039
8179
|
<dl>
|
|
8040
8180
|
<dd>
|
|
8041
8181
|
|
|
8042
|
-
**requestOptions:** `
|
|
8182
|
+
**requestOptions:** `AudioClient.RequestOptions`
|
|
8043
8183
|
|
|
8044
8184
|
</dd>
|
|
8045
8185
|
</dl>
|
|
@@ -8113,7 +8253,7 @@ await client.conversationalAi.conversations.feedback.create("21m00Tcm4TlvDq8ikWA
|
|
|
8113
8253
|
<dl>
|
|
8114
8254
|
<dd>
|
|
8115
8255
|
|
|
8116
|
-
**requestOptions:** `
|
|
8256
|
+
**requestOptions:** `FeedbackClient.RequestOptions`
|
|
8117
8257
|
|
|
8118
8258
|
</dd>
|
|
8119
8259
|
</dl>
|
|
@@ -8169,7 +8309,7 @@ await client.conversationalAi.dashboard.settings.get();
|
|
|
8169
8309
|
<dl>
|
|
8170
8310
|
<dd>
|
|
8171
8311
|
|
|
8172
|
-
**requestOptions:** `
|
|
8312
|
+
**requestOptions:** `SettingsClient.RequestOptions`
|
|
8173
8313
|
|
|
8174
8314
|
</dd>
|
|
8175
8315
|
</dl>
|
|
@@ -8232,7 +8372,7 @@ await client.conversationalAi.dashboard.settings.update();
|
|
|
8232
8372
|
<dl>
|
|
8233
8373
|
<dd>
|
|
8234
8374
|
|
|
8235
|
-
**requestOptions:** `
|
|
8375
|
+
**requestOptions:** `SettingsClient.RequestOptions`
|
|
8236
8376
|
|
|
8237
8377
|
</dd>
|
|
8238
8378
|
</dl>
|
|
@@ -8298,7 +8438,7 @@ await client.conversationalAi.knowledgeBase.documents.createFromUrl({
|
|
|
8298
8438
|
<dl>
|
|
8299
8439
|
<dd>
|
|
8300
8440
|
|
|
8301
|
-
**requestOptions:** `
|
|
8441
|
+
**requestOptions:** `DocumentsClient.RequestOptions`
|
|
8302
8442
|
|
|
8303
8443
|
</dd>
|
|
8304
8444
|
</dl>
|
|
@@ -8363,7 +8503,7 @@ await client.conversationalAi.knowledgeBase.documents.createFromFile({
|
|
|
8363
8503
|
<dl>
|
|
8364
8504
|
<dd>
|
|
8365
8505
|
|
|
8366
|
-
**requestOptions:** `
|
|
8506
|
+
**requestOptions:** `DocumentsClient.RequestOptions`
|
|
8367
8507
|
|
|
8368
8508
|
</dd>
|
|
8369
8509
|
</dl>
|
|
@@ -8428,7 +8568,7 @@ await client.conversationalAi.knowledgeBase.documents.createFromText({
|
|
|
8428
8568
|
<dl>
|
|
8429
8569
|
<dd>
|
|
8430
8570
|
|
|
8431
|
-
**requestOptions:** `
|
|
8571
|
+
**requestOptions:** `DocumentsClient.RequestOptions`
|
|
8432
8572
|
|
|
8433
8573
|
</dd>
|
|
8434
8574
|
</dl>
|
|
@@ -8501,7 +8641,7 @@ await client.conversationalAi.knowledgeBase.documents.get("21m00Tcm4TlvDq8ikWAM"
|
|
|
8501
8641
|
<dl>
|
|
8502
8642
|
<dd>
|
|
8503
8643
|
|
|
8504
|
-
**requestOptions:** `
|
|
8644
|
+
**requestOptions:** `DocumentsClient.RequestOptions`
|
|
8505
8645
|
|
|
8506
8646
|
</dd>
|
|
8507
8647
|
</dl>
|
|
@@ -8574,7 +8714,7 @@ await client.conversationalAi.knowledgeBase.documents.delete("21m00Tcm4TlvDq8ikW
|
|
|
8574
8714
|
<dl>
|
|
8575
8715
|
<dd>
|
|
8576
8716
|
|
|
8577
|
-
**requestOptions:** `
|
|
8717
|
+
**requestOptions:** `DocumentsClient.RequestOptions`
|
|
8578
8718
|
|
|
8579
8719
|
</dd>
|
|
8580
8720
|
</dl>
|
|
@@ -8647,7 +8787,7 @@ await client.conversationalAi.knowledgeBase.documents.update("21m00Tcm4TlvDq8ikW
|
|
|
8647
8787
|
<dl>
|
|
8648
8788
|
<dd>
|
|
8649
8789
|
|
|
8650
|
-
**requestOptions:** `
|
|
8790
|
+
**requestOptions:** `DocumentsClient.RequestOptions`
|
|
8651
8791
|
|
|
8652
8792
|
</dd>
|
|
8653
8793
|
</dl>
|
|
@@ -8721,7 +8861,7 @@ await client.conversationalAi.knowledgeBase.documents.getAgents("21m00Tcm4TlvDq8
|
|
|
8721
8861
|
<dl>
|
|
8722
8862
|
<dd>
|
|
8723
8863
|
|
|
8724
|
-
**requestOptions:** `
|
|
8864
|
+
**requestOptions:** `DocumentsClient.RequestOptions`
|
|
8725
8865
|
|
|
8726
8866
|
</dd>
|
|
8727
8867
|
</dl>
|
|
@@ -8784,7 +8924,7 @@ await client.conversationalAi.knowledgeBase.documents.getContent("21m00Tcm4TlvDq
|
|
|
8784
8924
|
<dl>
|
|
8785
8925
|
<dd>
|
|
8786
8926
|
|
|
8787
|
-
**requestOptions:** `
|
|
8927
|
+
**requestOptions:** `DocumentsClient.RequestOptions`
|
|
8788
8928
|
|
|
8789
8929
|
</dd>
|
|
8790
8930
|
</dl>
|
|
@@ -8858,7 +8998,71 @@ await client.conversationalAi.knowledgeBase.document.computeRagIndex("21m00Tcm4T
|
|
|
8858
8998
|
<dl>
|
|
8859
8999
|
<dd>
|
|
8860
9000
|
|
|
8861
|
-
**requestOptions:** `
|
|
9001
|
+
**requestOptions:** `DocumentClient.RequestOptions`
|
|
9002
|
+
|
|
9003
|
+
</dd>
|
|
9004
|
+
</dl>
|
|
9005
|
+
</dd>
|
|
9006
|
+
</dl>
|
|
9007
|
+
|
|
9008
|
+
|
|
9009
|
+
</dd>
|
|
9010
|
+
</dl>
|
|
9011
|
+
</details>
|
|
9012
|
+
|
|
9013
|
+
## ConversationalAi KnowledgeBase Documents Summaries
|
|
9014
|
+
<details><summary><code>client.conversationalAi.knowledgeBase.documents.summaries.<a href="/src/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/Client.ts">get</a>({ ...params }) -> Record<string, ElevenLabs.SummariesGetResponseValue></code></summary>
|
|
9015
|
+
<dl>
|
|
9016
|
+
<dd>
|
|
9017
|
+
|
|
9018
|
+
#### 📝 Description
|
|
9019
|
+
|
|
9020
|
+
<dl>
|
|
9021
|
+
<dd>
|
|
9022
|
+
|
|
9023
|
+
<dl>
|
|
9024
|
+
<dd>
|
|
9025
|
+
|
|
9026
|
+
Gets multiple knowledge base document summaries by their IDs.
|
|
9027
|
+
</dd>
|
|
9028
|
+
</dl>
|
|
9029
|
+
</dd>
|
|
9030
|
+
</dl>
|
|
9031
|
+
|
|
9032
|
+
#### 🔌 Usage
|
|
9033
|
+
|
|
9034
|
+
<dl>
|
|
9035
|
+
<dd>
|
|
9036
|
+
|
|
9037
|
+
<dl>
|
|
9038
|
+
<dd>
|
|
9039
|
+
|
|
9040
|
+
```typescript
|
|
9041
|
+
await client.conversationalAi.knowledgeBase.documents.summaries.get();
|
|
9042
|
+
|
|
9043
|
+
```
|
|
9044
|
+
</dd>
|
|
9045
|
+
</dl>
|
|
9046
|
+
</dd>
|
|
9047
|
+
</dl>
|
|
9048
|
+
|
|
9049
|
+
#### ⚙️ Parameters
|
|
9050
|
+
|
|
9051
|
+
<dl>
|
|
9052
|
+
<dd>
|
|
9053
|
+
|
|
9054
|
+
<dl>
|
|
9055
|
+
<dd>
|
|
9056
|
+
|
|
9057
|
+
**request:** `ElevenLabs.conversationalAi.knowledgeBase.documents.SummariesGetRequest`
|
|
9058
|
+
|
|
9059
|
+
</dd>
|
|
9060
|
+
</dl>
|
|
9061
|
+
|
|
9062
|
+
<dl>
|
|
9063
|
+
<dd>
|
|
9064
|
+
|
|
9065
|
+
**requestOptions:** `SummariesClient.RequestOptions`
|
|
8862
9066
|
|
|
8863
9067
|
</dd>
|
|
8864
9068
|
</dl>
|
|
@@ -8930,7 +9134,7 @@ await client.conversationalAi.knowledgeBase.documents.chunk.get("21m00Tcm4TlvDq8
|
|
|
8930
9134
|
<dl>
|
|
8931
9135
|
<dd>
|
|
8932
9136
|
|
|
8933
|
-
**requestOptions:** `
|
|
9137
|
+
**requestOptions:** `ChunkClient.RequestOptions`
|
|
8934
9138
|
|
|
8935
9139
|
</dd>
|
|
8936
9140
|
</dl>
|
|
@@ -8994,7 +9198,7 @@ await client.conversationalAi.mcpServers.tools.list("mcp_server_id");
|
|
|
8994
9198
|
<dl>
|
|
8995
9199
|
<dd>
|
|
8996
9200
|
|
|
8997
|
-
**requestOptions:** `
|
|
9201
|
+
**requestOptions:** `ToolsClient.RequestOptions`
|
|
8998
9202
|
|
|
8999
9203
|
</dd>
|
|
9000
9204
|
</dl>
|
|
@@ -9068,7 +9272,7 @@ await client.conversationalAi.mcpServers.approvalPolicy.update("mcp_server_id",
|
|
|
9068
9272
|
<dl>
|
|
9069
9273
|
<dd>
|
|
9070
9274
|
|
|
9071
|
-
**requestOptions:** `
|
|
9275
|
+
**requestOptions:** `ApprovalPolicyClient.RequestOptions`
|
|
9072
9276
|
|
|
9073
9277
|
</dd>
|
|
9074
9278
|
</dl>
|
|
@@ -9143,7 +9347,7 @@ await client.conversationalAi.mcpServers.toolApprovals.create("mcp_server_id", {
|
|
|
9143
9347
|
<dl>
|
|
9144
9348
|
<dd>
|
|
9145
9349
|
|
|
9146
|
-
**requestOptions:** `
|
|
9350
|
+
**requestOptions:** `ToolApprovalsClient.RequestOptions`
|
|
9147
9351
|
|
|
9148
9352
|
</dd>
|
|
9149
9353
|
</dl>
|
|
@@ -9214,7 +9418,7 @@ await client.conversationalAi.mcpServers.toolApprovals.delete("mcp_server_id", "
|
|
|
9214
9418
|
<dl>
|
|
9215
9419
|
<dd>
|
|
9216
9420
|
|
|
9217
|
-
**requestOptions:** `
|
|
9421
|
+
**requestOptions:** `ToolApprovalsClient.RequestOptions`
|
|
9218
9422
|
|
|
9219
9423
|
</dd>
|
|
9220
9424
|
</dl>
|
|
@@ -9288,7 +9492,7 @@ await client.conversationalAi.mcpServers.toolConfigs.create("mcp_server_id", {
|
|
|
9288
9492
|
<dl>
|
|
9289
9493
|
<dd>
|
|
9290
9494
|
|
|
9291
|
-
**requestOptions:** `
|
|
9495
|
+
**requestOptions:** `ToolConfigsClient.RequestOptions`
|
|
9292
9496
|
|
|
9293
9497
|
</dd>
|
|
9294
9498
|
</dl>
|
|
@@ -9359,7 +9563,7 @@ await client.conversationalAi.mcpServers.toolConfigs.get("mcp_server_id", "tool_
|
|
|
9359
9563
|
<dl>
|
|
9360
9564
|
<dd>
|
|
9361
9565
|
|
|
9362
|
-
**requestOptions:** `
|
|
9566
|
+
**requestOptions:** `ToolConfigsClient.RequestOptions`
|
|
9363
9567
|
|
|
9364
9568
|
</dd>
|
|
9365
9569
|
</dl>
|
|
@@ -9430,7 +9634,7 @@ await client.conversationalAi.mcpServers.toolConfigs.delete("mcp_server_id", "to
|
|
|
9430
9634
|
<dl>
|
|
9431
9635
|
<dd>
|
|
9432
9636
|
|
|
9433
|
-
**requestOptions:** `
|
|
9637
|
+
**requestOptions:** `ToolConfigsClient.RequestOptions`
|
|
9434
9638
|
|
|
9435
9639
|
</dd>
|
|
9436
9640
|
</dl>
|
|
@@ -9509,7 +9713,7 @@ await client.conversationalAi.mcpServers.toolConfigs.update("mcp_server_id", "to
|
|
|
9509
9713
|
<dl>
|
|
9510
9714
|
<dd>
|
|
9511
9715
|
|
|
9512
|
-
**requestOptions:** `
|
|
9716
|
+
**requestOptions:** `ToolConfigsClient.RequestOptions`
|
|
9513
9717
|
|
|
9514
9718
|
</dd>
|
|
9515
9719
|
</dl>
|
|
@@ -9577,7 +9781,7 @@ await client.conversationalAi.tests.invocations.list({
|
|
|
9577
9781
|
<dl>
|
|
9578
9782
|
<dd>
|
|
9579
9783
|
|
|
9580
|
-
**requestOptions:** `
|
|
9784
|
+
**requestOptions:** `InvocationsClient.RequestOptions`
|
|
9581
9785
|
|
|
9582
9786
|
</dd>
|
|
9583
9787
|
</dl>
|
|
@@ -9640,7 +9844,7 @@ await client.conversationalAi.tests.invocations.get("test_invocation_id");
|
|
|
9640
9844
|
<dl>
|
|
9641
9845
|
<dd>
|
|
9642
9846
|
|
|
9643
|
-
**requestOptions:** `
|
|
9847
|
+
**requestOptions:** `InvocationsClient.RequestOptions`
|
|
9644
9848
|
|
|
9645
9849
|
</dd>
|
|
9646
9850
|
</dl>
|
|
@@ -9714,7 +9918,7 @@ await client.conversationalAi.tests.invocations.resubmit("test_invocation_id", {
|
|
|
9714
9918
|
<dl>
|
|
9715
9919
|
<dd>
|
|
9716
9920
|
|
|
9717
|
-
**requestOptions:** `
|
|
9921
|
+
**requestOptions:** `InvocationsClient.RequestOptions`
|
|
9718
9922
|
|
|
9719
9923
|
</dd>
|
|
9720
9924
|
</dl>
|
|
@@ -9778,7 +9982,7 @@ await client.dubbing.resource.get("dubbing_id");
|
|
|
9778
9982
|
<dl>
|
|
9779
9983
|
<dd>
|
|
9780
9984
|
|
|
9781
|
-
**requestOptions:** `
|
|
9985
|
+
**requestOptions:** `ResourceClient.RequestOptions`
|
|
9782
9986
|
|
|
9783
9987
|
</dd>
|
|
9784
9988
|
</dl>
|
|
@@ -9852,7 +10056,7 @@ await client.dubbing.resource.migrateSegments("dubbing_id", {
|
|
|
9852
10056
|
<dl>
|
|
9853
10057
|
<dd>
|
|
9854
10058
|
|
|
9855
|
-
**requestOptions:** `
|
|
10059
|
+
**requestOptions:** `ResourceClient.RequestOptions`
|
|
9856
10060
|
|
|
9857
10061
|
</dd>
|
|
9858
10062
|
</dl>
|
|
@@ -9925,7 +10129,7 @@ await client.dubbing.resource.transcribe("dubbing_id", {
|
|
|
9925
10129
|
<dl>
|
|
9926
10130
|
<dd>
|
|
9927
10131
|
|
|
9928
|
-
**requestOptions:** `
|
|
10132
|
+
**requestOptions:** `ResourceClient.RequestOptions`
|
|
9929
10133
|
|
|
9930
10134
|
</dd>
|
|
9931
10135
|
</dl>
|
|
@@ -9998,7 +10202,7 @@ await client.dubbing.resource.translate("dubbing_id", {
|
|
|
9998
10202
|
<dl>
|
|
9999
10203
|
<dd>
|
|
10000
10204
|
|
|
10001
|
-
**requestOptions:** `
|
|
10205
|
+
**requestOptions:** `ResourceClient.RequestOptions`
|
|
10002
10206
|
|
|
10003
10207
|
</dd>
|
|
10004
10208
|
</dl>
|
|
@@ -10071,7 +10275,7 @@ await client.dubbing.resource.dub("dubbing_id", {
|
|
|
10071
10275
|
<dl>
|
|
10072
10276
|
<dd>
|
|
10073
10277
|
|
|
10074
|
-
**requestOptions:** `
|
|
10278
|
+
**requestOptions:** `ResourceClient.RequestOptions`
|
|
10075
10279
|
|
|
10076
10280
|
</dd>
|
|
10077
10281
|
</dl>
|
|
@@ -10110,7 +10314,7 @@ Regenerate the output media for a language using the latest Studio state. Please
|
|
|
10110
10314
|
<dd>
|
|
10111
10315
|
|
|
10112
10316
|
```typescript
|
|
10113
|
-
await client.dubbing.resource.render("dubbing_id", "
|
|
10317
|
+
await client.dubbing.resource.render("dubbing_id", "original", {
|
|
10114
10318
|
renderType: "mp4"
|
|
10115
10319
|
});
|
|
10116
10320
|
|
|
@@ -10152,7 +10356,7 @@ await client.dubbing.resource.render("dubbing_id", "language", {
|
|
|
10152
10356
|
<dl>
|
|
10153
10357
|
<dd>
|
|
10154
10358
|
|
|
10155
|
-
**requestOptions:** `
|
|
10359
|
+
**requestOptions:** `ResourceClient.RequestOptions`
|
|
10156
10360
|
|
|
10157
10361
|
</dd>
|
|
10158
10362
|
</dl>
|
|
@@ -10224,7 +10428,7 @@ await client.dubbing.audio.get("dubbing_id", "language_code");
|
|
|
10224
10428
|
<dl>
|
|
10225
10429
|
<dd>
|
|
10226
10430
|
|
|
10227
|
-
**requestOptions:** `
|
|
10431
|
+
**requestOptions:** `AudioClient.RequestOptions`
|
|
10228
10432
|
|
|
10229
10433
|
</dd>
|
|
10230
10434
|
</dl>
|
|
@@ -10306,7 +10510,7 @@ await client.dubbing.transcript.getTranscriptForDub("dubbing_id", "language_code
|
|
|
10306
10510
|
<dl>
|
|
10307
10511
|
<dd>
|
|
10308
10512
|
|
|
10309
|
-
**requestOptions:** `
|
|
10513
|
+
**requestOptions:** `TranscriptClient.RequestOptions`
|
|
10310
10514
|
|
|
10311
10515
|
</dd>
|
|
10312
10516
|
</dl>
|
|
@@ -10378,7 +10582,7 @@ await client.dubbing.resource.language.add("dubbing_id");
|
|
|
10378
10582
|
<dl>
|
|
10379
10583
|
<dd>
|
|
10380
10584
|
|
|
10381
|
-
**requestOptions:** `
|
|
10585
|
+
**requestOptions:** `LanguageClient.RequestOptions`
|
|
10382
10586
|
|
|
10383
10587
|
</dd>
|
|
10384
10588
|
</dl>
|
|
@@ -10466,7 +10670,7 @@ await client.dubbing.resource.segment.update("dubbing_id", "segment_id", "langua
|
|
|
10466
10670
|
<dl>
|
|
10467
10671
|
<dd>
|
|
10468
10672
|
|
|
10469
|
-
**requestOptions:** `
|
|
10673
|
+
**requestOptions:** `SegmentClient.RequestOptions`
|
|
10470
10674
|
|
|
10471
10675
|
</dd>
|
|
10472
10676
|
</dl>
|
|
@@ -10537,7 +10741,7 @@ await client.dubbing.resource.segment.delete("dubbing_id", "segment_id");
|
|
|
10537
10741
|
<dl>
|
|
10538
10742
|
<dd>
|
|
10539
10743
|
|
|
10540
|
-
**requestOptions:** `
|
|
10744
|
+
**requestOptions:** `SegmentClient.RequestOptions`
|
|
10541
10745
|
|
|
10542
10746
|
</dd>
|
|
10543
10747
|
</dl>
|
|
@@ -10617,7 +10821,7 @@ await client.dubbing.resource.speaker.update("dubbing_id", "speaker_id");
|
|
|
10617
10821
|
<dl>
|
|
10618
10822
|
<dd>
|
|
10619
10823
|
|
|
10620
|
-
**requestOptions:** `
|
|
10824
|
+
**requestOptions:** `SpeakerClient.RequestOptions`
|
|
10621
10825
|
|
|
10622
10826
|
</dd>
|
|
10623
10827
|
</dl>
|
|
@@ -10674,7 +10878,7 @@ await client.dubbing.resource.speaker.create("dubbing_id");
|
|
|
10674
10878
|
<dl>
|
|
10675
10879
|
<dd>
|
|
10676
10880
|
|
|
10677
|
-
**requestOptions:** `
|
|
10881
|
+
**requestOptions:** `SpeakerClient.RequestOptions`
|
|
10678
10882
|
|
|
10679
10883
|
</dd>
|
|
10680
10884
|
</dl>
|
|
@@ -10745,7 +10949,7 @@ await client.dubbing.resource.speaker.findSimilarVoices("dubbing_id", "speaker_i
|
|
|
10745
10949
|
<dl>
|
|
10746
10950
|
<dd>
|
|
10747
10951
|
|
|
10748
|
-
**requestOptions:** `
|
|
10952
|
+
**requestOptions:** `SpeakerClient.RequestOptions`
|
|
10749
10953
|
|
|
10750
10954
|
</dd>
|
|
10751
10955
|
</dl>
|
|
@@ -10828,7 +11032,7 @@ await client.dubbing.resource.speaker.segment.create("dubbing_id", "speaker_id",
|
|
|
10828
11032
|
<dl>
|
|
10829
11033
|
<dd>
|
|
10830
11034
|
|
|
10831
|
-
**requestOptions:** `
|
|
11035
|
+
**requestOptions:** `SegmentClient.RequestOptions`
|
|
10832
11036
|
|
|
10833
11037
|
</dd>
|
|
10834
11038
|
</dl>
|
|
@@ -10894,7 +11098,7 @@ await client.music.compositionPlan.create({
|
|
|
10894
11098
|
<dl>
|
|
10895
11099
|
<dd>
|
|
10896
11100
|
|
|
10897
|
-
**requestOptions:** `
|
|
11101
|
+
**requestOptions:** `CompositionPlanClient.RequestOptions`
|
|
10898
11102
|
|
|
10899
11103
|
</dd>
|
|
10900
11104
|
</dl>
|
|
@@ -10972,7 +11176,7 @@ await client.pronunciationDictionaries.rules.add("21m00Tcm4TlvDq8ikWAM", {
|
|
|
10972
11176
|
<dl>
|
|
10973
11177
|
<dd>
|
|
10974
11178
|
|
|
10975
|
-
**requestOptions:** `
|
|
11179
|
+
**requestOptions:** `RulesClient.RequestOptions`
|
|
10976
11180
|
|
|
10977
11181
|
</dd>
|
|
10978
11182
|
</dl>
|
|
@@ -11045,7 +11249,7 @@ await client.pronunciationDictionaries.rules.remove("21m00Tcm4TlvDq8ikWAM", {
|
|
|
11045
11249
|
<dl>
|
|
11046
11250
|
<dd>
|
|
11047
11251
|
|
|
11048
|
-
**requestOptions:** `
|
|
11252
|
+
**requestOptions:** `RulesClient.RequestOptions`
|
|
11049
11253
|
|
|
11050
11254
|
</dd>
|
|
11051
11255
|
</dl>
|
|
@@ -11109,7 +11313,7 @@ await client.serviceAccounts.apiKeys.list("service_account_user_id");
|
|
|
11109
11313
|
<dl>
|
|
11110
11314
|
<dd>
|
|
11111
11315
|
|
|
11112
|
-
**requestOptions:** `
|
|
11316
|
+
**requestOptions:** `ApiKeysClient.RequestOptions`
|
|
11113
11317
|
|
|
11114
11318
|
</dd>
|
|
11115
11319
|
</dl>
|
|
@@ -11150,7 +11354,7 @@ Create a new API key for a service account
|
|
|
11150
11354
|
```typescript
|
|
11151
11355
|
await client.serviceAccounts.apiKeys.create("service_account_user_id", {
|
|
11152
11356
|
name: "name",
|
|
11153
|
-
permissions:
|
|
11357
|
+
permissions: "all"
|
|
11154
11358
|
});
|
|
11155
11359
|
|
|
11156
11360
|
```
|
|
@@ -11183,7 +11387,7 @@ await client.serviceAccounts.apiKeys.create("service_account_user_id", {
|
|
|
11183
11387
|
<dl>
|
|
11184
11388
|
<dd>
|
|
11185
11389
|
|
|
11186
|
-
**requestOptions:** `
|
|
11390
|
+
**requestOptions:** `ApiKeysClient.RequestOptions`
|
|
11187
11391
|
|
|
11188
11392
|
</dd>
|
|
11189
11393
|
</dl>
|
|
@@ -11254,7 +11458,7 @@ await client.serviceAccounts.apiKeys.delete("service_account_user_id", "api_key_
|
|
|
11254
11458
|
<dl>
|
|
11255
11459
|
<dd>
|
|
11256
11460
|
|
|
11257
|
-
**requestOptions:** `
|
|
11461
|
+
**requestOptions:** `ApiKeysClient.RequestOptions`
|
|
11258
11462
|
|
|
11259
11463
|
</dd>
|
|
11260
11464
|
</dl>
|
|
@@ -11296,7 +11500,7 @@ Update an existing API key for a service account
|
|
|
11296
11500
|
await client.serviceAccounts.apiKeys.update("service_account_user_id", "api_key_id", {
|
|
11297
11501
|
isEnabled: true,
|
|
11298
11502
|
name: "Sneaky Fox",
|
|
11299
|
-
permissions:
|
|
11503
|
+
permissions: "all"
|
|
11300
11504
|
});
|
|
11301
11505
|
|
|
11302
11506
|
```
|
|
@@ -11337,7 +11541,7 @@ await client.serviceAccounts.apiKeys.update("service_account_user_id", "api_key_
|
|
|
11337
11541
|
<dl>
|
|
11338
11542
|
<dd>
|
|
11339
11543
|
|
|
11340
|
-
**requestOptions:** `
|
|
11544
|
+
**requestOptions:** `ApiKeysClient.RequestOptions`
|
|
11341
11545
|
|
|
11342
11546
|
</dd>
|
|
11343
11547
|
</dl>
|
|
@@ -11401,7 +11605,7 @@ await client.speechToText.transcripts.get("transcription_id");
|
|
|
11401
11605
|
<dl>
|
|
11402
11606
|
<dd>
|
|
11403
11607
|
|
|
11404
|
-
**requestOptions:** `
|
|
11608
|
+
**requestOptions:** `TranscriptsClient.RequestOptions`
|
|
11405
11609
|
|
|
11406
11610
|
</dd>
|
|
11407
11611
|
</dl>
|
|
@@ -11464,7 +11668,7 @@ await client.speechToText.transcripts.delete("transcription_id");
|
|
|
11464
11668
|
<dl>
|
|
11465
11669
|
<dd>
|
|
11466
11670
|
|
|
11467
|
-
**requestOptions:** `
|
|
11671
|
+
**requestOptions:** `TranscriptsClient.RequestOptions`
|
|
11468
11672
|
|
|
11469
11673
|
</dd>
|
|
11470
11674
|
</dl>
|
|
@@ -11520,7 +11724,7 @@ await client.studio.projects.list();
|
|
|
11520
11724
|
<dl>
|
|
11521
11725
|
<dd>
|
|
11522
11726
|
|
|
11523
|
-
**requestOptions:** `
|
|
11727
|
+
**requestOptions:** `ProjectsClient.RequestOptions`
|
|
11524
11728
|
|
|
11525
11729
|
</dd>
|
|
11526
11730
|
</dl>
|
|
@@ -11585,7 +11789,7 @@ await client.studio.projects.create({
|
|
|
11585
11789
|
<dl>
|
|
11586
11790
|
<dd>
|
|
11587
11791
|
|
|
11588
|
-
**requestOptions:** `
|
|
11792
|
+
**requestOptions:** `ProjectsClient.RequestOptions`
|
|
11589
11793
|
|
|
11590
11794
|
</dd>
|
|
11591
11795
|
</dl>
|
|
@@ -11658,7 +11862,7 @@ await client.studio.projects.get("21m00Tcm4TlvDq8ikWAM", {
|
|
|
11658
11862
|
<dl>
|
|
11659
11863
|
<dd>
|
|
11660
11864
|
|
|
11661
|
-
**requestOptions:** `
|
|
11865
|
+
**requestOptions:** `ProjectsClient.RequestOptions`
|
|
11662
11866
|
|
|
11663
11867
|
</dd>
|
|
11664
11868
|
</dl>
|
|
@@ -11733,7 +11937,7 @@ await client.studio.projects.update("21m00Tcm4TlvDq8ikWAM", {
|
|
|
11733
11937
|
<dl>
|
|
11734
11938
|
<dd>
|
|
11735
11939
|
|
|
11736
|
-
**requestOptions:** `
|
|
11940
|
+
**requestOptions:** `ProjectsClient.RequestOptions`
|
|
11737
11941
|
|
|
11738
11942
|
</dd>
|
|
11739
11943
|
</dl>
|
|
@@ -11796,7 +12000,7 @@ await client.studio.projects.delete("21m00Tcm4TlvDq8ikWAM");
|
|
|
11796
12000
|
<dl>
|
|
11797
12001
|
<dd>
|
|
11798
12002
|
|
|
11799
|
-
**requestOptions:** `
|
|
12003
|
+
**requestOptions:** `ProjectsClient.RequestOptions`
|
|
11800
12004
|
|
|
11801
12005
|
</dd>
|
|
11802
12006
|
</dl>
|
|
@@ -11859,7 +12063,7 @@ await client.studio.projects.convert("21m00Tcm4TlvDq8ikWAM");
|
|
|
11859
12063
|
<dl>
|
|
11860
12064
|
<dd>
|
|
11861
12065
|
|
|
11862
|
-
**requestOptions:** `
|
|
12066
|
+
**requestOptions:** `ProjectsClient.RequestOptions`
|
|
11863
12067
|
|
|
11864
12068
|
</dd>
|
|
11865
12069
|
</dl>
|
|
@@ -11935,7 +12139,7 @@ await client.studio.projects.pronunciationDictionaries.create("21m00Tcm4TlvDq8ik
|
|
|
11935
12139
|
<dl>
|
|
11936
12140
|
<dd>
|
|
11937
12141
|
|
|
11938
|
-
**requestOptions:** `
|
|
12142
|
+
**requestOptions:** `PronunciationDictionariesClient.RequestOptions`
|
|
11939
12143
|
|
|
11940
12144
|
</dd>
|
|
11941
12145
|
</dl>
|
|
@@ -12007,7 +12211,7 @@ await client.studio.projects.content.update("21m00Tcm4TlvDq8ikWAM", {});
|
|
|
12007
12211
|
<dl>
|
|
12008
12212
|
<dd>
|
|
12009
12213
|
|
|
12010
|
-
**requestOptions:** `
|
|
12214
|
+
**requestOptions:** `ContentClient.RequestOptions`
|
|
12011
12215
|
|
|
12012
12216
|
</dd>
|
|
12013
12217
|
</dl>
|
|
@@ -12071,7 +12275,7 @@ await client.studio.projects.snapshots.list("21m00Tcm4TlvDq8ikWAM");
|
|
|
12071
12275
|
<dl>
|
|
12072
12276
|
<dd>
|
|
12073
12277
|
|
|
12074
|
-
**requestOptions:** `
|
|
12278
|
+
**requestOptions:** `SnapshotsClient.RequestOptions`
|
|
12075
12279
|
|
|
12076
12280
|
</dd>
|
|
12077
12281
|
</dl>
|
|
@@ -12142,7 +12346,7 @@ await client.studio.projects.snapshots.get("21m00Tcm4TlvDq8ikWAM", "21m00Tcm4Tlv
|
|
|
12142
12346
|
<dl>
|
|
12143
12347
|
<dd>
|
|
12144
12348
|
|
|
12145
|
-
**requestOptions:** `
|
|
12349
|
+
**requestOptions:** `SnapshotsClient.RequestOptions`
|
|
12146
12350
|
|
|
12147
12351
|
</dd>
|
|
12148
12352
|
</dl>
|
|
@@ -12221,7 +12425,7 @@ await client.studio.projects.snapshots.stream("project_id", "project_snapshot_id
|
|
|
12221
12425
|
<dl>
|
|
12222
12426
|
<dd>
|
|
12223
12427
|
|
|
12224
|
-
**requestOptions:** `
|
|
12428
|
+
**requestOptions:** `SnapshotsClient.RequestOptions`
|
|
12225
12429
|
|
|
12226
12430
|
</dd>
|
|
12227
12431
|
</dl>
|
|
@@ -12292,7 +12496,7 @@ await client.studio.projects.snapshots.streamArchive("project_id", "project_snap
|
|
|
12292
12496
|
<dl>
|
|
12293
12497
|
<dd>
|
|
12294
12498
|
|
|
12295
|
-
**requestOptions:** `
|
|
12499
|
+
**requestOptions:** `SnapshotsClient.RequestOptions`
|
|
12296
12500
|
|
|
12297
12501
|
</dd>
|
|
12298
12502
|
</dl>
|
|
@@ -12356,7 +12560,7 @@ await client.studio.projects.chapters.list("21m00Tcm4TlvDq8ikWAM");
|
|
|
12356
12560
|
<dl>
|
|
12357
12561
|
<dd>
|
|
12358
12562
|
|
|
12359
|
-
**requestOptions:** `
|
|
12563
|
+
**requestOptions:** `ChaptersClient.RequestOptions`
|
|
12360
12564
|
|
|
12361
12565
|
</dd>
|
|
12362
12566
|
</dl>
|
|
@@ -12429,7 +12633,7 @@ await client.studio.projects.chapters.create("21m00Tcm4TlvDq8ikWAM", {
|
|
|
12429
12633
|
<dl>
|
|
12430
12634
|
<dd>
|
|
12431
12635
|
|
|
12432
|
-
**requestOptions:** `
|
|
12636
|
+
**requestOptions:** `ChaptersClient.RequestOptions`
|
|
12433
12637
|
|
|
12434
12638
|
</dd>
|
|
12435
12639
|
</dl>
|
|
@@ -12500,7 +12704,7 @@ await client.studio.projects.chapters.get("21m00Tcm4TlvDq8ikWAM", "21m00Tcm4TlvD
|
|
|
12500
12704
|
<dl>
|
|
12501
12705
|
<dd>
|
|
12502
12706
|
|
|
12503
|
-
**requestOptions:** `
|
|
12707
|
+
**requestOptions:** `ChaptersClient.RequestOptions`
|
|
12504
12708
|
|
|
12505
12709
|
</dd>
|
|
12506
12710
|
</dl>
|
|
@@ -12579,7 +12783,7 @@ await client.studio.projects.chapters.update("21m00Tcm4TlvDq8ikWAM", "21m00Tcm4T
|
|
|
12579
12783
|
<dl>
|
|
12580
12784
|
<dd>
|
|
12581
12785
|
|
|
12582
|
-
**requestOptions:** `
|
|
12786
|
+
**requestOptions:** `ChaptersClient.RequestOptions`
|
|
12583
12787
|
|
|
12584
12788
|
</dd>
|
|
12585
12789
|
</dl>
|
|
@@ -12650,7 +12854,7 @@ await client.studio.projects.chapters.delete("21m00Tcm4TlvDq8ikWAM", "21m00Tcm4T
|
|
|
12650
12854
|
<dl>
|
|
12651
12855
|
<dd>
|
|
12652
12856
|
|
|
12653
|
-
**requestOptions:** `
|
|
12857
|
+
**requestOptions:** `ChaptersClient.RequestOptions`
|
|
12654
12858
|
|
|
12655
12859
|
</dd>
|
|
12656
12860
|
</dl>
|
|
@@ -12721,7 +12925,7 @@ await client.studio.projects.chapters.convert("21m00Tcm4TlvDq8ikWAM", "21m00Tcm4
|
|
|
12721
12925
|
<dl>
|
|
12722
12926
|
<dd>
|
|
12723
12927
|
|
|
12724
|
-
**requestOptions:** `
|
|
12928
|
+
**requestOptions:** `ChaptersClient.RequestOptions`
|
|
12725
12929
|
|
|
12726
12930
|
</dd>
|
|
12727
12931
|
</dl>
|
|
@@ -12793,7 +12997,7 @@ await client.studio.projects.chapters.snapshots.list("21m00Tcm4TlvDq8ikWAM", "21
|
|
|
12793
12997
|
<dl>
|
|
12794
12998
|
<dd>
|
|
12795
12999
|
|
|
12796
|
-
**requestOptions:** `
|
|
13000
|
+
**requestOptions:** `SnapshotsClient.RequestOptions`
|
|
12797
13001
|
|
|
12798
13002
|
</dd>
|
|
12799
13003
|
</dl>
|
|
@@ -12872,7 +13076,7 @@ await client.studio.projects.chapters.snapshots.get("21m00Tcm4TlvDq8ikWAM", "21m
|
|
|
12872
13076
|
<dl>
|
|
12873
13077
|
<dd>
|
|
12874
13078
|
|
|
12875
|
-
**requestOptions:** `
|
|
13079
|
+
**requestOptions:** `SnapshotsClient.RequestOptions`
|
|
12876
13080
|
|
|
12877
13081
|
</dd>
|
|
12878
13082
|
</dl>
|
|
@@ -12959,7 +13163,7 @@ await client.studio.projects.chapters.snapshots.stream("project_id", "chapter_id
|
|
|
12959
13163
|
<dl>
|
|
12960
13164
|
<dd>
|
|
12961
13165
|
|
|
12962
|
-
**requestOptions:** `
|
|
13166
|
+
**requestOptions:** `SnapshotsClient.RequestOptions`
|
|
12963
13167
|
|
|
12964
13168
|
</dd>
|
|
12965
13169
|
</dl>
|
|
@@ -13023,7 +13227,7 @@ await client.textToVoice.preview.stream("generated_voice_id");
|
|
|
13023
13227
|
<dl>
|
|
13024
13228
|
<dd>
|
|
13025
13229
|
|
|
13026
|
-
**requestOptions:** `
|
|
13230
|
+
**requestOptions:** `PreviewClient.RequestOptions`
|
|
13027
13231
|
|
|
13028
13232
|
</dd>
|
|
13029
13233
|
</dl>
|
|
@@ -13087,7 +13291,7 @@ await client.tokens.singleUse.create("realtime_scribe");
|
|
|
13087
13291
|
<dl>
|
|
13088
13292
|
<dd>
|
|
13089
13293
|
|
|
13090
|
-
**requestOptions:** `
|
|
13294
|
+
**requestOptions:** `SingleUseClient.RequestOptions`
|
|
13091
13295
|
|
|
13092
13296
|
</dd>
|
|
13093
13297
|
</dl>
|
|
@@ -13143,7 +13347,7 @@ await client.user.subscription.get();
|
|
|
13143
13347
|
<dl>
|
|
13144
13348
|
<dd>
|
|
13145
13349
|
|
|
13146
|
-
**requestOptions:** `
|
|
13350
|
+
**requestOptions:** `SubscriptionClient.RequestOptions`
|
|
13147
13351
|
|
|
13148
13352
|
</dd>
|
|
13149
13353
|
</dl>
|
|
@@ -13199,7 +13403,7 @@ await client.voices.settings.getDefault();
|
|
|
13199
13403
|
<dl>
|
|
13200
13404
|
<dd>
|
|
13201
13405
|
|
|
13202
|
-
**requestOptions:** `
|
|
13406
|
+
**requestOptions:** `SettingsClient.RequestOptions`
|
|
13203
13407
|
|
|
13204
13408
|
</dd>
|
|
13205
13409
|
</dl>
|
|
@@ -13262,7 +13466,7 @@ await client.voices.settings.get("21m00Tcm4TlvDq8ikWAM");
|
|
|
13262
13466
|
<dl>
|
|
13263
13467
|
<dd>
|
|
13264
13468
|
|
|
13265
|
-
**requestOptions:** `
|
|
13469
|
+
**requestOptions:** `SettingsClient.RequestOptions`
|
|
13266
13470
|
|
|
13267
13471
|
</dd>
|
|
13268
13472
|
</dl>
|
|
@@ -13339,7 +13543,7 @@ await client.voices.settings.update("21m00Tcm4TlvDq8ikWAM", {
|
|
|
13339
13543
|
<dl>
|
|
13340
13544
|
<dd>
|
|
13341
13545
|
|
|
13342
|
-
**requestOptions:** `
|
|
13546
|
+
**requestOptions:** `SettingsClient.RequestOptions`
|
|
13343
13547
|
|
|
13344
13548
|
</dd>
|
|
13345
13549
|
</dl>
|
|
@@ -13406,7 +13610,7 @@ await client.voices.ivc.create({
|
|
|
13406
13610
|
<dl>
|
|
13407
13611
|
<dd>
|
|
13408
13612
|
|
|
13409
|
-
**requestOptions:** `
|
|
13613
|
+
**requestOptions:** `IvcClient.RequestOptions`
|
|
13410
13614
|
|
|
13411
13615
|
</dd>
|
|
13412
13616
|
</dl>
|
|
@@ -13473,7 +13677,7 @@ await client.voices.pvc.create({
|
|
|
13473
13677
|
<dl>
|
|
13474
13678
|
<dd>
|
|
13475
13679
|
|
|
13476
|
-
**requestOptions:** `
|
|
13680
|
+
**requestOptions:** `PvcClient.RequestOptions`
|
|
13477
13681
|
|
|
13478
13682
|
</dd>
|
|
13479
13683
|
</dl>
|
|
@@ -13544,7 +13748,7 @@ await client.voices.pvc.update("21m00Tcm4TlvDq8ikWAM");
|
|
|
13544
13748
|
<dl>
|
|
13545
13749
|
<dd>
|
|
13546
13750
|
|
|
13547
|
-
**requestOptions:** `
|
|
13751
|
+
**requestOptions:** `PvcClient.RequestOptions`
|
|
13548
13752
|
|
|
13549
13753
|
</dd>
|
|
13550
13754
|
</dl>
|
|
@@ -13615,7 +13819,7 @@ await client.voices.pvc.train("21m00Tcm4TlvDq8ikWAM");
|
|
|
13615
13819
|
<dl>
|
|
13616
13820
|
<dd>
|
|
13617
13821
|
|
|
13618
|
-
**requestOptions:** `
|
|
13822
|
+
**requestOptions:** `PvcClient.RequestOptions`
|
|
13619
13823
|
|
|
13620
13824
|
</dd>
|
|
13621
13825
|
</dl>
|
|
@@ -13689,7 +13893,7 @@ await client.voices.pvc.samples.create("21m00Tcm4TlvDq8ikWAM", {
|
|
|
13689
13893
|
<dl>
|
|
13690
13894
|
<dd>
|
|
13691
13895
|
|
|
13692
|
-
**requestOptions:** `
|
|
13896
|
+
**requestOptions:** `SamplesClient.RequestOptions`
|
|
13693
13897
|
|
|
13694
13898
|
</dd>
|
|
13695
13899
|
</dl>
|
|
@@ -13768,7 +13972,7 @@ await client.voices.pvc.samples.update("21m00Tcm4TlvDq8ikWAM", "VW7YKqPnjY4h39yT
|
|
|
13768
13972
|
<dl>
|
|
13769
13973
|
<dd>
|
|
13770
13974
|
|
|
13771
|
-
**requestOptions:** `
|
|
13975
|
+
**requestOptions:** `SamplesClient.RequestOptions`
|
|
13772
13976
|
|
|
13773
13977
|
</dd>
|
|
13774
13978
|
</dl>
|
|
@@ -13839,7 +14043,7 @@ await client.voices.pvc.samples.delete("21m00Tcm4TlvDq8ikWAM", "VW7YKqPnjY4h39yT
|
|
|
13839
14043
|
<dl>
|
|
13840
14044
|
<dd>
|
|
13841
14045
|
|
|
13842
|
-
**requestOptions:** `
|
|
14046
|
+
**requestOptions:** `SamplesClient.RequestOptions`
|
|
13843
14047
|
|
|
13844
14048
|
</dd>
|
|
13845
14049
|
</dl>
|
|
@@ -13913,7 +14117,7 @@ await client.voices.pvc.verification.request("21m00Tcm4TlvDq8ikWAM", {
|
|
|
13913
14117
|
<dl>
|
|
13914
14118
|
<dd>
|
|
13915
14119
|
|
|
13916
|
-
**requestOptions:** `
|
|
14120
|
+
**requestOptions:** `VerificationClient.RequestOptions`
|
|
13917
14121
|
|
|
13918
14122
|
</dd>
|
|
13919
14123
|
</dl>
|
|
@@ -13995,7 +14199,7 @@ await client.voices.pvc.samples.audio.get("21m00Tcm4TlvDq8ikWAM", "VW7YKqPnjY4h3
|
|
|
13995
14199
|
<dl>
|
|
13996
14200
|
<dd>
|
|
13997
14201
|
|
|
13998
|
-
**requestOptions:** `
|
|
14202
|
+
**requestOptions:** `AudioClient.RequestOptions`
|
|
13999
14203
|
|
|
14000
14204
|
</dd>
|
|
14001
14205
|
</dl>
|
|
@@ -14067,7 +14271,7 @@ await client.voices.pvc.samples.waveform.get("21m00Tcm4TlvDq8ikWAM", "VW7YKqPnjY
|
|
|
14067
14271
|
<dl>
|
|
14068
14272
|
<dd>
|
|
14069
14273
|
|
|
14070
|
-
**requestOptions:** `
|
|
14274
|
+
**requestOptions:** `WaveformClient.RequestOptions`
|
|
14071
14275
|
|
|
14072
14276
|
</dd>
|
|
14073
14277
|
</dl>
|
|
@@ -14139,7 +14343,7 @@ await client.voices.pvc.samples.speakers.get("21m00Tcm4TlvDq8ikWAM", "VW7YKqPnjY
|
|
|
14139
14343
|
<dl>
|
|
14140
14344
|
<dd>
|
|
14141
14345
|
|
|
14142
|
-
**requestOptions:** `
|
|
14346
|
+
**requestOptions:** `SpeakersClient.RequestOptions`
|
|
14143
14347
|
|
|
14144
14348
|
</dd>
|
|
14145
14349
|
</dl>
|
|
@@ -14210,7 +14414,7 @@ await client.voices.pvc.samples.speakers.separate("21m00Tcm4TlvDq8ikWAM", "VW7YK
|
|
|
14210
14414
|
<dl>
|
|
14211
14415
|
<dd>
|
|
14212
14416
|
|
|
14213
|
-
**requestOptions:** `
|
|
14417
|
+
**requestOptions:** `SpeakersClient.RequestOptions`
|
|
14214
14418
|
|
|
14215
14419
|
</dd>
|
|
14216
14420
|
</dl>
|
|
@@ -14290,7 +14494,7 @@ await client.voices.pvc.samples.speakers.audio.get("21m00Tcm4TlvDq8ikWAM", "VW7Y
|
|
|
14290
14494
|
<dl>
|
|
14291
14495
|
<dd>
|
|
14292
14496
|
|
|
14293
|
-
**requestOptions:** `
|
|
14497
|
+
**requestOptions:** `AudioClient.RequestOptions`
|
|
14294
14498
|
|
|
14295
14499
|
</dd>
|
|
14296
14500
|
</dl>
|
|
@@ -14354,7 +14558,7 @@ await client.voices.pvc.verification.captcha.get("21m00Tcm4TlvDq8ikWAM");
|
|
|
14354
14558
|
<dl>
|
|
14355
14559
|
<dd>
|
|
14356
14560
|
|
|
14357
|
-
**requestOptions:** `
|
|
14561
|
+
**requestOptions:** `CaptchaClient.RequestOptions`
|
|
14358
14562
|
|
|
14359
14563
|
</dd>
|
|
14360
14564
|
</dl>
|
|
@@ -14427,7 +14631,7 @@ await client.voices.pvc.verification.captcha.verify("21m00Tcm4TlvDq8ikWAM", {
|
|
|
14427
14631
|
<dl>
|
|
14428
14632
|
<dd>
|
|
14429
14633
|
|
|
14430
|
-
**requestOptions:** `
|
|
14634
|
+
**requestOptions:** `CaptchaClient.RequestOptions`
|
|
14431
14635
|
|
|
14432
14636
|
</dd>
|
|
14433
14637
|
</dl>
|
|
@@ -14499,7 +14703,7 @@ await client.voices.samples.audio.get("voice_id", "sample_id");
|
|
|
14499
14703
|
<dl>
|
|
14500
14704
|
<dd>
|
|
14501
14705
|
|
|
14502
|
-
**requestOptions:** `
|
|
14706
|
+
**requestOptions:** `AudioClient.RequestOptions`
|
|
14503
14707
|
|
|
14504
14708
|
</dd>
|
|
14505
14709
|
</dl>
|
|
@@ -14565,7 +14769,7 @@ await client.workspace.groups.search({
|
|
|
14565
14769
|
<dl>
|
|
14566
14770
|
<dd>
|
|
14567
14771
|
|
|
14568
|
-
**requestOptions:** `
|
|
14772
|
+
**requestOptions:** `GroupsClient.RequestOptions`
|
|
14569
14773
|
|
|
14570
14774
|
</dd>
|
|
14571
14775
|
</dl>
|
|
@@ -14631,7 +14835,7 @@ await client.workspace.invites.create({
|
|
|
14631
14835
|
<dl>
|
|
14632
14836
|
<dd>
|
|
14633
14837
|
|
|
14634
|
-
**requestOptions:** `
|
|
14838
|
+
**requestOptions:** `InvitesClient.RequestOptions`
|
|
14635
14839
|
|
|
14636
14840
|
</dd>
|
|
14637
14841
|
</dl>
|
|
@@ -14696,7 +14900,7 @@ await client.workspace.invites.createBatch({
|
|
|
14696
14900
|
<dl>
|
|
14697
14901
|
<dd>
|
|
14698
14902
|
|
|
14699
|
-
**requestOptions:** `
|
|
14903
|
+
**requestOptions:** `InvitesClient.RequestOptions`
|
|
14700
14904
|
|
|
14701
14905
|
</dd>
|
|
14702
14906
|
</dl>
|
|
@@ -14761,7 +14965,7 @@ await client.workspace.invites.delete({
|
|
|
14761
14965
|
<dl>
|
|
14762
14966
|
<dd>
|
|
14763
14967
|
|
|
14764
|
-
**requestOptions:** `
|
|
14968
|
+
**requestOptions:** `InvitesClient.RequestOptions`
|
|
14765
14969
|
|
|
14766
14970
|
</dd>
|
|
14767
14971
|
</dl>
|
|
@@ -14827,7 +15031,7 @@ await client.workspace.members.update({
|
|
|
14827
15031
|
<dl>
|
|
14828
15032
|
<dd>
|
|
14829
15033
|
|
|
14830
|
-
**requestOptions:** `
|
|
15034
|
+
**requestOptions:** `MembersClient.RequestOptions`
|
|
14831
15035
|
|
|
14832
15036
|
</dd>
|
|
14833
15037
|
</dl>
|
|
@@ -14901,7 +15105,7 @@ await client.workspace.resources.get("resource_id", {
|
|
|
14901
15105
|
<dl>
|
|
14902
15106
|
<dd>
|
|
14903
15107
|
|
|
14904
|
-
**requestOptions:** `
|
|
15108
|
+
**requestOptions:** `ResourcesClient.RequestOptions`
|
|
14905
15109
|
|
|
14906
15110
|
</dd>
|
|
14907
15111
|
</dl>
|
|
@@ -14975,7 +15179,7 @@ await client.workspace.resources.share("resource_id", {
|
|
|
14975
15179
|
<dl>
|
|
14976
15180
|
<dd>
|
|
14977
15181
|
|
|
14978
|
-
**requestOptions:** `
|
|
15182
|
+
**requestOptions:** `ResourcesClient.RequestOptions`
|
|
14979
15183
|
|
|
14980
15184
|
</dd>
|
|
14981
15185
|
</dl>
|
|
@@ -15048,7 +15252,7 @@ await client.workspace.resources.unshare("resource_id", {
|
|
|
15048
15252
|
<dl>
|
|
15049
15253
|
<dd>
|
|
15050
15254
|
|
|
15051
|
-
**requestOptions:** `
|
|
15255
|
+
**requestOptions:** `ResourcesClient.RequestOptions`
|
|
15052
15256
|
|
|
15053
15257
|
</dd>
|
|
15054
15258
|
</dl>
|
|
@@ -15122,7 +15326,7 @@ await client.workspace.groups.members.remove("group_id", {
|
|
|
15122
15326
|
<dl>
|
|
15123
15327
|
<dd>
|
|
15124
15328
|
|
|
15125
|
-
**requestOptions:** `
|
|
15329
|
+
**requestOptions:** `MembersClient.RequestOptions`
|
|
15126
15330
|
|
|
15127
15331
|
</dd>
|
|
15128
15332
|
</dl>
|
|
@@ -15195,7 +15399,7 @@ await client.workspace.groups.members.add("group_id", {
|
|
|
15195
15399
|
<dl>
|
|
15196
15400
|
<dd>
|
|
15197
15401
|
|
|
15198
|
-
**requestOptions:** `
|
|
15402
|
+
**requestOptions:** `MembersClient.RequestOptions`
|
|
15199
15403
|
|
|
15200
15404
|
</dd>
|
|
15201
15405
|
</dl>
|