@elevenlabs/elevenlabs-js 2.0.0 → 2.1.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/.mock/asyncapi.yml +6 -6
- package/.mock/definition/__package__.yml +110 -26
- package/.mock/definition/conversationalAi/agents/knowledgeBase.yml +32 -0
- package/.mock/definition/conversationalAi/agents/link.yml +2 -1
- package/.mock/definition/conversationalAi/agents/llmUsage.yml +51 -0
- package/.mock/definition/conversationalAi/llmUsage.yml +52 -0
- package/.mock/definition/v1TextToSpeechVoiceIdMultiStreamInput.yml +5 -3
- package/.mock/openapi.json +501 -1
- package/README.md +13 -13
- package/api/resources/audioIsolation/client/Client.js +25 -10
- package/api/resources/audioIsolation/client/requests/BodyAudioIsolationStreamV1AudioIsolationStreamPost.d.ts +1 -1
- package/api/resources/audioIsolation/client/requests/BodyAudioIsolationV1AudioIsolationPost.d.ts +1 -1
- package/api/resources/audioNative/client/Client.js +57 -26
- package/api/resources/audioNative/client/requests/BodyCreatesAudioNativeEnabledProjectV1AudioNativePost.d.ts +5 -5
- package/api/resources/audioNative/client/requests/BodyUpdateAudioNativeProjectContentV1AudioNativeProjectIdContentPost.d.ts +2 -2
- package/api/resources/conversationalAi/client/Client.d.ts +3 -0
- package/api/resources/conversationalAi/client/Client.js +47 -21
- package/api/resources/conversationalAi/resources/agents/client/Client.d.ts +13 -7
- package/api/resources/conversationalAi/resources/agents/client/Client.js +122 -38
- package/api/resources/conversationalAi/resources/agents/client/requests/AgentsListRequest.d.ts +1 -1
- package/api/resources/conversationalAi/resources/agents/client/requests/BodyCreateAgentV1ConvaiAgentsCreatePost.d.ts +3 -3
- package/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.d.ts +5 -5
- package/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.d.ts +5 -5
- package/api/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +2 -2
- package/api/resources/conversationalAi/resources/agents/resources/index.d.ts +3 -0
- package/api/resources/conversationalAi/resources/agents/resources/index.js +4 -1
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.d.ts +44 -0
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +137 -0
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/index.js +2 -0
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/index.js +17 -0
- package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +18 -4
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.d.ts +45 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +141 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.js +17 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.d.ts +15 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.js +2 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/index.js +17 -0
- package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +16 -5
- package/api/resources/conversationalAi/resources/agents/resources/widget/client/requests/WidgetGetRequest.d.ts +1 -1
- package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.d.ts +1 -1
- package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +17 -6
- package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/requests/BodyPostAgentAvatarV1ConvaiAgentsAgentIdAvatarPost.d.ts +2 -2
- package/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +4 -4
- package/api/resources/conversationalAi/resources/batchCalls/client/Client.js +55 -18
- package/api/resources/conversationalAi/resources/batchCalls/client/requests/BatchCallsListRequest.d.ts +1 -1
- package/api/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +8 -8
- package/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +1 -1
- package/api/resources/conversationalAi/resources/conversations/client/Client.js +57 -19
- package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +2 -2
- package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +5 -5
- package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +9 -3
- package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +10 -4
- package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +32 -9
- package/api/resources/conversationalAi/resources/index.d.ts +2 -0
- package/api/resources/conversationalAi/resources/index.js +3 -1
- package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +20 -7
- package/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.d.ts +3 -3
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +21 -5
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +105 -34
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsGetAgentsRequest.d.ts +1 -1
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +15 -4
- package/api/resources/conversationalAi/resources/llmUsage/client/Client.d.ts +48 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/Client.js +144 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/index.js +17 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.d.ts +19 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/requests/index.js +2 -0
- package/api/resources/conversationalAi/resources/llmUsage/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/llmUsage/index.js +17 -0
- package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.d.ts +1 -1
- package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +72 -22
- package/api/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +1 -1
- package/api/resources/conversationalAi/resources/secrets/client/Client.js +40 -12
- package/api/resources/conversationalAi/resources/settings/client/Client.js +32 -9
- package/api/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +3 -3
- package/api/resources/conversationalAi/resources/sipTrunk/client/Client.d.ts +3 -3
- package/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +19 -8
- package/api/resources/conversationalAi/resources/sipTrunk/client/requests/BodyHandleAnOutboundCallViaSipTrunkV1ConvaiSipTrunkOutboundCallPost.d.ts +7 -7
- package/api/resources/conversationalAi/resources/twilio/client/Client.d.ts +3 -3
- package/api/resources/conversationalAi/resources/twilio/client/Client.js +19 -8
- package/api/resources/conversationalAi/resources/twilio/client/requests/BodyHandleAnOutboundCallViaTwilioV1ConvaiTwilioOutboundCallPost.d.ts +7 -7
- package/api/resources/dubbing/client/Client.js +77 -40
- package/api/resources/dubbing/client/requests/BodyDubAVideoOrAnAudioFileV1DubbingPost.d.ts +14 -14
- package/api/resources/dubbing/resources/audio/client/Client.js +9 -3
- package/api/resources/dubbing/resources/resource/client/Client.d.ts +1 -1
- package/api/resources/dubbing/resources/resource/client/Client.js +82 -25
- package/api/resources/dubbing/resources/resource/client/requests/BodyRenderAudioOrVideoForTheGivenLanguageV1DubbingResourceDubbingIdRenderLanguagePost.d.ts +2 -2
- package/api/resources/dubbing/resources/resource/resources/language/client/Client.js +19 -5
- package/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +38 -9
- package/api/resources/dubbing/resources/resource/resources/segment/client/requests/SegmentUpdatePayload.d.ts +2 -2
- package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +33 -9
- package/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +1 -1
- package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.d.ts +2 -2
- package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +23 -7
- package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/SegmentCreatePayload.d.ts +4 -4
- package/api/resources/dubbing/resources/transcript/client/Client.js +14 -5
- package/api/resources/dubbing/resources/transcript/client/requests/TranscriptGetTranscriptForDubRequest.d.ts +1 -1
- package/api/resources/forcedAlignment/client/Client.js +17 -6
- package/api/resources/forcedAlignment/client/requests/BodyCreateForcedAlignmentV1ForcedAlignmentPost.d.ts +1 -1
- package/api/resources/history/client/Client.js +73 -21
- package/api/resources/history/client/requests/DownloadHistoryRequest.d.ts +2 -2
- package/api/resources/history/client/requests/HistoryListRequest.d.ts +3 -3
- package/api/resources/models/client/Client.js +18 -4
- package/api/resources/pronunciationDictionaries/client/Client.d.ts +1 -1
- package/api/resources/pronunciationDictionaries/client/Client.js +73 -25
- package/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromFilePost.d.ts +1 -1
- package/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPost.d.ts +2 -2
- package/api/resources/pronunciationDictionaries/client/requests/PronunciationDictionariesListRequest.d.ts +2 -2
- package/api/resources/pronunciationDictionaries/resources/rules/client/Client.d.ts +2 -2
- package/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +37 -12
- package/api/resources/pronunciationDictionaries/resources/rules/client/requests/PronunciationDictionary.d.ts +1 -1
- package/api/resources/pronunciationDictionaries/resources/rules/client/requests/RemovePronunciationDictionaryRulesRequest.d.ts +2 -2
- package/api/resources/samples/client/Client.js +18 -4
- package/api/resources/speechToSpeech/client/Client.js +49 -34
- package/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechStreamingV1SpeechToSpeechVoiceIdStreamPost.d.ts +9 -9
- package/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost.d.ts +9 -9
- package/api/resources/speechToText/client/Client.js +13 -13
- package/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +10 -10
- package/api/resources/studio/client/Client.d.ts +3 -3
- package/api/resources/studio/client/Client.js +21 -8
- package/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +7 -7
- package/api/resources/studio/resources/projects/client/Client.d.ts +5 -5
- package/api/resources/studio/resources/projects/client/Client.js +147 -66
- package/api/resources/studio/resources/projects/client/requests/BodyCreateStudioProjectV1StudioProjectsPost.d.ts +22 -22
- package/api/resources/studio/resources/projects/client/requests/BodyUpdateStudioProjectV1StudioProjectsProjectIdPost.d.ts +6 -6
- package/api/resources/studio/resources/projects/resources/chapters/client/Client.js +96 -26
- package/api/resources/studio/resources/projects/resources/chapters/client/requests/BodyCreateChapterV1StudioProjectsProjectIdChaptersPost.d.ts +1 -1
- package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +41 -12
- package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/BodyStreamChapterAudioV1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.d.ts +1 -1
- package/api/resources/studio/resources/projects/resources/content/client/Client.js +24 -10
- package/api/resources/studio/resources/projects/resources/content/client/requests/BodyUpdateStudioProjectContentV1StudioProjectsProjectIdContentPost.d.ts +3 -3
- package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.d.ts +2 -2
- package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +18 -7
- package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost.d.ts +4 -4
- package/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +49 -15
- package/api/resources/studio/resources/projects/resources/snapshots/client/requests/BodyStreamStudioProjectAudioV1StudioProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.d.ts +1 -1
- package/api/resources/textToSoundEffects/client/Client.js +12 -6
- package/api/resources/textToSoundEffects/client/requests/CreateSoundEffectRequest.d.ts +3 -3
- package/api/resources/textToSpeech/client/Client.js +64 -26
- package/api/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.d.ts +16 -16
- package/api/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.d.ts +16 -16
- package/api/resources/textToSpeech/client/requests/TextToSpeechRequest.d.ts +16 -16
- package/api/resources/textToSpeech/client/requests/TextToSpeechWithTimestampsRequest.d.ts +14 -14
- package/api/resources/textToVoice/client/Client.d.ts +4 -4
- package/api/resources/textToVoice/client/Client.js +40 -16
- package/api/resources/textToVoice/client/requests/SaveVoicePreviewRequest.d.ts +7 -7
- package/api/resources/textToVoice/client/requests/VoiceDesignRequest.d.ts +5 -5
- package/api/resources/usage/client/Client.d.ts +2 -2
- package/api/resources/usage/client/Client.js +23 -10
- package/api/resources/usage/client/requests/UsageGetRequest.d.ts +7 -7
- package/api/resources/user/client/Client.js +18 -4
- package/api/resources/user/resources/subscription/client/Client.js +18 -4
- package/api/resources/voices/client/Client.d.ts +3 -3
- package/api/resources/voices/client/Client.js +158 -49
- package/api/resources/voices/client/requests/BodyAddSharedVoiceV1VoicesAddPublicUserIdVoiceIdPost.d.ts +2 -2
- package/api/resources/voices/client/requests/BodyEditVoiceV1VoicesVoiceIdEditPost.d.ts +1 -1
- package/api/resources/voices/client/requests/BodyGetSimilarLibraryVoicesV1SimilarVoicesPost.d.ts +3 -3
- package/api/resources/voices/client/requests/VoicesGetAllRequest.d.ts +1 -1
- package/api/resources/voices/client/requests/VoicesGetRequest.d.ts +1 -1
- package/api/resources/voices/client/requests/VoicesGetSharedRequest.d.ts +7 -7
- package/api/resources/voices/client/requests/VoicesSearchRequest.d.ts +8 -8
- package/api/resources/voices/resources/ivc/client/Client.js +20 -6
- package/api/resources/voices/resources/ivc/client/requests/BodyAddVoiceV1VoicesAddPost.d.ts +1 -1
- package/api/resources/voices/resources/pvc/client/Client.js +56 -15
- package/api/resources/voices/resources/pvc/client/requests/BodyRunPvcTrainingV1VoicesPvcVoiceIdTrainPost.d.ts +1 -1
- package/api/resources/voices/resources/pvc/resources/samples/client/Client.js +52 -15
- package/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyAddSamplesToPvcVoiceV1VoicesPvcVoiceIdSamplesPost.d.ts +1 -1
- package/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyUpdatePvcVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost.d.ts +4 -4
- package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +15 -4
- package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +29 -8
- package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +18 -4
- package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +15 -4
- package/api/resources/voices/resources/pvc/resources/verification/client/Client.js +17 -6
- package/api/resources/voices/resources/pvc/resources/verification/client/requests/BodyRequestManualVerificationV1VoicesPvcVoiceIdVerificationPost.d.ts +1 -1
- package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +23 -7
- package/api/resources/voices/resources/samples/resources/audio/client/Client.js +9 -3
- package/api/resources/voices/resources/settings/client/Client.d.ts +2 -2
- package/api/resources/voices/resources/settings/client/Client.js +46 -14
- package/api/resources/workspace/resources/groups/client/Client.js +15 -4
- package/api/resources/workspace/resources/groups/resources/members/client/Client.js +33 -10
- package/api/resources/workspace/resources/invites/client/Client.js +50 -15
- package/api/resources/workspace/resources/invites/client/requests/BodyInviteMultipleUsersV1WorkspaceInvitesAddBulkPost.d.ts +1 -1
- package/api/resources/workspace/resources/invites/client/requests/InviteUserRequest.d.ts +2 -2
- package/api/resources/workspace/resources/members/client/Client.js +33 -10
- package/api/resources/workspace/resources/members/client/requests/UpdateMemberRequest.d.ts +2 -2
- package/api/resources/workspace/resources/resources/client/Client.d.ts +3 -3
- package/api/resources/workspace/resources/resources/client/Client.js +40 -17
- package/api/resources/workspace/resources/resources/client/requests/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePost.d.ts +5 -5
- package/api/resources/workspace/resources/resources/client/requests/BodyUnshareWorkspaceResourceV1WorkspaceResourcesResourceIdUnsharePost.d.ts +5 -5
- package/api/resources/workspace/resources/resources/client/requests/ResourcesGetRequest.d.ts +2 -2
- package/api/types/AddKnowledgeBaseResponseModel.d.ts +1 -1
- package/api/types/AddProjectRequest.d.ts +19 -19
- package/api/types/AddPronunciationDictionaryResponseModel.d.ts +5 -5
- package/api/types/AddVoiceIvcResponseModel.d.ts +2 -2
- package/api/types/AddVoiceResponseModel.d.ts +1 -1
- package/api/types/AdditionalFormatResponseModel.d.ts +4 -4
- package/api/types/AgentBan.d.ts +2 -2
- package/api/types/AgentCallLimits.d.ts +2 -2
- package/api/types/AgentConfig.d.ts +3 -4
- package/api/types/AgentConfigOverride.d.ts +1 -1
- package/api/types/AgentConfigOverrideConfig.d.ts +1 -1
- package/api/types/AgentMetadataResponseModel.d.ts +1 -1
- package/api/types/AgentPlatformSettingsRequestModel.d.ts +3 -3
- package/api/types/AgentPlatformSettingsResponseModel.d.ts +3 -3
- package/api/types/AgentSimulatedChatTestResponseModel.d.ts +1 -1
- package/api/types/AgentSummaryResponseModel.d.ts +3 -3
- package/api/types/AgentTransfer.d.ts +1 -1
- package/api/types/AgentWorkspaceOverridesInput.d.ts +1 -1
- package/api/types/AgentWorkspaceOverridesOutput.d.ts +1 -1
- package/api/types/AsrConversationalConfig.d.ts +1 -1
- package/api/types/AudioNativeCreateProjectResponseModel.d.ts +2 -2
- package/api/types/AudioNativeEditContentResponseModel.d.ts +2 -2
- package/api/types/AudioNativeProjectSettingsResponseModel.d.ts +4 -4
- package/api/types/AudioOutputMulti.d.ts +2 -2
- package/api/types/AudioWithTimestampsResponse.d.ts +2 -2
- package/api/types/AuthSettings.d.ts +2 -2
- package/api/types/BatchCallDetailedResponse.d.ts +9 -9
- package/api/types/BatchCallResponse.d.ts +9 -9
- package/api/types/BodyAddChapterToAProjectV1ProjectsProjectIdChaptersAddPost.d.ts +1 -1
- package/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +4 -4
- package/api/types/BodyEditBasicProjectInfoV1ProjectsProjectIdPost.d.ts +4 -4
- package/api/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.d.ts +3 -3
- package/api/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.d.ts +1 -1
- package/api/types/BodyStreamChapterAudioV1ProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.d.ts +1 -1
- package/api/types/BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.d.ts +1 -1
- package/api/types/ChapterContentBlockInputModel.d.ts +2 -1
- package/api/types/ChapterContentBlockInputModelSubType.d.ts +10 -0
- package/api/types/ChapterContentBlockInputModelSubType.js +12 -0
- package/api/types/ChapterContentBlockResponseModel.d.ts +1 -1
- package/api/types/ChapterContentBlockTtsNodeResponseModel.d.ts +1 -1
- package/api/types/ChapterContentParagraphTtsNodeInputModel.d.ts +1 -1
- package/api/types/ChapterResponse.d.ts +5 -5
- package/api/types/ChapterSnapshotExtendedResponseModel.d.ts +5 -5
- package/api/types/ChapterSnapshotResponse.d.ts +4 -4
- package/api/types/ChapterStatisticsResponse.d.ts +4 -4
- package/api/types/ChapterWithContentResponseModel.d.ts +5 -5
- package/api/types/CharacterAlignmentModel.d.ts +2 -2
- package/api/types/CharacterAlignmentResponseModel.d.ts +2 -2
- package/api/types/ClientToolConfigInput.d.ts +3 -3
- package/api/types/ClientToolConfigOutput.d.ts +3 -3
- package/api/types/CloseContext.d.ts +2 -2
- package/api/types/CloseSocket.d.ts +1 -1
- package/api/types/ConvAiDynamicVariable.d.ts +1 -1
- package/api/types/ConvAiSecretLocator.d.ts +1 -1
- package/api/types/ConvAiStoredSecretDependencies.d.ts +2 -2
- package/api/types/ConvAiWebhooks.d.ts +1 -1
- package/api/types/ConvAiWorkspaceStoredSecretConfig.d.ts +2 -2
- package/api/types/ConversationChargingCommonModel.d.ts +3 -3
- package/api/types/ConversationConfig.d.ts +3 -3
- package/api/types/ConversationConfigOverride.d.ts +1 -1
- package/api/types/ConversationConfigOverrideConfig.d.ts +1 -1
- package/api/types/ConversationDeletionSettings.d.ts +6 -6
- package/api/types/ConversationHistoryAnalysisCommonModel.d.ts +4 -4
- package/api/types/ConversationHistoryBatchCallModel.d.ts +2 -2
- package/api/types/ConversationHistoryEvaluationCriteriaResultCommonModel.d.ts +1 -1
- package/api/types/ConversationHistoryFeedbackCommonModel.d.ts +1 -1
- package/api/types/ConversationHistoryMetadataCommonModel.d.ts +10 -10
- package/api/types/ConversationHistoryRagUsageCommonModel.d.ts +2 -2
- package/api/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +4 -4
- package/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +9 -9
- package/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +9 -9
- package/api/types/ConversationHistoryTranscriptToolCallCommonModel.d.ts +5 -5
- package/api/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +2 -2
- package/api/types/ConversationHistoryTranscriptToolResultCommonModel.d.ts +6 -6
- package/api/types/ConversationHistoryTwilioPhoneCallModel.d.ts +5 -5
- package/api/types/ConversationInitiationClientDataConfigInput.d.ts +3 -3
- package/api/types/ConversationInitiationClientDataConfigOutput.d.ts +3 -3
- package/api/types/ConversationInitiationClientDataInternal.d.ts +3 -3
- package/api/types/ConversationInitiationClientDataRequestInput.d.ts +3 -3
- package/api/types/ConversationInitiationClientDataRequestOutput.d.ts +3 -3
- package/api/types/ConversationInitiationClientDataWebhook.d.ts +1 -1
- package/api/types/ConversationSignedUrlResponseModel.d.ts +1 -1
- package/api/types/ConversationSimulationSpecification.d.ts +3 -3
- package/api/types/ConversationSummaryResponseModel.d.ts +7 -7
- package/api/types/ConversationTokenDbModel.d.ts +5 -3
- package/api/types/ConversationalConfig.d.ts +1 -1
- package/api/types/CreateAgentResponseModel.d.ts +1 -1
- package/api/types/CreatePhoneNumberResponseModel.d.ts +1 -1
- package/api/types/CreatePreviouslyGeneratedVoiceRequest.d.ts +4 -4
- package/api/types/CreateSipTrunkPhoneNumberRequest.d.ts +3 -3
- package/api/types/CreateTwilioPhoneNumberRequest.d.ts +1 -1
- package/api/types/CustomLlm.d.ts +2 -2
- package/api/types/DashboardCriteriaChartModel.d.ts +1 -1
- package/api/types/DashboardDataCollectionChartModel.d.ts +1 -1
- package/api/types/DataCollectionResultCommonModel.d.ts +2 -2
- package/api/types/DependentAvailableAgentIdentifier.d.ts +2 -2
- package/api/types/DependentAvailableAgentToolIdentifier.d.ts +5 -5
- package/api/types/DependentAvailableToolIdentifier.d.ts +2 -2
- package/api/types/DependentPhoneNumberIdentifier.d.ts +2 -2
- package/api/types/DoDubbingResponse.d.ts +2 -2
- package/api/types/DocxExportOptions.d.ts +5 -5
- package/api/types/DubbedSegment.d.ts +4 -4
- package/api/types/DubbingMediaMetadata.d.ts +1 -1
- package/api/types/DubbingMediaReference.d.ts +5 -5
- package/api/types/DubbingMetadataResponse.d.ts +3 -3
- package/api/types/DubbingRenderResponseModel.d.ts +1 -1
- package/api/types/DubbingResource.d.ts +4 -4
- package/api/types/DynamicVariablesConfig.d.ts +1 -1
- package/api/types/FeedbackItem.d.ts +4 -4
- package/api/types/FineTuningResponse.d.ts +11 -11
- package/api/types/FlushContext.d.ts +1 -1
- package/api/types/GenerateVoiceRequest.d.ts +1 -1
- package/api/types/GenerationConfig.d.ts +1 -1
- package/api/types/GetAgentEmbedResponseModel.d.ts +2 -2
- package/api/types/GetAgentKnowledgebaseSizeResponseModel.d.ts +6 -0
- package/api/types/GetAgentKnowledgebaseSizeResponseModel.js +5 -0
- package/api/types/GetAgentLinkResponseModel.d.ts +1 -1
- package/api/types/GetAgentResponseModel.d.ts +5 -5
- package/api/types/GetAgentsPageResponseModel.d.ts +2 -2
- package/api/types/GetAudioNativeProjectSettingsResponseModel.d.ts +1 -1
- package/api/types/GetConvAiSettingsResponseModel.d.ts +3 -3
- package/api/types/GetConversationResponseModel.d.ts +6 -6
- package/api/types/GetConversationsPageResponseModel.d.ts +2 -2
- package/api/types/GetKnowledgeBaseDependentAgentsResponseModel.d.ts +2 -2
- package/api/types/GetKnowledgeBaseFileResponseModel.d.ts +3 -3
- package/api/types/GetKnowledgeBaseListResponseModel.d.ts +2 -2
- package/api/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +3 -3
- package/api/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +3 -3
- package/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +3 -3
- package/api/types/GetKnowledgeBaseTextResponseModel.d.ts +3 -3
- package/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +3 -3
- package/api/types/GetLibraryVoicesResponse.d.ts +2 -2
- package/api/types/GetPhoneNumberSipTrunkResponseModel.d.ts +4 -4
- package/api/types/GetPhoneNumberTwilioResponseModel.d.ts +3 -3
- package/api/types/GetPronunciationDictionariesMetadataResponseModel.d.ts +3 -3
- package/api/types/GetPronunciationDictionaryMetadataResponse.d.ts +6 -6
- package/api/types/GetSpeechHistoryResponse.d.ts +2 -2
- package/api/types/GetVoicesV2Response.d.ts +3 -3
- package/api/types/HistoryAlignmentResponseModel.d.ts +2 -2
- package/api/types/HistoryAlignmentsResponseModel.d.ts +1 -1
- package/api/types/HistoryItemResponse.d.ts +1 -1
- package/api/types/HtmlExportOptions.d.ts +5 -5
- package/api/types/InitialiseContext.d.ts +5 -5
- package/api/types/InitializeConnection.d.ts +4 -4
- package/api/types/InitializeConnectionMulti.d.ts +5 -5
- package/api/types/InvoiceResponse.d.ts +3 -3
- package/api/types/KeepContextAlive.d.ts +1 -1
- package/api/types/KnowledgeBaseDocumentMetadataResponseModel.d.ts +3 -3
- package/api/types/KnowledgeBaseLocator.d.ts +1 -1
- package/api/types/LanguagePresetInput.d.ts +1 -1
- package/api/types/LanguagePresetOutput.d.ts +1 -1
- package/api/types/LanguagePresetTranslation.d.ts +1 -1
- package/api/types/LanguageResponse.d.ts +1 -1
- package/api/types/LibraryVoiceResponse.d.ts +20 -20
- package/api/types/LiteralJsonSchemaProperty.d.ts +2 -2
- package/api/types/LlmCategoryUsage.d.ts +2 -2
- package/api/types/LlmInputOutputTokensUsage.d.ts +3 -3
- package/api/types/LlmUsageCalculatorLlmResponseModel.d.ts +8 -0
- package/api/types/LlmUsageCalculatorLlmResponseModel.js +5 -0
- package/api/types/LlmUsageCalculatorResponseModel.d.ts +7 -0
- package/api/types/LlmUsageCalculatorResponseModel.js +5 -0
- package/api/types/LlmUsageInput.d.ts +1 -1
- package/api/types/LlmUsageOutput.d.ts +1 -1
- package/api/types/ManualVerificationFileResponse.d.ts +5 -5
- package/api/types/ManualVerificationResponse.d.ts +2 -2
- package/api/types/McpToolConfigInput.d.ts +3 -3
- package/api/types/McpToolConfigOutput.d.ts +3 -3
- package/api/types/MetricRecord.d.ts +1 -1
- package/api/types/Model.d.ts +14 -14
- package/api/types/ModelRatesResponseModel.d.ts +1 -1
- package/api/types/ModerationStatusResponseModel.d.ts +9 -9
- package/api/types/NativeMcpToolConfigInput.d.ts +20 -0
- package/api/types/NativeMcpToolConfigInput.js +5 -0
- package/api/types/NativeMcpToolConfigOutput.d.ts +20 -0
- package/api/types/NativeMcpToolConfigOutput.js +5 -0
- package/api/types/OrbAvatar.d.ts +2 -2
- package/api/types/OutboundCallRecipient.d.ts +2 -2
- package/api/types/OutboundCallRecipientResponseModel.d.ts +5 -5
- package/api/types/PdfExportOptions.d.ts +5 -5
- package/api/types/PhoneNumberAgentInfo.d.ts +2 -2
- package/api/types/PhoneNumberTransfer.d.ts +1 -1
- package/api/types/PodcastBulletinModeData.d.ts +1 -1
- package/api/types/PodcastConversationModeData.d.ts +2 -2
- package/api/types/PostAgentAvatarResponseModel.d.ts +2 -2
- package/api/types/PostWorkspaceSecretResponseModel.d.ts +1 -1
- package/api/types/PrivacyConfig.d.ts +6 -6
- package/api/types/ProjectCreationMetaResponseModel.d.ts +1 -1
- package/api/types/ProjectExtendedResponse.d.ts +24 -24
- package/api/types/ProjectResponse.d.ts +20 -20
- package/api/types/ProjectSnapshotExtendedResponseModel.d.ts +6 -6
- package/api/types/ProjectSnapshotResponse.d.ts +5 -5
- package/api/types/PromptAgent.d.ts +8 -6
- package/api/types/PromptAgentDbModel.d.ts +9 -7
- package/api/types/PromptAgentDbModelToolsItem.d.ts +4 -1
- package/api/types/PromptAgentInputToolsItem.d.ts +4 -1
- package/api/types/PromptAgentOutputToolsItem.d.ts +4 -1
- package/api/types/PromptEvaluationCriteria.d.ts +2 -2
- package/api/types/PronunciationDictionaryAliasRuleRequestModel.d.ts +1 -1
- package/api/types/PronunciationDictionaryLocator.d.ts +2 -2
- package/api/types/PronunciationDictionaryLocatorResponseModel.d.ts +2 -2
- package/api/types/PronunciationDictionaryPhonemeRuleRequestModel.d.ts +1 -1
- package/api/types/PronunciationDictionaryRulesResponseModel.d.ts +2 -2
- package/api/types/PronunciationDictionaryVersionLocator.d.ts +2 -2
- package/api/types/PronunciationDictionaryVersionResponseModel.d.ts +9 -9
- package/api/types/PydanticPronunciationDictionaryVersionLocator.d.ts +2 -2
- package/api/types/RagChunkMetadata.d.ts +3 -3
- package/api/types/RagConfig.d.ts +3 -3
- package/api/types/RagIndexResponseModel.d.ts +1 -1
- package/api/types/RagRetrievalInfo.d.ts +3 -3
- package/api/types/ReaderResourceResponseModel.d.ts +2 -2
- package/api/types/RealtimeVoiceSettings.d.ts +2 -2
- package/api/types/RecordingResponse.d.ts +4 -4
- package/api/types/Render.d.ts +1 -1
- package/api/types/ResourceAccessInfo.d.ts +3 -3
- package/api/types/ResourceMetadataResponseModel.d.ts +5 -5
- package/api/types/SafetyCommonModel.d.ts +1 -1
- package/api/types/SafetyEvaluation.d.ts +4 -4
- package/api/types/SafetyResponseModel.d.ts +3 -3
- package/api/types/SegmentCreateResponse.d.ts +1 -1
- package/api/types/SegmentedJsonExportOptions.d.ts +5 -5
- package/api/types/SendText.d.ts +3 -3
- package/api/types/SendTextMulti.d.ts +1 -1
- package/api/types/SimilarVoice.d.ts +2 -2
- package/api/types/SipTrunkConfigResponseModel.d.ts +3 -3
- package/api/types/SipTrunkOutboundCallResponse.d.ts +2 -2
- package/api/types/SpeakerAudioResponseModel.d.ts +3 -3
- package/api/types/SpeakerResponseModel.d.ts +2 -2
- package/api/types/SpeakerSegment.d.ts +2 -2
- package/api/types/SpeakerSeparationResponseModel.d.ts +3 -3
- package/api/types/SpeakerTrack.d.ts +2 -2
- package/api/types/SpeechHistoryItemResponse.d.ts +11 -11
- package/api/types/SpeechToTextChunkResponseModel.d.ts +3 -3
- package/api/types/SpeechToTextWordResponseModel.d.ts +1 -1
- package/api/types/SrtExportOptions.d.ts +6 -6
- package/api/types/StreamingAudioChunkWithTimestampsResponse.d.ts +2 -2
- package/api/types/Subscription.d.ts +19 -19
- package/api/types/SubscriptionExtrasResponseModel.d.ts +8 -8
- package/api/types/SubscriptionResponse.d.ts +17 -17
- package/api/types/SubscriptionUsageResponseModel.d.ts +8 -8
- package/api/types/SystemToolConfigInput.d.ts +1 -1
- package/api/types/SystemToolConfigInputParams.d.ts +4 -4
- package/api/types/SystemToolConfigOutput.d.ts +1 -1
- package/api/types/SystemToolConfigOutputParams.d.ts +4 -4
- package/api/types/ToolMockConfig.d.ts +2 -2
- package/api/types/TtsConversationalConfig.d.ts +6 -6
- package/api/types/TtsConversationalConfigOverride.d.ts +1 -1
- package/api/types/TtsConversationalConfigOverrideConfig.d.ts +1 -1
- package/api/types/TurnConfig.d.ts +2 -2
- package/api/types/TwilioOutboundCallResponse.d.ts +1 -1
- package/api/types/TxtExportOptions.d.ts +6 -6
- package/api/types/UpdatePronunciationDictionariesRequest.d.ts +2 -2
- package/api/types/UrlAvatar.d.ts +1 -1
- package/api/types/User.d.ts +12 -12
- package/api/types/UserFeedback.d.ts +1 -1
- package/api/types/VerificationAttemptResponse.d.ts +2 -2
- package/api/types/VerifiedVoiceLanguageResponseModel.d.ts +2 -2
- package/api/types/Voice.d.ts +13 -13
- package/api/types/VoiceGenerationParameterResponse.d.ts +4 -4
- package/api/types/VoicePreviewResponseModel.d.ts +4 -4
- package/api/types/VoiceSample.d.ts +11 -11
- package/api/types/VoiceSamplePreviewResponseModel.d.ts +5 -5
- package/api/types/VoiceSampleVisualWaveformResponseModel.d.ts +2 -2
- package/api/types/VoiceSettings.d.ts +2 -2
- package/api/types/VoiceSharingModerationCheckResponseModel.d.ts +9 -9
- package/api/types/VoiceSharingResponse.d.ts +26 -26
- package/api/types/VoiceVerificationResponse.d.ts +5 -5
- package/api/types/WebhookToolApiSchemaConfigInput.d.ts +4 -4
- package/api/types/WebhookToolApiSchemaConfigOutput.d.ts +4 -4
- package/api/types/WebhookToolConfigInput.d.ts +3 -3
- package/api/types/WebhookToolConfigOutput.d.ts +3 -3
- package/api/types/WebsocketTtsClientMessageMulti.d.ts +9 -9
- package/api/types/WebsocketTtsServerMessageMulti.d.ts +1 -1
- package/api/types/WidgetConfig.d.ts +26 -26
- package/api/types/WidgetConfigResponseModel.d.ts +25 -25
- package/api/types/WorkspaceBatchCallsResponse.d.ts +3 -3
- package/api/types/WorkspaceGroupByNameResponseModel.d.ts +1 -1
- package/api/types/index.d.ts +6 -1
- package/api/types/index.js +6 -1
- package/core/index.d.ts +1 -0
- package/core/index.js +24 -0
- package/core/schemas/Schema.d.ts +87 -0
- package/core/schemas/Schema.js +24 -0
- package/core/schemas/builders/bigint/bigint.d.ts +2 -0
- package/core/schemas/builders/bigint/bigint.js +53 -0
- package/core/schemas/builders/bigint/index.d.ts +1 -0
- package/core/schemas/builders/bigint/index.js +5 -0
- package/core/schemas/builders/date/date.d.ts +2 -0
- package/core/schemas/builders/date/date.js +62 -0
- package/core/schemas/builders/date/index.d.ts +1 -0
- package/core/schemas/builders/date/index.js +5 -0
- package/core/schemas/builders/enum/enum.d.ts +2 -0
- package/core/schemas/builders/enum/enum.js +38 -0
- package/core/schemas/builders/enum/index.d.ts +1 -0
- package/core/schemas/builders/enum/index.js +5 -0
- package/core/schemas/builders/index.d.ts +14 -0
- package/core/schemas/builders/index.js +30 -0
- package/core/schemas/builders/lazy/index.d.ts +3 -0
- package/core/schemas/builders/lazy/index.js +7 -0
- package/core/schemas/builders/lazy/lazy.d.ts +5 -0
- package/core/schemas/builders/lazy/lazy.js +24 -0
- package/core/schemas/builders/lazy/lazyObject.d.ts +3 -0
- package/core/schemas/builders/lazy/lazyObject.js +11 -0
- package/core/schemas/builders/list/index.d.ts +1 -0
- package/core/schemas/builders/list/index.js +5 -0
- package/core/schemas/builders/list/list.d.ts +2 -0
- package/core/schemas/builders/list/list.js +54 -0
- package/core/schemas/builders/literals/booleanLiteral.d.ts +2 -0
- package/core/schemas/builders/literals/booleanLiteral.js +28 -0
- package/core/schemas/builders/literals/index.d.ts +2 -0
- package/core/schemas/builders/literals/index.js +7 -0
- package/core/schemas/builders/literals/stringLiteral.d.ts +2 -0
- package/core/schemas/builders/literals/stringLiteral.js +28 -0
- package/core/schemas/builders/object/index.d.ts +6 -0
- package/core/schemas/builders/object/index.js +11 -0
- package/core/schemas/builders/object/object.d.ts +3 -0
- package/core/schemas/builders/object/object.js +261 -0
- package/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +6 -0
- package/core/schemas/builders/object/objectWithoutOptionalProperties.js +7 -0
- package/core/schemas/builders/object/property.d.ts +8 -0
- package/core/schemas/builders/object/property.js +15 -0
- package/core/schemas/builders/object/types.d.ts +31 -0
- package/core/schemas/builders/object/types.js +2 -0
- package/core/schemas/builders/object-like/getObjectLikeUtils.d.ts +9 -0
- package/core/schemas/builders/object-like/getObjectLikeUtils.js +53 -0
- package/core/schemas/builders/object-like/index.d.ts +2 -0
- package/core/schemas/builders/object-like/index.js +6 -0
- package/core/schemas/builders/object-like/types.d.ts +7 -0
- package/core/schemas/builders/object-like/types.js +2 -0
- package/core/schemas/builders/primitives/any.d.ts +1 -0
- package/core/schemas/builders/primitives/any.js +6 -0
- package/core/schemas/builders/primitives/boolean.d.ts +1 -0
- package/core/schemas/builders/primitives/boolean.js +25 -0
- package/core/schemas/builders/primitives/index.d.ts +5 -0
- package/core/schemas/builders/primitives/index.js +13 -0
- package/core/schemas/builders/primitives/number.d.ts +1 -0
- package/core/schemas/builders/primitives/number.js +25 -0
- package/core/schemas/builders/primitives/string.d.ts +1 -0
- package/core/schemas/builders/primitives/string.js +25 -0
- package/core/schemas/builders/primitives/unknown.d.ts +1 -0
- package/core/schemas/builders/primitives/unknown.js +6 -0
- package/core/schemas/builders/record/index.d.ts +2 -0
- package/core/schemas/builders/record/index.js +5 -0
- package/core/schemas/builders/record/record.d.ts +3 -0
- package/core/schemas/builders/record/record.js +93 -0
- package/core/schemas/builders/record/types.d.ts +4 -0
- package/core/schemas/builders/record/types.js +2 -0
- package/core/schemas/builders/schema-utils/JsonError.d.ts +5 -0
- package/core/schemas/builders/schema-utils/JsonError.js +12 -0
- package/core/schemas/builders/schema-utils/ParseError.d.ts +5 -0
- package/core/schemas/builders/schema-utils/ParseError.js +12 -0
- package/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +21 -0
- package/core/schemas/builders/schema-utils/getSchemaUtils.js +145 -0
- package/core/schemas/builders/schema-utils/index.d.ts +4 -0
- package/core/schemas/builders/schema-utils/index.js +11 -0
- package/core/schemas/builders/schema-utils/stringifyValidationErrors.d.ts +2 -0
- package/core/schemas/builders/schema-utils/stringifyValidationErrors.js +9 -0
- package/core/schemas/builders/set/index.d.ts +1 -0
- package/core/schemas/builders/set/index.js +5 -0
- package/core/schemas/builders/set/set.d.ts +2 -0
- package/core/schemas/builders/set/set.js +43 -0
- package/core/schemas/builders/undiscriminated-union/index.d.ts +2 -0
- package/core/schemas/builders/undiscriminated-union/index.js +5 -0
- package/core/schemas/builders/undiscriminated-union/types.d.ts +4 -0
- package/core/schemas/builders/undiscriminated-union/types.js +2 -0
- package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.d.ts +3 -0
- package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +39 -0
- package/core/schemas/builders/union/discriminant.d.ts +5 -0
- package/core/schemas/builders/union/discriminant.js +9 -0
- package/core/schemas/builders/union/index.d.ts +4 -0
- package/core/schemas/builders/union/index.js +7 -0
- package/core/schemas/builders/union/types.d.ts +13 -0
- package/core/schemas/builders/union/types.js +2 -0
- package/core/schemas/builders/union/union.d.ts +4 -0
- package/core/schemas/builders/union/union.js +129 -0
- package/core/schemas/index.d.ts +2 -0
- package/core/schemas/index.js +17 -0
- package/core/schemas/utils/MaybePromise.d.ts +1 -0
- package/core/schemas/utils/MaybePromise.js +2 -0
- package/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +7 -0
- package/core/schemas/utils/addQuestionMarksToNullableProperties.js +2 -0
- package/core/schemas/utils/createIdentitySchemaCreator.d.ts +2 -0
- package/core/schemas/utils/createIdentitySchemaCreator.js +15 -0
- package/core/schemas/utils/entries.d.ts +1 -0
- package/core/schemas/utils/entries.js +6 -0
- package/core/schemas/utils/filterObject.d.ts +1 -0
- package/core/schemas/utils/filterObject.js +13 -0
- package/core/schemas/utils/getErrorMessageForIncorrectType.d.ts +1 -0
- package/core/schemas/utils/getErrorMessageForIncorrectType.js +27 -0
- package/core/schemas/utils/isPlainObject.d.ts +1 -0
- package/core/schemas/utils/isPlainObject.js +17 -0
- package/core/schemas/utils/keys.d.ts +1 -0
- package/core/schemas/utils/keys.js +6 -0
- package/core/schemas/utils/maybeSkipValidation.d.ts +2 -0
- package/core/schemas/utils/maybeSkipValidation.js +27 -0
- package/core/schemas/utils/partition.d.ts +1 -0
- package/core/schemas/utils/partition.js +15 -0
- package/dist/api/resources/audioIsolation/client/Client.js +25 -10
- package/dist/api/resources/audioIsolation/client/requests/BodyAudioIsolationStreamV1AudioIsolationStreamPost.d.ts +1 -1
- package/dist/api/resources/audioIsolation/client/requests/BodyAudioIsolationV1AudioIsolationPost.d.ts +1 -1
- package/dist/api/resources/audioNative/client/Client.js +57 -26
- package/dist/api/resources/audioNative/client/requests/BodyCreatesAudioNativeEnabledProjectV1AudioNativePost.d.ts +5 -5
- package/dist/api/resources/audioNative/client/requests/BodyUpdateAudioNativeProjectContentV1AudioNativeProjectIdContentPost.d.ts +2 -2
- package/dist/api/resources/conversationalAi/client/Client.d.ts +3 -0
- package/dist/api/resources/conversationalAi/client/Client.js +47 -21
- package/dist/api/resources/conversationalAi/resources/agents/client/Client.d.ts +13 -7
- package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +122 -38
- package/dist/api/resources/conversationalAi/resources/agents/client/requests/AgentsListRequest.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodyCreateAgentV1ConvaiAgentsCreatePost.d.ts +3 -3
- package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.d.ts +5 -5
- package/dist/api/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.d.ts +5 -5
- package/dist/api/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +2 -2
- package/dist/api/resources/conversationalAi/resources/agents/resources/index.d.ts +3 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/index.js +4 -1
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.d.ts +44 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +137 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/index.js +2 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +18 -4
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.d.ts +45 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +141 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.d.ts +15 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.js +5 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.js +2 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +16 -5
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/requests/WidgetGetRequest.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +17 -6
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/requests/BodyPostAgentAvatarV1ConvaiAgentsAgentIdAvatarPost.d.ts +2 -2
- package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +4 -4
- package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.js +55 -18
- package/dist/api/resources/conversationalAi/resources/batchCalls/client/requests/BatchCallsListRequest.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +8 -8
- package/dist/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +57 -19
- package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +2 -2
- package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +5 -5
- package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +9 -3
- package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +10 -4
- package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +32 -9
- package/dist/api/resources/conversationalAi/resources/index.d.ts +2 -0
- package/dist/api/resources/conversationalAi/resources/index.js +3 -1
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +20 -7
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.d.ts +3 -3
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +21 -5
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +105 -34
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsGetAgentsRequest.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +15 -4
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.d.ts +48 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.js +144 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.d.ts +19 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.js +5 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/requests/index.js +2 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +72 -22
- package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/secrets/client/Client.js +40 -12
- package/dist/api/resources/conversationalAi/resources/settings/client/Client.js +32 -9
- package/dist/api/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +3 -3
- package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.d.ts +3 -3
- package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +19 -8
- package/dist/api/resources/conversationalAi/resources/sipTrunk/client/requests/BodyHandleAnOutboundCallViaSipTrunkV1ConvaiSipTrunkOutboundCallPost.d.ts +7 -7
- package/dist/api/resources/conversationalAi/resources/twilio/client/Client.d.ts +3 -3
- package/dist/api/resources/conversationalAi/resources/twilio/client/Client.js +19 -8
- package/dist/api/resources/conversationalAi/resources/twilio/client/requests/BodyHandleAnOutboundCallViaTwilioV1ConvaiTwilioOutboundCallPost.d.ts +7 -7
- package/dist/api/resources/dubbing/client/Client.js +77 -40
- package/dist/api/resources/dubbing/client/requests/BodyDubAVideoOrAnAudioFileV1DubbingPost.d.ts +14 -14
- package/dist/api/resources/dubbing/resources/audio/client/Client.js +9 -3
- package/dist/api/resources/dubbing/resources/resource/client/Client.d.ts +1 -1
- package/dist/api/resources/dubbing/resources/resource/client/Client.js +82 -25
- package/dist/api/resources/dubbing/resources/resource/client/requests/BodyRenderAudioOrVideoForTheGivenLanguageV1DubbingResourceDubbingIdRenderLanguagePost.d.ts +2 -2
- package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.js +19 -5
- package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +38 -9
- package/dist/api/resources/dubbing/resources/resource/resources/segment/client/requests/SegmentUpdatePayload.d.ts +2 -2
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +33 -9
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +1 -1
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.d.ts +2 -2
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +23 -7
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/SegmentCreatePayload.d.ts +4 -4
- package/dist/api/resources/dubbing/resources/transcript/client/Client.js +14 -5
- package/dist/api/resources/dubbing/resources/transcript/client/requests/TranscriptGetTranscriptForDubRequest.d.ts +1 -1
- package/dist/api/resources/forcedAlignment/client/Client.js +17 -6
- package/dist/api/resources/forcedAlignment/client/requests/BodyCreateForcedAlignmentV1ForcedAlignmentPost.d.ts +1 -1
- package/dist/api/resources/history/client/Client.js +73 -21
- package/dist/api/resources/history/client/requests/DownloadHistoryRequest.d.ts +2 -2
- package/dist/api/resources/history/client/requests/HistoryListRequest.d.ts +3 -3
- package/dist/api/resources/models/client/Client.js +18 -4
- package/dist/api/resources/pronunciationDictionaries/client/Client.d.ts +1 -1
- package/dist/api/resources/pronunciationDictionaries/client/Client.js +73 -25
- package/dist/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromFilePost.d.ts +1 -1
- package/dist/api/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPost.d.ts +2 -2
- package/dist/api/resources/pronunciationDictionaries/client/requests/PronunciationDictionariesListRequest.d.ts +2 -2
- package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.d.ts +2 -2
- package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +37 -12
- package/dist/api/resources/pronunciationDictionaries/resources/rules/client/requests/PronunciationDictionary.d.ts +1 -1
- package/dist/api/resources/pronunciationDictionaries/resources/rules/client/requests/RemovePronunciationDictionaryRulesRequest.d.ts +2 -2
- package/dist/api/resources/samples/client/Client.js +18 -4
- package/dist/api/resources/speechToSpeech/client/Client.js +49 -34
- package/dist/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechStreamingV1SpeechToSpeechVoiceIdStreamPost.d.ts +9 -9
- package/dist/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost.d.ts +9 -9
- package/dist/api/resources/speechToText/client/Client.js +13 -13
- package/dist/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +10 -10
- package/dist/api/resources/studio/client/Client.d.ts +3 -3
- package/dist/api/resources/studio/client/Client.js +21 -8
- package/dist/api/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +7 -7
- package/dist/api/resources/studio/resources/projects/client/Client.d.ts +5 -5
- package/dist/api/resources/studio/resources/projects/client/Client.js +147 -66
- package/dist/api/resources/studio/resources/projects/client/requests/BodyCreateStudioProjectV1StudioProjectsPost.d.ts +22 -22
- package/dist/api/resources/studio/resources/projects/client/requests/BodyUpdateStudioProjectV1StudioProjectsProjectIdPost.d.ts +6 -6
- package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.js +96 -26
- package/dist/api/resources/studio/resources/projects/resources/chapters/client/requests/BodyCreateChapterV1StudioProjectsProjectIdChaptersPost.d.ts +1 -1
- package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +41 -12
- package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/BodyStreamChapterAudioV1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.d.ts +1 -1
- package/dist/api/resources/studio/resources/projects/resources/content/client/Client.js +24 -10
- package/dist/api/resources/studio/resources/projects/resources/content/client/requests/BodyUpdateStudioProjectContentV1StudioProjectsProjectIdContentPost.d.ts +3 -3
- package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.d.ts +2 -2
- package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +18 -7
- package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost.d.ts +4 -4
- package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +49 -15
- package/dist/api/resources/studio/resources/projects/resources/snapshots/client/requests/BodyStreamStudioProjectAudioV1StudioProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.d.ts +1 -1
- package/dist/api/resources/textToSoundEffects/client/Client.js +12 -6
- package/dist/api/resources/textToSoundEffects/client/requests/CreateSoundEffectRequest.d.ts +3 -3
- package/dist/api/resources/textToSpeech/client/Client.js +64 -26
- package/dist/api/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.d.ts +16 -16
- package/dist/api/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.d.ts +16 -16
- package/dist/api/resources/textToSpeech/client/requests/TextToSpeechRequest.d.ts +16 -16
- package/dist/api/resources/textToSpeech/client/requests/TextToSpeechWithTimestampsRequest.d.ts +14 -14
- package/dist/api/resources/textToVoice/client/Client.d.ts +4 -4
- package/dist/api/resources/textToVoice/client/Client.js +40 -16
- package/dist/api/resources/textToVoice/client/requests/SaveVoicePreviewRequest.d.ts +7 -7
- package/dist/api/resources/textToVoice/client/requests/VoiceDesignRequest.d.ts +5 -5
- package/dist/api/resources/usage/client/Client.d.ts +2 -2
- package/dist/api/resources/usage/client/Client.js +23 -10
- package/dist/api/resources/usage/client/requests/UsageGetRequest.d.ts +7 -7
- package/dist/api/resources/user/client/Client.js +18 -4
- package/dist/api/resources/user/resources/subscription/client/Client.js +18 -4
- package/dist/api/resources/voices/client/Client.d.ts +3 -3
- package/dist/api/resources/voices/client/Client.js +158 -49
- package/dist/api/resources/voices/client/requests/BodyAddSharedVoiceV1VoicesAddPublicUserIdVoiceIdPost.d.ts +2 -2
- package/dist/api/resources/voices/client/requests/BodyEditVoiceV1VoicesVoiceIdEditPost.d.ts +1 -1
- package/dist/api/resources/voices/client/requests/BodyGetSimilarLibraryVoicesV1SimilarVoicesPost.d.ts +3 -3
- package/dist/api/resources/voices/client/requests/VoicesGetAllRequest.d.ts +1 -1
- package/dist/api/resources/voices/client/requests/VoicesGetRequest.d.ts +1 -1
- package/dist/api/resources/voices/client/requests/VoicesGetSharedRequest.d.ts +7 -7
- package/dist/api/resources/voices/client/requests/VoicesSearchRequest.d.ts +8 -8
- package/dist/api/resources/voices/resources/ivc/client/Client.js +20 -6
- package/dist/api/resources/voices/resources/ivc/client/requests/BodyAddVoiceV1VoicesAddPost.d.ts +1 -1
- package/dist/api/resources/voices/resources/pvc/client/Client.js +56 -15
- package/dist/api/resources/voices/resources/pvc/client/requests/BodyRunPvcTrainingV1VoicesPvcVoiceIdTrainPost.d.ts +1 -1
- package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.js +52 -15
- package/dist/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyAddSamplesToPvcVoiceV1VoicesPvcVoiceIdSamplesPost.d.ts +1 -1
- package/dist/api/resources/voices/resources/pvc/resources/samples/client/requests/BodyUpdatePvcVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost.d.ts +4 -4
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +15 -4
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +29 -8
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +18 -4
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +15 -4
- package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.js +17 -6
- package/dist/api/resources/voices/resources/pvc/resources/verification/client/requests/BodyRequestManualVerificationV1VoicesPvcVoiceIdVerificationPost.d.ts +1 -1
- package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +23 -7
- package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.js +9 -3
- package/dist/api/resources/voices/resources/settings/client/Client.d.ts +2 -2
- package/dist/api/resources/voices/resources/settings/client/Client.js +46 -14
- package/dist/api/resources/workspace/resources/groups/client/Client.js +15 -4
- package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.js +33 -10
- package/dist/api/resources/workspace/resources/invites/client/Client.js +50 -15
- package/dist/api/resources/workspace/resources/invites/client/requests/BodyInviteMultipleUsersV1WorkspaceInvitesAddBulkPost.d.ts +1 -1
- package/dist/api/resources/workspace/resources/invites/client/requests/InviteUserRequest.d.ts +2 -2
- package/dist/api/resources/workspace/resources/members/client/Client.js +33 -10
- package/dist/api/resources/workspace/resources/members/client/requests/UpdateMemberRequest.d.ts +2 -2
- package/dist/api/resources/workspace/resources/resources/client/Client.d.ts +3 -3
- package/dist/api/resources/workspace/resources/resources/client/Client.js +40 -17
- package/dist/api/resources/workspace/resources/resources/client/requests/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePost.d.ts +5 -5
- package/dist/api/resources/workspace/resources/resources/client/requests/BodyUnshareWorkspaceResourceV1WorkspaceResourcesResourceIdUnsharePost.d.ts +5 -5
- package/dist/api/resources/workspace/resources/resources/client/requests/ResourcesGetRequest.d.ts +2 -2
- package/dist/api/types/AddKnowledgeBaseResponseModel.d.ts +1 -1
- package/dist/api/types/AddProjectRequest.d.ts +19 -19
- package/dist/api/types/AddPronunciationDictionaryResponseModel.d.ts +5 -5
- package/dist/api/types/AddVoiceIvcResponseModel.d.ts +2 -2
- package/dist/api/types/AddVoiceResponseModel.d.ts +1 -1
- package/dist/api/types/AdditionalFormatResponseModel.d.ts +4 -4
- package/dist/api/types/AgentBan.d.ts +2 -2
- package/dist/api/types/AgentCallLimits.d.ts +2 -2
- package/dist/api/types/AgentConfig.d.ts +3 -4
- package/dist/api/types/AgentConfigOverride.d.ts +1 -1
- package/dist/api/types/AgentConfigOverrideConfig.d.ts +1 -1
- package/dist/api/types/AgentMetadataResponseModel.d.ts +1 -1
- package/dist/api/types/AgentPlatformSettingsRequestModel.d.ts +3 -3
- package/dist/api/types/AgentPlatformSettingsResponseModel.d.ts +3 -3
- package/dist/api/types/AgentSimulatedChatTestResponseModel.d.ts +1 -1
- package/dist/api/types/AgentSummaryResponseModel.d.ts +3 -3
- package/dist/api/types/AgentTransfer.d.ts +1 -1
- package/dist/api/types/AgentWorkspaceOverridesInput.d.ts +1 -1
- package/dist/api/types/AgentWorkspaceOverridesOutput.d.ts +1 -1
- package/dist/api/types/AsrConversationalConfig.d.ts +1 -1
- package/dist/api/types/AudioNativeCreateProjectResponseModel.d.ts +2 -2
- package/dist/api/types/AudioNativeEditContentResponseModel.d.ts +2 -2
- package/dist/api/types/AudioNativeProjectSettingsResponseModel.d.ts +4 -4
- package/dist/api/types/AudioOutputMulti.d.ts +2 -2
- package/dist/api/types/AudioWithTimestampsResponse.d.ts +2 -2
- package/dist/api/types/AuthSettings.d.ts +2 -2
- package/dist/api/types/BatchCallDetailedResponse.d.ts +9 -9
- package/dist/api/types/BatchCallResponse.d.ts +9 -9
- package/dist/api/types/BodyAddChapterToAProjectV1ProjectsProjectIdChaptersAddPost.d.ts +1 -1
- package/dist/api/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +4 -4
- package/dist/api/types/BodyEditBasicProjectInfoV1ProjectsProjectIdPost.d.ts +4 -4
- package/dist/api/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.d.ts +3 -3
- package/dist/api/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.d.ts +1 -1
- package/dist/api/types/BodyStreamChapterAudioV1ProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.d.ts +1 -1
- package/dist/api/types/BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.d.ts +1 -1
- package/dist/api/types/ChapterContentBlockInputModel.d.ts +2 -1
- package/dist/api/types/ChapterContentBlockInputModelSubType.d.ts +10 -0
- package/dist/api/types/ChapterContentBlockInputModelSubType.js +12 -0
- package/dist/api/types/ChapterContentBlockResponseModel.d.ts +1 -1
- package/dist/api/types/ChapterContentBlockTtsNodeResponseModel.d.ts +1 -1
- package/dist/api/types/ChapterContentParagraphTtsNodeInputModel.d.ts +1 -1
- package/dist/api/types/ChapterResponse.d.ts +5 -5
- package/dist/api/types/ChapterSnapshotExtendedResponseModel.d.ts +5 -5
- package/dist/api/types/ChapterSnapshotResponse.d.ts +4 -4
- package/dist/api/types/ChapterStatisticsResponse.d.ts +4 -4
- package/dist/api/types/ChapterWithContentResponseModel.d.ts +5 -5
- package/dist/api/types/CharacterAlignmentModel.d.ts +2 -2
- package/dist/api/types/CharacterAlignmentResponseModel.d.ts +2 -2
- package/dist/api/types/ClientToolConfigInput.d.ts +3 -3
- package/dist/api/types/ClientToolConfigOutput.d.ts +3 -3
- package/dist/api/types/CloseContext.d.ts +2 -2
- package/dist/api/types/CloseSocket.d.ts +1 -1
- package/dist/api/types/ConvAiDynamicVariable.d.ts +1 -1
- package/dist/api/types/ConvAiSecretLocator.d.ts +1 -1
- package/dist/api/types/ConvAiStoredSecretDependencies.d.ts +2 -2
- package/dist/api/types/ConvAiWebhooks.d.ts +1 -1
- package/dist/api/types/ConvAiWorkspaceStoredSecretConfig.d.ts +2 -2
- package/dist/api/types/ConversationChargingCommonModel.d.ts +3 -3
- package/dist/api/types/ConversationConfig.d.ts +3 -3
- package/dist/api/types/ConversationConfigOverride.d.ts +1 -1
- package/dist/api/types/ConversationConfigOverrideConfig.d.ts +1 -1
- package/dist/api/types/ConversationDeletionSettings.d.ts +6 -6
- package/dist/api/types/ConversationHistoryAnalysisCommonModel.d.ts +4 -4
- package/dist/api/types/ConversationHistoryBatchCallModel.d.ts +2 -2
- package/dist/api/types/ConversationHistoryEvaluationCriteriaResultCommonModel.d.ts +1 -1
- package/dist/api/types/ConversationHistoryFeedbackCommonModel.d.ts +1 -1
- package/dist/api/types/ConversationHistoryMetadataCommonModel.d.ts +10 -10
- package/dist/api/types/ConversationHistoryRagUsageCommonModel.d.ts +2 -2
- package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +4 -4
- package/dist/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +9 -9
- package/dist/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +9 -9
- package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModel.d.ts +5 -5
- package/dist/api/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +2 -2
- package/dist/api/types/ConversationHistoryTranscriptToolResultCommonModel.d.ts +6 -6
- package/dist/api/types/ConversationHistoryTwilioPhoneCallModel.d.ts +5 -5
- package/dist/api/types/ConversationInitiationClientDataConfigInput.d.ts +3 -3
- package/dist/api/types/ConversationInitiationClientDataConfigOutput.d.ts +3 -3
- package/dist/api/types/ConversationInitiationClientDataInternal.d.ts +3 -3
- package/dist/api/types/ConversationInitiationClientDataRequestInput.d.ts +3 -3
- package/dist/api/types/ConversationInitiationClientDataRequestOutput.d.ts +3 -3
- package/dist/api/types/ConversationInitiationClientDataWebhook.d.ts +1 -1
- package/dist/api/types/ConversationSignedUrlResponseModel.d.ts +1 -1
- package/dist/api/types/ConversationSimulationSpecification.d.ts +3 -3
- package/dist/api/types/ConversationSummaryResponseModel.d.ts +7 -7
- package/dist/api/types/ConversationTokenDbModel.d.ts +5 -3
- package/dist/api/types/ConversationalConfig.d.ts +1 -1
- package/dist/api/types/CreateAgentResponseModel.d.ts +1 -1
- package/dist/api/types/CreatePhoneNumberResponseModel.d.ts +1 -1
- package/dist/api/types/CreatePreviouslyGeneratedVoiceRequest.d.ts +4 -4
- package/dist/api/types/CreateSipTrunkPhoneNumberRequest.d.ts +3 -3
- package/dist/api/types/CreateTwilioPhoneNumberRequest.d.ts +1 -1
- package/dist/api/types/CustomLlm.d.ts +2 -2
- package/dist/api/types/DashboardCriteriaChartModel.d.ts +1 -1
- package/dist/api/types/DashboardDataCollectionChartModel.d.ts +1 -1
- package/dist/api/types/DataCollectionResultCommonModel.d.ts +2 -2
- package/dist/api/types/DependentAvailableAgentIdentifier.d.ts +2 -2
- package/dist/api/types/DependentAvailableAgentToolIdentifier.d.ts +5 -5
- package/dist/api/types/DependentAvailableToolIdentifier.d.ts +2 -2
- package/dist/api/types/DependentPhoneNumberIdentifier.d.ts +2 -2
- package/dist/api/types/DoDubbingResponse.d.ts +2 -2
- package/dist/api/types/DocxExportOptions.d.ts +5 -5
- package/dist/api/types/DubbedSegment.d.ts +4 -4
- package/dist/api/types/DubbingMediaMetadata.d.ts +1 -1
- package/dist/api/types/DubbingMediaReference.d.ts +5 -5
- package/dist/api/types/DubbingMetadataResponse.d.ts +3 -3
- package/dist/api/types/DubbingRenderResponseModel.d.ts +1 -1
- package/dist/api/types/DubbingResource.d.ts +4 -4
- package/dist/api/types/DynamicVariablesConfig.d.ts +1 -1
- package/dist/api/types/FeedbackItem.d.ts +4 -4
- package/dist/api/types/FineTuningResponse.d.ts +11 -11
- package/dist/api/types/FlushContext.d.ts +1 -1
- package/dist/api/types/GenerateVoiceRequest.d.ts +1 -1
- package/dist/api/types/GenerationConfig.d.ts +1 -1
- package/dist/api/types/GetAgentEmbedResponseModel.d.ts +2 -2
- package/dist/api/types/GetAgentKnowledgebaseSizeResponseModel.d.ts +6 -0
- package/dist/api/types/GetAgentKnowledgebaseSizeResponseModel.js +5 -0
- package/dist/api/types/GetAgentLinkResponseModel.d.ts +1 -1
- package/dist/api/types/GetAgentResponseModel.d.ts +5 -5
- package/dist/api/types/GetAgentsPageResponseModel.d.ts +2 -2
- package/dist/api/types/GetAudioNativeProjectSettingsResponseModel.d.ts +1 -1
- package/dist/api/types/GetConvAiSettingsResponseModel.d.ts +3 -3
- package/dist/api/types/GetConversationResponseModel.d.ts +6 -6
- package/dist/api/types/GetConversationsPageResponseModel.d.ts +2 -2
- package/dist/api/types/GetKnowledgeBaseDependentAgentsResponseModel.d.ts +2 -2
- package/dist/api/types/GetKnowledgeBaseFileResponseModel.d.ts +3 -3
- package/dist/api/types/GetKnowledgeBaseListResponseModel.d.ts +2 -2
- package/dist/api/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +3 -3
- package/dist/api/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +3 -3
- package/dist/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +3 -3
- package/dist/api/types/GetKnowledgeBaseTextResponseModel.d.ts +3 -3
- package/dist/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +3 -3
- package/dist/api/types/GetLibraryVoicesResponse.d.ts +2 -2
- package/dist/api/types/GetPhoneNumberSipTrunkResponseModel.d.ts +4 -4
- package/dist/api/types/GetPhoneNumberTwilioResponseModel.d.ts +3 -3
- package/dist/api/types/GetPronunciationDictionariesMetadataResponseModel.d.ts +3 -3
- package/dist/api/types/GetPronunciationDictionaryMetadataResponse.d.ts +6 -6
- package/dist/api/types/GetSpeechHistoryResponse.d.ts +2 -2
- package/dist/api/types/GetVoicesV2Response.d.ts +3 -3
- package/dist/api/types/HistoryAlignmentResponseModel.d.ts +2 -2
- package/dist/api/types/HistoryAlignmentsResponseModel.d.ts +1 -1
- package/dist/api/types/HistoryItemResponse.d.ts +1 -1
- package/dist/api/types/HtmlExportOptions.d.ts +5 -5
- package/dist/api/types/InitialiseContext.d.ts +5 -5
- package/dist/api/types/InitializeConnection.d.ts +4 -4
- package/dist/api/types/InitializeConnectionMulti.d.ts +5 -5
- package/dist/api/types/InvoiceResponse.d.ts +3 -3
- package/dist/api/types/KeepContextAlive.d.ts +1 -1
- package/dist/api/types/KnowledgeBaseDocumentMetadataResponseModel.d.ts +3 -3
- package/dist/api/types/KnowledgeBaseLocator.d.ts +1 -1
- package/dist/api/types/LanguagePresetInput.d.ts +1 -1
- package/dist/api/types/LanguagePresetOutput.d.ts +1 -1
- package/dist/api/types/LanguagePresetTranslation.d.ts +1 -1
- package/dist/api/types/LanguageResponse.d.ts +1 -1
- package/dist/api/types/LibraryVoiceResponse.d.ts +20 -20
- package/dist/api/types/LiteralJsonSchemaProperty.d.ts +2 -2
- package/dist/api/types/LlmCategoryUsage.d.ts +2 -2
- package/dist/api/types/LlmInputOutputTokensUsage.d.ts +3 -3
- package/dist/api/types/LlmUsageCalculatorLlmResponseModel.d.ts +8 -0
- package/dist/api/types/LlmUsageCalculatorLlmResponseModel.js +5 -0
- package/dist/api/types/LlmUsageCalculatorResponseModel.d.ts +7 -0
- package/dist/api/types/LlmUsageCalculatorResponseModel.js +5 -0
- package/dist/api/types/LlmUsageInput.d.ts +1 -1
- package/dist/api/types/LlmUsageOutput.d.ts +1 -1
- package/dist/api/types/ManualVerificationFileResponse.d.ts +5 -5
- package/dist/api/types/ManualVerificationResponse.d.ts +2 -2
- package/dist/api/types/McpToolConfigInput.d.ts +3 -3
- package/dist/api/types/McpToolConfigOutput.d.ts +3 -3
- package/dist/api/types/MetricRecord.d.ts +1 -1
- package/dist/api/types/Model.d.ts +14 -14
- package/dist/api/types/ModelRatesResponseModel.d.ts +1 -1
- package/dist/api/types/ModerationStatusResponseModel.d.ts +9 -9
- package/dist/api/types/NativeMcpToolConfigInput.d.ts +20 -0
- package/dist/api/types/NativeMcpToolConfigInput.js +5 -0
- package/dist/api/types/NativeMcpToolConfigOutput.d.ts +20 -0
- package/dist/api/types/NativeMcpToolConfigOutput.js +5 -0
- package/dist/api/types/OrbAvatar.d.ts +2 -2
- package/dist/api/types/OutboundCallRecipient.d.ts +2 -2
- package/dist/api/types/OutboundCallRecipientResponseModel.d.ts +5 -5
- package/dist/api/types/PdfExportOptions.d.ts +5 -5
- package/dist/api/types/PhoneNumberAgentInfo.d.ts +2 -2
- package/dist/api/types/PhoneNumberTransfer.d.ts +1 -1
- package/dist/api/types/PodcastBulletinModeData.d.ts +1 -1
- package/dist/api/types/PodcastConversationModeData.d.ts +2 -2
- package/dist/api/types/PostAgentAvatarResponseModel.d.ts +2 -2
- package/dist/api/types/PostWorkspaceSecretResponseModel.d.ts +1 -1
- package/dist/api/types/PrivacyConfig.d.ts +6 -6
- package/dist/api/types/ProjectCreationMetaResponseModel.d.ts +1 -1
- package/dist/api/types/ProjectExtendedResponse.d.ts +24 -24
- package/dist/api/types/ProjectResponse.d.ts +20 -20
- package/dist/api/types/ProjectSnapshotExtendedResponseModel.d.ts +6 -6
- package/dist/api/types/ProjectSnapshotResponse.d.ts +5 -5
- package/dist/api/types/PromptAgent.d.ts +8 -6
- package/dist/api/types/PromptAgentDbModel.d.ts +9 -7
- package/dist/api/types/PromptAgentDbModelToolsItem.d.ts +4 -1
- package/dist/api/types/PromptAgentInputToolsItem.d.ts +4 -1
- package/dist/api/types/PromptAgentOutputToolsItem.d.ts +4 -1
- package/dist/api/types/PromptEvaluationCriteria.d.ts +2 -2
- package/dist/api/types/PronunciationDictionaryAliasRuleRequestModel.d.ts +1 -1
- package/dist/api/types/PronunciationDictionaryLocator.d.ts +2 -2
- package/dist/api/types/PronunciationDictionaryLocatorResponseModel.d.ts +2 -2
- package/dist/api/types/PronunciationDictionaryPhonemeRuleRequestModel.d.ts +1 -1
- package/dist/api/types/PronunciationDictionaryRulesResponseModel.d.ts +2 -2
- package/dist/api/types/PronunciationDictionaryVersionLocator.d.ts +2 -2
- package/dist/api/types/PronunciationDictionaryVersionResponseModel.d.ts +9 -9
- package/dist/api/types/PydanticPronunciationDictionaryVersionLocator.d.ts +2 -2
- package/dist/api/types/RagChunkMetadata.d.ts +3 -3
- package/dist/api/types/RagConfig.d.ts +3 -3
- package/dist/api/types/RagIndexResponseModel.d.ts +1 -1
- package/dist/api/types/RagRetrievalInfo.d.ts +3 -3
- package/dist/api/types/ReaderResourceResponseModel.d.ts +2 -2
- package/dist/api/types/RealtimeVoiceSettings.d.ts +2 -2
- package/dist/api/types/RecordingResponse.d.ts +4 -4
- package/dist/api/types/Render.d.ts +1 -1
- package/dist/api/types/ResourceAccessInfo.d.ts +3 -3
- package/dist/api/types/ResourceMetadataResponseModel.d.ts +5 -5
- package/dist/api/types/SafetyCommonModel.d.ts +1 -1
- package/dist/api/types/SafetyEvaluation.d.ts +4 -4
- package/dist/api/types/SafetyResponseModel.d.ts +3 -3
- package/dist/api/types/SegmentCreateResponse.d.ts +1 -1
- package/dist/api/types/SegmentedJsonExportOptions.d.ts +5 -5
- package/dist/api/types/SendText.d.ts +3 -3
- package/dist/api/types/SendTextMulti.d.ts +1 -1
- package/dist/api/types/SimilarVoice.d.ts +2 -2
- package/dist/api/types/SipTrunkConfigResponseModel.d.ts +3 -3
- package/dist/api/types/SipTrunkOutboundCallResponse.d.ts +2 -2
- package/dist/api/types/SpeakerAudioResponseModel.d.ts +3 -3
- package/dist/api/types/SpeakerResponseModel.d.ts +2 -2
- package/dist/api/types/SpeakerSegment.d.ts +2 -2
- package/dist/api/types/SpeakerSeparationResponseModel.d.ts +3 -3
- package/dist/api/types/SpeakerTrack.d.ts +2 -2
- package/dist/api/types/SpeechHistoryItemResponse.d.ts +11 -11
- package/dist/api/types/SpeechToTextChunkResponseModel.d.ts +3 -3
- package/dist/api/types/SpeechToTextWordResponseModel.d.ts +1 -1
- package/dist/api/types/SrtExportOptions.d.ts +6 -6
- package/dist/api/types/StreamingAudioChunkWithTimestampsResponse.d.ts +2 -2
- package/dist/api/types/Subscription.d.ts +19 -19
- package/dist/api/types/SubscriptionExtrasResponseModel.d.ts +8 -8
- package/dist/api/types/SubscriptionResponse.d.ts +17 -17
- package/dist/api/types/SubscriptionUsageResponseModel.d.ts +8 -8
- package/dist/api/types/SystemToolConfigInput.d.ts +1 -1
- package/dist/api/types/SystemToolConfigInputParams.d.ts +4 -4
- package/dist/api/types/SystemToolConfigOutput.d.ts +1 -1
- package/dist/api/types/SystemToolConfigOutputParams.d.ts +4 -4
- package/dist/api/types/ToolMockConfig.d.ts +2 -2
- package/dist/api/types/TtsConversationalConfig.d.ts +6 -6
- package/dist/api/types/TtsConversationalConfigOverride.d.ts +1 -1
- package/dist/api/types/TtsConversationalConfigOverrideConfig.d.ts +1 -1
- package/dist/api/types/TurnConfig.d.ts +2 -2
- package/dist/api/types/TwilioOutboundCallResponse.d.ts +1 -1
- package/dist/api/types/TxtExportOptions.d.ts +6 -6
- package/dist/api/types/UpdatePronunciationDictionariesRequest.d.ts +2 -2
- package/dist/api/types/UrlAvatar.d.ts +1 -1
- package/dist/api/types/User.d.ts +12 -12
- package/dist/api/types/UserFeedback.d.ts +1 -1
- package/dist/api/types/VerificationAttemptResponse.d.ts +2 -2
- package/dist/api/types/VerifiedVoiceLanguageResponseModel.d.ts +2 -2
- package/dist/api/types/Voice.d.ts +13 -13
- package/dist/api/types/VoiceGenerationParameterResponse.d.ts +4 -4
- package/dist/api/types/VoicePreviewResponseModel.d.ts +4 -4
- package/dist/api/types/VoiceSample.d.ts +11 -11
- package/dist/api/types/VoiceSamplePreviewResponseModel.d.ts +5 -5
- package/dist/api/types/VoiceSampleVisualWaveformResponseModel.d.ts +2 -2
- package/dist/api/types/VoiceSettings.d.ts +2 -2
- package/dist/api/types/VoiceSharingModerationCheckResponseModel.d.ts +9 -9
- package/dist/api/types/VoiceSharingResponse.d.ts +26 -26
- package/dist/api/types/VoiceVerificationResponse.d.ts +5 -5
- package/dist/api/types/WebhookToolApiSchemaConfigInput.d.ts +4 -4
- package/dist/api/types/WebhookToolApiSchemaConfigOutput.d.ts +4 -4
- package/dist/api/types/WebhookToolConfigInput.d.ts +3 -3
- package/dist/api/types/WebhookToolConfigOutput.d.ts +3 -3
- package/dist/api/types/WebsocketTtsClientMessageMulti.d.ts +9 -9
- package/dist/api/types/WebsocketTtsServerMessageMulti.d.ts +1 -1
- package/dist/api/types/WidgetConfig.d.ts +26 -26
- package/dist/api/types/WidgetConfigResponseModel.d.ts +25 -25
- package/dist/api/types/WorkspaceBatchCallsResponse.d.ts +3 -3
- package/dist/api/types/WorkspaceGroupByNameResponseModel.d.ts +1 -1
- package/dist/api/types/index.d.ts +6 -1
- package/dist/api/types/index.js +6 -1
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.js +24 -0
- package/dist/core/schemas/Schema.d.ts +87 -0
- package/dist/core/schemas/Schema.js +24 -0
- package/dist/core/schemas/builders/bigint/bigint.d.ts +2 -0
- package/dist/core/schemas/builders/bigint/bigint.js +53 -0
- package/dist/core/schemas/builders/bigint/index.d.ts +1 -0
- package/dist/core/schemas/builders/bigint/index.js +5 -0
- package/dist/core/schemas/builders/date/date.d.ts +2 -0
- package/dist/core/schemas/builders/date/date.js +62 -0
- package/dist/core/schemas/builders/date/index.d.ts +1 -0
- package/dist/core/schemas/builders/date/index.js +5 -0
- package/dist/core/schemas/builders/enum/enum.d.ts +2 -0
- package/dist/core/schemas/builders/enum/enum.js +38 -0
- package/dist/core/schemas/builders/enum/index.d.ts +1 -0
- package/dist/core/schemas/builders/enum/index.js +5 -0
- package/dist/core/schemas/builders/index.d.ts +14 -0
- package/dist/core/schemas/builders/index.js +30 -0
- package/dist/core/schemas/builders/lazy/index.d.ts +3 -0
- package/dist/core/schemas/builders/lazy/index.js +7 -0
- package/dist/core/schemas/builders/lazy/lazy.d.ts +5 -0
- package/dist/core/schemas/builders/lazy/lazy.js +24 -0
- package/dist/core/schemas/builders/lazy/lazyObject.d.ts +3 -0
- package/dist/core/schemas/builders/lazy/lazyObject.js +11 -0
- package/dist/core/schemas/builders/list/index.d.ts +1 -0
- package/dist/core/schemas/builders/list/index.js +5 -0
- package/dist/core/schemas/builders/list/list.d.ts +2 -0
- package/dist/core/schemas/builders/list/list.js +54 -0
- package/dist/core/schemas/builders/literals/booleanLiteral.d.ts +2 -0
- package/dist/core/schemas/builders/literals/booleanLiteral.js +28 -0
- package/dist/core/schemas/builders/literals/index.d.ts +2 -0
- package/dist/core/schemas/builders/literals/index.js +7 -0
- package/dist/core/schemas/builders/literals/stringLiteral.d.ts +2 -0
- package/dist/core/schemas/builders/literals/stringLiteral.js +28 -0
- package/dist/core/schemas/builders/object/index.d.ts +6 -0
- package/dist/core/schemas/builders/object/index.js +11 -0
- package/dist/core/schemas/builders/object/object.d.ts +3 -0
- package/dist/core/schemas/builders/object/object.js +261 -0
- package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +6 -0
- package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.js +7 -0
- package/dist/core/schemas/builders/object/property.d.ts +8 -0
- package/dist/core/schemas/builders/object/property.js +15 -0
- package/dist/core/schemas/builders/object/types.d.ts +31 -0
- package/dist/core/schemas/builders/object/types.js +2 -0
- package/dist/core/schemas/builders/object-like/getObjectLikeUtils.d.ts +9 -0
- package/dist/core/schemas/builders/object-like/getObjectLikeUtils.js +53 -0
- package/dist/core/schemas/builders/object-like/index.d.ts +2 -0
- package/dist/core/schemas/builders/object-like/index.js +6 -0
- package/dist/core/schemas/builders/object-like/types.d.ts +7 -0
- package/dist/core/schemas/builders/object-like/types.js +2 -0
- package/dist/core/schemas/builders/primitives/any.d.ts +1 -0
- package/dist/core/schemas/builders/primitives/any.js +6 -0
- package/dist/core/schemas/builders/primitives/boolean.d.ts +1 -0
- package/dist/core/schemas/builders/primitives/boolean.js +25 -0
- package/dist/core/schemas/builders/primitives/index.d.ts +5 -0
- package/dist/core/schemas/builders/primitives/index.js +13 -0
- package/dist/core/schemas/builders/primitives/number.d.ts +1 -0
- package/dist/core/schemas/builders/primitives/number.js +25 -0
- package/dist/core/schemas/builders/primitives/string.d.ts +1 -0
- package/dist/core/schemas/builders/primitives/string.js +25 -0
- package/dist/core/schemas/builders/primitives/unknown.d.ts +1 -0
- package/dist/core/schemas/builders/primitives/unknown.js +6 -0
- package/dist/core/schemas/builders/record/index.d.ts +2 -0
- package/dist/core/schemas/builders/record/index.js +5 -0
- package/dist/core/schemas/builders/record/record.d.ts +3 -0
- package/dist/core/schemas/builders/record/record.js +93 -0
- package/dist/core/schemas/builders/record/types.d.ts +4 -0
- package/dist/core/schemas/builders/record/types.js +2 -0
- package/dist/core/schemas/builders/schema-utils/JsonError.d.ts +5 -0
- package/dist/core/schemas/builders/schema-utils/JsonError.js +12 -0
- package/dist/core/schemas/builders/schema-utils/ParseError.d.ts +5 -0
- package/dist/core/schemas/builders/schema-utils/ParseError.js +12 -0
- package/dist/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +21 -0
- package/dist/core/schemas/builders/schema-utils/getSchemaUtils.js +145 -0
- package/dist/core/schemas/builders/schema-utils/index.d.ts +4 -0
- package/dist/core/schemas/builders/schema-utils/index.js +11 -0
- package/dist/core/schemas/builders/schema-utils/stringifyValidationErrors.d.ts +2 -0
- package/dist/core/schemas/builders/schema-utils/stringifyValidationErrors.js +9 -0
- package/dist/core/schemas/builders/set/index.d.ts +1 -0
- package/dist/core/schemas/builders/set/index.js +5 -0
- package/dist/core/schemas/builders/set/set.d.ts +2 -0
- package/dist/core/schemas/builders/set/set.js +43 -0
- package/dist/core/schemas/builders/undiscriminated-union/index.d.ts +2 -0
- package/dist/core/schemas/builders/undiscriminated-union/index.js +5 -0
- package/dist/core/schemas/builders/undiscriminated-union/types.d.ts +4 -0
- package/dist/core/schemas/builders/undiscriminated-union/types.js +2 -0
- package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.d.ts +3 -0
- package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +39 -0
- package/dist/core/schemas/builders/union/discriminant.d.ts +5 -0
- package/dist/core/schemas/builders/union/discriminant.js +9 -0
- package/dist/core/schemas/builders/union/index.d.ts +4 -0
- package/dist/core/schemas/builders/union/index.js +7 -0
- package/dist/core/schemas/builders/union/types.d.ts +13 -0
- package/dist/core/schemas/builders/union/types.js +2 -0
- package/dist/core/schemas/builders/union/union.d.ts +4 -0
- package/dist/core/schemas/builders/union/union.js +129 -0
- package/dist/core/schemas/index.d.ts +2 -0
- package/dist/core/schemas/index.js +17 -0
- package/dist/core/schemas/utils/MaybePromise.d.ts +1 -0
- package/dist/core/schemas/utils/MaybePromise.js +2 -0
- package/dist/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +7 -0
- package/dist/core/schemas/utils/addQuestionMarksToNullableProperties.js +2 -0
- package/dist/core/schemas/utils/createIdentitySchemaCreator.d.ts +2 -0
- package/dist/core/schemas/utils/createIdentitySchemaCreator.js +15 -0
- package/dist/core/schemas/utils/entries.d.ts +1 -0
- package/dist/core/schemas/utils/entries.js +6 -0
- package/dist/core/schemas/utils/filterObject.d.ts +1 -0
- package/dist/core/schemas/utils/filterObject.js +13 -0
- package/dist/core/schemas/utils/getErrorMessageForIncorrectType.d.ts +1 -0
- package/dist/core/schemas/utils/getErrorMessageForIncorrectType.js +27 -0
- package/dist/core/schemas/utils/isPlainObject.d.ts +1 -0
- package/dist/core/schemas/utils/isPlainObject.js +17 -0
- package/dist/core/schemas/utils/keys.d.ts +1 -0
- package/dist/core/schemas/utils/keys.js +6 -0
- package/dist/core/schemas/utils/maybeSkipValidation.d.ts +2 -0
- package/dist/core/schemas/utils/maybeSkipValidation.js +27 -0
- package/dist/core/schemas/utils/partition.d.ts +1 -0
- package/dist/core/schemas/utils/partition.js +15 -0
- package/dist/serialization/index.d.ts +2 -0
- package/dist/serialization/index.js +18 -0
- package/dist/serialization/resources/audioIsolation/index.d.ts +1 -0
- package/dist/serialization/resources/audioIsolation/index.js +17 -0
- package/dist/serialization/resources/audioIsolation/types/AudioIsolationConvertRequestFileFormat.d.ts +10 -0
- package/dist/serialization/resources/audioIsolation/types/AudioIsolationConvertRequestFileFormat.js +41 -0
- package/dist/serialization/resources/audioIsolation/types/AudioIsolationStreamRequestFileFormat.d.ts +10 -0
- package/dist/serialization/resources/audioIsolation/types/AudioIsolationStreamRequestFileFormat.js +41 -0
- package/dist/serialization/resources/audioIsolation/types/index.d.ts +2 -0
- package/dist/serialization/resources/audioIsolation/types/index.js +18 -0
- package/dist/serialization/resources/conversationalAi/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/client/requests/PatchWorkspaceSecretRequest.d.ts +13 -0
- package/dist/serialization/resources/conversationalAi/client/requests/PatchWorkspaceSecretRequest.js +44 -0
- package/dist/serialization/resources/conversationalAi/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/index.js +18 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/BodyCreateAgentV1ConvaiAgentsCreatePost.d.ts +17 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/BodyCreateAgentV1ConvaiAgentsCreatePost.js +48 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.d.ts +15 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.js +46 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.d.ts +15 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.js +46 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +15 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.js +46 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/index.d.ts +4 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/index.js +11 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/index.js +18 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/index.js +41 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.d.ts +14 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.js +45 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/batchCalls/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/batchCalls/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +17 -0
- package/dist/serialization/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.js +48 -0
- package/dist/serialization/resources/conversationalAi/resources/batchCalls/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/batchCalls/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/batchCalls/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/batchCalls/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/conversations/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/conversations/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/conversations/resources/feedback/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/conversations/resources/feedback/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/BodySendConversationFeedbackV1ConvaiConversationsConversationIdFeedbackPost.d.ts +13 -0
- package/dist/serialization/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/BodySendConversationFeedbackV1ConvaiConversationsConversationIdFeedbackPost.js +44 -0
- package/dist/serialization/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/conversations/resources/feedback/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/conversations/resources/feedback/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/conversations/resources/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/conversations/resources/index.js +41 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/index.d.ts +3 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/index.js +42 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/settings/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/settings/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/PatchConvAiDashboardSettingsRequest.d.ts +13 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/PatchConvAiDashboardSettingsRequest.js +44 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/settings/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/settings/index.js +18 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/settings/types/PatchConvAiDashboardSettingsRequestChartsItem.d.ts +22 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/settings/types/PatchConvAiDashboardSettingsRequestChartsItem.js +53 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/settings/types/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/dashboard/resources/settings/types/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/index.d.ts +20 -0
- package/dist/serialization/resources/conversationalAi/resources/index.js +59 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/RagIndexRequestModel.d.ts +13 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/RagIndexRequestModel.js +44 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.d.ts +13 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.js +44 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +13 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.js +44 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.d.ts +12 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.js +43 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.d.ts +3 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.js +9 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/index.js +18 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.d.ts +22 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.js +53 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.d.ts +22 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.js +53 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/index.js +18 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +5 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.js +44 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.d.ts +14 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.js +45 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/client/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/client/index.js +41 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/client/list.d.ts +11 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/client/list.js +42 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +12 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.js +43 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/index.js +18 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersCreateRequestBody.d.ts +18 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersCreateRequestBody.js +51 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersGetResponse.d.ts +18 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersGetResponse.js +51 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersListResponseItem.d.ts +18 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersListResponseItem.js +51 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersUpdateResponse.d.ts +18 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersUpdateResponse.js +51 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/index.d.ts +4 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/types/index.js +20 -0
- package/dist/serialization/resources/conversationalAi/resources/secrets/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/secrets/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/secrets/client/requests/PostWorkspaceSecretRequest.d.ts +13 -0
- package/dist/serialization/resources/conversationalAi/resources/secrets/client/requests/PostWorkspaceSecretRequest.js +44 -0
- package/dist/serialization/resources/conversationalAi/resources/secrets/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/secrets/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/secrets/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/secrets/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/settings/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/settings/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +17 -0
- package/dist/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.js +48 -0
- package/dist/serialization/resources/conversationalAi/resources/settings/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/settings/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/settings/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/settings/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/sipTrunk/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/sipTrunk/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/sipTrunk/client/requests/BodyHandleAnOutboundCallViaSipTrunkV1ConvaiSipTrunkOutboundCallPost.d.ts +16 -0
- package/dist/serialization/resources/conversationalAi/resources/sipTrunk/client/requests/BodyHandleAnOutboundCallViaSipTrunkV1ConvaiSipTrunkOutboundCallPost.js +47 -0
- package/dist/serialization/resources/conversationalAi/resources/sipTrunk/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/sipTrunk/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/sipTrunk/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/sipTrunk/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyHandleAnOutboundCallViaTwilioV1ConvaiTwilioOutboundCallPost.d.ts +16 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyHandleAnOutboundCallViaTwilioV1ConvaiTwilioOutboundCallPost.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 +5 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/index.js +17 -0
- package/dist/serialization/resources/dubbing/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/index.js +17 -0
- package/dist/serialization/resources/dubbing/resources/index.d.ts +4 -0
- package/dist/serialization/resources/dubbing/resources/index.js +43 -0
- package/dist/serialization/resources/dubbing/resources/resource/client/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/resource/client/index.js +17 -0
- package/dist/serialization/resources/dubbing/resources/resource/client/requests/BodyDubsAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdDubPost.d.ts +13 -0
- package/dist/serialization/resources/dubbing/resources/resource/client/requests/BodyDubsAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdDubPost.js +44 -0
- package/dist/serialization/resources/dubbing/resources/resource/client/requests/BodyRenderAudioOrVideoForTheGivenLanguageV1DubbingResourceDubbingIdRenderLanguagePost.d.ts +13 -0
- package/dist/serialization/resources/dubbing/resources/resource/client/requests/BodyRenderAudioOrVideoForTheGivenLanguageV1DubbingResourceDubbingIdRenderLanguagePost.js +44 -0
- package/dist/serialization/resources/dubbing/resources/resource/client/requests/BodyTranscribesSegmentsV1DubbingResourceDubbingIdTranscribePost.d.ts +12 -0
- package/dist/serialization/resources/dubbing/resources/resource/client/requests/BodyTranscribesSegmentsV1DubbingResourceDubbingIdTranscribePost.js +43 -0
- package/dist/serialization/resources/dubbing/resources/resource/client/requests/BodyTranslatesAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdTranslatePost.d.ts +13 -0
- package/dist/serialization/resources/dubbing/resources/resource/client/requests/BodyTranslatesAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdTranslatePost.js +44 -0
- package/dist/serialization/resources/dubbing/resources/resource/client/requests/index.d.ts +4 -0
- package/dist/serialization/resources/dubbing/resources/resource/client/requests/index.js +11 -0
- package/dist/serialization/resources/dubbing/resources/resource/index.d.ts +2 -0
- package/dist/serialization/resources/dubbing/resources/resource/index.js +18 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/index.d.ts +6 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/index.js +45 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/language/client/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/language/client/index.js +17 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/language/client/requests/BodyAddALanguageToTheResourceV1DubbingResourceDubbingIdLanguagePost.d.ts +12 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/language/client/requests/BodyAddALanguageToTheResourceV1DubbingResourceDubbingIdLanguagePost.js +43 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/language/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/language/client/requests/index.js +5 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/language/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/language/index.js +17 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/segment/client/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/segment/client/index.js +17 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/segment/client/requests/SegmentUpdatePayload.d.ts +14 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/segment/client/requests/SegmentUpdatePayload.js +45 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/segment/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/segment/client/requests/index.js +5 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/segment/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/segment/index.js +17 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/index.js +17 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +13 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.js +44 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/index.js +5 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/index.d.ts +2 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/index.js +18 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/resources/index.d.ts +2 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/resources/index.js +41 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/index.js +17 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/SegmentCreatePayload.d.ts +15 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/SegmentCreatePayload.js +48 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/index.js +5 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/index.js +17 -0
- package/dist/serialization/resources/dubbing/resources/transcript/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/transcript/index.js +17 -0
- package/dist/serialization/resources/dubbing/resources/transcript/types/TranscriptGetTranscriptForDubRequestFormatType.d.ts +10 -0
- package/dist/serialization/resources/dubbing/resources/transcript/types/TranscriptGetTranscriptForDubRequestFormatType.js +41 -0
- package/dist/serialization/resources/dubbing/resources/transcript/types/index.d.ts +1 -0
- package/dist/serialization/resources/dubbing/resources/transcript/types/index.js +17 -0
- package/dist/serialization/resources/history/client/index.d.ts +1 -0
- package/dist/serialization/resources/history/client/index.js +17 -0
- package/dist/serialization/resources/history/client/requests/DownloadHistoryRequest.d.ts +13 -0
- package/dist/serialization/resources/history/client/requests/DownloadHistoryRequest.js +44 -0
- package/dist/serialization/resources/history/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/history/client/requests/index.js +5 -0
- package/dist/serialization/resources/history/index.d.ts +2 -0
- package/dist/serialization/resources/history/index.js +18 -0
- package/dist/serialization/resources/history/types/HistoryListRequestSource.d.ts +10 -0
- package/dist/serialization/resources/history/types/HistoryListRequestSource.js +41 -0
- package/dist/serialization/resources/history/types/index.d.ts +1 -0
- package/dist/serialization/resources/history/types/index.js +17 -0
- package/dist/serialization/resources/index.d.ts +36 -0
- package/dist/serialization/resources/index.js +75 -0
- package/dist/serialization/resources/models/client/index.d.ts +1 -0
- package/dist/serialization/resources/models/client/index.js +37 -0
- package/dist/serialization/resources/models/client/list.d.ts +11 -0
- package/dist/serialization/resources/models/client/list.js +42 -0
- package/dist/serialization/resources/models/index.d.ts +1 -0
- package/dist/serialization/resources/models/index.js +17 -0
- package/dist/serialization/resources/pronunciationDictionaries/client/index.d.ts +1 -0
- package/dist/serialization/resources/pronunciationDictionaries/client/index.js +17 -0
- package/dist/serialization/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPost.d.ts +17 -0
- package/dist/serialization/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPost.js +48 -0
- package/dist/serialization/resources/pronunciationDictionaries/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/pronunciationDictionaries/client/requests/index.js +5 -0
- package/dist/serialization/resources/pronunciationDictionaries/index.d.ts +3 -0
- package/dist/serialization/resources/pronunciationDictionaries/index.js +19 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/index.d.ts +3 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/index.js +42 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/client/index.d.ts +1 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/client/index.js +17 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/client/requests/PronunciationDictionary.d.ts +13 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/client/requests/PronunciationDictionary.js +44 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/client/requests/RemovePronunciationDictionaryRulesRequest.d.ts +12 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/client/requests/RemovePronunciationDictionaryRulesRequest.js +43 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/client/requests/index.js +7 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/index.d.ts +2 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/index.js +18 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/types/PronunciationDictionaryRule.d.ts +18 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/types/PronunciationDictionaryRule.js +51 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/types/index.d.ts +1 -0
- package/dist/serialization/resources/pronunciationDictionaries/resources/rules/types/index.js +17 -0
- package/dist/serialization/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostRulesItem.d.ts +18 -0
- package/dist/serialization/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostRulesItem.js +51 -0
- package/dist/serialization/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostWorkspaceAccess.d.ts +10 -0
- package/dist/serialization/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostWorkspaceAccess.js +41 -0
- package/dist/serialization/resources/pronunciationDictionaries/types/PronunciationDictionariesCreateFromFileRequestWorkspaceAccess.d.ts +10 -0
- package/dist/serialization/resources/pronunciationDictionaries/types/PronunciationDictionariesCreateFromFileRequestWorkspaceAccess.js +41 -0
- package/dist/serialization/resources/pronunciationDictionaries/types/PronunciationDictionariesListRequestSort.d.ts +10 -0
- package/dist/serialization/resources/pronunciationDictionaries/types/PronunciationDictionariesListRequestSort.js +41 -0
- package/dist/serialization/resources/pronunciationDictionaries/types/index.d.ts +4 -0
- package/dist/serialization/resources/pronunciationDictionaries/types/index.js +20 -0
- package/dist/serialization/resources/speechToSpeech/index.d.ts +1 -0
- package/dist/serialization/resources/speechToSpeech/index.js +17 -0
- package/dist/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestFileFormat.d.ts +10 -0
- package/dist/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestFileFormat.js +41 -0
- package/dist/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.d.ts +10 -0
- package/dist/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.js +61 -0
- package/dist/serialization/resources/speechToSpeech/types/SpeechToSpeechStreamRequestFileFormat.d.ts +10 -0
- package/dist/serialization/resources/speechToSpeech/types/SpeechToSpeechStreamRequestFileFormat.js +41 -0
- package/dist/serialization/resources/speechToSpeech/types/SpeechToSpeechStreamRequestOutputFormat.d.ts +10 -0
- package/dist/serialization/resources/speechToSpeech/types/SpeechToSpeechStreamRequestOutputFormat.js +61 -0
- package/dist/serialization/resources/speechToSpeech/types/index.d.ts +4 -0
- package/dist/serialization/resources/speechToSpeech/types/index.js +20 -0
- package/dist/serialization/resources/speechToText/index.d.ts +1 -0
- package/dist/serialization/resources/speechToText/index.js +17 -0
- package/dist/serialization/resources/speechToText/types/SpeechToTextConvertRequestFileFormat.d.ts +10 -0
- package/dist/serialization/resources/speechToText/types/SpeechToTextConvertRequestFileFormat.js +41 -0
- package/dist/serialization/resources/speechToText/types/SpeechToTextConvertRequestTimestampsGranularity.d.ts +10 -0
- package/dist/serialization/resources/speechToText/types/SpeechToTextConvertRequestTimestampsGranularity.js +41 -0
- package/dist/serialization/resources/speechToText/types/index.d.ts +2 -0
- package/dist/serialization/resources/speechToText/types/index.js +18 -0
- package/dist/serialization/resources/studio/client/index.d.ts +1 -0
- package/dist/serialization/resources/studio/client/index.js +17 -0
- package/dist/serialization/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +23 -0
- package/dist/serialization/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.js +54 -0
- package/dist/serialization/resources/studio/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/studio/client/requests/index.js +5 -0
- package/dist/serialization/resources/studio/index.d.ts +3 -0
- package/dist/serialization/resources/studio/index.js +19 -0
- package/dist/serialization/resources/studio/resources/index.d.ts +3 -0
- package/dist/serialization/resources/studio/resources/index.js +42 -0
- package/dist/serialization/resources/studio/resources/projects/client/index.d.ts +1 -0
- package/dist/serialization/resources/studio/resources/projects/client/index.js +17 -0
- package/dist/serialization/resources/studio/resources/projects/client/requests/BodyUpdateStudioProjectV1StudioProjectsProjectIdPost.d.ts +18 -0
- package/dist/serialization/resources/studio/resources/projects/client/requests/BodyUpdateStudioProjectV1StudioProjectsProjectIdPost.js +49 -0
- package/dist/serialization/resources/studio/resources/projects/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/studio/resources/projects/client/requests/index.js +5 -0
- package/dist/serialization/resources/studio/resources/projects/index.d.ts +3 -0
- package/dist/serialization/resources/studio/resources/projects/index.js +19 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/client/index.d.ts +1 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/client/index.js +17 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/client/requests/BodyCreateChapterV1StudioProjectsProjectIdChaptersPost.d.ts +13 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/client/requests/BodyCreateChapterV1StudioProjectsProjectIdChaptersPost.js +44 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/client/requests/BodyUpdateChapterV1StudioProjectsProjectIdChaptersChapterIdPost.d.ts +14 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/client/requests/BodyUpdateChapterV1StudioProjectsProjectIdChaptersChapterIdPost.js +45 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/client/requests/index.js +7 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/index.d.ts +2 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/index.js +18 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/resources/index.d.ts +2 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/resources/index.js +41 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/index.d.ts +1 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/index.js +17 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/BodyStreamChapterAudioV1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.d.ts +12 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/BodyStreamChapterAudioV1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.js +43 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/index.js +5 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/index.d.ts +1 -0
- package/dist/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/index.js +17 -0
- package/dist/serialization/resources/studio/resources/projects/resources/index.d.ts +6 -0
- package/dist/serialization/resources/studio/resources/projects/resources/index.js +45 -0
- package/dist/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/client/index.d.ts +1 -0
- package/dist/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/client/index.js +17 -0
- package/dist/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost.d.ts +14 -0
- package/dist/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost.js +45 -0
- package/dist/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/index.js +5 -0
- package/dist/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/index.d.ts +1 -0
- package/dist/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/index.js +17 -0
- package/dist/serialization/resources/studio/resources/projects/resources/snapshots/client/index.d.ts +1 -0
- package/dist/serialization/resources/studio/resources/projects/resources/snapshots/client/index.js +17 -0
- package/dist/serialization/resources/studio/resources/projects/resources/snapshots/client/requests/BodyStreamStudioProjectAudioV1StudioProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.d.ts +12 -0
- package/dist/serialization/resources/studio/resources/projects/resources/snapshots/client/requests/BodyStreamStudioProjectAudioV1StudioProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.js +43 -0
- package/dist/serialization/resources/studio/resources/projects/resources/snapshots/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/studio/resources/projects/resources/snapshots/client/requests/index.js +5 -0
- package/dist/serialization/resources/studio/resources/projects/resources/snapshots/index.d.ts +1 -0
- package/dist/serialization/resources/studio/resources/projects/resources/snapshots/index.js +17 -0
- package/dist/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestApplyTextNormalization.d.ts +10 -0
- package/dist/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestApplyTextNormalization.js +41 -0
- package/dist/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestFiction.d.ts +10 -0
- package/dist/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestFiction.js +41 -0
- package/dist/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.d.ts +10 -0
- package/dist/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.js +41 -0
- package/dist/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestTargetAudience.d.ts +10 -0
- package/dist/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestTargetAudience.js +41 -0
- package/dist/serialization/resources/studio/resources/projects/types/index.d.ts +4 -0
- package/dist/serialization/resources/studio/resources/projects/types/index.js +20 -0
- package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostDurationScale.d.ts +10 -0
- package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostDurationScale.js +41 -0
- package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostMode.d.ts +18 -0
- package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostMode.js +51 -0
- package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostQualityPreset.d.ts +10 -0
- package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostQualityPreset.js +41 -0
- package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.d.ts +13 -0
- package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.js +48 -0
- package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.d.ts +18 -0
- package/dist/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.js +51 -0
- package/dist/serialization/resources/studio/types/index.d.ts +5 -0
- package/dist/serialization/resources/studio/types/index.js +21 -0
- package/dist/serialization/resources/textToSoundEffects/client/index.d.ts +1 -0
- package/dist/serialization/resources/textToSoundEffects/client/index.js +17 -0
- package/dist/serialization/resources/textToSoundEffects/client/requests/CreateSoundEffectRequest.d.ts +14 -0
- package/dist/serialization/resources/textToSoundEffects/client/requests/CreateSoundEffectRequest.js +45 -0
- package/dist/serialization/resources/textToSoundEffects/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/textToSoundEffects/client/requests/index.js +5 -0
- package/dist/serialization/resources/textToSoundEffects/index.d.ts +2 -0
- package/dist/serialization/resources/textToSoundEffects/index.js +18 -0
- package/dist/serialization/resources/textToSoundEffects/types/TextToSoundEffectsConvertRequestOutputFormat.d.ts +10 -0
- package/dist/serialization/resources/textToSoundEffects/types/TextToSoundEffectsConvertRequestOutputFormat.js +61 -0
- package/dist/serialization/resources/textToSoundEffects/types/index.d.ts +1 -0
- package/dist/serialization/resources/textToSoundEffects/types/index.js +17 -0
- package/dist/serialization/resources/textToSpeech/client/index.d.ts +1 -0
- package/dist/serialization/resources/textToSpeech/client/index.js +17 -0
- package/dist/serialization/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.d.ts +27 -0
- package/dist/serialization/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.js +58 -0
- package/dist/serialization/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.d.ts +27 -0
- package/dist/serialization/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.js +58 -0
- package/dist/serialization/resources/textToSpeech/client/requests/TextToSpeechRequest.d.ts +27 -0
- package/dist/serialization/resources/textToSpeech/client/requests/TextToSpeechRequest.js +58 -0
- package/dist/serialization/resources/textToSpeech/client/requests/TextToSpeechWithTimestampsRequest.d.ts +27 -0
- package/dist/serialization/resources/textToSpeech/client/requests/TextToSpeechWithTimestampsRequest.js +58 -0
- package/dist/serialization/resources/textToSpeech/client/requests/index.d.ts +4 -0
- package/dist/serialization/resources/textToSpeech/client/requests/index.js +11 -0
- package/dist/serialization/resources/textToSpeech/index.d.ts +2 -0
- package/dist/serialization/resources/textToSpeech/index.js +18 -0
- package/dist/serialization/resources/textToSpeech/types/BodyTextToSpeechStreamingV1TextToSpeechVoiceIdStreamPostApplyTextNormalization.d.ts +10 -0
- package/dist/serialization/resources/textToSpeech/types/BodyTextToSpeechStreamingV1TextToSpeechVoiceIdStreamPostApplyTextNormalization.js +41 -0
- package/dist/serialization/resources/textToSpeech/types/BodyTextToSpeechStreamingWithTimestampsV1TextToSpeechVoiceIdStreamWithTimestampsPostApplyTextNormalization.d.ts +10 -0
- package/dist/serialization/resources/textToSpeech/types/BodyTextToSpeechStreamingWithTimestampsV1TextToSpeechVoiceIdStreamWithTimestampsPostApplyTextNormalization.js +41 -0
- package/dist/serialization/resources/textToSpeech/types/BodyTextToSpeechV1TextToSpeechVoiceIdPostApplyTextNormalization.d.ts +10 -0
- package/dist/serialization/resources/textToSpeech/types/BodyTextToSpeechV1TextToSpeechVoiceIdPostApplyTextNormalization.js +41 -0
- package/dist/serialization/resources/textToSpeech/types/BodyTextToSpeechWithTimestampsV1TextToSpeechVoiceIdWithTimestampsPostApplyTextNormalization.d.ts +10 -0
- package/dist/serialization/resources/textToSpeech/types/BodyTextToSpeechWithTimestampsV1TextToSpeechVoiceIdWithTimestampsPostApplyTextNormalization.js +41 -0
- package/dist/serialization/resources/textToSpeech/types/TextToSpeechConvertRequestOutputFormat.d.ts +10 -0
- package/dist/serialization/resources/textToSpeech/types/TextToSpeechConvertRequestOutputFormat.js +61 -0
- package/dist/serialization/resources/textToSpeech/types/TextToSpeechConvertWithTimestampsRequestOutputFormat.d.ts +10 -0
- package/dist/serialization/resources/textToSpeech/types/TextToSpeechConvertWithTimestampsRequestOutputFormat.js +61 -0
- package/dist/serialization/resources/textToSpeech/types/TextToSpeechStreamRequestOutputFormat.d.ts +10 -0
- package/dist/serialization/resources/textToSpeech/types/TextToSpeechStreamRequestOutputFormat.js +61 -0
- package/dist/serialization/resources/textToSpeech/types/TextToSpeechStreamWithTimestampsRequestOutputFormat.d.ts +10 -0
- package/dist/serialization/resources/textToSpeech/types/TextToSpeechStreamWithTimestampsRequestOutputFormat.js +61 -0
- package/dist/serialization/resources/textToSpeech/types/index.d.ts +8 -0
- package/dist/serialization/resources/textToSpeech/types/index.js +24 -0
- package/dist/serialization/resources/textToVoice/client/index.d.ts +1 -0
- package/dist/serialization/resources/textToVoice/client/index.js +17 -0
- package/dist/serialization/resources/textToVoice/client/requests/SaveVoicePreviewRequest.d.ts +16 -0
- package/dist/serialization/resources/textToVoice/client/requests/SaveVoicePreviewRequest.js +47 -0
- package/dist/serialization/resources/textToVoice/client/requests/VoiceDesignRequest.d.ts +18 -0
- package/dist/serialization/resources/textToVoice/client/requests/VoiceDesignRequest.js +49 -0
- package/dist/serialization/resources/textToVoice/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/textToVoice/client/requests/index.js +7 -0
- package/dist/serialization/resources/textToVoice/index.d.ts +2 -0
- package/dist/serialization/resources/textToVoice/index.js +18 -0
- package/dist/serialization/resources/textToVoice/types/TextToVoiceCreatePreviewsRequestOutputFormat.d.ts +10 -0
- package/dist/serialization/resources/textToVoice/types/TextToVoiceCreatePreviewsRequestOutputFormat.js +61 -0
- package/dist/serialization/resources/textToVoice/types/index.d.ts +1 -0
- package/dist/serialization/resources/textToVoice/types/index.js +17 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/index.d.ts +1 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/index.js +17 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/ReceiveMessageMulti.d.ts +12 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/ReceiveMessageMulti.js +43 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/SendMessageMulti.d.ts +17 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/SendMessageMulti.js +56 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/index.d.ts +2 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/index.js +18 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdStreamInput/index.d.ts +1 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdStreamInput/index.js +17 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdStreamInput/types/ReceiveMessage.d.ts +12 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdStreamInput/types/ReceiveMessage.js +43 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdStreamInput/types/SendMessage.d.ts +13 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdStreamInput/types/SendMessage.js +44 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdStreamInput/types/index.d.ts +2 -0
- package/dist/serialization/resources/v1TextToSpeechVoiceIdStreamInput/types/index.js +18 -0
- package/dist/serialization/resources/voices/client/index.d.ts +1 -0
- package/dist/serialization/resources/voices/client/index.js +17 -0
- package/dist/serialization/resources/voices/client/requests/BodyAddSharedVoiceV1VoicesAddPublicUserIdVoiceIdPost.d.ts +12 -0
- package/dist/serialization/resources/voices/client/requests/BodyAddSharedVoiceV1VoicesAddPublicUserIdVoiceIdPost.js +43 -0
- package/dist/serialization/resources/voices/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/voices/client/requests/index.js +5 -0
- package/dist/serialization/resources/voices/index.d.ts +3 -0
- package/dist/serialization/resources/voices/index.js +19 -0
- package/dist/serialization/resources/voices/resources/index.d.ts +2 -0
- package/dist/serialization/resources/voices/resources/index.js +41 -0
- package/dist/serialization/resources/voices/resources/pvc/client/index.d.ts +1 -0
- package/dist/serialization/resources/voices/resources/pvc/client/index.js +17 -0
- package/dist/serialization/resources/voices/resources/pvc/client/requests/BodyEditPvcVoiceV1VoicesPvcVoiceIdPost.d.ts +15 -0
- package/dist/serialization/resources/voices/resources/pvc/client/requests/BodyEditPvcVoiceV1VoicesPvcVoiceIdPost.js +46 -0
- package/dist/serialization/resources/voices/resources/pvc/client/requests/BodyRunPvcTrainingV1VoicesPvcVoiceIdTrainPost.d.ts +12 -0
- package/dist/serialization/resources/voices/resources/pvc/client/requests/BodyRunPvcTrainingV1VoicesPvcVoiceIdTrainPost.js +43 -0
- package/dist/serialization/resources/voices/resources/pvc/client/requests/CreatePvcVoiceRequest.d.ts +15 -0
- package/dist/serialization/resources/voices/resources/pvc/client/requests/CreatePvcVoiceRequest.js +46 -0
- package/dist/serialization/resources/voices/resources/pvc/client/requests/index.d.ts +3 -0
- package/dist/serialization/resources/voices/resources/pvc/client/requests/index.js +9 -0
- package/dist/serialization/resources/voices/resources/pvc/index.d.ts +2 -0
- package/dist/serialization/resources/voices/resources/pvc/index.js +18 -0
- package/dist/serialization/resources/voices/resources/pvc/resources/index.d.ts +2 -0
- package/dist/serialization/resources/voices/resources/pvc/resources/index.js +41 -0
- package/dist/serialization/resources/voices/resources/pvc/resources/samples/client/create.d.ts +11 -0
- package/dist/serialization/resources/voices/resources/pvc/resources/samples/client/create.js +42 -0
- package/dist/serialization/resources/voices/resources/pvc/resources/samples/client/index.d.ts +2 -0
- package/dist/serialization/resources/voices/resources/pvc/resources/samples/client/index.js +41 -0
- package/dist/serialization/resources/voices/resources/pvc/resources/samples/client/requests/BodyUpdatePvcVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost.d.ts +15 -0
- package/dist/serialization/resources/voices/resources/pvc/resources/samples/client/requests/BodyUpdatePvcVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost.js +46 -0
- package/dist/serialization/resources/voices/resources/pvc/resources/samples/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/voices/resources/pvc/resources/samples/client/requests/index.js +5 -0
- package/dist/serialization/resources/voices/resources/pvc/resources/samples/index.d.ts +1 -0
- package/dist/serialization/resources/voices/resources/pvc/resources/samples/index.js +17 -0
- package/dist/serialization/resources/voices/types/VoicesGetSharedRequestCategory.d.ts +10 -0
- package/dist/serialization/resources/voices/types/VoicesGetSharedRequestCategory.js +41 -0
- package/dist/serialization/resources/voices/types/index.d.ts +1 -0
- package/dist/serialization/resources/voices/types/index.js +17 -0
- package/dist/serialization/resources/workspace/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/index.js +17 -0
- package/dist/serialization/resources/workspace/resources/groups/client/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/groups/client/index.js +37 -0
- package/dist/serialization/resources/workspace/resources/groups/client/search.d.ts +11 -0
- package/dist/serialization/resources/workspace/resources/groups/client/search.js +42 -0
- package/dist/serialization/resources/workspace/resources/groups/index.d.ts +2 -0
- package/dist/serialization/resources/workspace/resources/groups/index.js +18 -0
- package/dist/serialization/resources/workspace/resources/groups/resources/index.d.ts +2 -0
- package/dist/serialization/resources/workspace/resources/groups/resources/index.js +41 -0
- package/dist/serialization/resources/workspace/resources/groups/resources/members/client/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/groups/resources/members/client/index.js +17 -0
- package/dist/serialization/resources/workspace/resources/groups/resources/members/client/requests/AddMemberToGroupRequest.d.ts +12 -0
- package/dist/serialization/resources/workspace/resources/groups/resources/members/client/requests/AddMemberToGroupRequest.js +43 -0
- package/dist/serialization/resources/workspace/resources/groups/resources/members/client/requests/BodyDeleteMemberFromUserGroupV1WorkspaceGroupsGroupIdMembersRemovePost.d.ts +12 -0
- package/dist/serialization/resources/workspace/resources/groups/resources/members/client/requests/BodyDeleteMemberFromUserGroupV1WorkspaceGroupsGroupIdMembersRemovePost.js +43 -0
- package/dist/serialization/resources/workspace/resources/groups/resources/members/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/workspace/resources/groups/resources/members/client/requests/index.js +7 -0
- package/dist/serialization/resources/workspace/resources/groups/resources/members/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/groups/resources/members/index.js +17 -0
- package/dist/serialization/resources/workspace/resources/index.d.ts +10 -0
- package/dist/serialization/resources/workspace/resources/index.js +49 -0
- package/dist/serialization/resources/workspace/resources/invites/client/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/invites/client/index.js +17 -0
- package/dist/serialization/resources/workspace/resources/invites/client/requests/BodyDeleteExistingInvitationV1WorkspaceInvitesDelete.d.ts +12 -0
- package/dist/serialization/resources/workspace/resources/invites/client/requests/BodyDeleteExistingInvitationV1WorkspaceInvitesDelete.js +43 -0
- package/dist/serialization/resources/workspace/resources/invites/client/requests/BodyInviteMultipleUsersV1WorkspaceInvitesAddBulkPost.d.ts +13 -0
- package/dist/serialization/resources/workspace/resources/invites/client/requests/BodyInviteMultipleUsersV1WorkspaceInvitesAddBulkPost.js +44 -0
- package/dist/serialization/resources/workspace/resources/invites/client/requests/InviteUserRequest.d.ts +15 -0
- package/dist/serialization/resources/workspace/resources/invites/client/requests/InviteUserRequest.js +46 -0
- package/dist/serialization/resources/workspace/resources/invites/client/requests/index.d.ts +3 -0
- package/dist/serialization/resources/workspace/resources/invites/client/requests/index.js +9 -0
- package/dist/serialization/resources/workspace/resources/invites/index.d.ts +2 -0
- package/dist/serialization/resources/workspace/resources/invites/index.js +18 -0
- package/dist/serialization/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.d.ts +10 -0
- package/dist/serialization/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.js +58 -0
- package/dist/serialization/resources/workspace/resources/invites/types/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/invites/types/index.js +17 -0
- package/dist/serialization/resources/workspace/resources/members/client/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/members/client/index.js +17 -0
- package/dist/serialization/resources/workspace/resources/members/client/requests/BodyDeleteMemberV1WorkspaceMembersDelete.d.ts +12 -0
- package/dist/serialization/resources/workspace/resources/members/client/requests/BodyDeleteMemberV1WorkspaceMembersDelete.js +43 -0
- package/dist/serialization/resources/workspace/resources/members/client/requests/UpdateMemberRequest.d.ts +15 -0
- package/dist/serialization/resources/workspace/resources/members/client/requests/UpdateMemberRequest.js +46 -0
- package/dist/serialization/resources/workspace/resources/members/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/workspace/resources/members/client/requests/index.js +7 -0
- package/dist/serialization/resources/workspace/resources/members/index.d.ts +2 -0
- package/dist/serialization/resources/workspace/resources/members/index.js +18 -0
- package/dist/serialization/resources/workspace/resources/members/types/BodyUpdateMemberV1WorkspaceMembersPostWorkspaceRole.d.ts +10 -0
- package/dist/serialization/resources/workspace/resources/members/types/BodyUpdateMemberV1WorkspaceMembersPostWorkspaceRole.js +41 -0
- package/dist/serialization/resources/workspace/resources/members/types/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/members/types/index.js +17 -0
- package/dist/serialization/resources/workspace/resources/resources/client/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/resources/client/index.js +17 -0
- package/dist/serialization/resources/workspace/resources/resources/client/requests/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePost.d.ts +18 -0
- package/dist/serialization/resources/workspace/resources/resources/client/requests/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePost.js +49 -0
- package/dist/serialization/resources/workspace/resources/resources/client/requests/BodyUnshareWorkspaceResourceV1WorkspaceResourcesResourceIdUnsharePost.d.ts +16 -0
- package/dist/serialization/resources/workspace/resources/resources/client/requests/BodyUnshareWorkspaceResourceV1WorkspaceResourcesResourceIdUnsharePost.js +47 -0
- package/dist/serialization/resources/workspace/resources/resources/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/workspace/resources/resources/client/requests/index.js +7 -0
- package/dist/serialization/resources/workspace/resources/resources/index.d.ts +2 -0
- package/dist/serialization/resources/workspace/resources/resources/index.js +18 -0
- package/dist/serialization/resources/workspace/resources/resources/types/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePostRole.d.ts +10 -0
- package/dist/serialization/resources/workspace/resources/resources/types/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePostRole.js +41 -0
- package/dist/serialization/resources/workspace/resources/resources/types/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/resources/types/index.js +17 -0
- package/dist/serialization/types/AddChapterResponseModel.d.ts +13 -0
- package/dist/serialization/types/AddChapterResponseModel.js +44 -0
- package/dist/serialization/types/AddKnowledgeBaseResponseModel.d.ts +14 -0
- package/dist/serialization/types/AddKnowledgeBaseResponseModel.js +45 -0
- package/dist/serialization/types/AddProjectRequest.d.ts +41 -0
- package/dist/serialization/types/AddProjectRequest.js +72 -0
- package/dist/serialization/types/AddProjectResponseModel.d.ts +13 -0
- package/dist/serialization/types/AddProjectResponseModel.js +44 -0
- package/dist/serialization/types/AddPronunciationDictionaryResponseModel.d.ts +20 -0
- package/dist/serialization/types/AddPronunciationDictionaryResponseModel.js +51 -0
- package/dist/serialization/types/AddPronunciationDictionaryResponseModelPermissionOnResource.d.ts +10 -0
- package/dist/serialization/types/AddPronunciationDictionaryResponseModelPermissionOnResource.js +41 -0
- package/dist/serialization/types/AddSharingVoiceRequest.d.ts +10 -0
- package/dist/serialization/types/AddSharingVoiceRequest.js +41 -0
- package/dist/serialization/types/AddVoiceIvcResponseModel.d.ts +13 -0
- package/dist/serialization/types/AddVoiceIvcResponseModel.js +44 -0
- package/dist/serialization/types/AddVoiceResponseModel.d.ts +12 -0
- package/dist/serialization/types/AddVoiceResponseModel.js +43 -0
- package/dist/serialization/types/AddWorkspaceGroupMemberResponseModel.d.ts +12 -0
- package/dist/serialization/types/AddWorkspaceGroupMemberResponseModel.js +43 -0
- package/dist/serialization/types/AddWorkspaceInviteResponseModel.d.ts +12 -0
- package/dist/serialization/types/AddWorkspaceInviteResponseModel.js +43 -0
- package/dist/serialization/types/AdditionalFormatResponseModel.d.ts +16 -0
- package/dist/serialization/types/AdditionalFormatResponseModel.js +47 -0
- package/dist/serialization/types/AdditionalFormats.d.ts +11 -0
- package/dist/serialization/types/AdditionalFormats.js +42 -0
- package/dist/serialization/types/Age.d.ts +10 -0
- package/dist/serialization/types/Age.js +41 -0
- package/dist/serialization/types/AgentBan.d.ts +15 -0
- package/dist/serialization/types/AgentBan.js +46 -0
- package/dist/serialization/types/AgentCallLimits.d.ts +13 -0
- package/dist/serialization/types/AgentCallLimits.js +44 -0
- package/dist/serialization/types/AgentConfig.d.ts +17 -0
- package/dist/serialization/types/AgentConfig.js +48 -0
- package/dist/serialization/types/AgentConfigOverride.d.ts +15 -0
- package/dist/serialization/types/AgentConfigOverride.js +46 -0
- package/dist/serialization/types/AgentConfigOverrideConfig.d.ts +15 -0
- package/dist/serialization/types/AgentConfigOverrideConfig.js +46 -0
- package/dist/serialization/types/AgentMetadataResponseModel.d.ts +12 -0
- package/dist/serialization/types/AgentMetadataResponseModel.js +43 -0
- package/dist/serialization/types/AgentPlatformSettingsRequestModel.d.ts +27 -0
- package/dist/serialization/types/AgentPlatformSettingsRequestModel.js +58 -0
- package/dist/serialization/types/AgentPlatformSettingsResponseModel.d.ts +29 -0
- package/dist/serialization/types/AgentPlatformSettingsResponseModel.js +60 -0
- package/dist/serialization/types/AgentSimulatedChatTestResponseModel.d.ts +15 -0
- package/dist/serialization/types/AgentSimulatedChatTestResponseModel.js +46 -0
- package/dist/serialization/types/AgentSummaryResponseModel.d.ts +17 -0
- package/dist/serialization/types/AgentSummaryResponseModel.js +48 -0
- package/dist/serialization/types/AgentTransfer.d.ts +13 -0
- package/dist/serialization/types/AgentTransfer.js +44 -0
- package/dist/serialization/types/AgentWorkspaceOverridesInput.d.ts +15 -0
- package/dist/serialization/types/AgentWorkspaceOverridesInput.js +46 -0
- package/dist/serialization/types/AgentWorkspaceOverridesOutput.d.ts +15 -0
- package/dist/serialization/types/AgentWorkspaceOverridesOutput.js +46 -0
- package/dist/serialization/types/Alignment.d.ts +14 -0
- package/dist/serialization/types/Alignment.js +45 -0
- package/dist/serialization/types/AllowlistItem.d.ts +12 -0
- package/dist/serialization/types/AllowlistItem.js +43 -0
- package/dist/serialization/types/ArrayJsonSchemaPropertyInput.d.ts +14 -0
- package/dist/serialization/types/ArrayJsonSchemaPropertyInput.js +46 -0
- package/dist/serialization/types/ArrayJsonSchemaPropertyInputItems.d.ts +11 -0
- package/dist/serialization/types/ArrayJsonSchemaPropertyInputItems.js +47 -0
- package/dist/serialization/types/ArrayJsonSchemaPropertyOutput.d.ts +14 -0
- package/dist/serialization/types/ArrayJsonSchemaPropertyOutput.js +46 -0
- package/dist/serialization/types/ArrayJsonSchemaPropertyOutputItems.d.ts +11 -0
- package/dist/serialization/types/ArrayJsonSchemaPropertyOutputItems.js +47 -0
- package/dist/serialization/types/AsrConversationalConfig.d.ts +18 -0
- package/dist/serialization/types/AsrConversationalConfig.js +49 -0
- package/dist/serialization/types/AsrInputFormat.d.ts +10 -0
- package/dist/serialization/types/AsrInputFormat.js +49 -0
- package/dist/serialization/types/AsrProvider.d.ts +10 -0
- package/dist/serialization/types/AsrProvider.js +41 -0
- package/dist/serialization/types/AsrQuality.d.ts +10 -0
- package/dist/serialization/types/AsrQuality.js +41 -0
- package/dist/serialization/types/AudioNativeCreateProjectResponseModel.d.ts +14 -0
- package/dist/serialization/types/AudioNativeCreateProjectResponseModel.js +45 -0
- package/dist/serialization/types/AudioNativeEditContentResponseModel.d.ts +15 -0
- package/dist/serialization/types/AudioNativeEditContentResponseModel.js +46 -0
- package/dist/serialization/types/AudioNativeProjectSettingsResponseModel.d.ts +22 -0
- package/dist/serialization/types/AudioNativeProjectSettingsResponseModel.js +53 -0
- package/dist/serialization/types/AudioNativeProjectSettingsResponseModelStatus.d.ts +10 -0
- package/dist/serialization/types/AudioNativeProjectSettingsResponseModelStatus.js +41 -0
- package/dist/serialization/types/AudioOutput.d.ts +16 -0
- package/dist/serialization/types/AudioOutput.js +47 -0
- package/dist/serialization/types/AudioOutputMulti.d.ts +17 -0
- package/dist/serialization/types/AudioOutputMulti.js +48 -0
- package/dist/serialization/types/AudioWithTimestampsResponse.d.ts +15 -0
- package/dist/serialization/types/AudioWithTimestampsResponse.js +46 -0
- package/dist/serialization/types/AuthSettings.d.ts +15 -0
- package/dist/serialization/types/AuthSettings.js +46 -0
- package/dist/serialization/types/AuthorizationMethod.d.ts +10 -0
- package/dist/serialization/types/AuthorizationMethod.js +49 -0
- package/dist/serialization/types/BanReasonType.d.ts +10 -0
- package/dist/serialization/types/BanReasonType.js +41 -0
- package/dist/serialization/types/BatchCallDetailedResponse.d.ts +27 -0
- package/dist/serialization/types/BatchCallDetailedResponse.js +58 -0
- package/dist/serialization/types/BatchCallRecipientStatus.d.ts +10 -0
- package/dist/serialization/types/BatchCallRecipientStatus.js +41 -0
- package/dist/serialization/types/BatchCallResponse.d.ts +25 -0
- package/dist/serialization/types/BatchCallResponse.js +56 -0
- package/dist/serialization/types/BatchCallStatus.d.ts +10 -0
- package/dist/serialization/types/BatchCallStatus.js +41 -0
- package/dist/serialization/types/BodyAddChapterToAProjectV1ProjectsProjectIdChaptersAddPost.d.ts +13 -0
- package/dist/serialization/types/BodyAddChapterToAProjectV1ProjectsProjectIdChaptersAddPost.js +44 -0
- package/dist/serialization/types/BodyAddProjectV1ProjectsAddPostApplyTextNormalization.d.ts +10 -0
- package/dist/serialization/types/BodyAddProjectV1ProjectsAddPostApplyTextNormalization.js +41 -0
- package/dist/serialization/types/BodyAddProjectV1ProjectsAddPostFiction.d.ts +10 -0
- package/dist/serialization/types/BodyAddProjectV1ProjectsAddPostFiction.js +41 -0
- package/dist/serialization/types/BodyAddProjectV1ProjectsAddPostSourceType.d.ts +10 -0
- package/dist/serialization/types/BodyAddProjectV1ProjectsAddPostSourceType.js +41 -0
- package/dist/serialization/types/BodyAddProjectV1ProjectsAddPostTargetAudience.d.ts +10 -0
- package/dist/serialization/types/BodyAddProjectV1ProjectsAddPostTargetAudience.js +41 -0
- package/dist/serialization/types/BodyAddToKnowledgeBaseV1ConvaiAddToKnowledgeBasePost.d.ts +14 -0
- package/dist/serialization/types/BodyAddToKnowledgeBaseV1ConvaiAddToKnowledgeBasePost.js +45 -0
- package/dist/serialization/types/BodyAddToKnowledgeBaseV1ConvaiAgentsAgentIdAddToKnowledgeBasePost.d.ts +14 -0
- package/dist/serialization/types/BodyAddToKnowledgeBaseV1ConvaiAgentsAgentIdAddToKnowledgeBasePost.js +45 -0
- package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +23 -0
- package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.js +54 -0
- package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostDurationScale.d.ts +10 -0
- package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostDurationScale.js +41 -0
- package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostMode.d.ts +18 -0
- package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostMode.js +51 -0
- package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostQualityPreset.d.ts +10 -0
- package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostQualityPreset.js +41 -0
- package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSource.d.ts +13 -0
- package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSource.js +48 -0
- package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSourceItem.d.ts +18 -0
- package/dist/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSourceItem.js +51 -0
- package/dist/serialization/types/BodyEditBasicProjectInfoV1ProjectsProjectIdPost.d.ts +18 -0
- package/dist/serialization/types/BodyEditBasicProjectInfoV1ProjectsProjectIdPost.js +49 -0
- package/dist/serialization/types/BodyEditChapterV1ProjectsProjectIdChaptersChapterIdPatch.d.ts +14 -0
- package/dist/serialization/types/BodyEditChapterV1ProjectsProjectIdChaptersChapterIdPatch.js +45 -0
- package/dist/serialization/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.d.ts +14 -0
- package/dist/serialization/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.js +45 -0
- package/dist/serialization/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostAge.d.ts +10 -0
- package/dist/serialization/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostAge.js +41 -0
- package/dist/serialization/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostGender.d.ts +10 -0
- package/dist/serialization/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostGender.js +41 -0
- package/dist/serialization/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.d.ts +12 -0
- package/dist/serialization/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.js +43 -0
- package/dist/serialization/types/BodyStreamChapterAudioV1ProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.d.ts +12 -0
- package/dist/serialization/types/BodyStreamChapterAudioV1ProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.js +43 -0
- package/dist/serialization/types/BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.d.ts +12 -0
- package/dist/serialization/types/BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.js +43 -0
- package/dist/serialization/types/BreakdownTypes.d.ts +10 -0
- package/dist/serialization/types/BreakdownTypes.js +53 -0
- package/dist/serialization/types/ChapterContentBlockExtendableNodeResponseModel.d.ts +11 -0
- package/dist/serialization/types/ChapterContentBlockExtendableNodeResponseModel.js +41 -0
- package/dist/serialization/types/ChapterContentBlockInputModel.d.ts +16 -0
- package/dist/serialization/types/ChapterContentBlockInputModel.js +47 -0
- package/dist/serialization/types/ChapterContentBlockInputModelSubType.d.ts +10 -0
- package/dist/serialization/types/ChapterContentBlockInputModelSubType.js +41 -0
- package/dist/serialization/types/ChapterContentBlockResponseModel.d.ts +14 -0
- package/dist/serialization/types/ChapterContentBlockResponseModel.js +45 -0
- package/dist/serialization/types/ChapterContentBlockResponseModelNodesItem.d.ts +18 -0
- package/dist/serialization/types/ChapterContentBlockResponseModelNodesItem.js +51 -0
- package/dist/serialization/types/ChapterContentBlockTtsNodeResponseModel.d.ts +13 -0
- package/dist/serialization/types/ChapterContentBlockTtsNodeResponseModel.js +44 -0
- package/dist/serialization/types/ChapterContentInputModel.d.ts +13 -0
- package/dist/serialization/types/ChapterContentInputModel.js +44 -0
- package/dist/serialization/types/ChapterContentParagraphTtsNodeInputModel.d.ts +14 -0
- package/dist/serialization/types/ChapterContentParagraphTtsNodeInputModel.js +45 -0
- package/dist/serialization/types/ChapterContentResponseModel.d.ts +13 -0
- package/dist/serialization/types/ChapterContentResponseModel.js +44 -0
- package/dist/serialization/types/ChapterResponse.d.ts +21 -0
- package/dist/serialization/types/ChapterResponse.js +52 -0
- package/dist/serialization/types/ChapterSnapshotExtendedResponseModel.d.ts +18 -0
- package/dist/serialization/types/ChapterSnapshotExtendedResponseModel.js +49 -0
- package/dist/serialization/types/ChapterSnapshotResponse.d.ts +16 -0
- package/dist/serialization/types/ChapterSnapshotResponse.js +47 -0
- package/dist/serialization/types/ChapterSnapshotsResponse.d.ts +13 -0
- package/dist/serialization/types/ChapterSnapshotsResponse.js +44 -0
- package/dist/serialization/types/ChapterState.d.ts +10 -0
- package/dist/serialization/types/ChapterState.js +41 -0
- package/dist/serialization/types/ChapterStatisticsResponse.d.ts +15 -0
- package/dist/serialization/types/ChapterStatisticsResponse.js +46 -0
- package/dist/serialization/types/ChapterWithContentResponseModel.d.ts +23 -0
- package/dist/serialization/types/ChapterWithContentResponseModel.js +54 -0
- package/dist/serialization/types/ChapterWithContentResponseModelState.d.ts +10 -0
- package/dist/serialization/types/ChapterWithContentResponseModelState.js +41 -0
- package/dist/serialization/types/CharacterAlignmentModel.d.ts +14 -0
- package/dist/serialization/types/CharacterAlignmentModel.js +45 -0
- package/dist/serialization/types/CharacterAlignmentResponseModel.d.ts +14 -0
- package/dist/serialization/types/CharacterAlignmentResponseModel.js +45 -0
- package/dist/serialization/types/CharacterUsageResponse.d.ts +10 -0
- package/dist/serialization/types/CharacterUsageResponse.js +41 -0
- package/dist/serialization/types/ClientEvent.d.ts +10 -0
- package/dist/serialization/types/ClientEvent.js +54 -0
- package/dist/serialization/types/ClientToolConfigInput.d.ts +19 -0
- package/dist/serialization/types/ClientToolConfigInput.js +51 -0
- package/dist/serialization/types/ClientToolConfigOutput.d.ts +19 -0
- package/dist/serialization/types/ClientToolConfigOutput.js +51 -0
- package/dist/serialization/types/CloseConnection.d.ts +12 -0
- package/dist/serialization/types/CloseConnection.js +43 -0
- package/dist/serialization/types/CloseContext.d.ts +13 -0
- package/dist/serialization/types/CloseContext.js +44 -0
- package/dist/serialization/types/CloseSocket.d.ts +12 -0
- package/dist/serialization/types/CloseSocket.js +43 -0
- package/dist/serialization/types/ConvAiDynamicVariable.d.ts +12 -0
- package/dist/serialization/types/ConvAiDynamicVariable.js +43 -0
- package/dist/serialization/types/ConvAiSecretLocator.d.ts +12 -0
- package/dist/serialization/types/ConvAiSecretLocator.js +43 -0
- package/dist/serialization/types/ConvAiStoredSecretDependencies.d.ts +19 -0
- package/dist/serialization/types/ConvAiStoredSecretDependencies.js +50 -0
- package/dist/serialization/types/ConvAiStoredSecretDependenciesAgentToolsItem.d.ts +18 -0
- package/dist/serialization/types/ConvAiStoredSecretDependenciesAgentToolsItem.js +51 -0
- package/dist/serialization/types/ConvAiStoredSecretDependenciesToolsItem.d.ts +18 -0
- package/dist/serialization/types/ConvAiStoredSecretDependenciesToolsItem.js +51 -0
- package/dist/serialization/types/ConvAiWebhooks.d.ts +12 -0
- package/dist/serialization/types/ConvAiWebhooks.js +43 -0
- package/dist/serialization/types/ConvAiWorkspaceStoredSecretConfig.d.ts +16 -0
- package/dist/serialization/types/ConvAiWorkspaceStoredSecretConfig.js +47 -0
- package/dist/serialization/types/ConversationChargingCommonModel.d.ts +16 -0
- package/dist/serialization/types/ConversationChargingCommonModel.js +47 -0
- package/dist/serialization/types/ConversationConfig.d.ts +15 -0
- package/dist/serialization/types/ConversationConfig.js +46 -0
- package/dist/serialization/types/ConversationConfigClientOverrideConfigInput.d.ts +17 -0
- package/dist/serialization/types/ConversationConfigClientOverrideConfigInput.js +48 -0
- package/dist/serialization/types/ConversationConfigClientOverrideConfigOutput.d.ts +17 -0
- package/dist/serialization/types/ConversationConfigClientOverrideConfigOutput.js +48 -0
- package/dist/serialization/types/ConversationConfigClientOverrideInput.d.ts +17 -0
- package/dist/serialization/types/ConversationConfigClientOverrideInput.js +48 -0
- package/dist/serialization/types/ConversationConfigClientOverrideOutput.d.ts +17 -0
- package/dist/serialization/types/ConversationConfigClientOverrideOutput.js +48 -0
- package/dist/serialization/types/ConversationConfigOverride.d.ts +12 -0
- package/dist/serialization/types/ConversationConfigOverride.js +43 -0
- package/dist/serialization/types/ConversationConfigOverrideConfig.d.ts +12 -0
- package/dist/serialization/types/ConversationConfigOverrideConfig.js +43 -0
- package/dist/serialization/types/ConversationDeletionSettings.d.ts +17 -0
- package/dist/serialization/types/ConversationDeletionSettings.js +48 -0
- package/dist/serialization/types/ConversationHistoryAnalysisCommonModel.d.ts +18 -0
- package/dist/serialization/types/ConversationHistoryAnalysisCommonModel.js +51 -0
- package/dist/serialization/types/ConversationHistoryBatchCallModel.d.ts +13 -0
- package/dist/serialization/types/ConversationHistoryBatchCallModel.js +44 -0
- package/dist/serialization/types/ConversationHistoryErrorCommonModel.d.ts +13 -0
- package/dist/serialization/types/ConversationHistoryErrorCommonModel.js +44 -0
- package/dist/serialization/types/ConversationHistoryEvaluationCriteriaResultCommonModel.d.ts +15 -0
- package/dist/serialization/types/ConversationHistoryEvaluationCriteriaResultCommonModel.js +46 -0
- package/dist/serialization/types/ConversationHistoryFeedbackCommonModel.d.ts +15 -0
- package/dist/serialization/types/ConversationHistoryFeedbackCommonModel.js +46 -0
- package/dist/serialization/types/ConversationHistoryMetadataCommonModel.d.ts +33 -0
- package/dist/serialization/types/ConversationHistoryMetadataCommonModel.js +64 -0
- package/dist/serialization/types/ConversationHistoryMetadataCommonModelPhoneCall.d.ts +18 -0
- package/dist/serialization/types/ConversationHistoryMetadataCommonModelPhoneCall.js +51 -0
- package/dist/serialization/types/ConversationHistoryRagUsageCommonModel.d.ts +13 -0
- package/dist/serialization/types/ConversationHistoryRagUsageCommonModel.js +44 -0
- package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +17 -0
- package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.js +48 -0
- package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +10 -0
- package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +41 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +32 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +63 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputRole.d.ts +10 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputRole.js +41 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputSourceMedium.d.ts +10 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputSourceMedium.js +41 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +32 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +63 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputRole.d.ts +10 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputRole.js +41 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputSourceMedium.d.ts +10 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputSourceMedium.js +41 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallClientDetails.d.ts +12 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallClientDetails.js +43 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModel.d.ts +18 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModel.js +49 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +18 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.js +51 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +17 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallWebhookDetails.js +48 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolResultCommonModel.d.ts +18 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolResultCommonModel.js +49 -0
- package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModel.d.ts +18 -0
- package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModel.js +49 -0
- package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +10 -0
- package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.js +41 -0
- package/dist/serialization/types/ConversationInitiationClientDataConfigInput.d.ts +15 -0
- package/dist/serialization/types/ConversationInitiationClientDataConfigInput.js +46 -0
- package/dist/serialization/types/ConversationInitiationClientDataConfigOutput.d.ts +15 -0
- package/dist/serialization/types/ConversationInitiationClientDataConfigOutput.js +46 -0
- package/dist/serialization/types/ConversationInitiationClientDataInternal.d.ts +16 -0
- package/dist/serialization/types/ConversationInitiationClientDataInternal.js +49 -0
- package/dist/serialization/types/ConversationInitiationClientDataInternalDynamicVariablesValue.d.ts +10 -0
- package/dist/serialization/types/ConversationInitiationClientDataInternalDynamicVariablesValue.js +46 -0
- package/dist/serialization/types/ConversationInitiationClientDataRequestInput.d.ts +16 -0
- package/dist/serialization/types/ConversationInitiationClientDataRequestInput.js +49 -0
- package/dist/serialization/types/ConversationInitiationClientDataRequestInputDynamicVariablesValue.d.ts +10 -0
- package/dist/serialization/types/ConversationInitiationClientDataRequestInputDynamicVariablesValue.js +46 -0
- package/dist/serialization/types/ConversationInitiationClientDataRequestOutput.d.ts +16 -0
- package/dist/serialization/types/ConversationInitiationClientDataRequestOutput.js +49 -0
- package/dist/serialization/types/ConversationInitiationClientDataRequestOutputDynamicVariablesValue.d.ts +10 -0
- package/dist/serialization/types/ConversationInitiationClientDataRequestOutputDynamicVariablesValue.js +46 -0
- package/dist/serialization/types/ConversationInitiationClientDataWebhook.d.ts +14 -0
- package/dist/serialization/types/ConversationInitiationClientDataWebhook.js +45 -0
- package/dist/serialization/types/ConversationInitiationClientDataWebhookRequestHeadersValue.d.ts +11 -0
- package/dist/serialization/types/ConversationInitiationClientDataWebhookRequestHeadersValue.js +42 -0
- package/dist/serialization/types/ConversationSignedUrlResponseModel.d.ts +12 -0
- package/dist/serialization/types/ConversationSignedUrlResponseModel.js +43 -0
- package/dist/serialization/types/ConversationSimulationSpecification.d.ts +17 -0
- package/dist/serialization/types/ConversationSimulationSpecification.js +48 -0
- package/dist/serialization/types/ConversationSummaryResponseModel.d.ts +21 -0
- package/dist/serialization/types/ConversationSummaryResponseModel.js +52 -0
- package/dist/serialization/types/ConversationSummaryResponseModelStatus.d.ts +10 -0
- package/dist/serialization/types/ConversationSummaryResponseModelStatus.js +41 -0
- package/dist/serialization/types/ConversationTokenDbModel.d.ts +17 -0
- package/dist/serialization/types/ConversationTokenDbModel.js +48 -0
- package/dist/serialization/types/ConversationTokenPurpose.d.ts +10 -0
- package/dist/serialization/types/ConversationTokenPurpose.js +41 -0
- package/dist/serialization/types/ConversationTurnMetrics.d.ts +13 -0
- package/dist/serialization/types/ConversationTurnMetrics.js +44 -0
- package/dist/serialization/types/ConversationalConfig.d.ts +23 -0
- package/dist/serialization/types/ConversationalConfig.js +54 -0
- package/dist/serialization/types/ConvertChapterResponseModel.d.ts +12 -0
- package/dist/serialization/types/ConvertChapterResponseModel.js +43 -0
- package/dist/serialization/types/ConvertProjectResponseModel.d.ts +12 -0
- package/dist/serialization/types/ConvertProjectResponseModel.js +43 -0
- package/dist/serialization/types/CreateAgentResponseModel.d.ts +12 -0
- package/dist/serialization/types/CreateAgentResponseModel.js +43 -0
- package/dist/serialization/types/CreateAudioNativeProjectRequest.d.ts +10 -0
- package/dist/serialization/types/CreateAudioNativeProjectRequest.js +41 -0
- package/dist/serialization/types/CreatePhoneNumberResponseModel.d.ts +12 -0
- package/dist/serialization/types/CreatePhoneNumberResponseModel.js +43 -0
- package/dist/serialization/types/CreatePreviouslyGeneratedVoiceRequest.d.ts +16 -0
- package/dist/serialization/types/CreatePreviouslyGeneratedVoiceRequest.js +47 -0
- package/dist/serialization/types/CreatePronunciationDictionaryResponseModel.d.ts +12 -0
- package/dist/serialization/types/CreatePronunciationDictionaryResponseModel.js +43 -0
- package/dist/serialization/types/CreateSipTrunkPhoneNumberRequest.d.ts +22 -0
- package/dist/serialization/types/CreateSipTrunkPhoneNumberRequest.js +53 -0
- package/dist/serialization/types/CreateTranscriptRequest.d.ts +10 -0
- package/dist/serialization/types/CreateTranscriptRequest.js +41 -0
- package/dist/serialization/types/CreateTwilioPhoneNumberRequest.d.ts +15 -0
- package/dist/serialization/types/CreateTwilioPhoneNumberRequest.js +46 -0
- package/dist/serialization/types/CustomLlm.d.ts +15 -0
- package/dist/serialization/types/CustomLlm.js +46 -0
- package/dist/serialization/types/DashboardCallSuccessChartModel.d.ts +12 -0
- package/dist/serialization/types/DashboardCallSuccessChartModel.js +43 -0
- package/dist/serialization/types/DashboardCriteriaChartModel.d.ts +13 -0
- package/dist/serialization/types/DashboardCriteriaChartModel.js +44 -0
- package/dist/serialization/types/DashboardDataCollectionChartModel.d.ts +13 -0
- package/dist/serialization/types/DashboardDataCollectionChartModel.js +44 -0
- package/dist/serialization/types/DataCollectionResultCommonModel.d.ts +16 -0
- package/dist/serialization/types/DataCollectionResultCommonModel.js +47 -0
- package/dist/serialization/types/DeleteChapterRequest.d.ts +10 -0
- package/dist/serialization/types/DeleteChapterRequest.js +41 -0
- package/dist/serialization/types/DeleteChapterResponseModel.d.ts +12 -0
- package/dist/serialization/types/DeleteChapterResponseModel.js +43 -0
- package/dist/serialization/types/DeleteDubbingResponseModel.d.ts +12 -0
- package/dist/serialization/types/DeleteDubbingResponseModel.js +43 -0
- package/dist/serialization/types/DeleteHistoryItemResponse.d.ts +12 -0
- package/dist/serialization/types/DeleteHistoryItemResponse.js +43 -0
- package/dist/serialization/types/DeleteProjectRequest.d.ts +10 -0
- package/dist/serialization/types/DeleteProjectRequest.js +41 -0
- package/dist/serialization/types/DeleteProjectResponseModel.d.ts +12 -0
- package/dist/serialization/types/DeleteProjectResponseModel.js +43 -0
- package/dist/serialization/types/DeleteSampleResponse.d.ts +12 -0
- package/dist/serialization/types/DeleteSampleResponse.js +43 -0
- package/dist/serialization/types/DeleteVoiceResponseModel.d.ts +12 -0
- package/dist/serialization/types/DeleteVoiceResponseModel.js +43 -0
- package/dist/serialization/types/DeleteVoiceSampleResponseModel.d.ts +12 -0
- package/dist/serialization/types/DeleteVoiceSampleResponseModel.js +43 -0
- package/dist/serialization/types/DeleteWorkspaceGroupMemberResponseModel.d.ts +12 -0
- package/dist/serialization/types/DeleteWorkspaceGroupMemberResponseModel.js +43 -0
- package/dist/serialization/types/DeleteWorkspaceInviteResponseModel.d.ts +12 -0
- package/dist/serialization/types/DeleteWorkspaceInviteResponseModel.js +43 -0
- package/dist/serialization/types/DeleteWorkspaceMemberResponseModel.d.ts +12 -0
- package/dist/serialization/types/DeleteWorkspaceMemberResponseModel.js +43 -0
- package/dist/serialization/types/DependentAvailableAgentIdentifier.d.ts +16 -0
- package/dist/serialization/types/DependentAvailableAgentIdentifier.js +47 -0
- package/dist/serialization/types/DependentAvailableAgentIdentifierAccessLevel.d.ts +10 -0
- package/dist/serialization/types/DependentAvailableAgentIdentifierAccessLevel.js +41 -0
- package/dist/serialization/types/DependentAvailableAgentToolIdentifier.d.ts +17 -0
- package/dist/serialization/types/DependentAvailableAgentToolIdentifier.js +48 -0
- package/dist/serialization/types/DependentAvailableAgentToolIdentifierAccessLevel.d.ts +10 -0
- package/dist/serialization/types/DependentAvailableAgentToolIdentifierAccessLevel.js +41 -0
- package/dist/serialization/types/DependentAvailableToolIdentifier.d.ts +16 -0
- package/dist/serialization/types/DependentAvailableToolIdentifier.js +47 -0
- package/dist/serialization/types/DependentAvailableToolIdentifierAccessLevel.d.ts +10 -0
- package/dist/serialization/types/DependentAvailableToolIdentifierAccessLevel.js +41 -0
- package/dist/serialization/types/DependentPhoneNumberIdentifier.d.ts +16 -0
- package/dist/serialization/types/DependentPhoneNumberIdentifier.js +47 -0
- package/dist/serialization/types/DependentUnknownAgentIdentifier.d.ts +11 -0
- package/dist/serialization/types/DependentUnknownAgentIdentifier.js +41 -0
- package/dist/serialization/types/DependentUnknownAgentToolIdentifier.d.ts +11 -0
- package/dist/serialization/types/DependentUnknownAgentToolIdentifier.js +41 -0
- package/dist/serialization/types/DependentUnknownToolIdentifier.d.ts +11 -0
- package/dist/serialization/types/DependentUnknownToolIdentifier.js +41 -0
- package/dist/serialization/types/DoDubbingResponse.d.ts +13 -0
- package/dist/serialization/types/DoDubbingResponse.js +44 -0
- package/dist/serialization/types/DocumentUsageModeEnum.d.ts +10 -0
- package/dist/serialization/types/DocumentUsageModeEnum.js +41 -0
- package/dist/serialization/types/DocxExportOptions.d.ts +16 -0
- package/dist/serialization/types/DocxExportOptions.js +47 -0
- package/dist/serialization/types/DubbedSegment.d.ts +17 -0
- package/dist/serialization/types/DubbedSegment.js +48 -0
- package/dist/serialization/types/DubbingMediaMetadata.d.ts +13 -0
- package/dist/serialization/types/DubbingMediaMetadata.js +44 -0
- package/dist/serialization/types/DubbingMediaReference.d.ts +18 -0
- package/dist/serialization/types/DubbingMediaReference.js +49 -0
- package/dist/serialization/types/DubbingMetadataResponse.d.ts +18 -0
- package/dist/serialization/types/DubbingMetadataResponse.js +49 -0
- package/dist/serialization/types/DubbingRenderResponseModel.d.ts +13 -0
- package/dist/serialization/types/DubbingRenderResponseModel.js +44 -0
- package/dist/serialization/types/DubbingResource.d.ts +25 -0
- package/dist/serialization/types/DubbingResource.js +56 -0
- package/dist/serialization/types/DynamicVariablesConfig.d.ts +13 -0
- package/dist/serialization/types/DynamicVariablesConfig.js +46 -0
- package/dist/serialization/types/DynamicVariablesConfigDynamicVariablePlaceholdersValue.d.ts +10 -0
- package/dist/serialization/types/DynamicVariablesConfigDynamicVariablePlaceholdersValue.js +46 -0
- package/dist/serialization/types/EditChapterResponseModel.d.ts +13 -0
- package/dist/serialization/types/EditChapterResponseModel.js +44 -0
- package/dist/serialization/types/EditProjectResponseModel.d.ts +13 -0
- package/dist/serialization/types/EditProjectResponseModel.js +44 -0
- package/dist/serialization/types/EditVoiceResponseModel.d.ts +12 -0
- package/dist/serialization/types/EditVoiceResponseModel.js +43 -0
- package/dist/serialization/types/EditVoiceSettingsRequest.d.ts +10 -0
- package/dist/serialization/types/EditVoiceSettingsRequest.js +41 -0
- package/dist/serialization/types/EditVoiceSettingsResponseModel.d.ts +12 -0
- package/dist/serialization/types/EditVoiceSettingsResponseModel.js +43 -0
- package/dist/serialization/types/EmbedVariant.d.ts +10 -0
- package/dist/serialization/types/EmbedVariant.js +41 -0
- package/dist/serialization/types/EmbeddingModelEnum.d.ts +10 -0
- package/dist/serialization/types/EmbeddingModelEnum.js +41 -0
- package/dist/serialization/types/EndCallToolConfig.d.ts +11 -0
- package/dist/serialization/types/EndCallToolConfig.js +41 -0
- package/dist/serialization/types/EvaluationSettings.d.ts +13 -0
- package/dist/serialization/types/EvaluationSettings.js +44 -0
- package/dist/serialization/types/EvaluationSuccessResult.d.ts +10 -0
- package/dist/serialization/types/EvaluationSuccessResult.js +41 -0
- package/dist/serialization/types/ExportOptions.d.ts +34 -0
- package/dist/serialization/types/ExportOptions.js +59 -0
- package/dist/serialization/types/ExtendedSubscriptionResponseModelBillingPeriod.d.ts +10 -0
- package/dist/serialization/types/ExtendedSubscriptionResponseModelBillingPeriod.js +41 -0
- package/dist/serialization/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.d.ts +10 -0
- package/dist/serialization/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.js +41 -0
- package/dist/serialization/types/ExtendedSubscriptionResponseModelCurrency.d.ts +10 -0
- package/dist/serialization/types/ExtendedSubscriptionResponseModelCurrency.js +41 -0
- package/dist/serialization/types/ExtendedSubscriptionResponseModelStatus.d.ts +10 -0
- package/dist/serialization/types/ExtendedSubscriptionResponseModelStatus.js +50 -0
- package/dist/serialization/types/FeedbackItem.d.ts +19 -0
- package/dist/serialization/types/FeedbackItem.js +50 -0
- package/dist/serialization/types/FinalOutput.d.ts +12 -0
- package/dist/serialization/types/FinalOutput.js +43 -0
- package/dist/serialization/types/FinalOutputMulti.d.ts +13 -0
- package/dist/serialization/types/FinalOutputMulti.js +44 -0
- package/dist/serialization/types/FineTuningResponse.d.ts +29 -0
- package/dist/serialization/types/FineTuningResponse.js +60 -0
- package/dist/serialization/types/FineTuningResponseModelStateValue.d.ts +10 -0
- package/dist/serialization/types/FineTuningResponseModelStateValue.js +41 -0
- package/dist/serialization/types/FlushContext.d.ts +14 -0
- package/dist/serialization/types/FlushContext.js +45 -0
- package/dist/serialization/types/ForcedAlignmentCharacterResponseModel.d.ts +14 -0
- package/dist/serialization/types/ForcedAlignmentCharacterResponseModel.js +45 -0
- package/dist/serialization/types/ForcedAlignmentResponseModel.d.ts +15 -0
- package/dist/serialization/types/ForcedAlignmentResponseModel.js +46 -0
- package/dist/serialization/types/ForcedAlignmentWordResponseModel.d.ts +14 -0
- package/dist/serialization/types/ForcedAlignmentWordResponseModel.js +45 -0
- package/dist/serialization/types/Gender.d.ts +10 -0
- package/dist/serialization/types/Gender.js +41 -0
- package/dist/serialization/types/GenerateVoiceRequest.d.ts +18 -0
- package/dist/serialization/types/GenerateVoiceRequest.js +49 -0
- package/dist/serialization/types/GenerationConfig.d.ts +12 -0
- package/dist/serialization/types/GenerationConfig.js +43 -0
- package/dist/serialization/types/GetAgentEmbedResponseModel.d.ts +14 -0
- package/dist/serialization/types/GetAgentEmbedResponseModel.js +45 -0
- package/dist/serialization/types/GetAgentKnowledgebaseSizeResponseModel.d.ts +12 -0
- package/dist/serialization/types/GetAgentKnowledgebaseSizeResponseModel.js +43 -0
- package/dist/serialization/types/GetAgentLinkResponseModel.d.ts +14 -0
- package/dist/serialization/types/GetAgentLinkResponseModel.js +45 -0
- package/dist/serialization/types/GetAgentResponseModel.d.ts +24 -0
- package/dist/serialization/types/GetAgentResponseModel.js +55 -0
- package/dist/serialization/types/GetAgentResponseModelPhoneNumbersItem.d.ts +18 -0
- package/dist/serialization/types/GetAgentResponseModelPhoneNumbersItem.js +51 -0
- package/dist/serialization/types/GetAgentsPageResponseModel.d.ts +15 -0
- package/dist/serialization/types/GetAgentsPageResponseModel.js +46 -0
- package/dist/serialization/types/GetAudioNativeProjectSettingsResponseModel.d.ts +15 -0
- package/dist/serialization/types/GetAudioNativeProjectSettingsResponseModel.js +46 -0
- package/dist/serialization/types/GetChapterRequest.d.ts +10 -0
- package/dist/serialization/types/GetChapterRequest.js +41 -0
- package/dist/serialization/types/GetChapterSnapshotsRequest.d.ts +10 -0
- package/dist/serialization/types/GetChapterSnapshotsRequest.js +41 -0
- package/dist/serialization/types/GetChaptersRequest.d.ts +10 -0
- package/dist/serialization/types/GetChaptersRequest.js +41 -0
- package/dist/serialization/types/GetChaptersResponse.d.ts +13 -0
- package/dist/serialization/types/GetChaptersResponse.js +44 -0
- package/dist/serialization/types/GetConvAiDashboardSettingsResponseModel.d.ts +13 -0
- package/dist/serialization/types/GetConvAiDashboardSettingsResponseModel.js +44 -0
- package/dist/serialization/types/GetConvAiDashboardSettingsResponseModelChartsItem.d.ts +22 -0
- package/dist/serialization/types/GetConvAiDashboardSettingsResponseModelChartsItem.js +53 -0
- package/dist/serialization/types/GetConvAiSettingsResponseModel.d.ts +17 -0
- package/dist/serialization/types/GetConvAiSettingsResponseModel.js +48 -0
- package/dist/serialization/types/GetConversationResponseModel.d.ts +26 -0
- package/dist/serialization/types/GetConversationResponseModel.js +57 -0
- package/dist/serialization/types/GetConversationResponseModelStatus.d.ts +10 -0
- package/dist/serialization/types/GetConversationResponseModelStatus.js +41 -0
- package/dist/serialization/types/GetConversationsPageResponseModel.d.ts +15 -0
- package/dist/serialization/types/GetConversationsPageResponseModel.js +46 -0
- package/dist/serialization/types/GetKnowledgeBaseDependentAgentsResponseModel.d.ts +15 -0
- package/dist/serialization/types/GetKnowledgeBaseDependentAgentsResponseModel.js +46 -0
- package/dist/serialization/types/GetKnowledgeBaseDependentAgentsResponseModelAgentsItem.d.ts +18 -0
- package/dist/serialization/types/GetKnowledgeBaseDependentAgentsResponseModelAgentsItem.js +51 -0
- package/dist/serialization/types/GetKnowledgeBaseFileResponseModel.d.ts +19 -0
- package/dist/serialization/types/GetKnowledgeBaseFileResponseModel.js +50 -0
- package/dist/serialization/types/GetKnowledgeBaseListResponseModel.d.ts +15 -0
- package/dist/serialization/types/GetKnowledgeBaseListResponseModel.js +46 -0
- package/dist/serialization/types/GetKnowledgeBaseListResponseModelDocumentsItem.d.ts +22 -0
- package/dist/serialization/types/GetKnowledgeBaseListResponseModelDocumentsItem.js +53 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +20 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.js +51 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryFileResponseModelDependentAgentsItem.d.ts +18 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryFileResponseModelDependentAgentsItem.js +51 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +20 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.js +51 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryTextResponseModelDependentAgentsItem.d.ts +18 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryTextResponseModelDependentAgentsItem.js +51 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +21 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.js +52 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModelDependentAgentsItem.d.ts +18 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModelDependentAgentsItem.js +51 -0
- package/dist/serialization/types/GetKnowledgeBaseTextResponseModel.d.ts +19 -0
- package/dist/serialization/types/GetKnowledgeBaseTextResponseModel.js +50 -0
- package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +20 -0
- package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.js +51 -0
- package/dist/serialization/types/GetLibraryVoicesResponse.d.ts +15 -0
- package/dist/serialization/types/GetLibraryVoicesResponse.js +46 -0
- package/dist/serialization/types/GetPhoneNumberResponse.d.ts +10 -0
- package/dist/serialization/types/GetPhoneNumberResponse.js +41 -0
- package/dist/serialization/types/GetPhoneNumberSipTrunkResponseModel.d.ts +18 -0
- package/dist/serialization/types/GetPhoneNumberSipTrunkResponseModel.js +49 -0
- package/dist/serialization/types/GetPhoneNumberTwilioResponseModel.d.ts +16 -0
- package/dist/serialization/types/GetPhoneNumberTwilioResponseModel.js +47 -0
- package/dist/serialization/types/GetProjectRequest.d.ts +10 -0
- package/dist/serialization/types/GetProjectRequest.js +41 -0
- package/dist/serialization/types/GetProjectsRequest.d.ts +10 -0
- package/dist/serialization/types/GetProjectsRequest.js +41 -0
- package/dist/serialization/types/GetProjectsResponse.d.ts +13 -0
- package/dist/serialization/types/GetProjectsResponse.js +44 -0
- package/dist/serialization/types/GetPronunciationDictionariesMetadataResponseModel.d.ts +15 -0
- package/dist/serialization/types/GetPronunciationDictionariesMetadataResponseModel.js +46 -0
- package/dist/serialization/types/GetPronunciationDictionariesResponse.d.ts +10 -0
- package/dist/serialization/types/GetPronunciationDictionariesResponse.js +41 -0
- package/dist/serialization/types/GetPronunciationDictionaryMetadataResponse.d.ts +21 -0
- package/dist/serialization/types/GetPronunciationDictionaryMetadataResponse.js +52 -0
- package/dist/serialization/types/GetPronunciationDictionaryMetadataResponseModelPermissionOnResource.d.ts +10 -0
- package/dist/serialization/types/GetPronunciationDictionaryMetadataResponseModelPermissionOnResource.js +41 -0
- package/dist/serialization/types/GetPronunciationDictionaryResponse.d.ts +10 -0
- package/dist/serialization/types/GetPronunciationDictionaryResponse.js +41 -0
- package/dist/serialization/types/GetSpeechHistoryResponse.d.ts +15 -0
- package/dist/serialization/types/GetSpeechHistoryResponse.js +46 -0
- package/dist/serialization/types/GetVoicesResponse.d.ts +13 -0
- package/dist/serialization/types/GetVoicesResponse.js +44 -0
- package/dist/serialization/types/GetVoicesV2Response.d.ts +16 -0
- package/dist/serialization/types/GetVoicesV2Response.js +47 -0
- package/dist/serialization/types/GetWorkspaceSecretsResponseModel.d.ts +13 -0
- package/dist/serialization/types/GetWorkspaceSecretsResponseModel.js +44 -0
- package/dist/serialization/types/HistoryAlignmentResponseModel.d.ts +14 -0
- package/dist/serialization/types/HistoryAlignmentResponseModel.js +45 -0
- package/dist/serialization/types/HistoryAlignmentsResponseModel.d.ts +14 -0
- package/dist/serialization/types/HistoryAlignmentsResponseModel.js +45 -0
- package/dist/serialization/types/HistoryItemResponse.d.ts +13 -0
- package/dist/serialization/types/HistoryItemResponse.js +44 -0
- package/dist/serialization/types/HtmlExportOptions.d.ts +16 -0
- package/dist/serialization/types/HtmlExportOptions.js +47 -0
- package/dist/serialization/types/HttpValidationError.d.ts +13 -0
- package/dist/serialization/types/HttpValidationError.js +44 -0
- package/dist/serialization/types/ImageAvatar.d.ts +12 -0
- package/dist/serialization/types/ImageAvatar.js +43 -0
- package/dist/serialization/types/InitialiseContext.d.ts +21 -0
- package/dist/serialization/types/InitialiseContext.js +52 -0
- package/dist/serialization/types/InitializeConnection.d.ts +20 -0
- package/dist/serialization/types/InitializeConnection.js +51 -0
- package/dist/serialization/types/InitializeConnectionMulti.d.ts +21 -0
- package/dist/serialization/types/InitializeConnectionMulti.js +52 -0
- package/dist/serialization/types/InvoiceResponse.d.ts +14 -0
- package/dist/serialization/types/InvoiceResponse.js +45 -0
- package/dist/serialization/types/KeepContextAlive.d.ts +13 -0
- package/dist/serialization/types/KeepContextAlive.js +44 -0
- package/dist/serialization/types/KnowledgeBaseDocumentChunkResponseModel.d.ts +14 -0
- package/dist/serialization/types/KnowledgeBaseDocumentChunkResponseModel.js +45 -0
- package/dist/serialization/types/KnowledgeBaseDocumentMetadataResponseModel.d.ts +14 -0
- package/dist/serialization/types/KnowledgeBaseDocumentMetadataResponseModel.js +45 -0
- package/dist/serialization/types/KnowledgeBaseDocumentType.d.ts +10 -0
- package/dist/serialization/types/KnowledgeBaseDocumentType.js +41 -0
- package/dist/serialization/types/KnowledgeBaseLocator.d.ts +17 -0
- package/dist/serialization/types/KnowledgeBaseLocator.js +48 -0
- package/dist/serialization/types/LanguageAddedResponse.d.ts +12 -0
- package/dist/serialization/types/LanguageAddedResponse.js +43 -0
- package/dist/serialization/types/LanguageDetectionToolConfig.d.ts +11 -0
- package/dist/serialization/types/LanguageDetectionToolConfig.js +41 -0
- package/dist/serialization/types/LanguagePresetInput.d.ts +15 -0
- package/dist/serialization/types/LanguagePresetInput.js +46 -0
- package/dist/serialization/types/LanguagePresetOutput.d.ts +15 -0
- package/dist/serialization/types/LanguagePresetOutput.js +46 -0
- package/dist/serialization/types/LanguagePresetTranslation.d.ts +13 -0
- package/dist/serialization/types/LanguagePresetTranslation.js +44 -0
- package/dist/serialization/types/LanguageResponse.d.ts +13 -0
- package/dist/serialization/types/LanguageResponse.js +44 -0
- package/dist/serialization/types/LibraryVoiceResponse.d.ts +44 -0
- package/dist/serialization/types/LibraryVoiceResponse.js +75 -0
- package/dist/serialization/types/LibraryVoiceResponseModelCategory.d.ts +10 -0
- package/dist/serialization/types/LibraryVoiceResponseModelCategory.js +41 -0
- package/dist/serialization/types/LiteralJsonSchemaProperty.d.ts +17 -0
- package/dist/serialization/types/LiteralJsonSchemaProperty.js +48 -0
- package/dist/serialization/types/LiteralJsonSchemaPropertyConstantValue.d.ts +10 -0
- package/dist/serialization/types/LiteralJsonSchemaPropertyConstantValue.js +46 -0
- package/dist/serialization/types/LiteralJsonSchemaPropertyType.d.ts +10 -0
- package/dist/serialization/types/LiteralJsonSchemaPropertyType.js +41 -0
- package/dist/serialization/types/Llm.d.ts +10 -0
- package/dist/serialization/types/Llm.js +62 -0
- package/dist/serialization/types/LlmCategoryUsage.d.ts +14 -0
- package/dist/serialization/types/LlmCategoryUsage.js +45 -0
- package/dist/serialization/types/LlmInputOutputTokensUsage.d.ts +16 -0
- package/dist/serialization/types/LlmInputOutputTokensUsage.js +47 -0
- package/dist/serialization/types/LlmTokensCategoryUsage.d.ts +13 -0
- package/dist/serialization/types/LlmTokensCategoryUsage.js +44 -0
- package/dist/serialization/types/LlmUsageCalculatorLlmResponseModel.d.ts +14 -0
- package/dist/serialization/types/LlmUsageCalculatorLlmResponseModel.js +45 -0
- package/dist/serialization/types/LlmUsageCalculatorResponseModel.d.ts +13 -0
- package/dist/serialization/types/LlmUsageCalculatorResponseModel.js +44 -0
- package/dist/serialization/types/LlmUsageInput.d.ts +13 -0
- package/dist/serialization/types/LlmUsageInput.js +44 -0
- package/dist/serialization/types/LlmUsageOutput.d.ts +13 -0
- package/dist/serialization/types/LlmUsageOutput.js +44 -0
- package/dist/serialization/types/ManualVerificationFileResponse.d.ts +16 -0
- package/dist/serialization/types/ManualVerificationFileResponse.js +47 -0
- package/dist/serialization/types/ManualVerificationResponse.d.ts +15 -0
- package/dist/serialization/types/ManualVerificationResponse.js +46 -0
- package/dist/serialization/types/McpToolConfigInput.d.ts +18 -0
- package/dist/serialization/types/McpToolConfigInput.js +50 -0
- package/dist/serialization/types/McpToolConfigOutput.d.ts +18 -0
- package/dist/serialization/types/McpToolConfigOutput.js +50 -0
- package/dist/serialization/types/MetricRecord.d.ts +12 -0
- package/dist/serialization/types/MetricRecord.js +43 -0
- package/dist/serialization/types/MetricType.d.ts +10 -0
- package/dist/serialization/types/MetricType.js +41 -0
- package/dist/serialization/types/Model.d.ts +31 -0
- package/dist/serialization/types/Model.js +62 -0
- package/dist/serialization/types/ModelRatesResponseModel.d.ts +12 -0
- package/dist/serialization/types/ModelRatesResponseModel.js +43 -0
- package/dist/serialization/types/ModelResponseModelConcurrencyGroup.d.ts +10 -0
- package/dist/serialization/types/ModelResponseModelConcurrencyGroup.js +41 -0
- package/dist/serialization/types/ModerationStatusResponseModel.d.ts +22 -0
- package/dist/serialization/types/ModerationStatusResponseModel.js +53 -0
- package/dist/serialization/types/ModerationStatusResponseModelSafetyStatus.d.ts +10 -0
- package/dist/serialization/types/ModerationStatusResponseModelSafetyStatus.js +41 -0
- package/dist/serialization/types/ModerationStatusResponseModelWarningStatus.d.ts +10 -0
- package/dist/serialization/types/ModerationStatusResponseModelWarningStatus.js +41 -0
- package/dist/serialization/types/NativeMcpToolConfigInput.d.ts +18 -0
- package/dist/serialization/types/NativeMcpToolConfigInput.js +50 -0
- package/dist/serialization/types/NativeMcpToolConfigOutput.d.ts +18 -0
- package/dist/serialization/types/NativeMcpToolConfigOutput.js +50 -0
- package/dist/serialization/types/NormalizedAlignment.d.ts +14 -0
- package/dist/serialization/types/NormalizedAlignment.js +45 -0
- package/dist/serialization/types/ObjectJsonSchemaPropertyInput.d.ts +15 -0
- package/dist/serialization/types/ObjectJsonSchemaPropertyInput.js +49 -0
- package/dist/serialization/types/ObjectJsonSchemaPropertyInputPropertiesValue.d.ts +11 -0
- package/dist/serialization/types/ObjectJsonSchemaPropertyInputPropertiesValue.js +47 -0
- package/dist/serialization/types/ObjectJsonSchemaPropertyOutput.d.ts +15 -0
- package/dist/serialization/types/ObjectJsonSchemaPropertyOutput.js +49 -0
- package/dist/serialization/types/ObjectJsonSchemaPropertyOutputPropertiesValue.d.ts +11 -0
- package/dist/serialization/types/ObjectJsonSchemaPropertyOutputPropertiesValue.js +47 -0
- package/dist/serialization/types/OrbAvatar.d.ts +13 -0
- package/dist/serialization/types/OrbAvatar.js +44 -0
- package/dist/serialization/types/OutboundCallRecipient.d.ts +15 -0
- package/dist/serialization/types/OutboundCallRecipient.js +46 -0
- package/dist/serialization/types/OutboundCallRecipientResponseModel.d.ts +20 -0
- package/dist/serialization/types/OutboundCallRecipientResponseModel.js +51 -0
- package/dist/serialization/types/OutputFormat.d.ts +10 -0
- package/dist/serialization/types/OutputFormat.js +53 -0
- package/dist/serialization/types/PdfExportOptions.d.ts +16 -0
- package/dist/serialization/types/PdfExportOptions.js +47 -0
- package/dist/serialization/types/PhoneNumberAgentInfo.d.ts +13 -0
- package/dist/serialization/types/PhoneNumberAgentInfo.js +44 -0
- package/dist/serialization/types/PhoneNumberTransfer.d.ts +13 -0
- package/dist/serialization/types/PhoneNumberTransfer.js +44 -0
- package/dist/serialization/types/PodcastBulletinMode.d.ts +13 -0
- package/dist/serialization/types/PodcastBulletinMode.js +44 -0
- package/dist/serialization/types/PodcastBulletinModeData.d.ts +12 -0
- package/dist/serialization/types/PodcastBulletinModeData.js +43 -0
- package/dist/serialization/types/PodcastConversationMode.d.ts +13 -0
- package/dist/serialization/types/PodcastConversationMode.js +44 -0
- package/dist/serialization/types/PodcastConversationModeData.d.ts +13 -0
- package/dist/serialization/types/PodcastConversationModeData.js +44 -0
- package/dist/serialization/types/PodcastProjectResponseModel.d.ts +13 -0
- package/dist/serialization/types/PodcastProjectResponseModel.js +44 -0
- package/dist/serialization/types/PodcastTextSource.d.ts +12 -0
- package/dist/serialization/types/PodcastTextSource.js +43 -0
- package/dist/serialization/types/PodcastUrlSource.d.ts +12 -0
- package/dist/serialization/types/PodcastUrlSource.js +43 -0
- package/dist/serialization/types/PostAgentAvatarResponseModel.d.ts +13 -0
- package/dist/serialization/types/PostAgentAvatarResponseModel.js +44 -0
- package/dist/serialization/types/PostWorkspaceSecretResponseModel.d.ts +14 -0
- package/dist/serialization/types/PostWorkspaceSecretResponseModel.js +45 -0
- package/dist/serialization/types/PrivacyConfig.d.ts +17 -0
- package/dist/serialization/types/PrivacyConfig.js +48 -0
- package/dist/serialization/types/ProjectCreationMetaResponseModel.d.ts +16 -0
- package/dist/serialization/types/ProjectCreationMetaResponseModel.js +47 -0
- package/dist/serialization/types/ProjectCreationMetaResponseModelStatus.d.ts +10 -0
- package/dist/serialization/types/ProjectCreationMetaResponseModelStatus.js +41 -0
- package/dist/serialization/types/ProjectCreationMetaResponseModelType.d.ts +10 -0
- package/dist/serialization/types/ProjectCreationMetaResponseModelType.js +41 -0
- package/dist/serialization/types/ProjectExtendedResponse.d.ts +56 -0
- package/dist/serialization/types/ProjectExtendedResponse.js +87 -0
- package/dist/serialization/types/ProjectExtendedResponseModelAccessLevel.d.ts +10 -0
- package/dist/serialization/types/ProjectExtendedResponseModelAccessLevel.js +41 -0
- package/dist/serialization/types/ProjectExtendedResponseModelApplyTextNormalization.d.ts +10 -0
- package/dist/serialization/types/ProjectExtendedResponseModelApplyTextNormalization.js +41 -0
- package/dist/serialization/types/ProjectExtendedResponseModelFiction.d.ts +10 -0
- package/dist/serialization/types/ProjectExtendedResponseModelFiction.js +41 -0
- package/dist/serialization/types/ProjectExtendedResponseModelQualityPreset.d.ts +10 -0
- package/dist/serialization/types/ProjectExtendedResponseModelQualityPreset.js +41 -0
- package/dist/serialization/types/ProjectExtendedResponseModelSourceType.d.ts +10 -0
- package/dist/serialization/types/ProjectExtendedResponseModelSourceType.js +41 -0
- package/dist/serialization/types/ProjectExtendedResponseModelTargetAudience.d.ts +10 -0
- package/dist/serialization/types/ProjectExtendedResponseModelTargetAudience.js +41 -0
- package/dist/serialization/types/ProjectResponse.d.ts +45 -0
- package/dist/serialization/types/ProjectResponse.js +76 -0
- package/dist/serialization/types/ProjectResponseModelAccessLevel.d.ts +10 -0
- package/dist/serialization/types/ProjectResponseModelAccessLevel.js +41 -0
- package/dist/serialization/types/ProjectResponseModelFiction.d.ts +10 -0
- package/dist/serialization/types/ProjectResponseModelFiction.js +41 -0
- package/dist/serialization/types/ProjectResponseModelSourceType.d.ts +10 -0
- package/dist/serialization/types/ProjectResponseModelSourceType.js +41 -0
- package/dist/serialization/types/ProjectResponseModelTargetAudience.d.ts +10 -0
- package/dist/serialization/types/ProjectResponseModelTargetAudience.js +41 -0
- package/dist/serialization/types/ProjectSnapshotExtendedResponseModel.d.ts +19 -0
- package/dist/serialization/types/ProjectSnapshotExtendedResponseModel.js +50 -0
- package/dist/serialization/types/ProjectSnapshotResponse.d.ts +17 -0
- package/dist/serialization/types/ProjectSnapshotResponse.js +48 -0
- package/dist/serialization/types/ProjectSnapshotsResponse.d.ts +13 -0
- package/dist/serialization/types/ProjectSnapshotsResponse.js +44 -0
- package/dist/serialization/types/ProjectState.d.ts +10 -0
- package/dist/serialization/types/ProjectState.js +41 -0
- package/dist/serialization/types/PromptAgent.d.ts +28 -0
- package/dist/serialization/types/PromptAgent.js +59 -0
- package/dist/serialization/types/PromptAgentDbModel.d.ts +29 -0
- package/dist/serialization/types/PromptAgentDbModel.js +60 -0
- package/dist/serialization/types/PromptAgentDbModelToolsItem.d.ts +30 -0
- package/dist/serialization/types/PromptAgentDbModelToolsItem.js +57 -0
- package/dist/serialization/types/PromptAgentInputToolsItem.d.ts +30 -0
- package/dist/serialization/types/PromptAgentInputToolsItem.js +57 -0
- package/dist/serialization/types/PromptAgentOutputToolsItem.d.ts +30 -0
- package/dist/serialization/types/PromptAgentOutputToolsItem.js +57 -0
- package/dist/serialization/types/PromptAgentOverride.d.ts +12 -0
- package/dist/serialization/types/PromptAgentOverride.js +43 -0
- package/dist/serialization/types/PromptAgentOverrideConfig.d.ts +12 -0
- package/dist/serialization/types/PromptAgentOverrideConfig.js +43 -0
- package/dist/serialization/types/PromptEvaluationCriteria.d.ts +16 -0
- package/dist/serialization/types/PromptEvaluationCriteria.js +47 -0
- package/dist/serialization/types/PronunciationDictionaryAliasRuleRequestModel.d.ts +13 -0
- package/dist/serialization/types/PronunciationDictionaryAliasRuleRequestModel.js +44 -0
- package/dist/serialization/types/PronunciationDictionaryLocator.d.ts +13 -0
- package/dist/serialization/types/PronunciationDictionaryLocator.js +44 -0
- package/dist/serialization/types/PronunciationDictionaryLocatorResponseModel.d.ts +13 -0
- package/dist/serialization/types/PronunciationDictionaryLocatorResponseModel.js +44 -0
- package/dist/serialization/types/PronunciationDictionaryPhonemeRuleRequestModel.d.ts +14 -0
- package/dist/serialization/types/PronunciationDictionaryPhonemeRuleRequestModel.js +45 -0
- package/dist/serialization/types/PronunciationDictionaryRulesResponseModel.d.ts +14 -0
- package/dist/serialization/types/PronunciationDictionaryRulesResponseModel.js +45 -0
- package/dist/serialization/types/PronunciationDictionaryVersionLocator.d.ts +13 -0
- package/dist/serialization/types/PronunciationDictionaryVersionLocator.js +44 -0
- package/dist/serialization/types/PronunciationDictionaryVersionResponseModel.d.ts +21 -0
- package/dist/serialization/types/PronunciationDictionaryVersionResponseModel.js +52 -0
- package/dist/serialization/types/PronunciationDictionaryVersionResponseModelPermissionOnResource.d.ts +10 -0
- package/dist/serialization/types/PronunciationDictionaryVersionResponseModelPermissionOnResource.js +41 -0
- package/dist/serialization/types/PydanticPronunciationDictionaryVersionLocator.d.ts +13 -0
- package/dist/serialization/types/PydanticPronunciationDictionaryVersionLocator.js +44 -0
- package/dist/serialization/types/QueryParamsJsonSchema.d.ts +14 -0
- package/dist/serialization/types/QueryParamsJsonSchema.js +45 -0
- package/dist/serialization/types/RagChunkMetadata.d.ts +14 -0
- package/dist/serialization/types/RagChunkMetadata.js +45 -0
- package/dist/serialization/types/RagConfig.d.ts +16 -0
- package/dist/serialization/types/RagConfig.js +47 -0
- package/dist/serialization/types/RagIndexResponseModel.d.ts +14 -0
- package/dist/serialization/types/RagIndexResponseModel.js +45 -0
- package/dist/serialization/types/RagIndexStatus.d.ts +10 -0
- package/dist/serialization/types/RagIndexStatus.js +41 -0
- package/dist/serialization/types/RagRetrievalInfo.d.ts +17 -0
- package/dist/serialization/types/RagRetrievalInfo.js +48 -0
- package/dist/serialization/types/ReaderResourceResponseModel.d.ts +14 -0
- package/dist/serialization/types/ReaderResourceResponseModel.js +45 -0
- package/dist/serialization/types/ReaderResourceResponseModelResourceType.d.ts +10 -0
- package/dist/serialization/types/ReaderResourceResponseModelResourceType.js +41 -0
- package/dist/serialization/types/RealtimeVoiceSettings.d.ts +16 -0
- package/dist/serialization/types/RealtimeVoiceSettings.js +47 -0
- package/dist/serialization/types/RecordingResponse.d.ts +16 -0
- package/dist/serialization/types/RecordingResponse.js +47 -0
- package/dist/serialization/types/RemoveMemberFromGroupRequest.d.ts +10 -0
- package/dist/serialization/types/RemoveMemberFromGroupRequest.js +41 -0
- package/dist/serialization/types/Render.d.ts +20 -0
- package/dist/serialization/types/Render.js +51 -0
- package/dist/serialization/types/RenderStatus.d.ts +10 -0
- package/dist/serialization/types/RenderStatus.js +41 -0
- package/dist/serialization/types/RenderType.d.ts +10 -0
- package/dist/serialization/types/RenderType.js +41 -0
- package/dist/serialization/types/RequestPvcManualVerificationResponseModel.d.ts +12 -0
- package/dist/serialization/types/RequestPvcManualVerificationResponseModel.js +43 -0
- package/dist/serialization/types/ResourceAccessInfo.d.ts +16 -0
- package/dist/serialization/types/ResourceAccessInfo.js +47 -0
- package/dist/serialization/types/ResourceAccessInfoRole.d.ts +10 -0
- package/dist/serialization/types/ResourceAccessInfoRole.js +41 -0
- package/dist/serialization/types/ResourceMetadataResponseModel.d.ts +18 -0
- package/dist/serialization/types/ResourceMetadataResponseModel.js +49 -0
- package/dist/serialization/types/ReviewStatus.d.ts +10 -0
- package/dist/serialization/types/ReviewStatus.js +41 -0
- package/dist/serialization/types/SafetyCommonModel.d.ts +14 -0
- package/dist/serialization/types/SafetyCommonModel.js +45 -0
- package/dist/serialization/types/SafetyEvaluation.d.ts +16 -0
- package/dist/serialization/types/SafetyEvaluation.js +47 -0
- package/dist/serialization/types/SafetyResponseModel.d.ts +14 -0
- package/dist/serialization/types/SafetyResponseModel.js +45 -0
- package/dist/serialization/types/SafetyRule.d.ts +10 -0
- package/dist/serialization/types/SafetyRule.js +51 -0
- package/dist/serialization/types/SecretDependencyType.d.ts +10 -0
- package/dist/serialization/types/SecretDependencyType.js +41 -0
- package/dist/serialization/types/SegmentCreateResponse.d.ts +13 -0
- package/dist/serialization/types/SegmentCreateResponse.js +44 -0
- package/dist/serialization/types/SegmentDeleteResponse.d.ts +12 -0
- package/dist/serialization/types/SegmentDeleteResponse.js +43 -0
- package/dist/serialization/types/SegmentDubResponse.d.ts +12 -0
- package/dist/serialization/types/SegmentDubResponse.js +43 -0
- package/dist/serialization/types/SegmentTranscriptionResponse.d.ts +12 -0
- package/dist/serialization/types/SegmentTranscriptionResponse.js +43 -0
- package/dist/serialization/types/SegmentTranslationResponse.d.ts +12 -0
- package/dist/serialization/types/SegmentTranslationResponse.js +43 -0
- package/dist/serialization/types/SegmentUpdateResponse.d.ts +12 -0
- package/dist/serialization/types/SegmentUpdateResponse.js +43 -0
- package/dist/serialization/types/SegmentedJsonExportOptions.d.ts +16 -0
- package/dist/serialization/types/SegmentedJsonExportOptions.js +47 -0
- package/dist/serialization/types/SendText.d.ts +18 -0
- package/dist/serialization/types/SendText.js +49 -0
- package/dist/serialization/types/SendTextMulti.d.ts +14 -0
- package/dist/serialization/types/SendTextMulti.js +45 -0
- package/dist/serialization/types/ShareOptionResponseModel.d.ts +15 -0
- package/dist/serialization/types/ShareOptionResponseModel.js +46 -0
- package/dist/serialization/types/ShareOptionResponseModelType.d.ts +10 -0
- package/dist/serialization/types/ShareOptionResponseModelType.js +41 -0
- package/dist/serialization/types/SimilarVoice.d.ts +17 -0
- package/dist/serialization/types/SimilarVoice.js +48 -0
- package/dist/serialization/types/SimilarVoiceCategory.d.ts +10 -0
- package/dist/serialization/types/SimilarVoiceCategory.js +41 -0
- package/dist/serialization/types/SimilarVoicesForSpeakerResponse.d.ts +13 -0
- package/dist/serialization/types/SimilarVoicesForSpeakerResponse.js +44 -0
- package/dist/serialization/types/SipMediaEncryptionEnum.d.ts +10 -0
- package/dist/serialization/types/SipMediaEncryptionEnum.js +41 -0
- package/dist/serialization/types/SipTrunkConfigResponseModel.d.ts +20 -0
- package/dist/serialization/types/SipTrunkConfigResponseModel.js +51 -0
- package/dist/serialization/types/SipTrunkCredentials.d.ts +13 -0
- package/dist/serialization/types/SipTrunkCredentials.js +44 -0
- package/dist/serialization/types/SipTrunkOutboundCallResponse.d.ts +15 -0
- package/dist/serialization/types/SipTrunkOutboundCallResponse.js +46 -0
- package/dist/serialization/types/SipTrunkTransportEnum.d.ts +10 -0
- package/dist/serialization/types/SipTrunkTransportEnum.js +41 -0
- package/dist/serialization/types/SpeakerAudioResponseModel.d.ts +14 -0
- package/dist/serialization/types/SpeakerAudioResponseModel.js +45 -0
- package/dist/serialization/types/SpeakerResponseModel.d.ts +15 -0
- package/dist/serialization/types/SpeakerResponseModel.js +46 -0
- package/dist/serialization/types/SpeakerSegment.d.ts +17 -0
- package/dist/serialization/types/SpeakerSegment.js +48 -0
- package/dist/serialization/types/SpeakerSeparationResponseModel.d.ts +18 -0
- package/dist/serialization/types/SpeakerSeparationResponseModel.js +49 -0
- package/dist/serialization/types/SpeakerSeparationResponseModelStatus.d.ts +10 -0
- package/dist/serialization/types/SpeakerSeparationResponseModelStatus.js +41 -0
- package/dist/serialization/types/SpeakerTrack.d.ts +17 -0
- package/dist/serialization/types/SpeakerTrack.js +48 -0
- package/dist/serialization/types/SpeakerUpdatedResponse.d.ts +12 -0
- package/dist/serialization/types/SpeakerUpdatedResponse.js +43 -0
- package/dist/serialization/types/SpeechHistoryItemResponse.d.ts +32 -0
- package/dist/serialization/types/SpeechHistoryItemResponse.js +63 -0
- package/dist/serialization/types/SpeechHistoryItemResponseModelSource.d.ts +10 -0
- package/dist/serialization/types/SpeechHistoryItemResponseModelSource.js +41 -0
- package/dist/serialization/types/SpeechHistoryItemResponseModelVoiceCategory.d.ts +10 -0
- package/dist/serialization/types/SpeechHistoryItemResponseModelVoiceCategory.js +41 -0
- package/dist/serialization/types/SpeechToTextCharacterResponseModel.d.ts +14 -0
- package/dist/serialization/types/SpeechToTextCharacterResponseModel.js +45 -0
- package/dist/serialization/types/SpeechToTextChunkResponseModel.d.ts +18 -0
- package/dist/serialization/types/SpeechToTextChunkResponseModel.js +49 -0
- package/dist/serialization/types/SpeechToTextWordResponseModel.d.ts +20 -0
- package/dist/serialization/types/SpeechToTextWordResponseModel.js +51 -0
- package/dist/serialization/types/SpeechToTextWordResponseModelType.d.ts +10 -0
- package/dist/serialization/types/SpeechToTextWordResponseModelType.js +41 -0
- package/dist/serialization/types/SrtExportOptions.d.ts +17 -0
- package/dist/serialization/types/SrtExportOptions.js +48 -0
- package/dist/serialization/types/StartPvcVoiceTrainingResponseModel.d.ts +12 -0
- package/dist/serialization/types/StartPvcVoiceTrainingResponseModel.js +43 -0
- package/dist/serialization/types/StartSpeakerSeparationResponseModel.d.ts +12 -0
- package/dist/serialization/types/StartSpeakerSeparationResponseModel.js +43 -0
- package/dist/serialization/types/StreamingAudioChunkWithTimestampsResponse.d.ts +15 -0
- package/dist/serialization/types/StreamingAudioChunkWithTimestampsResponse.js +46 -0
- package/dist/serialization/types/Subscription.d.ts +38 -0
- package/dist/serialization/types/Subscription.js +69 -0
- package/dist/serialization/types/SubscriptionExtrasResponseModel.d.ts +24 -0
- package/dist/serialization/types/SubscriptionExtrasResponseModel.js +55 -0
- package/dist/serialization/types/SubscriptionResponse.d.ts +35 -0
- package/dist/serialization/types/SubscriptionResponse.js +66 -0
- package/dist/serialization/types/SubscriptionResponseModelBillingPeriod.d.ts +10 -0
- package/dist/serialization/types/SubscriptionResponseModelBillingPeriod.js +41 -0
- package/dist/serialization/types/SubscriptionResponseModelCharacterRefreshPeriod.d.ts +10 -0
- package/dist/serialization/types/SubscriptionResponseModelCharacterRefreshPeriod.js +41 -0
- package/dist/serialization/types/SubscriptionResponseModelCurrency.d.ts +10 -0
- package/dist/serialization/types/SubscriptionResponseModelCurrency.js +41 -0
- package/dist/serialization/types/SubscriptionStatus.d.ts +10 -0
- package/dist/serialization/types/SubscriptionStatus.js +50 -0
- package/dist/serialization/types/SubscriptionUsageResponseModel.d.ts +19 -0
- package/dist/serialization/types/SubscriptionUsageResponseModel.js +50 -0
- package/dist/serialization/types/SystemToolConfigInput.d.ts +17 -0
- package/dist/serialization/types/SystemToolConfigInput.js +48 -0
- package/dist/serialization/types/SystemToolConfigInputParams.d.ts +26 -0
- package/dist/serialization/types/SystemToolConfigInputParams.js +55 -0
- package/dist/serialization/types/SystemToolConfigOutput.d.ts +17 -0
- package/dist/serialization/types/SystemToolConfigOutput.js +48 -0
- package/dist/serialization/types/SystemToolConfigOutputParams.d.ts +26 -0
- package/dist/serialization/types/SystemToolConfigOutputParams.js +55 -0
- package/dist/serialization/types/TelephonyProvider.d.ts +10 -0
- package/dist/serialization/types/TelephonyProvider.js +41 -0
- package/dist/serialization/types/TextToSpeechApplyTextNormalizationEnum.d.ts +10 -0
- package/dist/serialization/types/TextToSpeechApplyTextNormalizationEnum.js +41 -0
- package/dist/serialization/types/TextToSpeechOutputFormatEnum.d.ts +10 -0
- package/dist/serialization/types/TextToSpeechOutputFormatEnum.js +60 -0
- package/dist/serialization/types/TextToSpeechStreamRequest.d.ts +10 -0
- package/dist/serialization/types/TextToSpeechStreamRequest.js +41 -0
- package/dist/serialization/types/ToolMockConfig.d.ts +13 -0
- package/dist/serialization/types/ToolMockConfig.js +44 -0
- package/dist/serialization/types/TransferToAgentToolConfig.d.ts +13 -0
- package/dist/serialization/types/TransferToAgentToolConfig.js +44 -0
- package/dist/serialization/types/TransferToNumberToolConfig.d.ts +13 -0
- package/dist/serialization/types/TransferToNumberToolConfig.js +44 -0
- package/dist/serialization/types/TtsConversationalConfig.d.ts +23 -0
- package/dist/serialization/types/TtsConversationalConfig.js +54 -0
- package/dist/serialization/types/TtsConversationalConfigOverride.d.ts +12 -0
- package/dist/serialization/types/TtsConversationalConfigOverride.js +43 -0
- package/dist/serialization/types/TtsConversationalConfigOverrideConfig.d.ts +12 -0
- package/dist/serialization/types/TtsConversationalConfigOverrideConfig.js +43 -0
- package/dist/serialization/types/TtsConversationalModel.d.ts +10 -0
- package/dist/serialization/types/TtsConversationalModel.js +41 -0
- package/dist/serialization/types/TtsOptimizeStreamingLatency.d.ts +10 -0
- package/dist/serialization/types/TtsOptimizeStreamingLatency.js +41 -0
- package/dist/serialization/types/TtsOutputFormat.d.ts +10 -0
- package/dist/serialization/types/TtsOutputFormat.js +49 -0
- package/dist/serialization/types/TurnConfig.d.ts +15 -0
- package/dist/serialization/types/TurnConfig.js +46 -0
- package/dist/serialization/types/TurnMode.d.ts +10 -0
- package/dist/serialization/types/TurnMode.js +41 -0
- package/dist/serialization/types/TwilioOutboundCallResponse.d.ts +15 -0
- package/dist/serialization/types/TwilioOutboundCallResponse.js +46 -0
- package/dist/serialization/types/TxtExportOptions.d.ts +17 -0
- package/dist/serialization/types/TxtExportOptions.js +48 -0
- package/dist/serialization/types/UpdateAudioNativeProjectRequest.d.ts +10 -0
- package/dist/serialization/types/UpdateAudioNativeProjectRequest.js +41 -0
- package/dist/serialization/types/UpdateChapterRequest.d.ts +10 -0
- package/dist/serialization/types/UpdateChapterRequest.js +41 -0
- package/dist/serialization/types/UpdateProjectRequest.d.ts +10 -0
- package/dist/serialization/types/UpdateProjectRequest.js +41 -0
- package/dist/serialization/types/UpdatePronunciationDictionariesRequest.d.ts +14 -0
- package/dist/serialization/types/UpdatePronunciationDictionariesRequest.js +45 -0
- package/dist/serialization/types/UpdateWorkspaceMemberResponseModel.d.ts +12 -0
- package/dist/serialization/types/UpdateWorkspaceMemberResponseModel.js +43 -0
- package/dist/serialization/types/UrlAvatar.d.ts +12 -0
- package/dist/serialization/types/UrlAvatar.js +43 -0
- package/dist/serialization/types/UsageAggregationInterval.d.ts +10 -0
- package/dist/serialization/types/UsageAggregationInterval.js +41 -0
- package/dist/serialization/types/UsageCharactersResponseModel.d.ts +13 -0
- package/dist/serialization/types/UsageCharactersResponseModel.js +44 -0
- package/dist/serialization/types/User.d.ts +26 -0
- package/dist/serialization/types/User.js +57 -0
- package/dist/serialization/types/UserFeedback.d.ts +14 -0
- package/dist/serialization/types/UserFeedback.js +45 -0
- package/dist/serialization/types/UserFeedbackScore.d.ts +10 -0
- package/dist/serialization/types/UserFeedbackScore.js +41 -0
- package/dist/serialization/types/UtteranceResponseModel.d.ts +13 -0
- package/dist/serialization/types/UtteranceResponseModel.js +44 -0
- package/dist/serialization/types/ValidationError.d.ts +15 -0
- package/dist/serialization/types/ValidationError.js +46 -0
- package/dist/serialization/types/ValidationErrorLocItem.d.ts +10 -0
- package/dist/serialization/types/ValidationErrorLocItem.js +41 -0
- package/dist/serialization/types/VerificationAttemptResponse.d.ts +18 -0
- package/dist/serialization/types/VerificationAttemptResponse.js +49 -0
- package/dist/serialization/types/VerifiedVoiceLanguageResponseModel.d.ts +16 -0
- package/dist/serialization/types/VerifiedVoiceLanguageResponseModel.js +47 -0
- package/dist/serialization/types/VerifyPvcVoiceCaptchaResponseModel.d.ts +12 -0
- package/dist/serialization/types/VerifyPvcVoiceCaptchaResponseModel.js +43 -0
- package/dist/serialization/types/Voice.d.ts +39 -0
- package/dist/serialization/types/Voice.js +70 -0
- package/dist/serialization/types/VoiceDesignPreviewResponse.d.ts +14 -0
- package/dist/serialization/types/VoiceDesignPreviewResponse.js +45 -0
- package/dist/serialization/types/VoiceGenerationParameterOptionResponse.d.ts +13 -0
- package/dist/serialization/types/VoiceGenerationParameterOptionResponse.js +44 -0
- package/dist/serialization/types/VoiceGenerationParameterResponse.d.ts +19 -0
- package/dist/serialization/types/VoiceGenerationParameterResponse.js +50 -0
- package/dist/serialization/types/VoicePreviewResponseModel.d.ts +15 -0
- package/dist/serialization/types/VoicePreviewResponseModel.js +46 -0
- package/dist/serialization/types/VoiceResponseModelCategory.d.ts +10 -0
- package/dist/serialization/types/VoiceResponseModelCategory.js +41 -0
- package/dist/serialization/types/VoiceResponseModelSafetyControl.d.ts +10 -0
- package/dist/serialization/types/VoiceResponseModelSafetyControl.js +48 -0
- package/dist/serialization/types/VoiceSample.d.ts +24 -0
- package/dist/serialization/types/VoiceSample.js +55 -0
- package/dist/serialization/types/VoiceSamplePreviewResponseModel.d.ts +16 -0
- package/dist/serialization/types/VoiceSamplePreviewResponseModel.js +47 -0
- package/dist/serialization/types/VoiceSampleVisualWaveformResponseModel.d.ts +13 -0
- package/dist/serialization/types/VoiceSampleVisualWaveformResponseModel.js +44 -0
- package/dist/serialization/types/VoiceSettings.d.ts +16 -0
- package/dist/serialization/types/VoiceSettings.js +47 -0
- package/dist/serialization/types/VoiceSharingModerationCheckResponseModel.d.ts +20 -0
- package/dist/serialization/types/VoiceSharingModerationCheckResponseModel.js +51 -0
- package/dist/serialization/types/VoiceSharingResponse.d.ts +49 -0
- package/dist/serialization/types/VoiceSharingResponse.js +80 -0
- package/dist/serialization/types/VoiceSharingResponseModelCategory.d.ts +10 -0
- package/dist/serialization/types/VoiceSharingResponseModelCategory.js +41 -0
- package/dist/serialization/types/VoiceSharingState.d.ts +10 -0
- package/dist/serialization/types/VoiceSharingState.js +41 -0
- package/dist/serialization/types/VoiceVerificationResponse.d.ts +18 -0
- package/dist/serialization/types/VoiceVerificationResponse.js +49 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigInput.d.ts +21 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigInput.js +55 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigInputMethod.d.ts +10 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigInputMethod.js +41 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +12 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.js +43 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigOutput.d.ts +21 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigOutput.js +55 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigOutputMethod.d.ts +10 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigOutputMethod.js +41 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +12 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.js +43 -0
- package/dist/serialization/types/WebhookToolConfigInput.d.ts +19 -0
- package/dist/serialization/types/WebhookToolConfigInput.js +50 -0
- package/dist/serialization/types/WebhookToolConfigOutput.d.ts +19 -0
- package/dist/serialization/types/WebhookToolConfigOutput.js +50 -0
- package/dist/serialization/types/WebsocketTtsClientMessageMulti.d.ts +24 -0
- package/dist/serialization/types/WebsocketTtsClientMessageMulti.js +55 -0
- package/dist/serialization/types/WebsocketTtsServerMessageMulti.d.ts +18 -0
- package/dist/serialization/types/WebsocketTtsServerMessageMulti.js +49 -0
- package/dist/serialization/types/WidgetConfig.d.ts +44 -0
- package/dist/serialization/types/WidgetConfig.js +75 -0
- package/dist/serialization/types/WidgetConfigAvatar.d.ts +22 -0
- package/dist/serialization/types/WidgetConfigAvatar.js +53 -0
- package/dist/serialization/types/WidgetConfigResponseModel.d.ts +44 -0
- package/dist/serialization/types/WidgetConfigResponseModel.js +75 -0
- package/dist/serialization/types/WidgetConfigResponseModelAvatar.d.ts +22 -0
- package/dist/serialization/types/WidgetConfigResponseModelAvatar.js +53 -0
- package/dist/serialization/types/WidgetExpandable.d.ts +10 -0
- package/dist/serialization/types/WidgetExpandable.js +41 -0
- package/dist/serialization/types/WidgetFeedbackMode.d.ts +10 -0
- package/dist/serialization/types/WidgetFeedbackMode.js +41 -0
- package/dist/serialization/types/WorkspaceBatchCallsResponse.d.ts +15 -0
- package/dist/serialization/types/WorkspaceBatchCallsResponse.js +46 -0
- package/dist/serialization/types/WorkspaceGroupByNameResponseModel.d.ts +14 -0
- package/dist/serialization/types/WorkspaceGroupByNameResponseModel.js +45 -0
- package/dist/serialization/types/WorkspaceResourceType.d.ts +10 -0
- package/dist/serialization/types/WorkspaceResourceType.js +56 -0
- package/dist/serialization/types/index.d.ts +525 -0
- package/dist/serialization/types/index.js +541 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +268 -61
- package/serialization/index.d.ts +2 -0
- package/serialization/index.js +18 -0
- package/serialization/resources/audioIsolation/index.d.ts +1 -0
- package/serialization/resources/audioIsolation/index.js +17 -0
- package/serialization/resources/audioIsolation/types/AudioIsolationConvertRequestFileFormat.d.ts +10 -0
- package/serialization/resources/audioIsolation/types/AudioIsolationConvertRequestFileFormat.js +41 -0
- package/serialization/resources/audioIsolation/types/AudioIsolationStreamRequestFileFormat.d.ts +10 -0
- package/serialization/resources/audioIsolation/types/AudioIsolationStreamRequestFileFormat.js +41 -0
- package/serialization/resources/audioIsolation/types/index.d.ts +2 -0
- package/serialization/resources/audioIsolation/types/index.js +18 -0
- package/serialization/resources/conversationalAi/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/client/index.js +17 -0
- package/serialization/resources/conversationalAi/client/requests/PatchWorkspaceSecretRequest.d.ts +13 -0
- package/serialization/resources/conversationalAi/client/requests/PatchWorkspaceSecretRequest.js +44 -0
- package/serialization/resources/conversationalAi/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/index.js +18 -0
- package/serialization/resources/conversationalAi/resources/agents/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/agents/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/agents/client/requests/BodyCreateAgentV1ConvaiAgentsCreatePost.d.ts +17 -0
- package/serialization/resources/conversationalAi/resources/agents/client/requests/BodyCreateAgentV1ConvaiAgentsCreatePost.js +48 -0
- package/serialization/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.d.ts +15 -0
- package/serialization/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationStreamV1ConvaiAgentsAgentIdSimulateConversationStreamPost.js +46 -0
- package/serialization/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.d.ts +15 -0
- package/serialization/resources/conversationalAi/resources/agents/client/requests/BodySimulatesAConversationV1ConvaiAgentsAgentIdSimulateConversationPost.js +46 -0
- package/serialization/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +15 -0
- package/serialization/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.js +46 -0
- package/serialization/resources/conversationalAi/resources/agents/client/requests/index.d.ts +4 -0
- package/serialization/resources/conversationalAi/resources/agents/client/requests/index.js +11 -0
- package/serialization/resources/conversationalAi/resources/agents/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/agents/index.js +18 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/index.js +41 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.d.ts +14 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.js +45 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/batchCalls/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/batchCalls/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +17 -0
- package/serialization/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.js +48 -0
- package/serialization/resources/conversationalAi/resources/batchCalls/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/batchCalls/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/batchCalls/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/batchCalls/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/conversations/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/conversations/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/conversations/resources/feedback/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/conversations/resources/feedback/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/BodySendConversationFeedbackV1ConvaiConversationsConversationIdFeedbackPost.d.ts +13 -0
- package/serialization/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/BodySendConversationFeedbackV1ConvaiConversationsConversationIdFeedbackPost.js +44 -0
- package/serialization/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/conversations/resources/feedback/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/conversations/resources/feedback/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/conversations/resources/feedback/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/conversations/resources/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/conversations/resources/index.js +41 -0
- package/serialization/resources/conversationalAi/resources/dashboard/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/dashboard/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/index.d.ts +3 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/index.js +42 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/settings/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/settings/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/PatchConvAiDashboardSettingsRequest.d.ts +13 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/PatchConvAiDashboardSettingsRequest.js +44 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/settings/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/settings/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/settings/index.js +18 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/settings/types/PatchConvAiDashboardSettingsRequestChartsItem.d.ts +22 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/settings/types/PatchConvAiDashboardSettingsRequestChartsItem.js +53 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/settings/types/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/dashboard/resources/settings/types/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/index.d.ts +20 -0
- package/serialization/resources/conversationalAi/resources/index.js +59 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/RagIndexRequestModel.d.ts +13 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/RagIndexRequestModel.js +44 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.d.ts +13 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateTextDocumentV1ConvaiKnowledgeBaseTextPost.js +44 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +13 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.js +44 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.d.ts +12 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.js +43 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.d.ts +3 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.js +9 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/index.js +18 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.d.ts +22 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsGetResponse.js +53 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.d.ts +22 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/DocumentsUpdateResponse.js +53 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/types/index.js +18 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +5 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.js +44 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.d.ts +14 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.js +45 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/client/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/client/index.js +41 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/client/list.d.ts +11 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/client/list.js +42 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +12 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.js +43 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/index.js +18 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersCreateRequestBody.d.ts +18 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersCreateRequestBody.js +51 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersGetResponse.d.ts +18 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersGetResponse.js +51 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersListResponseItem.d.ts +18 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersListResponseItem.js +51 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersUpdateResponse.d.ts +18 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/types/PhoneNumbersUpdateResponse.js +51 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/types/index.d.ts +4 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/types/index.js +20 -0
- package/serialization/resources/conversationalAi/resources/secrets/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/secrets/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/secrets/client/requests/PostWorkspaceSecretRequest.d.ts +13 -0
- package/serialization/resources/conversationalAi/resources/secrets/client/requests/PostWorkspaceSecretRequest.js +44 -0
- package/serialization/resources/conversationalAi/resources/secrets/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/secrets/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/secrets/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/secrets/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/settings/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/settings/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +17 -0
- package/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.js +48 -0
- package/serialization/resources/conversationalAi/resources/settings/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/settings/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/settings/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/settings/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/sipTrunk/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/sipTrunk/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/sipTrunk/client/requests/BodyHandleAnOutboundCallViaSipTrunkV1ConvaiSipTrunkOutboundCallPost.d.ts +16 -0
- package/serialization/resources/conversationalAi/resources/sipTrunk/client/requests/BodyHandleAnOutboundCallViaSipTrunkV1ConvaiSipTrunkOutboundCallPost.js +47 -0
- package/serialization/resources/conversationalAi/resources/sipTrunk/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/sipTrunk/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/sipTrunk/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/sipTrunk/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/twilio/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/twilio/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyHandleAnOutboundCallViaTwilioV1ConvaiTwilioOutboundCallPost.d.ts +16 -0
- package/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyHandleAnOutboundCallViaTwilioV1ConvaiTwilioOutboundCallPost.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 +5 -0
- package/serialization/resources/conversationalAi/resources/twilio/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/twilio/index.js +17 -0
- package/serialization/resources/dubbing/index.d.ts +1 -0
- package/serialization/resources/dubbing/index.js +17 -0
- package/serialization/resources/dubbing/resources/index.d.ts +4 -0
- package/serialization/resources/dubbing/resources/index.js +43 -0
- package/serialization/resources/dubbing/resources/resource/client/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/resource/client/index.js +17 -0
- package/serialization/resources/dubbing/resources/resource/client/requests/BodyDubsAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdDubPost.d.ts +13 -0
- package/serialization/resources/dubbing/resources/resource/client/requests/BodyDubsAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdDubPost.js +44 -0
- package/serialization/resources/dubbing/resources/resource/client/requests/BodyRenderAudioOrVideoForTheGivenLanguageV1DubbingResourceDubbingIdRenderLanguagePost.d.ts +13 -0
- package/serialization/resources/dubbing/resources/resource/client/requests/BodyRenderAudioOrVideoForTheGivenLanguageV1DubbingResourceDubbingIdRenderLanguagePost.js +44 -0
- package/serialization/resources/dubbing/resources/resource/client/requests/BodyTranscribesSegmentsV1DubbingResourceDubbingIdTranscribePost.d.ts +12 -0
- package/serialization/resources/dubbing/resources/resource/client/requests/BodyTranscribesSegmentsV1DubbingResourceDubbingIdTranscribePost.js +43 -0
- package/serialization/resources/dubbing/resources/resource/client/requests/BodyTranslatesAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdTranslatePost.d.ts +13 -0
- package/serialization/resources/dubbing/resources/resource/client/requests/BodyTranslatesAllOrSomeSegmentsAndLanguagesV1DubbingResourceDubbingIdTranslatePost.js +44 -0
- package/serialization/resources/dubbing/resources/resource/client/requests/index.d.ts +4 -0
- package/serialization/resources/dubbing/resources/resource/client/requests/index.js +11 -0
- package/serialization/resources/dubbing/resources/resource/index.d.ts +2 -0
- package/serialization/resources/dubbing/resources/resource/index.js +18 -0
- package/serialization/resources/dubbing/resources/resource/resources/index.d.ts +6 -0
- package/serialization/resources/dubbing/resources/resource/resources/index.js +45 -0
- package/serialization/resources/dubbing/resources/resource/resources/language/client/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/resource/resources/language/client/index.js +17 -0
- package/serialization/resources/dubbing/resources/resource/resources/language/client/requests/BodyAddALanguageToTheResourceV1DubbingResourceDubbingIdLanguagePost.d.ts +12 -0
- package/serialization/resources/dubbing/resources/resource/resources/language/client/requests/BodyAddALanguageToTheResourceV1DubbingResourceDubbingIdLanguagePost.js +43 -0
- package/serialization/resources/dubbing/resources/resource/resources/language/client/requests/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/resource/resources/language/client/requests/index.js +5 -0
- package/serialization/resources/dubbing/resources/resource/resources/language/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/resource/resources/language/index.js +17 -0
- package/serialization/resources/dubbing/resources/resource/resources/segment/client/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/resource/resources/segment/client/index.js +17 -0
- package/serialization/resources/dubbing/resources/resource/resources/segment/client/requests/SegmentUpdatePayload.d.ts +14 -0
- package/serialization/resources/dubbing/resources/resource/resources/segment/client/requests/SegmentUpdatePayload.js +45 -0
- package/serialization/resources/dubbing/resources/resource/resources/segment/client/requests/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/resource/resources/segment/client/requests/index.js +5 -0
- package/serialization/resources/dubbing/resources/resource/resources/segment/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/resource/resources/segment/index.js +17 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/client/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/client/index.js +17 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.d.ts +13 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/BodyUpdateMetadataForASpeakerV1DubbingResourceDubbingIdSpeakerSpeakerIdPatch.js +44 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/client/requests/index.js +5 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/index.d.ts +2 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/index.js +18 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/resources/index.d.ts +2 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/resources/index.js +41 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/index.js +17 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/SegmentCreatePayload.d.ts +15 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/SegmentCreatePayload.js +48 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/requests/index.js +5 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/resource/resources/speaker/resources/segment/index.js +17 -0
- package/serialization/resources/dubbing/resources/transcript/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/transcript/index.js +17 -0
- package/serialization/resources/dubbing/resources/transcript/types/TranscriptGetTranscriptForDubRequestFormatType.d.ts +10 -0
- package/serialization/resources/dubbing/resources/transcript/types/TranscriptGetTranscriptForDubRequestFormatType.js +41 -0
- package/serialization/resources/dubbing/resources/transcript/types/index.d.ts +1 -0
- package/serialization/resources/dubbing/resources/transcript/types/index.js +17 -0
- package/serialization/resources/history/client/index.d.ts +1 -0
- package/serialization/resources/history/client/index.js +17 -0
- package/serialization/resources/history/client/requests/DownloadHistoryRequest.d.ts +13 -0
- package/serialization/resources/history/client/requests/DownloadHistoryRequest.js +44 -0
- package/serialization/resources/history/client/requests/index.d.ts +1 -0
- package/serialization/resources/history/client/requests/index.js +5 -0
- package/serialization/resources/history/index.d.ts +2 -0
- package/serialization/resources/history/index.js +18 -0
- package/serialization/resources/history/types/HistoryListRequestSource.d.ts +10 -0
- package/serialization/resources/history/types/HistoryListRequestSource.js +41 -0
- package/serialization/resources/history/types/index.d.ts +1 -0
- package/serialization/resources/history/types/index.js +17 -0
- package/serialization/resources/index.d.ts +36 -0
- package/serialization/resources/index.js +75 -0
- package/serialization/resources/models/client/index.d.ts +1 -0
- package/serialization/resources/models/client/index.js +37 -0
- package/serialization/resources/models/client/list.d.ts +11 -0
- package/serialization/resources/models/client/list.js +42 -0
- package/serialization/resources/models/index.d.ts +1 -0
- package/serialization/resources/models/index.js +17 -0
- package/serialization/resources/pronunciationDictionaries/client/index.d.ts +1 -0
- package/serialization/resources/pronunciationDictionaries/client/index.js +17 -0
- package/serialization/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPost.d.ts +17 -0
- package/serialization/resources/pronunciationDictionaries/client/requests/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPost.js +48 -0
- package/serialization/resources/pronunciationDictionaries/client/requests/index.d.ts +1 -0
- package/serialization/resources/pronunciationDictionaries/client/requests/index.js +5 -0
- package/serialization/resources/pronunciationDictionaries/index.d.ts +3 -0
- package/serialization/resources/pronunciationDictionaries/index.js +19 -0
- package/serialization/resources/pronunciationDictionaries/resources/index.d.ts +3 -0
- package/serialization/resources/pronunciationDictionaries/resources/index.js +42 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/client/index.d.ts +1 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/client/index.js +17 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/client/requests/PronunciationDictionary.d.ts +13 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/client/requests/PronunciationDictionary.js +44 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/client/requests/RemovePronunciationDictionaryRulesRequest.d.ts +12 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/client/requests/RemovePronunciationDictionaryRulesRequest.js +43 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/client/requests/index.d.ts +2 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/client/requests/index.js +7 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/index.d.ts +2 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/index.js +18 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/types/PronunciationDictionaryRule.d.ts +18 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/types/PronunciationDictionaryRule.js +51 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/types/index.d.ts +1 -0
- package/serialization/resources/pronunciationDictionaries/resources/rules/types/index.js +17 -0
- package/serialization/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostRulesItem.d.ts +18 -0
- package/serialization/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostRulesItem.js +51 -0
- package/serialization/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostWorkspaceAccess.d.ts +10 -0
- package/serialization/resources/pronunciationDictionaries/types/BodyAddAPronunciationDictionaryV1PronunciationDictionariesAddFromRulesPostWorkspaceAccess.js +41 -0
- package/serialization/resources/pronunciationDictionaries/types/PronunciationDictionariesCreateFromFileRequestWorkspaceAccess.d.ts +10 -0
- package/serialization/resources/pronunciationDictionaries/types/PronunciationDictionariesCreateFromFileRequestWorkspaceAccess.js +41 -0
- package/serialization/resources/pronunciationDictionaries/types/PronunciationDictionariesListRequestSort.d.ts +10 -0
- package/serialization/resources/pronunciationDictionaries/types/PronunciationDictionariesListRequestSort.js +41 -0
- package/serialization/resources/pronunciationDictionaries/types/index.d.ts +4 -0
- package/serialization/resources/pronunciationDictionaries/types/index.js +20 -0
- package/serialization/resources/speechToSpeech/index.d.ts +1 -0
- package/serialization/resources/speechToSpeech/index.js +17 -0
- package/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestFileFormat.d.ts +10 -0
- package/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestFileFormat.js +41 -0
- package/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.d.ts +10 -0
- package/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.js +61 -0
- package/serialization/resources/speechToSpeech/types/SpeechToSpeechStreamRequestFileFormat.d.ts +10 -0
- package/serialization/resources/speechToSpeech/types/SpeechToSpeechStreamRequestFileFormat.js +41 -0
- package/serialization/resources/speechToSpeech/types/SpeechToSpeechStreamRequestOutputFormat.d.ts +10 -0
- package/serialization/resources/speechToSpeech/types/SpeechToSpeechStreamRequestOutputFormat.js +61 -0
- package/serialization/resources/speechToSpeech/types/index.d.ts +4 -0
- package/serialization/resources/speechToSpeech/types/index.js +20 -0
- package/serialization/resources/speechToText/index.d.ts +1 -0
- package/serialization/resources/speechToText/index.js +17 -0
- package/serialization/resources/speechToText/types/SpeechToTextConvertRequestFileFormat.d.ts +10 -0
- package/serialization/resources/speechToText/types/SpeechToTextConvertRequestFileFormat.js +41 -0
- package/serialization/resources/speechToText/types/SpeechToTextConvertRequestTimestampsGranularity.d.ts +10 -0
- package/serialization/resources/speechToText/types/SpeechToTextConvertRequestTimestampsGranularity.js +41 -0
- package/serialization/resources/speechToText/types/index.d.ts +2 -0
- package/serialization/resources/speechToText/types/index.js +18 -0
- package/serialization/resources/studio/client/index.d.ts +1 -0
- package/serialization/resources/studio/client/index.js +17 -0
- package/serialization/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.d.ts +23 -0
- package/serialization/resources/studio/client/requests/BodyCreatePodcastV1StudioPodcastsPost.js +54 -0
- package/serialization/resources/studio/client/requests/index.d.ts +1 -0
- package/serialization/resources/studio/client/requests/index.js +5 -0
- package/serialization/resources/studio/index.d.ts +3 -0
- package/serialization/resources/studio/index.js +19 -0
- package/serialization/resources/studio/resources/index.d.ts +3 -0
- package/serialization/resources/studio/resources/index.js +42 -0
- package/serialization/resources/studio/resources/projects/client/index.d.ts +1 -0
- package/serialization/resources/studio/resources/projects/client/index.js +17 -0
- package/serialization/resources/studio/resources/projects/client/requests/BodyUpdateStudioProjectV1StudioProjectsProjectIdPost.d.ts +18 -0
- package/serialization/resources/studio/resources/projects/client/requests/BodyUpdateStudioProjectV1StudioProjectsProjectIdPost.js +49 -0
- package/serialization/resources/studio/resources/projects/client/requests/index.d.ts +1 -0
- package/serialization/resources/studio/resources/projects/client/requests/index.js +5 -0
- package/serialization/resources/studio/resources/projects/index.d.ts +3 -0
- package/serialization/resources/studio/resources/projects/index.js +19 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/client/index.d.ts +1 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/client/index.js +17 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/client/requests/BodyCreateChapterV1StudioProjectsProjectIdChaptersPost.d.ts +13 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/client/requests/BodyCreateChapterV1StudioProjectsProjectIdChaptersPost.js +44 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/client/requests/BodyUpdateChapterV1StudioProjectsProjectIdChaptersChapterIdPost.d.ts +14 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/client/requests/BodyUpdateChapterV1StudioProjectsProjectIdChaptersChapterIdPost.js +45 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/client/requests/index.d.ts +2 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/client/requests/index.js +7 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/index.d.ts +2 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/index.js +18 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/resources/index.d.ts +2 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/resources/index.js +41 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/index.d.ts +1 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/index.js +17 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/BodyStreamChapterAudioV1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.d.ts +12 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/BodyStreamChapterAudioV1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.js +43 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/index.d.ts +1 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/requests/index.js +5 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/index.d.ts +1 -0
- package/serialization/resources/studio/resources/projects/resources/chapters/resources/snapshots/index.js +17 -0
- package/serialization/resources/studio/resources/projects/resources/index.d.ts +6 -0
- package/serialization/resources/studio/resources/projects/resources/index.js +45 -0
- package/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/client/index.d.ts +1 -0
- package/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/client/index.js +17 -0
- package/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost.d.ts +14 -0
- package/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost.js +45 -0
- package/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/index.d.ts +1 -0
- package/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/client/requests/index.js +5 -0
- package/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/index.d.ts +1 -0
- package/serialization/resources/studio/resources/projects/resources/pronunciationDictionaries/index.js +17 -0
- package/serialization/resources/studio/resources/projects/resources/snapshots/client/index.d.ts +1 -0
- package/serialization/resources/studio/resources/projects/resources/snapshots/client/index.js +17 -0
- package/serialization/resources/studio/resources/projects/resources/snapshots/client/requests/BodyStreamStudioProjectAudioV1StudioProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.d.ts +12 -0
- package/serialization/resources/studio/resources/projects/resources/snapshots/client/requests/BodyStreamStudioProjectAudioV1StudioProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.js +43 -0
- package/serialization/resources/studio/resources/projects/resources/snapshots/client/requests/index.d.ts +1 -0
- package/serialization/resources/studio/resources/projects/resources/snapshots/client/requests/index.js +5 -0
- package/serialization/resources/studio/resources/projects/resources/snapshots/index.d.ts +1 -0
- package/serialization/resources/studio/resources/projects/resources/snapshots/index.js +17 -0
- package/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestApplyTextNormalization.d.ts +10 -0
- package/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestApplyTextNormalization.js +41 -0
- package/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestFiction.d.ts +10 -0
- package/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestFiction.js +41 -0
- package/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.d.ts +10 -0
- package/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestSourceType.js +41 -0
- package/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestTargetAudience.d.ts +10 -0
- package/serialization/resources/studio/resources/projects/types/ProjectsCreateRequestTargetAudience.js +41 -0
- package/serialization/resources/studio/resources/projects/types/index.d.ts +4 -0
- package/serialization/resources/studio/resources/projects/types/index.js +20 -0
- package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostDurationScale.d.ts +10 -0
- package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostDurationScale.js +41 -0
- package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostMode.d.ts +18 -0
- package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostMode.js +51 -0
- package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostQualityPreset.d.ts +10 -0
- package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostQualityPreset.js +41 -0
- package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.d.ts +13 -0
- package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSource.js +48 -0
- package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.d.ts +18 -0
- package/serialization/resources/studio/types/BodyCreatePodcastV1StudioPodcastsPostSourceItem.js +51 -0
- package/serialization/resources/studio/types/index.d.ts +5 -0
- package/serialization/resources/studio/types/index.js +21 -0
- package/serialization/resources/textToSoundEffects/client/index.d.ts +1 -0
- package/serialization/resources/textToSoundEffects/client/index.js +17 -0
- package/serialization/resources/textToSoundEffects/client/requests/CreateSoundEffectRequest.d.ts +14 -0
- package/serialization/resources/textToSoundEffects/client/requests/CreateSoundEffectRequest.js +45 -0
- package/serialization/resources/textToSoundEffects/client/requests/index.d.ts +1 -0
- package/serialization/resources/textToSoundEffects/client/requests/index.js +5 -0
- package/serialization/resources/textToSoundEffects/index.d.ts +2 -0
- package/serialization/resources/textToSoundEffects/index.js +18 -0
- package/serialization/resources/textToSoundEffects/types/TextToSoundEffectsConvertRequestOutputFormat.d.ts +10 -0
- package/serialization/resources/textToSoundEffects/types/TextToSoundEffectsConvertRequestOutputFormat.js +61 -0
- package/serialization/resources/textToSoundEffects/types/index.d.ts +1 -0
- package/serialization/resources/textToSoundEffects/types/index.js +17 -0
- package/serialization/resources/textToSpeech/client/index.d.ts +1 -0
- package/serialization/resources/textToSpeech/client/index.js +17 -0
- package/serialization/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.d.ts +27 -0
- package/serialization/resources/textToSpeech/client/requests/StreamTextToSpeechRequest.js +58 -0
- package/serialization/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.d.ts +27 -0
- package/serialization/resources/textToSpeech/client/requests/StreamTextToSpeechWithTimestampsRequest.js +58 -0
- package/serialization/resources/textToSpeech/client/requests/TextToSpeechRequest.d.ts +27 -0
- package/serialization/resources/textToSpeech/client/requests/TextToSpeechRequest.js +58 -0
- package/serialization/resources/textToSpeech/client/requests/TextToSpeechWithTimestampsRequest.d.ts +27 -0
- package/serialization/resources/textToSpeech/client/requests/TextToSpeechWithTimestampsRequest.js +58 -0
- package/serialization/resources/textToSpeech/client/requests/index.d.ts +4 -0
- package/serialization/resources/textToSpeech/client/requests/index.js +11 -0
- package/serialization/resources/textToSpeech/index.d.ts +2 -0
- package/serialization/resources/textToSpeech/index.js +18 -0
- package/serialization/resources/textToSpeech/types/BodyTextToSpeechStreamingV1TextToSpeechVoiceIdStreamPostApplyTextNormalization.d.ts +10 -0
- package/serialization/resources/textToSpeech/types/BodyTextToSpeechStreamingV1TextToSpeechVoiceIdStreamPostApplyTextNormalization.js +41 -0
- package/serialization/resources/textToSpeech/types/BodyTextToSpeechStreamingWithTimestampsV1TextToSpeechVoiceIdStreamWithTimestampsPostApplyTextNormalization.d.ts +10 -0
- package/serialization/resources/textToSpeech/types/BodyTextToSpeechStreamingWithTimestampsV1TextToSpeechVoiceIdStreamWithTimestampsPostApplyTextNormalization.js +41 -0
- package/serialization/resources/textToSpeech/types/BodyTextToSpeechV1TextToSpeechVoiceIdPostApplyTextNormalization.d.ts +10 -0
- package/serialization/resources/textToSpeech/types/BodyTextToSpeechV1TextToSpeechVoiceIdPostApplyTextNormalization.js +41 -0
- package/serialization/resources/textToSpeech/types/BodyTextToSpeechWithTimestampsV1TextToSpeechVoiceIdWithTimestampsPostApplyTextNormalization.d.ts +10 -0
- package/serialization/resources/textToSpeech/types/BodyTextToSpeechWithTimestampsV1TextToSpeechVoiceIdWithTimestampsPostApplyTextNormalization.js +41 -0
- package/serialization/resources/textToSpeech/types/TextToSpeechConvertRequestOutputFormat.d.ts +10 -0
- package/serialization/resources/textToSpeech/types/TextToSpeechConvertRequestOutputFormat.js +61 -0
- package/serialization/resources/textToSpeech/types/TextToSpeechConvertWithTimestampsRequestOutputFormat.d.ts +10 -0
- package/serialization/resources/textToSpeech/types/TextToSpeechConvertWithTimestampsRequestOutputFormat.js +61 -0
- package/serialization/resources/textToSpeech/types/TextToSpeechStreamRequestOutputFormat.d.ts +10 -0
- package/serialization/resources/textToSpeech/types/TextToSpeechStreamRequestOutputFormat.js +61 -0
- package/serialization/resources/textToSpeech/types/TextToSpeechStreamWithTimestampsRequestOutputFormat.d.ts +10 -0
- package/serialization/resources/textToSpeech/types/TextToSpeechStreamWithTimestampsRequestOutputFormat.js +61 -0
- package/serialization/resources/textToSpeech/types/index.d.ts +8 -0
- package/serialization/resources/textToSpeech/types/index.js +24 -0
- package/serialization/resources/textToVoice/client/index.d.ts +1 -0
- package/serialization/resources/textToVoice/client/index.js +17 -0
- package/serialization/resources/textToVoice/client/requests/SaveVoicePreviewRequest.d.ts +16 -0
- package/serialization/resources/textToVoice/client/requests/SaveVoicePreviewRequest.js +47 -0
- package/serialization/resources/textToVoice/client/requests/VoiceDesignRequest.d.ts +18 -0
- package/serialization/resources/textToVoice/client/requests/VoiceDesignRequest.js +49 -0
- package/serialization/resources/textToVoice/client/requests/index.d.ts +2 -0
- package/serialization/resources/textToVoice/client/requests/index.js +7 -0
- package/serialization/resources/textToVoice/index.d.ts +2 -0
- package/serialization/resources/textToVoice/index.js +18 -0
- package/serialization/resources/textToVoice/types/TextToVoiceCreatePreviewsRequestOutputFormat.d.ts +10 -0
- package/serialization/resources/textToVoice/types/TextToVoiceCreatePreviewsRequestOutputFormat.js +61 -0
- package/serialization/resources/textToVoice/types/index.d.ts +1 -0
- package/serialization/resources/textToVoice/types/index.js +17 -0
- package/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/index.d.ts +1 -0
- package/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/index.js +17 -0
- package/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/ReceiveMessageMulti.d.ts +12 -0
- package/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/ReceiveMessageMulti.js +43 -0
- package/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/SendMessageMulti.d.ts +17 -0
- package/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/SendMessageMulti.js +56 -0
- package/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/index.d.ts +2 -0
- package/serialization/resources/v1TextToSpeechVoiceIdMultiStreamInput/types/index.js +18 -0
- package/serialization/resources/v1TextToSpeechVoiceIdStreamInput/index.d.ts +1 -0
- package/serialization/resources/v1TextToSpeechVoiceIdStreamInput/index.js +17 -0
- package/serialization/resources/v1TextToSpeechVoiceIdStreamInput/types/ReceiveMessage.d.ts +12 -0
- package/serialization/resources/v1TextToSpeechVoiceIdStreamInput/types/ReceiveMessage.js +43 -0
- package/serialization/resources/v1TextToSpeechVoiceIdStreamInput/types/SendMessage.d.ts +13 -0
- package/serialization/resources/v1TextToSpeechVoiceIdStreamInput/types/SendMessage.js +44 -0
- package/serialization/resources/v1TextToSpeechVoiceIdStreamInput/types/index.d.ts +2 -0
- package/serialization/resources/v1TextToSpeechVoiceIdStreamInput/types/index.js +18 -0
- package/serialization/resources/voices/client/index.d.ts +1 -0
- package/serialization/resources/voices/client/index.js +17 -0
- package/serialization/resources/voices/client/requests/BodyAddSharedVoiceV1VoicesAddPublicUserIdVoiceIdPost.d.ts +12 -0
- package/serialization/resources/voices/client/requests/BodyAddSharedVoiceV1VoicesAddPublicUserIdVoiceIdPost.js +43 -0
- package/serialization/resources/voices/client/requests/index.d.ts +1 -0
- package/serialization/resources/voices/client/requests/index.js +5 -0
- package/serialization/resources/voices/index.d.ts +3 -0
- package/serialization/resources/voices/index.js +19 -0
- package/serialization/resources/voices/resources/index.d.ts +2 -0
- package/serialization/resources/voices/resources/index.js +41 -0
- package/serialization/resources/voices/resources/pvc/client/index.d.ts +1 -0
- package/serialization/resources/voices/resources/pvc/client/index.js +17 -0
- package/serialization/resources/voices/resources/pvc/client/requests/BodyEditPvcVoiceV1VoicesPvcVoiceIdPost.d.ts +15 -0
- package/serialization/resources/voices/resources/pvc/client/requests/BodyEditPvcVoiceV1VoicesPvcVoiceIdPost.js +46 -0
- package/serialization/resources/voices/resources/pvc/client/requests/BodyRunPvcTrainingV1VoicesPvcVoiceIdTrainPost.d.ts +12 -0
- package/serialization/resources/voices/resources/pvc/client/requests/BodyRunPvcTrainingV1VoicesPvcVoiceIdTrainPost.js +43 -0
- package/serialization/resources/voices/resources/pvc/client/requests/CreatePvcVoiceRequest.d.ts +15 -0
- package/serialization/resources/voices/resources/pvc/client/requests/CreatePvcVoiceRequest.js +46 -0
- package/serialization/resources/voices/resources/pvc/client/requests/index.d.ts +3 -0
- package/serialization/resources/voices/resources/pvc/client/requests/index.js +9 -0
- package/serialization/resources/voices/resources/pvc/index.d.ts +2 -0
- package/serialization/resources/voices/resources/pvc/index.js +18 -0
- package/serialization/resources/voices/resources/pvc/resources/index.d.ts +2 -0
- package/serialization/resources/voices/resources/pvc/resources/index.js +41 -0
- package/serialization/resources/voices/resources/pvc/resources/samples/client/create.d.ts +11 -0
- package/serialization/resources/voices/resources/pvc/resources/samples/client/create.js +42 -0
- package/serialization/resources/voices/resources/pvc/resources/samples/client/index.d.ts +2 -0
- package/serialization/resources/voices/resources/pvc/resources/samples/client/index.js +41 -0
- package/serialization/resources/voices/resources/pvc/resources/samples/client/requests/BodyUpdatePvcVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost.d.ts +15 -0
- package/serialization/resources/voices/resources/pvc/resources/samples/client/requests/BodyUpdatePvcVoiceSampleV1VoicesPvcVoiceIdSamplesSampleIdPost.js +46 -0
- package/serialization/resources/voices/resources/pvc/resources/samples/client/requests/index.d.ts +1 -0
- package/serialization/resources/voices/resources/pvc/resources/samples/client/requests/index.js +5 -0
- package/serialization/resources/voices/resources/pvc/resources/samples/index.d.ts +1 -0
- package/serialization/resources/voices/resources/pvc/resources/samples/index.js +17 -0
- package/serialization/resources/voices/types/VoicesGetSharedRequestCategory.d.ts +10 -0
- package/serialization/resources/voices/types/VoicesGetSharedRequestCategory.js +41 -0
- package/serialization/resources/voices/types/index.d.ts +1 -0
- package/serialization/resources/voices/types/index.js +17 -0
- package/serialization/resources/workspace/index.d.ts +1 -0
- package/serialization/resources/workspace/index.js +17 -0
- package/serialization/resources/workspace/resources/groups/client/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/groups/client/index.js +37 -0
- package/serialization/resources/workspace/resources/groups/client/search.d.ts +11 -0
- package/serialization/resources/workspace/resources/groups/client/search.js +42 -0
- package/serialization/resources/workspace/resources/groups/index.d.ts +2 -0
- package/serialization/resources/workspace/resources/groups/index.js +18 -0
- package/serialization/resources/workspace/resources/groups/resources/index.d.ts +2 -0
- package/serialization/resources/workspace/resources/groups/resources/index.js +41 -0
- package/serialization/resources/workspace/resources/groups/resources/members/client/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/groups/resources/members/client/index.js +17 -0
- package/serialization/resources/workspace/resources/groups/resources/members/client/requests/AddMemberToGroupRequest.d.ts +12 -0
- package/serialization/resources/workspace/resources/groups/resources/members/client/requests/AddMemberToGroupRequest.js +43 -0
- package/serialization/resources/workspace/resources/groups/resources/members/client/requests/BodyDeleteMemberFromUserGroupV1WorkspaceGroupsGroupIdMembersRemovePost.d.ts +12 -0
- package/serialization/resources/workspace/resources/groups/resources/members/client/requests/BodyDeleteMemberFromUserGroupV1WorkspaceGroupsGroupIdMembersRemovePost.js +43 -0
- package/serialization/resources/workspace/resources/groups/resources/members/client/requests/index.d.ts +2 -0
- package/serialization/resources/workspace/resources/groups/resources/members/client/requests/index.js +7 -0
- package/serialization/resources/workspace/resources/groups/resources/members/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/groups/resources/members/index.js +17 -0
- package/serialization/resources/workspace/resources/index.d.ts +10 -0
- package/serialization/resources/workspace/resources/index.js +49 -0
- package/serialization/resources/workspace/resources/invites/client/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/invites/client/index.js +17 -0
- package/serialization/resources/workspace/resources/invites/client/requests/BodyDeleteExistingInvitationV1WorkspaceInvitesDelete.d.ts +12 -0
- package/serialization/resources/workspace/resources/invites/client/requests/BodyDeleteExistingInvitationV1WorkspaceInvitesDelete.js +43 -0
- package/serialization/resources/workspace/resources/invites/client/requests/BodyInviteMultipleUsersV1WorkspaceInvitesAddBulkPost.d.ts +13 -0
- package/serialization/resources/workspace/resources/invites/client/requests/BodyInviteMultipleUsersV1WorkspaceInvitesAddBulkPost.js +44 -0
- package/serialization/resources/workspace/resources/invites/client/requests/InviteUserRequest.d.ts +15 -0
- package/serialization/resources/workspace/resources/invites/client/requests/InviteUserRequest.js +46 -0
- package/serialization/resources/workspace/resources/invites/client/requests/index.d.ts +3 -0
- package/serialization/resources/workspace/resources/invites/client/requests/index.js +9 -0
- package/serialization/resources/workspace/resources/invites/index.d.ts +2 -0
- package/serialization/resources/workspace/resources/invites/index.js +18 -0
- package/serialization/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.d.ts +10 -0
- package/serialization/resources/workspace/resources/invites/types/BodyInviteUserV1WorkspaceInvitesAddPostWorkspacePermission.js +58 -0
- package/serialization/resources/workspace/resources/invites/types/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/invites/types/index.js +17 -0
- package/serialization/resources/workspace/resources/members/client/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/members/client/index.js +17 -0
- package/serialization/resources/workspace/resources/members/client/requests/BodyDeleteMemberV1WorkspaceMembersDelete.d.ts +12 -0
- package/serialization/resources/workspace/resources/members/client/requests/BodyDeleteMemberV1WorkspaceMembersDelete.js +43 -0
- package/serialization/resources/workspace/resources/members/client/requests/UpdateMemberRequest.d.ts +15 -0
- package/serialization/resources/workspace/resources/members/client/requests/UpdateMemberRequest.js +46 -0
- package/serialization/resources/workspace/resources/members/client/requests/index.d.ts +2 -0
- package/serialization/resources/workspace/resources/members/client/requests/index.js +7 -0
- package/serialization/resources/workspace/resources/members/index.d.ts +2 -0
- package/serialization/resources/workspace/resources/members/index.js +18 -0
- package/serialization/resources/workspace/resources/members/types/BodyUpdateMemberV1WorkspaceMembersPostWorkspaceRole.d.ts +10 -0
- package/serialization/resources/workspace/resources/members/types/BodyUpdateMemberV1WorkspaceMembersPostWorkspaceRole.js +41 -0
- package/serialization/resources/workspace/resources/members/types/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/members/types/index.js +17 -0
- package/serialization/resources/workspace/resources/resources/client/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/resources/client/index.js +17 -0
- package/serialization/resources/workspace/resources/resources/client/requests/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePost.d.ts +18 -0
- package/serialization/resources/workspace/resources/resources/client/requests/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePost.js +49 -0
- package/serialization/resources/workspace/resources/resources/client/requests/BodyUnshareWorkspaceResourceV1WorkspaceResourcesResourceIdUnsharePost.d.ts +16 -0
- package/serialization/resources/workspace/resources/resources/client/requests/BodyUnshareWorkspaceResourceV1WorkspaceResourcesResourceIdUnsharePost.js +47 -0
- package/serialization/resources/workspace/resources/resources/client/requests/index.d.ts +2 -0
- package/serialization/resources/workspace/resources/resources/client/requests/index.js +7 -0
- package/serialization/resources/workspace/resources/resources/index.d.ts +2 -0
- package/serialization/resources/workspace/resources/resources/index.js +18 -0
- package/serialization/resources/workspace/resources/resources/types/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePostRole.d.ts +10 -0
- package/serialization/resources/workspace/resources/resources/types/BodyShareWorkspaceResourceV1WorkspaceResourcesResourceIdSharePostRole.js +41 -0
- package/serialization/resources/workspace/resources/resources/types/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/resources/types/index.js +17 -0
- package/serialization/types/AddChapterResponseModel.d.ts +13 -0
- package/serialization/types/AddChapterResponseModel.js +44 -0
- package/serialization/types/AddKnowledgeBaseResponseModel.d.ts +14 -0
- package/serialization/types/AddKnowledgeBaseResponseModel.js +45 -0
- package/serialization/types/AddProjectRequest.d.ts +41 -0
- package/serialization/types/AddProjectRequest.js +72 -0
- package/serialization/types/AddProjectResponseModel.d.ts +13 -0
- package/serialization/types/AddProjectResponseModel.js +44 -0
- package/serialization/types/AddPronunciationDictionaryResponseModel.d.ts +20 -0
- package/serialization/types/AddPronunciationDictionaryResponseModel.js +51 -0
- package/serialization/types/AddPronunciationDictionaryResponseModelPermissionOnResource.d.ts +10 -0
- package/serialization/types/AddPronunciationDictionaryResponseModelPermissionOnResource.js +41 -0
- package/serialization/types/AddSharingVoiceRequest.d.ts +10 -0
- package/serialization/types/AddSharingVoiceRequest.js +41 -0
- package/serialization/types/AddVoiceIvcResponseModel.d.ts +13 -0
- package/serialization/types/AddVoiceIvcResponseModel.js +44 -0
- package/serialization/types/AddVoiceResponseModel.d.ts +12 -0
- package/serialization/types/AddVoiceResponseModel.js +43 -0
- package/serialization/types/AddWorkspaceGroupMemberResponseModel.d.ts +12 -0
- package/serialization/types/AddWorkspaceGroupMemberResponseModel.js +43 -0
- package/serialization/types/AddWorkspaceInviteResponseModel.d.ts +12 -0
- package/serialization/types/AddWorkspaceInviteResponseModel.js +43 -0
- package/serialization/types/AdditionalFormatResponseModel.d.ts +16 -0
- package/serialization/types/AdditionalFormatResponseModel.js +47 -0
- package/serialization/types/AdditionalFormats.d.ts +11 -0
- package/serialization/types/AdditionalFormats.js +42 -0
- package/serialization/types/Age.d.ts +10 -0
- package/serialization/types/Age.js +41 -0
- package/serialization/types/AgentBan.d.ts +15 -0
- package/serialization/types/AgentBan.js +46 -0
- package/serialization/types/AgentCallLimits.d.ts +13 -0
- package/serialization/types/AgentCallLimits.js +44 -0
- package/serialization/types/AgentConfig.d.ts +17 -0
- package/serialization/types/AgentConfig.js +48 -0
- package/serialization/types/AgentConfigOverride.d.ts +15 -0
- package/serialization/types/AgentConfigOverride.js +46 -0
- package/serialization/types/AgentConfigOverrideConfig.d.ts +15 -0
- package/serialization/types/AgentConfigOverrideConfig.js +46 -0
- package/serialization/types/AgentMetadataResponseModel.d.ts +12 -0
- package/serialization/types/AgentMetadataResponseModel.js +43 -0
- package/serialization/types/AgentPlatformSettingsRequestModel.d.ts +27 -0
- package/serialization/types/AgentPlatformSettingsRequestModel.js +58 -0
- package/serialization/types/AgentPlatformSettingsResponseModel.d.ts +29 -0
- package/serialization/types/AgentPlatformSettingsResponseModel.js +60 -0
- package/serialization/types/AgentSimulatedChatTestResponseModel.d.ts +15 -0
- package/serialization/types/AgentSimulatedChatTestResponseModel.js +46 -0
- package/serialization/types/AgentSummaryResponseModel.d.ts +17 -0
- package/serialization/types/AgentSummaryResponseModel.js +48 -0
- package/serialization/types/AgentTransfer.d.ts +13 -0
- package/serialization/types/AgentTransfer.js +44 -0
- package/serialization/types/AgentWorkspaceOverridesInput.d.ts +15 -0
- package/serialization/types/AgentWorkspaceOverridesInput.js +46 -0
- package/serialization/types/AgentWorkspaceOverridesOutput.d.ts +15 -0
- package/serialization/types/AgentWorkspaceOverridesOutput.js +46 -0
- package/serialization/types/Alignment.d.ts +14 -0
- package/serialization/types/Alignment.js +45 -0
- package/serialization/types/AllowlistItem.d.ts +12 -0
- package/serialization/types/AllowlistItem.js +43 -0
- package/serialization/types/ArrayJsonSchemaPropertyInput.d.ts +14 -0
- package/serialization/types/ArrayJsonSchemaPropertyInput.js +46 -0
- package/serialization/types/ArrayJsonSchemaPropertyInputItems.d.ts +11 -0
- package/serialization/types/ArrayJsonSchemaPropertyInputItems.js +47 -0
- package/serialization/types/ArrayJsonSchemaPropertyOutput.d.ts +14 -0
- package/serialization/types/ArrayJsonSchemaPropertyOutput.js +46 -0
- package/serialization/types/ArrayJsonSchemaPropertyOutputItems.d.ts +11 -0
- package/serialization/types/ArrayJsonSchemaPropertyOutputItems.js +47 -0
- package/serialization/types/AsrConversationalConfig.d.ts +18 -0
- package/serialization/types/AsrConversationalConfig.js +49 -0
- package/serialization/types/AsrInputFormat.d.ts +10 -0
- package/serialization/types/AsrInputFormat.js +49 -0
- package/serialization/types/AsrProvider.d.ts +10 -0
- package/serialization/types/AsrProvider.js +41 -0
- package/serialization/types/AsrQuality.d.ts +10 -0
- package/serialization/types/AsrQuality.js +41 -0
- package/serialization/types/AudioNativeCreateProjectResponseModel.d.ts +14 -0
- package/serialization/types/AudioNativeCreateProjectResponseModel.js +45 -0
- package/serialization/types/AudioNativeEditContentResponseModel.d.ts +15 -0
- package/serialization/types/AudioNativeEditContentResponseModel.js +46 -0
- package/serialization/types/AudioNativeProjectSettingsResponseModel.d.ts +22 -0
- package/serialization/types/AudioNativeProjectSettingsResponseModel.js +53 -0
- package/serialization/types/AudioNativeProjectSettingsResponseModelStatus.d.ts +10 -0
- package/serialization/types/AudioNativeProjectSettingsResponseModelStatus.js +41 -0
- package/serialization/types/AudioOutput.d.ts +16 -0
- package/serialization/types/AudioOutput.js +47 -0
- package/serialization/types/AudioOutputMulti.d.ts +17 -0
- package/serialization/types/AudioOutputMulti.js +48 -0
- package/serialization/types/AudioWithTimestampsResponse.d.ts +15 -0
- package/serialization/types/AudioWithTimestampsResponse.js +46 -0
- package/serialization/types/AuthSettings.d.ts +15 -0
- package/serialization/types/AuthSettings.js +46 -0
- package/serialization/types/AuthorizationMethod.d.ts +10 -0
- package/serialization/types/AuthorizationMethod.js +49 -0
- package/serialization/types/BanReasonType.d.ts +10 -0
- package/serialization/types/BanReasonType.js +41 -0
- package/serialization/types/BatchCallDetailedResponse.d.ts +27 -0
- package/serialization/types/BatchCallDetailedResponse.js +58 -0
- package/serialization/types/BatchCallRecipientStatus.d.ts +10 -0
- package/serialization/types/BatchCallRecipientStatus.js +41 -0
- package/serialization/types/BatchCallResponse.d.ts +25 -0
- package/serialization/types/BatchCallResponse.js +56 -0
- package/serialization/types/BatchCallStatus.d.ts +10 -0
- package/serialization/types/BatchCallStatus.js +41 -0
- package/serialization/types/BodyAddChapterToAProjectV1ProjectsProjectIdChaptersAddPost.d.ts +13 -0
- package/serialization/types/BodyAddChapterToAProjectV1ProjectsProjectIdChaptersAddPost.js +44 -0
- package/serialization/types/BodyAddProjectV1ProjectsAddPostApplyTextNormalization.d.ts +10 -0
- package/serialization/types/BodyAddProjectV1ProjectsAddPostApplyTextNormalization.js +41 -0
- package/serialization/types/BodyAddProjectV1ProjectsAddPostFiction.d.ts +10 -0
- package/serialization/types/BodyAddProjectV1ProjectsAddPostFiction.js +41 -0
- package/serialization/types/BodyAddProjectV1ProjectsAddPostSourceType.d.ts +10 -0
- package/serialization/types/BodyAddProjectV1ProjectsAddPostSourceType.js +41 -0
- package/serialization/types/BodyAddProjectV1ProjectsAddPostTargetAudience.d.ts +10 -0
- package/serialization/types/BodyAddProjectV1ProjectsAddPostTargetAudience.js +41 -0
- package/serialization/types/BodyAddToKnowledgeBaseV1ConvaiAddToKnowledgeBasePost.d.ts +14 -0
- package/serialization/types/BodyAddToKnowledgeBaseV1ConvaiAddToKnowledgeBasePost.js +45 -0
- package/serialization/types/BodyAddToKnowledgeBaseV1ConvaiAgentsAgentIdAddToKnowledgeBasePost.d.ts +14 -0
- package/serialization/types/BodyAddToKnowledgeBaseV1ConvaiAgentsAgentIdAddToKnowledgeBasePost.js +45 -0
- package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.d.ts +23 -0
- package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePost.js +54 -0
- package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostDurationScale.d.ts +10 -0
- package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostDurationScale.js +41 -0
- package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostMode.d.ts +18 -0
- package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostMode.js +51 -0
- package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostQualityPreset.d.ts +10 -0
- package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostQualityPreset.js +41 -0
- package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSource.d.ts +13 -0
- package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSource.js +48 -0
- package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSourceItem.d.ts +18 -0
- package/serialization/types/BodyCreatePodcastV1ProjectsPodcastCreatePostSourceItem.js +51 -0
- package/serialization/types/BodyEditBasicProjectInfoV1ProjectsProjectIdPost.d.ts +18 -0
- package/serialization/types/BodyEditBasicProjectInfoV1ProjectsProjectIdPost.js +49 -0
- package/serialization/types/BodyEditChapterV1ProjectsProjectIdChaptersChapterIdPatch.d.ts +14 -0
- package/serialization/types/BodyEditChapterV1ProjectsProjectIdChaptersChapterIdPatch.js +45 -0
- package/serialization/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.d.ts +14 -0
- package/serialization/types/BodyEditProjectContentV1ProjectsProjectIdContentPost.js +45 -0
- package/serialization/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostAge.d.ts +10 -0
- package/serialization/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostAge.js +41 -0
- package/serialization/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostGender.d.ts +10 -0
- package/serialization/types/BodyGenerateARandomVoiceV1VoiceGenerationGenerateVoicePostGender.js +41 -0
- package/serialization/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.d.ts +12 -0
- package/serialization/types/BodyRetrieveVoiceSampleAudioV1VoicesPvcVoiceIdSamplesSampleIdAudioGet.js +43 -0
- package/serialization/types/BodyStreamChapterAudioV1ProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.d.ts +12 -0
- package/serialization/types/BodyStreamChapterAudioV1ProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdStreamPost.js +43 -0
- package/serialization/types/BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.d.ts +12 -0
- package/serialization/types/BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapshotIdStreamPost.js +43 -0
- package/serialization/types/BreakdownTypes.d.ts +10 -0
- package/serialization/types/BreakdownTypes.js +53 -0
- package/serialization/types/ChapterContentBlockExtendableNodeResponseModel.d.ts +11 -0
- package/serialization/types/ChapterContentBlockExtendableNodeResponseModel.js +41 -0
- package/serialization/types/ChapterContentBlockInputModel.d.ts +16 -0
- package/serialization/types/ChapterContentBlockInputModel.js +47 -0
- package/serialization/types/ChapterContentBlockInputModelSubType.d.ts +10 -0
- package/serialization/types/ChapterContentBlockInputModelSubType.js +41 -0
- package/serialization/types/ChapterContentBlockResponseModel.d.ts +14 -0
- package/serialization/types/ChapterContentBlockResponseModel.js +45 -0
- package/serialization/types/ChapterContentBlockResponseModelNodesItem.d.ts +18 -0
- package/serialization/types/ChapterContentBlockResponseModelNodesItem.js +51 -0
- package/serialization/types/ChapterContentBlockTtsNodeResponseModel.d.ts +13 -0
- package/serialization/types/ChapterContentBlockTtsNodeResponseModel.js +44 -0
- package/serialization/types/ChapterContentInputModel.d.ts +13 -0
- package/serialization/types/ChapterContentInputModel.js +44 -0
- package/serialization/types/ChapterContentParagraphTtsNodeInputModel.d.ts +14 -0
- package/serialization/types/ChapterContentParagraphTtsNodeInputModel.js +45 -0
- package/serialization/types/ChapterContentResponseModel.d.ts +13 -0
- package/serialization/types/ChapterContentResponseModel.js +44 -0
- package/serialization/types/ChapterResponse.d.ts +21 -0
- package/serialization/types/ChapterResponse.js +52 -0
- package/serialization/types/ChapterSnapshotExtendedResponseModel.d.ts +18 -0
- package/serialization/types/ChapterSnapshotExtendedResponseModel.js +49 -0
- package/serialization/types/ChapterSnapshotResponse.d.ts +16 -0
- package/serialization/types/ChapterSnapshotResponse.js +47 -0
- package/serialization/types/ChapterSnapshotsResponse.d.ts +13 -0
- package/serialization/types/ChapterSnapshotsResponse.js +44 -0
- package/serialization/types/ChapterState.d.ts +10 -0
- package/serialization/types/ChapterState.js +41 -0
- package/serialization/types/ChapterStatisticsResponse.d.ts +15 -0
- package/serialization/types/ChapterStatisticsResponse.js +46 -0
- package/serialization/types/ChapterWithContentResponseModel.d.ts +23 -0
- package/serialization/types/ChapterWithContentResponseModel.js +54 -0
- package/serialization/types/ChapterWithContentResponseModelState.d.ts +10 -0
- package/serialization/types/ChapterWithContentResponseModelState.js +41 -0
- package/serialization/types/CharacterAlignmentModel.d.ts +14 -0
- package/serialization/types/CharacterAlignmentModel.js +45 -0
- package/serialization/types/CharacterAlignmentResponseModel.d.ts +14 -0
- package/serialization/types/CharacterAlignmentResponseModel.js +45 -0
- package/serialization/types/CharacterUsageResponse.d.ts +10 -0
- package/serialization/types/CharacterUsageResponse.js +41 -0
- package/serialization/types/ClientEvent.d.ts +10 -0
- package/serialization/types/ClientEvent.js +54 -0
- package/serialization/types/ClientToolConfigInput.d.ts +19 -0
- package/serialization/types/ClientToolConfigInput.js +51 -0
- package/serialization/types/ClientToolConfigOutput.d.ts +19 -0
- package/serialization/types/ClientToolConfigOutput.js +51 -0
- package/serialization/types/CloseConnection.d.ts +12 -0
- package/serialization/types/CloseConnection.js +43 -0
- package/serialization/types/CloseContext.d.ts +13 -0
- package/serialization/types/CloseContext.js +44 -0
- package/serialization/types/CloseSocket.d.ts +12 -0
- package/serialization/types/CloseSocket.js +43 -0
- package/serialization/types/ConvAiDynamicVariable.d.ts +12 -0
- package/serialization/types/ConvAiDynamicVariable.js +43 -0
- package/serialization/types/ConvAiSecretLocator.d.ts +12 -0
- package/serialization/types/ConvAiSecretLocator.js +43 -0
- package/serialization/types/ConvAiStoredSecretDependencies.d.ts +19 -0
- package/serialization/types/ConvAiStoredSecretDependencies.js +50 -0
- package/serialization/types/ConvAiStoredSecretDependenciesAgentToolsItem.d.ts +18 -0
- package/serialization/types/ConvAiStoredSecretDependenciesAgentToolsItem.js +51 -0
- package/serialization/types/ConvAiStoredSecretDependenciesToolsItem.d.ts +18 -0
- package/serialization/types/ConvAiStoredSecretDependenciesToolsItem.js +51 -0
- package/serialization/types/ConvAiWebhooks.d.ts +12 -0
- package/serialization/types/ConvAiWebhooks.js +43 -0
- package/serialization/types/ConvAiWorkspaceStoredSecretConfig.d.ts +16 -0
- package/serialization/types/ConvAiWorkspaceStoredSecretConfig.js +47 -0
- package/serialization/types/ConversationChargingCommonModel.d.ts +16 -0
- package/serialization/types/ConversationChargingCommonModel.js +47 -0
- package/serialization/types/ConversationConfig.d.ts +15 -0
- package/serialization/types/ConversationConfig.js +46 -0
- package/serialization/types/ConversationConfigClientOverrideConfigInput.d.ts +17 -0
- package/serialization/types/ConversationConfigClientOverrideConfigInput.js +48 -0
- package/serialization/types/ConversationConfigClientOverrideConfigOutput.d.ts +17 -0
- package/serialization/types/ConversationConfigClientOverrideConfigOutput.js +48 -0
- package/serialization/types/ConversationConfigClientOverrideInput.d.ts +17 -0
- package/serialization/types/ConversationConfigClientOverrideInput.js +48 -0
- package/serialization/types/ConversationConfigClientOverrideOutput.d.ts +17 -0
- package/serialization/types/ConversationConfigClientOverrideOutput.js +48 -0
- package/serialization/types/ConversationConfigOverride.d.ts +12 -0
- package/serialization/types/ConversationConfigOverride.js +43 -0
- package/serialization/types/ConversationConfigOverrideConfig.d.ts +12 -0
- package/serialization/types/ConversationConfigOverrideConfig.js +43 -0
- package/serialization/types/ConversationDeletionSettings.d.ts +17 -0
- package/serialization/types/ConversationDeletionSettings.js +48 -0
- package/serialization/types/ConversationHistoryAnalysisCommonModel.d.ts +18 -0
- package/serialization/types/ConversationHistoryAnalysisCommonModel.js +51 -0
- package/serialization/types/ConversationHistoryBatchCallModel.d.ts +13 -0
- package/serialization/types/ConversationHistoryBatchCallModel.js +44 -0
- package/serialization/types/ConversationHistoryErrorCommonModel.d.ts +13 -0
- package/serialization/types/ConversationHistoryErrorCommonModel.js +44 -0
- package/serialization/types/ConversationHistoryEvaluationCriteriaResultCommonModel.d.ts +15 -0
- package/serialization/types/ConversationHistoryEvaluationCriteriaResultCommonModel.js +46 -0
- package/serialization/types/ConversationHistoryFeedbackCommonModel.d.ts +15 -0
- package/serialization/types/ConversationHistoryFeedbackCommonModel.js +46 -0
- package/serialization/types/ConversationHistoryMetadataCommonModel.d.ts +33 -0
- package/serialization/types/ConversationHistoryMetadataCommonModel.js +64 -0
- package/serialization/types/ConversationHistoryMetadataCommonModelPhoneCall.d.ts +18 -0
- package/serialization/types/ConversationHistoryMetadataCommonModelPhoneCall.js +51 -0
- package/serialization/types/ConversationHistoryRagUsageCommonModel.d.ts +13 -0
- package/serialization/types/ConversationHistoryRagUsageCommonModel.js +44 -0
- package/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +17 -0
- package/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.js +48 -0
- package/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +10 -0
- package/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +41 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +32 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +63 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelInputRole.d.ts +10 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelInputRole.js +41 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelInputSourceMedium.d.ts +10 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelInputSourceMedium.js +41 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +32 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +63 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutputRole.d.ts +10 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutputRole.js +41 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutputSourceMedium.d.ts +10 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutputSourceMedium.js +41 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallClientDetails.d.ts +12 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallClientDetails.js +43 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallCommonModel.d.ts +18 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallCommonModel.js +49 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.d.ts +18 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelToolDetails.js +51 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallWebhookDetails.d.ts +17 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallWebhookDetails.js +48 -0
- package/serialization/types/ConversationHistoryTranscriptToolResultCommonModel.d.ts +18 -0
- package/serialization/types/ConversationHistoryTranscriptToolResultCommonModel.js +49 -0
- package/serialization/types/ConversationHistoryTwilioPhoneCallModel.d.ts +18 -0
- package/serialization/types/ConversationHistoryTwilioPhoneCallModel.js +49 -0
- package/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +10 -0
- package/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.js +41 -0
- package/serialization/types/ConversationInitiationClientDataConfigInput.d.ts +15 -0
- package/serialization/types/ConversationInitiationClientDataConfigInput.js +46 -0
- package/serialization/types/ConversationInitiationClientDataConfigOutput.d.ts +15 -0
- package/serialization/types/ConversationInitiationClientDataConfigOutput.js +46 -0
- package/serialization/types/ConversationInitiationClientDataInternal.d.ts +16 -0
- package/serialization/types/ConversationInitiationClientDataInternal.js +49 -0
- package/serialization/types/ConversationInitiationClientDataInternalDynamicVariablesValue.d.ts +10 -0
- package/serialization/types/ConversationInitiationClientDataInternalDynamicVariablesValue.js +46 -0
- package/serialization/types/ConversationInitiationClientDataRequestInput.d.ts +16 -0
- package/serialization/types/ConversationInitiationClientDataRequestInput.js +49 -0
- package/serialization/types/ConversationInitiationClientDataRequestInputDynamicVariablesValue.d.ts +10 -0
- package/serialization/types/ConversationInitiationClientDataRequestInputDynamicVariablesValue.js +46 -0
- package/serialization/types/ConversationInitiationClientDataRequestOutput.d.ts +16 -0
- package/serialization/types/ConversationInitiationClientDataRequestOutput.js +49 -0
- package/serialization/types/ConversationInitiationClientDataRequestOutputDynamicVariablesValue.d.ts +10 -0
- package/serialization/types/ConversationInitiationClientDataRequestOutputDynamicVariablesValue.js +46 -0
- package/serialization/types/ConversationInitiationClientDataWebhook.d.ts +14 -0
- package/serialization/types/ConversationInitiationClientDataWebhook.js +45 -0
- package/serialization/types/ConversationInitiationClientDataWebhookRequestHeadersValue.d.ts +11 -0
- package/serialization/types/ConversationInitiationClientDataWebhookRequestHeadersValue.js +42 -0
- package/serialization/types/ConversationSignedUrlResponseModel.d.ts +12 -0
- package/serialization/types/ConversationSignedUrlResponseModel.js +43 -0
- package/serialization/types/ConversationSimulationSpecification.d.ts +17 -0
- package/serialization/types/ConversationSimulationSpecification.js +48 -0
- package/serialization/types/ConversationSummaryResponseModel.d.ts +21 -0
- package/serialization/types/ConversationSummaryResponseModel.js +52 -0
- package/serialization/types/ConversationSummaryResponseModelStatus.d.ts +10 -0
- package/serialization/types/ConversationSummaryResponseModelStatus.js +41 -0
- package/serialization/types/ConversationTokenDbModel.d.ts +17 -0
- package/serialization/types/ConversationTokenDbModel.js +48 -0
- package/serialization/types/ConversationTokenPurpose.d.ts +10 -0
- package/serialization/types/ConversationTokenPurpose.js +41 -0
- package/serialization/types/ConversationTurnMetrics.d.ts +13 -0
- package/serialization/types/ConversationTurnMetrics.js +44 -0
- package/serialization/types/ConversationalConfig.d.ts +23 -0
- package/serialization/types/ConversationalConfig.js +54 -0
- package/serialization/types/ConvertChapterResponseModel.d.ts +12 -0
- package/serialization/types/ConvertChapterResponseModel.js +43 -0
- package/serialization/types/ConvertProjectResponseModel.d.ts +12 -0
- package/serialization/types/ConvertProjectResponseModel.js +43 -0
- package/serialization/types/CreateAgentResponseModel.d.ts +12 -0
- package/serialization/types/CreateAgentResponseModel.js +43 -0
- package/serialization/types/CreateAudioNativeProjectRequest.d.ts +10 -0
- package/serialization/types/CreateAudioNativeProjectRequest.js +41 -0
- package/serialization/types/CreatePhoneNumberResponseModel.d.ts +12 -0
- package/serialization/types/CreatePhoneNumberResponseModel.js +43 -0
- package/serialization/types/CreatePreviouslyGeneratedVoiceRequest.d.ts +16 -0
- package/serialization/types/CreatePreviouslyGeneratedVoiceRequest.js +47 -0
- package/serialization/types/CreatePronunciationDictionaryResponseModel.d.ts +12 -0
- package/serialization/types/CreatePronunciationDictionaryResponseModel.js +43 -0
- package/serialization/types/CreateSipTrunkPhoneNumberRequest.d.ts +22 -0
- package/serialization/types/CreateSipTrunkPhoneNumberRequest.js +53 -0
- package/serialization/types/CreateTranscriptRequest.d.ts +10 -0
- package/serialization/types/CreateTranscriptRequest.js +41 -0
- package/serialization/types/CreateTwilioPhoneNumberRequest.d.ts +15 -0
- package/serialization/types/CreateTwilioPhoneNumberRequest.js +46 -0
- package/serialization/types/CustomLlm.d.ts +15 -0
- package/serialization/types/CustomLlm.js +46 -0
- package/serialization/types/DashboardCallSuccessChartModel.d.ts +12 -0
- package/serialization/types/DashboardCallSuccessChartModel.js +43 -0
- package/serialization/types/DashboardCriteriaChartModel.d.ts +13 -0
- package/serialization/types/DashboardCriteriaChartModel.js +44 -0
- package/serialization/types/DashboardDataCollectionChartModel.d.ts +13 -0
- package/serialization/types/DashboardDataCollectionChartModel.js +44 -0
- package/serialization/types/DataCollectionResultCommonModel.d.ts +16 -0
- package/serialization/types/DataCollectionResultCommonModel.js +47 -0
- package/serialization/types/DeleteChapterRequest.d.ts +10 -0
- package/serialization/types/DeleteChapterRequest.js +41 -0
- package/serialization/types/DeleteChapterResponseModel.d.ts +12 -0
- package/serialization/types/DeleteChapterResponseModel.js +43 -0
- package/serialization/types/DeleteDubbingResponseModel.d.ts +12 -0
- package/serialization/types/DeleteDubbingResponseModel.js +43 -0
- package/serialization/types/DeleteHistoryItemResponse.d.ts +12 -0
- package/serialization/types/DeleteHistoryItemResponse.js +43 -0
- package/serialization/types/DeleteProjectRequest.d.ts +10 -0
- package/serialization/types/DeleteProjectRequest.js +41 -0
- package/serialization/types/DeleteProjectResponseModel.d.ts +12 -0
- package/serialization/types/DeleteProjectResponseModel.js +43 -0
- package/serialization/types/DeleteSampleResponse.d.ts +12 -0
- package/serialization/types/DeleteSampleResponse.js +43 -0
- package/serialization/types/DeleteVoiceResponseModel.d.ts +12 -0
- package/serialization/types/DeleteVoiceResponseModel.js +43 -0
- package/serialization/types/DeleteVoiceSampleResponseModel.d.ts +12 -0
- package/serialization/types/DeleteVoiceSampleResponseModel.js +43 -0
- package/serialization/types/DeleteWorkspaceGroupMemberResponseModel.d.ts +12 -0
- package/serialization/types/DeleteWorkspaceGroupMemberResponseModel.js +43 -0
- package/serialization/types/DeleteWorkspaceInviteResponseModel.d.ts +12 -0
- package/serialization/types/DeleteWorkspaceInviteResponseModel.js +43 -0
- package/serialization/types/DeleteWorkspaceMemberResponseModel.d.ts +12 -0
- package/serialization/types/DeleteWorkspaceMemberResponseModel.js +43 -0
- package/serialization/types/DependentAvailableAgentIdentifier.d.ts +16 -0
- package/serialization/types/DependentAvailableAgentIdentifier.js +47 -0
- package/serialization/types/DependentAvailableAgentIdentifierAccessLevel.d.ts +10 -0
- package/serialization/types/DependentAvailableAgentIdentifierAccessLevel.js +41 -0
- package/serialization/types/DependentAvailableAgentToolIdentifier.d.ts +17 -0
- package/serialization/types/DependentAvailableAgentToolIdentifier.js +48 -0
- package/serialization/types/DependentAvailableAgentToolIdentifierAccessLevel.d.ts +10 -0
- package/serialization/types/DependentAvailableAgentToolIdentifierAccessLevel.js +41 -0
- package/serialization/types/DependentAvailableToolIdentifier.d.ts +16 -0
- package/serialization/types/DependentAvailableToolIdentifier.js +47 -0
- package/serialization/types/DependentAvailableToolIdentifierAccessLevel.d.ts +10 -0
- package/serialization/types/DependentAvailableToolIdentifierAccessLevel.js +41 -0
- package/serialization/types/DependentPhoneNumberIdentifier.d.ts +16 -0
- package/serialization/types/DependentPhoneNumberIdentifier.js +47 -0
- package/serialization/types/DependentUnknownAgentIdentifier.d.ts +11 -0
- package/serialization/types/DependentUnknownAgentIdentifier.js +41 -0
- package/serialization/types/DependentUnknownAgentToolIdentifier.d.ts +11 -0
- package/serialization/types/DependentUnknownAgentToolIdentifier.js +41 -0
- package/serialization/types/DependentUnknownToolIdentifier.d.ts +11 -0
- package/serialization/types/DependentUnknownToolIdentifier.js +41 -0
- package/serialization/types/DoDubbingResponse.d.ts +13 -0
- package/serialization/types/DoDubbingResponse.js +44 -0
- package/serialization/types/DocumentUsageModeEnum.d.ts +10 -0
- package/serialization/types/DocumentUsageModeEnum.js +41 -0
- package/serialization/types/DocxExportOptions.d.ts +16 -0
- package/serialization/types/DocxExportOptions.js +47 -0
- package/serialization/types/DubbedSegment.d.ts +17 -0
- package/serialization/types/DubbedSegment.js +48 -0
- package/serialization/types/DubbingMediaMetadata.d.ts +13 -0
- package/serialization/types/DubbingMediaMetadata.js +44 -0
- package/serialization/types/DubbingMediaReference.d.ts +18 -0
- package/serialization/types/DubbingMediaReference.js +49 -0
- package/serialization/types/DubbingMetadataResponse.d.ts +18 -0
- package/serialization/types/DubbingMetadataResponse.js +49 -0
- package/serialization/types/DubbingRenderResponseModel.d.ts +13 -0
- package/serialization/types/DubbingRenderResponseModel.js +44 -0
- package/serialization/types/DubbingResource.d.ts +25 -0
- package/serialization/types/DubbingResource.js +56 -0
- package/serialization/types/DynamicVariablesConfig.d.ts +13 -0
- package/serialization/types/DynamicVariablesConfig.js +46 -0
- package/serialization/types/DynamicVariablesConfigDynamicVariablePlaceholdersValue.d.ts +10 -0
- package/serialization/types/DynamicVariablesConfigDynamicVariablePlaceholdersValue.js +46 -0
- package/serialization/types/EditChapterResponseModel.d.ts +13 -0
- package/serialization/types/EditChapterResponseModel.js +44 -0
- package/serialization/types/EditProjectResponseModel.d.ts +13 -0
- package/serialization/types/EditProjectResponseModel.js +44 -0
- package/serialization/types/EditVoiceResponseModel.d.ts +12 -0
- package/serialization/types/EditVoiceResponseModel.js +43 -0
- package/serialization/types/EditVoiceSettingsRequest.d.ts +10 -0
- package/serialization/types/EditVoiceSettingsRequest.js +41 -0
- package/serialization/types/EditVoiceSettingsResponseModel.d.ts +12 -0
- package/serialization/types/EditVoiceSettingsResponseModel.js +43 -0
- package/serialization/types/EmbedVariant.d.ts +10 -0
- package/serialization/types/EmbedVariant.js +41 -0
- package/serialization/types/EmbeddingModelEnum.d.ts +10 -0
- package/serialization/types/EmbeddingModelEnum.js +41 -0
- package/serialization/types/EndCallToolConfig.d.ts +11 -0
- package/serialization/types/EndCallToolConfig.js +41 -0
- package/serialization/types/EvaluationSettings.d.ts +13 -0
- package/serialization/types/EvaluationSettings.js +44 -0
- package/serialization/types/EvaluationSuccessResult.d.ts +10 -0
- package/serialization/types/EvaluationSuccessResult.js +41 -0
- package/serialization/types/ExportOptions.d.ts +34 -0
- package/serialization/types/ExportOptions.js +59 -0
- package/serialization/types/ExtendedSubscriptionResponseModelBillingPeriod.d.ts +10 -0
- package/serialization/types/ExtendedSubscriptionResponseModelBillingPeriod.js +41 -0
- package/serialization/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.d.ts +10 -0
- package/serialization/types/ExtendedSubscriptionResponseModelCharacterRefreshPeriod.js +41 -0
- package/serialization/types/ExtendedSubscriptionResponseModelCurrency.d.ts +10 -0
- package/serialization/types/ExtendedSubscriptionResponseModelCurrency.js +41 -0
- package/serialization/types/ExtendedSubscriptionResponseModelStatus.d.ts +10 -0
- package/serialization/types/ExtendedSubscriptionResponseModelStatus.js +50 -0
- package/serialization/types/FeedbackItem.d.ts +19 -0
- package/serialization/types/FeedbackItem.js +50 -0
- package/serialization/types/FinalOutput.d.ts +12 -0
- package/serialization/types/FinalOutput.js +43 -0
- package/serialization/types/FinalOutputMulti.d.ts +13 -0
- package/serialization/types/FinalOutputMulti.js +44 -0
- package/serialization/types/FineTuningResponse.d.ts +29 -0
- package/serialization/types/FineTuningResponse.js +60 -0
- package/serialization/types/FineTuningResponseModelStateValue.d.ts +10 -0
- package/serialization/types/FineTuningResponseModelStateValue.js +41 -0
- package/serialization/types/FlushContext.d.ts +14 -0
- package/serialization/types/FlushContext.js +45 -0
- package/serialization/types/ForcedAlignmentCharacterResponseModel.d.ts +14 -0
- package/serialization/types/ForcedAlignmentCharacterResponseModel.js +45 -0
- package/serialization/types/ForcedAlignmentResponseModel.d.ts +15 -0
- package/serialization/types/ForcedAlignmentResponseModel.js +46 -0
- package/serialization/types/ForcedAlignmentWordResponseModel.d.ts +14 -0
- package/serialization/types/ForcedAlignmentWordResponseModel.js +45 -0
- package/serialization/types/Gender.d.ts +10 -0
- package/serialization/types/Gender.js +41 -0
- package/serialization/types/GenerateVoiceRequest.d.ts +18 -0
- package/serialization/types/GenerateVoiceRequest.js +49 -0
- package/serialization/types/GenerationConfig.d.ts +12 -0
- package/serialization/types/GenerationConfig.js +43 -0
- package/serialization/types/GetAgentEmbedResponseModel.d.ts +14 -0
- package/serialization/types/GetAgentEmbedResponseModel.js +45 -0
- package/serialization/types/GetAgentKnowledgebaseSizeResponseModel.d.ts +12 -0
- package/serialization/types/GetAgentKnowledgebaseSizeResponseModel.js +43 -0
- package/serialization/types/GetAgentLinkResponseModel.d.ts +14 -0
- package/serialization/types/GetAgentLinkResponseModel.js +45 -0
- package/serialization/types/GetAgentResponseModel.d.ts +24 -0
- package/serialization/types/GetAgentResponseModel.js +55 -0
- package/serialization/types/GetAgentResponseModelPhoneNumbersItem.d.ts +18 -0
- package/serialization/types/GetAgentResponseModelPhoneNumbersItem.js +51 -0
- package/serialization/types/GetAgentsPageResponseModel.d.ts +15 -0
- package/serialization/types/GetAgentsPageResponseModel.js +46 -0
- package/serialization/types/GetAudioNativeProjectSettingsResponseModel.d.ts +15 -0
- package/serialization/types/GetAudioNativeProjectSettingsResponseModel.js +46 -0
- package/serialization/types/GetChapterRequest.d.ts +10 -0
- package/serialization/types/GetChapterRequest.js +41 -0
- package/serialization/types/GetChapterSnapshotsRequest.d.ts +10 -0
- package/serialization/types/GetChapterSnapshotsRequest.js +41 -0
- package/serialization/types/GetChaptersRequest.d.ts +10 -0
- package/serialization/types/GetChaptersRequest.js +41 -0
- package/serialization/types/GetChaptersResponse.d.ts +13 -0
- package/serialization/types/GetChaptersResponse.js +44 -0
- package/serialization/types/GetConvAiDashboardSettingsResponseModel.d.ts +13 -0
- package/serialization/types/GetConvAiDashboardSettingsResponseModel.js +44 -0
- package/serialization/types/GetConvAiDashboardSettingsResponseModelChartsItem.d.ts +22 -0
- package/serialization/types/GetConvAiDashboardSettingsResponseModelChartsItem.js +53 -0
- package/serialization/types/GetConvAiSettingsResponseModel.d.ts +17 -0
- package/serialization/types/GetConvAiSettingsResponseModel.js +48 -0
- package/serialization/types/GetConversationResponseModel.d.ts +26 -0
- package/serialization/types/GetConversationResponseModel.js +57 -0
- package/serialization/types/GetConversationResponseModelStatus.d.ts +10 -0
- package/serialization/types/GetConversationResponseModelStatus.js +41 -0
- package/serialization/types/GetConversationsPageResponseModel.d.ts +15 -0
- package/serialization/types/GetConversationsPageResponseModel.js +46 -0
- package/serialization/types/GetKnowledgeBaseDependentAgentsResponseModel.d.ts +15 -0
- package/serialization/types/GetKnowledgeBaseDependentAgentsResponseModel.js +46 -0
- package/serialization/types/GetKnowledgeBaseDependentAgentsResponseModelAgentsItem.d.ts +18 -0
- package/serialization/types/GetKnowledgeBaseDependentAgentsResponseModelAgentsItem.js +51 -0
- package/serialization/types/GetKnowledgeBaseFileResponseModel.d.ts +19 -0
- package/serialization/types/GetKnowledgeBaseFileResponseModel.js +50 -0
- package/serialization/types/GetKnowledgeBaseListResponseModel.d.ts +15 -0
- package/serialization/types/GetKnowledgeBaseListResponseModel.js +46 -0
- package/serialization/types/GetKnowledgeBaseListResponseModelDocumentsItem.d.ts +22 -0
- package/serialization/types/GetKnowledgeBaseListResponseModelDocumentsItem.js +53 -0
- package/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +20 -0
- package/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.js +51 -0
- package/serialization/types/GetKnowledgeBaseSummaryFileResponseModelDependentAgentsItem.d.ts +18 -0
- package/serialization/types/GetKnowledgeBaseSummaryFileResponseModelDependentAgentsItem.js +51 -0
- package/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +20 -0
- package/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.js +51 -0
- package/serialization/types/GetKnowledgeBaseSummaryTextResponseModelDependentAgentsItem.d.ts +18 -0
- package/serialization/types/GetKnowledgeBaseSummaryTextResponseModelDependentAgentsItem.js +51 -0
- package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +21 -0
- package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.js +52 -0
- package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModelDependentAgentsItem.d.ts +18 -0
- package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModelDependentAgentsItem.js +51 -0
- package/serialization/types/GetKnowledgeBaseTextResponseModel.d.ts +19 -0
- package/serialization/types/GetKnowledgeBaseTextResponseModel.js +50 -0
- package/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +20 -0
- package/serialization/types/GetKnowledgeBaseUrlResponseModel.js +51 -0
- package/serialization/types/GetLibraryVoicesResponse.d.ts +15 -0
- package/serialization/types/GetLibraryVoicesResponse.js +46 -0
- package/serialization/types/GetPhoneNumberResponse.d.ts +10 -0
- package/serialization/types/GetPhoneNumberResponse.js +41 -0
- package/serialization/types/GetPhoneNumberSipTrunkResponseModel.d.ts +18 -0
- package/serialization/types/GetPhoneNumberSipTrunkResponseModel.js +49 -0
- package/serialization/types/GetPhoneNumberTwilioResponseModel.d.ts +16 -0
- package/serialization/types/GetPhoneNumberTwilioResponseModel.js +47 -0
- package/serialization/types/GetProjectRequest.d.ts +10 -0
- package/serialization/types/GetProjectRequest.js +41 -0
- package/serialization/types/GetProjectsRequest.d.ts +10 -0
- package/serialization/types/GetProjectsRequest.js +41 -0
- package/serialization/types/GetProjectsResponse.d.ts +13 -0
- package/serialization/types/GetProjectsResponse.js +44 -0
- package/serialization/types/GetPronunciationDictionariesMetadataResponseModel.d.ts +15 -0
- package/serialization/types/GetPronunciationDictionariesMetadataResponseModel.js +46 -0
- package/serialization/types/GetPronunciationDictionariesResponse.d.ts +10 -0
- package/serialization/types/GetPronunciationDictionariesResponse.js +41 -0
- package/serialization/types/GetPronunciationDictionaryMetadataResponse.d.ts +21 -0
- package/serialization/types/GetPronunciationDictionaryMetadataResponse.js +52 -0
- package/serialization/types/GetPronunciationDictionaryMetadataResponseModelPermissionOnResource.d.ts +10 -0
- package/serialization/types/GetPronunciationDictionaryMetadataResponseModelPermissionOnResource.js +41 -0
- package/serialization/types/GetPronunciationDictionaryResponse.d.ts +10 -0
- package/serialization/types/GetPronunciationDictionaryResponse.js +41 -0
- package/serialization/types/GetSpeechHistoryResponse.d.ts +15 -0
- package/serialization/types/GetSpeechHistoryResponse.js +46 -0
- package/serialization/types/GetVoicesResponse.d.ts +13 -0
- package/serialization/types/GetVoicesResponse.js +44 -0
- package/serialization/types/GetVoicesV2Response.d.ts +16 -0
- package/serialization/types/GetVoicesV2Response.js +47 -0
- package/serialization/types/GetWorkspaceSecretsResponseModel.d.ts +13 -0
- package/serialization/types/GetWorkspaceSecretsResponseModel.js +44 -0
- package/serialization/types/HistoryAlignmentResponseModel.d.ts +14 -0
- package/serialization/types/HistoryAlignmentResponseModel.js +45 -0
- package/serialization/types/HistoryAlignmentsResponseModel.d.ts +14 -0
- package/serialization/types/HistoryAlignmentsResponseModel.js +45 -0
- package/serialization/types/HistoryItemResponse.d.ts +13 -0
- package/serialization/types/HistoryItemResponse.js +44 -0
- package/serialization/types/HtmlExportOptions.d.ts +16 -0
- package/serialization/types/HtmlExportOptions.js +47 -0
- package/serialization/types/HttpValidationError.d.ts +13 -0
- package/serialization/types/HttpValidationError.js +44 -0
- package/serialization/types/ImageAvatar.d.ts +12 -0
- package/serialization/types/ImageAvatar.js +43 -0
- package/serialization/types/InitialiseContext.d.ts +21 -0
- package/serialization/types/InitialiseContext.js +52 -0
- package/serialization/types/InitializeConnection.d.ts +20 -0
- package/serialization/types/InitializeConnection.js +51 -0
- package/serialization/types/InitializeConnectionMulti.d.ts +21 -0
- package/serialization/types/InitializeConnectionMulti.js +52 -0
- package/serialization/types/InvoiceResponse.d.ts +14 -0
- package/serialization/types/InvoiceResponse.js +45 -0
- package/serialization/types/KeepContextAlive.d.ts +13 -0
- package/serialization/types/KeepContextAlive.js +44 -0
- package/serialization/types/KnowledgeBaseDocumentChunkResponseModel.d.ts +14 -0
- package/serialization/types/KnowledgeBaseDocumentChunkResponseModel.js +45 -0
- package/serialization/types/KnowledgeBaseDocumentMetadataResponseModel.d.ts +14 -0
- package/serialization/types/KnowledgeBaseDocumentMetadataResponseModel.js +45 -0
- package/serialization/types/KnowledgeBaseDocumentType.d.ts +10 -0
- package/serialization/types/KnowledgeBaseDocumentType.js +41 -0
- package/serialization/types/KnowledgeBaseLocator.d.ts +17 -0
- package/serialization/types/KnowledgeBaseLocator.js +48 -0
- package/serialization/types/LanguageAddedResponse.d.ts +12 -0
- package/serialization/types/LanguageAddedResponse.js +43 -0
- package/serialization/types/LanguageDetectionToolConfig.d.ts +11 -0
- package/serialization/types/LanguageDetectionToolConfig.js +41 -0
- package/serialization/types/LanguagePresetInput.d.ts +15 -0
- package/serialization/types/LanguagePresetInput.js +46 -0
- package/serialization/types/LanguagePresetOutput.d.ts +15 -0
- package/serialization/types/LanguagePresetOutput.js +46 -0
- package/serialization/types/LanguagePresetTranslation.d.ts +13 -0
- package/serialization/types/LanguagePresetTranslation.js +44 -0
- package/serialization/types/LanguageResponse.d.ts +13 -0
- package/serialization/types/LanguageResponse.js +44 -0
- package/serialization/types/LibraryVoiceResponse.d.ts +44 -0
- package/serialization/types/LibraryVoiceResponse.js +75 -0
- package/serialization/types/LibraryVoiceResponseModelCategory.d.ts +10 -0
- package/serialization/types/LibraryVoiceResponseModelCategory.js +41 -0
- package/serialization/types/LiteralJsonSchemaProperty.d.ts +17 -0
- package/serialization/types/LiteralJsonSchemaProperty.js +48 -0
- package/serialization/types/LiteralJsonSchemaPropertyConstantValue.d.ts +10 -0
- package/serialization/types/LiteralJsonSchemaPropertyConstantValue.js +46 -0
- package/serialization/types/LiteralJsonSchemaPropertyType.d.ts +10 -0
- package/serialization/types/LiteralJsonSchemaPropertyType.js +41 -0
- package/serialization/types/Llm.d.ts +10 -0
- package/serialization/types/Llm.js +62 -0
- package/serialization/types/LlmCategoryUsage.d.ts +14 -0
- package/serialization/types/LlmCategoryUsage.js +45 -0
- package/serialization/types/LlmInputOutputTokensUsage.d.ts +16 -0
- package/serialization/types/LlmInputOutputTokensUsage.js +47 -0
- package/serialization/types/LlmTokensCategoryUsage.d.ts +13 -0
- package/serialization/types/LlmTokensCategoryUsage.js +44 -0
- package/serialization/types/LlmUsageCalculatorLlmResponseModel.d.ts +14 -0
- package/serialization/types/LlmUsageCalculatorLlmResponseModel.js +45 -0
- package/serialization/types/LlmUsageCalculatorResponseModel.d.ts +13 -0
- package/serialization/types/LlmUsageCalculatorResponseModel.js +44 -0
- package/serialization/types/LlmUsageInput.d.ts +13 -0
- package/serialization/types/LlmUsageInput.js +44 -0
- package/serialization/types/LlmUsageOutput.d.ts +13 -0
- package/serialization/types/LlmUsageOutput.js +44 -0
- package/serialization/types/ManualVerificationFileResponse.d.ts +16 -0
- package/serialization/types/ManualVerificationFileResponse.js +47 -0
- package/serialization/types/ManualVerificationResponse.d.ts +15 -0
- package/serialization/types/ManualVerificationResponse.js +46 -0
- package/serialization/types/McpToolConfigInput.d.ts +18 -0
- package/serialization/types/McpToolConfigInput.js +50 -0
- package/serialization/types/McpToolConfigOutput.d.ts +18 -0
- package/serialization/types/McpToolConfigOutput.js +50 -0
- package/serialization/types/MetricRecord.d.ts +12 -0
- package/serialization/types/MetricRecord.js +43 -0
- package/serialization/types/MetricType.d.ts +10 -0
- package/serialization/types/MetricType.js +41 -0
- package/serialization/types/Model.d.ts +31 -0
- package/serialization/types/Model.js +62 -0
- package/serialization/types/ModelRatesResponseModel.d.ts +12 -0
- package/serialization/types/ModelRatesResponseModel.js +43 -0
- package/serialization/types/ModelResponseModelConcurrencyGroup.d.ts +10 -0
- package/serialization/types/ModelResponseModelConcurrencyGroup.js +41 -0
- package/serialization/types/ModerationStatusResponseModel.d.ts +22 -0
- package/serialization/types/ModerationStatusResponseModel.js +53 -0
- package/serialization/types/ModerationStatusResponseModelSafetyStatus.d.ts +10 -0
- package/serialization/types/ModerationStatusResponseModelSafetyStatus.js +41 -0
- package/serialization/types/ModerationStatusResponseModelWarningStatus.d.ts +10 -0
- package/serialization/types/ModerationStatusResponseModelWarningStatus.js +41 -0
- package/serialization/types/NativeMcpToolConfigInput.d.ts +18 -0
- package/serialization/types/NativeMcpToolConfigInput.js +50 -0
- package/serialization/types/NativeMcpToolConfigOutput.d.ts +18 -0
- package/serialization/types/NativeMcpToolConfigOutput.js +50 -0
- package/serialization/types/NormalizedAlignment.d.ts +14 -0
- package/serialization/types/NormalizedAlignment.js +45 -0
- package/serialization/types/ObjectJsonSchemaPropertyInput.d.ts +15 -0
- package/serialization/types/ObjectJsonSchemaPropertyInput.js +49 -0
- package/serialization/types/ObjectJsonSchemaPropertyInputPropertiesValue.d.ts +11 -0
- package/serialization/types/ObjectJsonSchemaPropertyInputPropertiesValue.js +47 -0
- package/serialization/types/ObjectJsonSchemaPropertyOutput.d.ts +15 -0
- package/serialization/types/ObjectJsonSchemaPropertyOutput.js +49 -0
- package/serialization/types/ObjectJsonSchemaPropertyOutputPropertiesValue.d.ts +11 -0
- package/serialization/types/ObjectJsonSchemaPropertyOutputPropertiesValue.js +47 -0
- package/serialization/types/OrbAvatar.d.ts +13 -0
- package/serialization/types/OrbAvatar.js +44 -0
- package/serialization/types/OutboundCallRecipient.d.ts +15 -0
- package/serialization/types/OutboundCallRecipient.js +46 -0
- package/serialization/types/OutboundCallRecipientResponseModel.d.ts +20 -0
- package/serialization/types/OutboundCallRecipientResponseModel.js +51 -0
- package/serialization/types/OutputFormat.d.ts +10 -0
- package/serialization/types/OutputFormat.js +53 -0
- package/serialization/types/PdfExportOptions.d.ts +16 -0
- package/serialization/types/PdfExportOptions.js +47 -0
- package/serialization/types/PhoneNumberAgentInfo.d.ts +13 -0
- package/serialization/types/PhoneNumberAgentInfo.js +44 -0
- package/serialization/types/PhoneNumberTransfer.d.ts +13 -0
- package/serialization/types/PhoneNumberTransfer.js +44 -0
- package/serialization/types/PodcastBulletinMode.d.ts +13 -0
- package/serialization/types/PodcastBulletinMode.js +44 -0
- package/serialization/types/PodcastBulletinModeData.d.ts +12 -0
- package/serialization/types/PodcastBulletinModeData.js +43 -0
- package/serialization/types/PodcastConversationMode.d.ts +13 -0
- package/serialization/types/PodcastConversationMode.js +44 -0
- package/serialization/types/PodcastConversationModeData.d.ts +13 -0
- package/serialization/types/PodcastConversationModeData.js +44 -0
- package/serialization/types/PodcastProjectResponseModel.d.ts +13 -0
- package/serialization/types/PodcastProjectResponseModel.js +44 -0
- package/serialization/types/PodcastTextSource.d.ts +12 -0
- package/serialization/types/PodcastTextSource.js +43 -0
- package/serialization/types/PodcastUrlSource.d.ts +12 -0
- package/serialization/types/PodcastUrlSource.js +43 -0
- package/serialization/types/PostAgentAvatarResponseModel.d.ts +13 -0
- package/serialization/types/PostAgentAvatarResponseModel.js +44 -0
- package/serialization/types/PostWorkspaceSecretResponseModel.d.ts +14 -0
- package/serialization/types/PostWorkspaceSecretResponseModel.js +45 -0
- package/serialization/types/PrivacyConfig.d.ts +17 -0
- package/serialization/types/PrivacyConfig.js +48 -0
- package/serialization/types/ProjectCreationMetaResponseModel.d.ts +16 -0
- package/serialization/types/ProjectCreationMetaResponseModel.js +47 -0
- package/serialization/types/ProjectCreationMetaResponseModelStatus.d.ts +10 -0
- package/serialization/types/ProjectCreationMetaResponseModelStatus.js +41 -0
- package/serialization/types/ProjectCreationMetaResponseModelType.d.ts +10 -0
- package/serialization/types/ProjectCreationMetaResponseModelType.js +41 -0
- package/serialization/types/ProjectExtendedResponse.d.ts +56 -0
- package/serialization/types/ProjectExtendedResponse.js +87 -0
- package/serialization/types/ProjectExtendedResponseModelAccessLevel.d.ts +10 -0
- package/serialization/types/ProjectExtendedResponseModelAccessLevel.js +41 -0
- package/serialization/types/ProjectExtendedResponseModelApplyTextNormalization.d.ts +10 -0
- package/serialization/types/ProjectExtendedResponseModelApplyTextNormalization.js +41 -0
- package/serialization/types/ProjectExtendedResponseModelFiction.d.ts +10 -0
- package/serialization/types/ProjectExtendedResponseModelFiction.js +41 -0
- package/serialization/types/ProjectExtendedResponseModelQualityPreset.d.ts +10 -0
- package/serialization/types/ProjectExtendedResponseModelQualityPreset.js +41 -0
- package/serialization/types/ProjectExtendedResponseModelSourceType.d.ts +10 -0
- package/serialization/types/ProjectExtendedResponseModelSourceType.js +41 -0
- package/serialization/types/ProjectExtendedResponseModelTargetAudience.d.ts +10 -0
- package/serialization/types/ProjectExtendedResponseModelTargetAudience.js +41 -0
- package/serialization/types/ProjectResponse.d.ts +45 -0
- package/serialization/types/ProjectResponse.js +76 -0
- package/serialization/types/ProjectResponseModelAccessLevel.d.ts +10 -0
- package/serialization/types/ProjectResponseModelAccessLevel.js +41 -0
- package/serialization/types/ProjectResponseModelFiction.d.ts +10 -0
- package/serialization/types/ProjectResponseModelFiction.js +41 -0
- package/serialization/types/ProjectResponseModelSourceType.d.ts +10 -0
- package/serialization/types/ProjectResponseModelSourceType.js +41 -0
- package/serialization/types/ProjectResponseModelTargetAudience.d.ts +10 -0
- package/serialization/types/ProjectResponseModelTargetAudience.js +41 -0
- package/serialization/types/ProjectSnapshotExtendedResponseModel.d.ts +19 -0
- package/serialization/types/ProjectSnapshotExtendedResponseModel.js +50 -0
- package/serialization/types/ProjectSnapshotResponse.d.ts +17 -0
- package/serialization/types/ProjectSnapshotResponse.js +48 -0
- package/serialization/types/ProjectSnapshotsResponse.d.ts +13 -0
- package/serialization/types/ProjectSnapshotsResponse.js +44 -0
- package/serialization/types/ProjectState.d.ts +10 -0
- package/serialization/types/ProjectState.js +41 -0
- package/serialization/types/PromptAgent.d.ts +28 -0
- package/serialization/types/PromptAgent.js +59 -0
- package/serialization/types/PromptAgentDbModel.d.ts +29 -0
- package/serialization/types/PromptAgentDbModel.js +60 -0
- package/serialization/types/PromptAgentDbModelToolsItem.d.ts +30 -0
- package/serialization/types/PromptAgentDbModelToolsItem.js +57 -0
- package/serialization/types/PromptAgentInputToolsItem.d.ts +30 -0
- package/serialization/types/PromptAgentInputToolsItem.js +57 -0
- package/serialization/types/PromptAgentOutputToolsItem.d.ts +30 -0
- package/serialization/types/PromptAgentOutputToolsItem.js +57 -0
- package/serialization/types/PromptAgentOverride.d.ts +12 -0
- package/serialization/types/PromptAgentOverride.js +43 -0
- package/serialization/types/PromptAgentOverrideConfig.d.ts +12 -0
- package/serialization/types/PromptAgentOverrideConfig.js +43 -0
- package/serialization/types/PromptEvaluationCriteria.d.ts +16 -0
- package/serialization/types/PromptEvaluationCriteria.js +47 -0
- package/serialization/types/PronunciationDictionaryAliasRuleRequestModel.d.ts +13 -0
- package/serialization/types/PronunciationDictionaryAliasRuleRequestModel.js +44 -0
- package/serialization/types/PronunciationDictionaryLocator.d.ts +13 -0
- package/serialization/types/PronunciationDictionaryLocator.js +44 -0
- package/serialization/types/PronunciationDictionaryLocatorResponseModel.d.ts +13 -0
- package/serialization/types/PronunciationDictionaryLocatorResponseModel.js +44 -0
- package/serialization/types/PronunciationDictionaryPhonemeRuleRequestModel.d.ts +14 -0
- package/serialization/types/PronunciationDictionaryPhonemeRuleRequestModel.js +45 -0
- package/serialization/types/PronunciationDictionaryRulesResponseModel.d.ts +14 -0
- package/serialization/types/PronunciationDictionaryRulesResponseModel.js +45 -0
- package/serialization/types/PronunciationDictionaryVersionLocator.d.ts +13 -0
- package/serialization/types/PronunciationDictionaryVersionLocator.js +44 -0
- package/serialization/types/PronunciationDictionaryVersionResponseModel.d.ts +21 -0
- package/serialization/types/PronunciationDictionaryVersionResponseModel.js +52 -0
- package/serialization/types/PronunciationDictionaryVersionResponseModelPermissionOnResource.d.ts +10 -0
- package/serialization/types/PronunciationDictionaryVersionResponseModelPermissionOnResource.js +41 -0
- package/serialization/types/PydanticPronunciationDictionaryVersionLocator.d.ts +13 -0
- package/serialization/types/PydanticPronunciationDictionaryVersionLocator.js +44 -0
- package/serialization/types/QueryParamsJsonSchema.d.ts +14 -0
- package/serialization/types/QueryParamsJsonSchema.js +45 -0
- package/serialization/types/RagChunkMetadata.d.ts +14 -0
- package/serialization/types/RagChunkMetadata.js +45 -0
- package/serialization/types/RagConfig.d.ts +16 -0
- package/serialization/types/RagConfig.js +47 -0
- package/serialization/types/RagIndexResponseModel.d.ts +14 -0
- package/serialization/types/RagIndexResponseModel.js +45 -0
- package/serialization/types/RagIndexStatus.d.ts +10 -0
- package/serialization/types/RagIndexStatus.js +41 -0
- package/serialization/types/RagRetrievalInfo.d.ts +17 -0
- package/serialization/types/RagRetrievalInfo.js +48 -0
- package/serialization/types/ReaderResourceResponseModel.d.ts +14 -0
- package/serialization/types/ReaderResourceResponseModel.js +45 -0
- package/serialization/types/ReaderResourceResponseModelResourceType.d.ts +10 -0
- package/serialization/types/ReaderResourceResponseModelResourceType.js +41 -0
- package/serialization/types/RealtimeVoiceSettings.d.ts +16 -0
- package/serialization/types/RealtimeVoiceSettings.js +47 -0
- package/serialization/types/RecordingResponse.d.ts +16 -0
- package/serialization/types/RecordingResponse.js +47 -0
- package/serialization/types/RemoveMemberFromGroupRequest.d.ts +10 -0
- package/serialization/types/RemoveMemberFromGroupRequest.js +41 -0
- package/serialization/types/Render.d.ts +20 -0
- package/serialization/types/Render.js +51 -0
- package/serialization/types/RenderStatus.d.ts +10 -0
- package/serialization/types/RenderStatus.js +41 -0
- package/serialization/types/RenderType.d.ts +10 -0
- package/serialization/types/RenderType.js +41 -0
- package/serialization/types/RequestPvcManualVerificationResponseModel.d.ts +12 -0
- package/serialization/types/RequestPvcManualVerificationResponseModel.js +43 -0
- package/serialization/types/ResourceAccessInfo.d.ts +16 -0
- package/serialization/types/ResourceAccessInfo.js +47 -0
- package/serialization/types/ResourceAccessInfoRole.d.ts +10 -0
- package/serialization/types/ResourceAccessInfoRole.js +41 -0
- package/serialization/types/ResourceMetadataResponseModel.d.ts +18 -0
- package/serialization/types/ResourceMetadataResponseModel.js +49 -0
- package/serialization/types/ReviewStatus.d.ts +10 -0
- package/serialization/types/ReviewStatus.js +41 -0
- package/serialization/types/SafetyCommonModel.d.ts +14 -0
- package/serialization/types/SafetyCommonModel.js +45 -0
- package/serialization/types/SafetyEvaluation.d.ts +16 -0
- package/serialization/types/SafetyEvaluation.js +47 -0
- package/serialization/types/SafetyResponseModel.d.ts +14 -0
- package/serialization/types/SafetyResponseModel.js +45 -0
- package/serialization/types/SafetyRule.d.ts +10 -0
- package/serialization/types/SafetyRule.js +51 -0
- package/serialization/types/SecretDependencyType.d.ts +10 -0
- package/serialization/types/SecretDependencyType.js +41 -0
- package/serialization/types/SegmentCreateResponse.d.ts +13 -0
- package/serialization/types/SegmentCreateResponse.js +44 -0
- package/serialization/types/SegmentDeleteResponse.d.ts +12 -0
- package/serialization/types/SegmentDeleteResponse.js +43 -0
- package/serialization/types/SegmentDubResponse.d.ts +12 -0
- package/serialization/types/SegmentDubResponse.js +43 -0
- package/serialization/types/SegmentTranscriptionResponse.d.ts +12 -0
- package/serialization/types/SegmentTranscriptionResponse.js +43 -0
- package/serialization/types/SegmentTranslationResponse.d.ts +12 -0
- package/serialization/types/SegmentTranslationResponse.js +43 -0
- package/serialization/types/SegmentUpdateResponse.d.ts +12 -0
- package/serialization/types/SegmentUpdateResponse.js +43 -0
- package/serialization/types/SegmentedJsonExportOptions.d.ts +16 -0
- package/serialization/types/SegmentedJsonExportOptions.js +47 -0
- package/serialization/types/SendText.d.ts +18 -0
- package/serialization/types/SendText.js +49 -0
- package/serialization/types/SendTextMulti.d.ts +14 -0
- package/serialization/types/SendTextMulti.js +45 -0
- package/serialization/types/ShareOptionResponseModel.d.ts +15 -0
- package/serialization/types/ShareOptionResponseModel.js +46 -0
- package/serialization/types/ShareOptionResponseModelType.d.ts +10 -0
- package/serialization/types/ShareOptionResponseModelType.js +41 -0
- package/serialization/types/SimilarVoice.d.ts +17 -0
- package/serialization/types/SimilarVoice.js +48 -0
- package/serialization/types/SimilarVoiceCategory.d.ts +10 -0
- package/serialization/types/SimilarVoiceCategory.js +41 -0
- package/serialization/types/SimilarVoicesForSpeakerResponse.d.ts +13 -0
- package/serialization/types/SimilarVoicesForSpeakerResponse.js +44 -0
- package/serialization/types/SipMediaEncryptionEnum.d.ts +10 -0
- package/serialization/types/SipMediaEncryptionEnum.js +41 -0
- package/serialization/types/SipTrunkConfigResponseModel.d.ts +20 -0
- package/serialization/types/SipTrunkConfigResponseModel.js +51 -0
- package/serialization/types/SipTrunkCredentials.d.ts +13 -0
- package/serialization/types/SipTrunkCredentials.js +44 -0
- package/serialization/types/SipTrunkOutboundCallResponse.d.ts +15 -0
- package/serialization/types/SipTrunkOutboundCallResponse.js +46 -0
- package/serialization/types/SipTrunkTransportEnum.d.ts +10 -0
- package/serialization/types/SipTrunkTransportEnum.js +41 -0
- package/serialization/types/SpeakerAudioResponseModel.d.ts +14 -0
- package/serialization/types/SpeakerAudioResponseModel.js +45 -0
- package/serialization/types/SpeakerResponseModel.d.ts +15 -0
- package/serialization/types/SpeakerResponseModel.js +46 -0
- package/serialization/types/SpeakerSegment.d.ts +17 -0
- package/serialization/types/SpeakerSegment.js +48 -0
- package/serialization/types/SpeakerSeparationResponseModel.d.ts +18 -0
- package/serialization/types/SpeakerSeparationResponseModel.js +49 -0
- package/serialization/types/SpeakerSeparationResponseModelStatus.d.ts +10 -0
- package/serialization/types/SpeakerSeparationResponseModelStatus.js +41 -0
- package/serialization/types/SpeakerTrack.d.ts +17 -0
- package/serialization/types/SpeakerTrack.js +48 -0
- package/serialization/types/SpeakerUpdatedResponse.d.ts +12 -0
- package/serialization/types/SpeakerUpdatedResponse.js +43 -0
- package/serialization/types/SpeechHistoryItemResponse.d.ts +32 -0
- package/serialization/types/SpeechHistoryItemResponse.js +63 -0
- package/serialization/types/SpeechHistoryItemResponseModelSource.d.ts +10 -0
- package/serialization/types/SpeechHistoryItemResponseModelSource.js +41 -0
- package/serialization/types/SpeechHistoryItemResponseModelVoiceCategory.d.ts +10 -0
- package/serialization/types/SpeechHistoryItemResponseModelVoiceCategory.js +41 -0
- package/serialization/types/SpeechToTextCharacterResponseModel.d.ts +14 -0
- package/serialization/types/SpeechToTextCharacterResponseModel.js +45 -0
- package/serialization/types/SpeechToTextChunkResponseModel.d.ts +18 -0
- package/serialization/types/SpeechToTextChunkResponseModel.js +49 -0
- package/serialization/types/SpeechToTextWordResponseModel.d.ts +20 -0
- package/serialization/types/SpeechToTextWordResponseModel.js +51 -0
- package/serialization/types/SpeechToTextWordResponseModelType.d.ts +10 -0
- package/serialization/types/SpeechToTextWordResponseModelType.js +41 -0
- package/serialization/types/SrtExportOptions.d.ts +17 -0
- package/serialization/types/SrtExportOptions.js +48 -0
- package/serialization/types/StartPvcVoiceTrainingResponseModel.d.ts +12 -0
- package/serialization/types/StartPvcVoiceTrainingResponseModel.js +43 -0
- package/serialization/types/StartSpeakerSeparationResponseModel.d.ts +12 -0
- package/serialization/types/StartSpeakerSeparationResponseModel.js +43 -0
- package/serialization/types/StreamingAudioChunkWithTimestampsResponse.d.ts +15 -0
- package/serialization/types/StreamingAudioChunkWithTimestampsResponse.js +46 -0
- package/serialization/types/Subscription.d.ts +38 -0
- package/serialization/types/Subscription.js +69 -0
- package/serialization/types/SubscriptionExtrasResponseModel.d.ts +24 -0
- package/serialization/types/SubscriptionExtrasResponseModel.js +55 -0
- package/serialization/types/SubscriptionResponse.d.ts +35 -0
- package/serialization/types/SubscriptionResponse.js +66 -0
- package/serialization/types/SubscriptionResponseModelBillingPeriod.d.ts +10 -0
- package/serialization/types/SubscriptionResponseModelBillingPeriod.js +41 -0
- package/serialization/types/SubscriptionResponseModelCharacterRefreshPeriod.d.ts +10 -0
- package/serialization/types/SubscriptionResponseModelCharacterRefreshPeriod.js +41 -0
- package/serialization/types/SubscriptionResponseModelCurrency.d.ts +10 -0
- package/serialization/types/SubscriptionResponseModelCurrency.js +41 -0
- package/serialization/types/SubscriptionStatus.d.ts +10 -0
- package/serialization/types/SubscriptionStatus.js +50 -0
- package/serialization/types/SubscriptionUsageResponseModel.d.ts +19 -0
- package/serialization/types/SubscriptionUsageResponseModel.js +50 -0
- package/serialization/types/SystemToolConfigInput.d.ts +17 -0
- package/serialization/types/SystemToolConfigInput.js +48 -0
- package/serialization/types/SystemToolConfigInputParams.d.ts +26 -0
- package/serialization/types/SystemToolConfigInputParams.js +55 -0
- package/serialization/types/SystemToolConfigOutput.d.ts +17 -0
- package/serialization/types/SystemToolConfigOutput.js +48 -0
- package/serialization/types/SystemToolConfigOutputParams.d.ts +26 -0
- package/serialization/types/SystemToolConfigOutputParams.js +55 -0
- package/serialization/types/TelephonyProvider.d.ts +10 -0
- package/serialization/types/TelephonyProvider.js +41 -0
- package/serialization/types/TextToSpeechApplyTextNormalizationEnum.d.ts +10 -0
- package/serialization/types/TextToSpeechApplyTextNormalizationEnum.js +41 -0
- package/serialization/types/TextToSpeechOutputFormatEnum.d.ts +10 -0
- package/serialization/types/TextToSpeechOutputFormatEnum.js +60 -0
- package/serialization/types/TextToSpeechStreamRequest.d.ts +10 -0
- package/serialization/types/TextToSpeechStreamRequest.js +41 -0
- package/serialization/types/ToolMockConfig.d.ts +13 -0
- package/serialization/types/ToolMockConfig.js +44 -0
- package/serialization/types/TransferToAgentToolConfig.d.ts +13 -0
- package/serialization/types/TransferToAgentToolConfig.js +44 -0
- package/serialization/types/TransferToNumberToolConfig.d.ts +13 -0
- package/serialization/types/TransferToNumberToolConfig.js +44 -0
- package/serialization/types/TtsConversationalConfig.d.ts +23 -0
- package/serialization/types/TtsConversationalConfig.js +54 -0
- package/serialization/types/TtsConversationalConfigOverride.d.ts +12 -0
- package/serialization/types/TtsConversationalConfigOverride.js +43 -0
- package/serialization/types/TtsConversationalConfigOverrideConfig.d.ts +12 -0
- package/serialization/types/TtsConversationalConfigOverrideConfig.js +43 -0
- package/serialization/types/TtsConversationalModel.d.ts +10 -0
- package/serialization/types/TtsConversationalModel.js +41 -0
- package/serialization/types/TtsOptimizeStreamingLatency.d.ts +10 -0
- package/serialization/types/TtsOptimizeStreamingLatency.js +41 -0
- package/serialization/types/TtsOutputFormat.d.ts +10 -0
- package/serialization/types/TtsOutputFormat.js +49 -0
- package/serialization/types/TurnConfig.d.ts +15 -0
- package/serialization/types/TurnConfig.js +46 -0
- package/serialization/types/TurnMode.d.ts +10 -0
- package/serialization/types/TurnMode.js +41 -0
- package/serialization/types/TwilioOutboundCallResponse.d.ts +15 -0
- package/serialization/types/TwilioOutboundCallResponse.js +46 -0
- package/serialization/types/TxtExportOptions.d.ts +17 -0
- package/serialization/types/TxtExportOptions.js +48 -0
- package/serialization/types/UpdateAudioNativeProjectRequest.d.ts +10 -0
- package/serialization/types/UpdateAudioNativeProjectRequest.js +41 -0
- package/serialization/types/UpdateChapterRequest.d.ts +10 -0
- package/serialization/types/UpdateChapterRequest.js +41 -0
- package/serialization/types/UpdateProjectRequest.d.ts +10 -0
- package/serialization/types/UpdateProjectRequest.js +41 -0
- package/serialization/types/UpdatePronunciationDictionariesRequest.d.ts +14 -0
- package/serialization/types/UpdatePronunciationDictionariesRequest.js +45 -0
- package/serialization/types/UpdateWorkspaceMemberResponseModel.d.ts +12 -0
- package/serialization/types/UpdateWorkspaceMemberResponseModel.js +43 -0
- package/serialization/types/UrlAvatar.d.ts +12 -0
- package/serialization/types/UrlAvatar.js +43 -0
- package/serialization/types/UsageAggregationInterval.d.ts +10 -0
- package/serialization/types/UsageAggregationInterval.js +41 -0
- package/serialization/types/UsageCharactersResponseModel.d.ts +13 -0
- package/serialization/types/UsageCharactersResponseModel.js +44 -0
- package/serialization/types/User.d.ts +26 -0
- package/serialization/types/User.js +57 -0
- package/serialization/types/UserFeedback.d.ts +14 -0
- package/serialization/types/UserFeedback.js +45 -0
- package/serialization/types/UserFeedbackScore.d.ts +10 -0
- package/serialization/types/UserFeedbackScore.js +41 -0
- package/serialization/types/UtteranceResponseModel.d.ts +13 -0
- package/serialization/types/UtteranceResponseModel.js +44 -0
- package/serialization/types/ValidationError.d.ts +15 -0
- package/serialization/types/ValidationError.js +46 -0
- package/serialization/types/ValidationErrorLocItem.d.ts +10 -0
- package/serialization/types/ValidationErrorLocItem.js +41 -0
- package/serialization/types/VerificationAttemptResponse.d.ts +18 -0
- package/serialization/types/VerificationAttemptResponse.js +49 -0
- package/serialization/types/VerifiedVoiceLanguageResponseModel.d.ts +16 -0
- package/serialization/types/VerifiedVoiceLanguageResponseModel.js +47 -0
- package/serialization/types/VerifyPvcVoiceCaptchaResponseModel.d.ts +12 -0
- package/serialization/types/VerifyPvcVoiceCaptchaResponseModel.js +43 -0
- package/serialization/types/Voice.d.ts +39 -0
- package/serialization/types/Voice.js +70 -0
- package/serialization/types/VoiceDesignPreviewResponse.d.ts +14 -0
- package/serialization/types/VoiceDesignPreviewResponse.js +45 -0
- package/serialization/types/VoiceGenerationParameterOptionResponse.d.ts +13 -0
- package/serialization/types/VoiceGenerationParameterOptionResponse.js +44 -0
- package/serialization/types/VoiceGenerationParameterResponse.d.ts +19 -0
- package/serialization/types/VoiceGenerationParameterResponse.js +50 -0
- package/serialization/types/VoicePreviewResponseModel.d.ts +15 -0
- package/serialization/types/VoicePreviewResponseModel.js +46 -0
- package/serialization/types/VoiceResponseModelCategory.d.ts +10 -0
- package/serialization/types/VoiceResponseModelCategory.js +41 -0
- package/serialization/types/VoiceResponseModelSafetyControl.d.ts +10 -0
- package/serialization/types/VoiceResponseModelSafetyControl.js +48 -0
- package/serialization/types/VoiceSample.d.ts +24 -0
- package/serialization/types/VoiceSample.js +55 -0
- package/serialization/types/VoiceSamplePreviewResponseModel.d.ts +16 -0
- package/serialization/types/VoiceSamplePreviewResponseModel.js +47 -0
- package/serialization/types/VoiceSampleVisualWaveformResponseModel.d.ts +13 -0
- package/serialization/types/VoiceSampleVisualWaveformResponseModel.js +44 -0
- package/serialization/types/VoiceSettings.d.ts +16 -0
- package/serialization/types/VoiceSettings.js +47 -0
- package/serialization/types/VoiceSharingModerationCheckResponseModel.d.ts +20 -0
- package/serialization/types/VoiceSharingModerationCheckResponseModel.js +51 -0
- package/serialization/types/VoiceSharingResponse.d.ts +49 -0
- package/serialization/types/VoiceSharingResponse.js +80 -0
- package/serialization/types/VoiceSharingResponseModelCategory.d.ts +10 -0
- package/serialization/types/VoiceSharingResponseModelCategory.js +41 -0
- package/serialization/types/VoiceSharingState.d.ts +10 -0
- package/serialization/types/VoiceSharingState.js +41 -0
- package/serialization/types/VoiceVerificationResponse.d.ts +18 -0
- package/serialization/types/VoiceVerificationResponse.js +49 -0
- package/serialization/types/WebhookToolApiSchemaConfigInput.d.ts +21 -0
- package/serialization/types/WebhookToolApiSchemaConfigInput.js +55 -0
- package/serialization/types/WebhookToolApiSchemaConfigInputMethod.d.ts +10 -0
- package/serialization/types/WebhookToolApiSchemaConfigInputMethod.js +41 -0
- package/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +12 -0
- package/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.js +43 -0
- package/serialization/types/WebhookToolApiSchemaConfigOutput.d.ts +21 -0
- package/serialization/types/WebhookToolApiSchemaConfigOutput.js +55 -0
- package/serialization/types/WebhookToolApiSchemaConfigOutputMethod.d.ts +10 -0
- package/serialization/types/WebhookToolApiSchemaConfigOutputMethod.js +41 -0
- package/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +12 -0
- package/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.js +43 -0
- package/serialization/types/WebhookToolConfigInput.d.ts +19 -0
- package/serialization/types/WebhookToolConfigInput.js +50 -0
- package/serialization/types/WebhookToolConfigOutput.d.ts +19 -0
- package/serialization/types/WebhookToolConfigOutput.js +50 -0
- package/serialization/types/WebsocketTtsClientMessageMulti.d.ts +24 -0
- package/serialization/types/WebsocketTtsClientMessageMulti.js +55 -0
- package/serialization/types/WebsocketTtsServerMessageMulti.d.ts +18 -0
- package/serialization/types/WebsocketTtsServerMessageMulti.js +49 -0
- package/serialization/types/WidgetConfig.d.ts +44 -0
- package/serialization/types/WidgetConfig.js +75 -0
- package/serialization/types/WidgetConfigAvatar.d.ts +22 -0
- package/serialization/types/WidgetConfigAvatar.js +53 -0
- package/serialization/types/WidgetConfigResponseModel.d.ts +44 -0
- package/serialization/types/WidgetConfigResponseModel.js +75 -0
- package/serialization/types/WidgetConfigResponseModelAvatar.d.ts +22 -0
- package/serialization/types/WidgetConfigResponseModelAvatar.js +53 -0
- package/serialization/types/WidgetExpandable.d.ts +10 -0
- package/serialization/types/WidgetExpandable.js +41 -0
- package/serialization/types/WidgetFeedbackMode.d.ts +10 -0
- package/serialization/types/WidgetFeedbackMode.js +41 -0
- package/serialization/types/WorkspaceBatchCallsResponse.d.ts +15 -0
- package/serialization/types/WorkspaceBatchCallsResponse.js +46 -0
- package/serialization/types/WorkspaceGroupByNameResponseModel.d.ts +14 -0
- package/serialization/types/WorkspaceGroupByNameResponseModel.js +45 -0
- package/serialization/types/WorkspaceResourceType.d.ts +10 -0
- package/serialization/types/WorkspaceResourceType.js +56 -0
- package/serialization/types/index.d.ts +525 -0
- package/serialization/types/index.js +541 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/api/types/AgentConfigDbModel.d.ts +0 -13
- package/dist/api/types/AgentConfigDbModel.d.ts +0 -13
- /package/api/{types/AgentConfigDbModel.js → resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.js} +0 -0
- /package/{dist/api/types/AgentConfigDbModel.js → api/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.js} +0 -0
|
@@ -52,6 +52,7 @@ exports.Rules = void 0;
|
|
|
52
52
|
const environments = __importStar(require("../../../../../../environments"));
|
|
53
53
|
const core = __importStar(require("../../../../../../core"));
|
|
54
54
|
const ElevenLabs = __importStar(require("../../../../../index"));
|
|
55
|
+
const serializers = __importStar(require("../../../../../../serialization/index"));
|
|
55
56
|
const url_join_1 = __importDefault(require("url-join"));
|
|
56
57
|
const errors = __importStar(require("../../../../../../errors/index"));
|
|
57
58
|
class Rules {
|
|
@@ -71,7 +72,7 @@ class Rules {
|
|
|
71
72
|
* await client.pronunciationDictionaries.rules.add("21m00Tcm4TlvDq8ikWAM", {
|
|
72
73
|
* rules: [{
|
|
73
74
|
* type: "alias",
|
|
74
|
-
*
|
|
75
|
+
* stringToReplace: "Thailand",
|
|
75
76
|
* alias: "tie-land"
|
|
76
77
|
* }]
|
|
77
78
|
* })
|
|
@@ -87,24 +88,36 @@ class Rules {
|
|
|
87
88
|
method: "POST",
|
|
88
89
|
headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
|
|
89
90
|
? yield core.Supplier.get(this._options.apiKey)
|
|
90
|
-
: undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.
|
|
91
|
+
: undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.1.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.1.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
|
91
92
|
contentType: "application/json",
|
|
92
93
|
requestType: "json",
|
|
93
|
-
body: request,
|
|
94
|
-
|
|
94
|
+
body: serializers.pronunciationDictionaries.PronunciationDictionary.jsonOrThrow(request, {
|
|
95
|
+
unrecognizedObjectKeys: "strip",
|
|
96
|
+
}),
|
|
97
|
+
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
|
|
95
98
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
96
99
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
97
100
|
});
|
|
98
101
|
if (_response.ok) {
|
|
99
102
|
return {
|
|
100
|
-
data: _response.body,
|
|
103
|
+
data: serializers.PronunciationDictionaryRulesResponseModel.parseOrThrow(_response.body, {
|
|
104
|
+
unrecognizedObjectKeys: "passthrough",
|
|
105
|
+
allowUnrecognizedUnionMembers: true,
|
|
106
|
+
allowUnrecognizedEnumValues: true,
|
|
107
|
+
breadcrumbsPrefix: ["response"],
|
|
108
|
+
}),
|
|
101
109
|
rawResponse: _response.rawResponse,
|
|
102
110
|
};
|
|
103
111
|
}
|
|
104
112
|
if (_response.error.reason === "status-code") {
|
|
105
113
|
switch (_response.error.statusCode) {
|
|
106
114
|
case 422:
|
|
107
|
-
throw new ElevenLabs.UnprocessableEntityError(_response.error.body,
|
|
115
|
+
throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
|
|
116
|
+
unrecognizedObjectKeys: "passthrough",
|
|
117
|
+
allowUnrecognizedUnionMembers: true,
|
|
118
|
+
allowUnrecognizedEnumValues: true,
|
|
119
|
+
breadcrumbsPrefix: ["response"],
|
|
120
|
+
}), _response.rawResponse);
|
|
108
121
|
default:
|
|
109
122
|
throw new errors.ElevenLabsError({
|
|
110
123
|
statusCode: _response.error.statusCode,
|
|
@@ -141,7 +154,7 @@ class Rules {
|
|
|
141
154
|
*
|
|
142
155
|
* @example
|
|
143
156
|
* await client.pronunciationDictionaries.rules.remove("21m00Tcm4TlvDq8ikWAM", {
|
|
144
|
-
*
|
|
157
|
+
* ruleStrings: ["rule_strings"]
|
|
145
158
|
* })
|
|
146
159
|
*/
|
|
147
160
|
remove(pronunciationDictionaryId, request, requestOptions) {
|
|
@@ -155,24 +168,36 @@ class Rules {
|
|
|
155
168
|
method: "POST",
|
|
156
169
|
headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
|
|
157
170
|
? yield core.Supplier.get(this._options.apiKey)
|
|
158
|
-
: undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.
|
|
171
|
+
: undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.1.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.1.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
|
159
172
|
contentType: "application/json",
|
|
160
173
|
requestType: "json",
|
|
161
|
-
body: request,
|
|
162
|
-
|
|
174
|
+
body: serializers.pronunciationDictionaries.RemovePronunciationDictionaryRulesRequest.jsonOrThrow(request, {
|
|
175
|
+
unrecognizedObjectKeys: "strip",
|
|
176
|
+
}),
|
|
177
|
+
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
|
|
163
178
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
164
179
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
165
180
|
});
|
|
166
181
|
if (_response.ok) {
|
|
167
182
|
return {
|
|
168
|
-
data: _response.body,
|
|
183
|
+
data: serializers.PronunciationDictionaryRulesResponseModel.parseOrThrow(_response.body, {
|
|
184
|
+
unrecognizedObjectKeys: "passthrough",
|
|
185
|
+
allowUnrecognizedUnionMembers: true,
|
|
186
|
+
allowUnrecognizedEnumValues: true,
|
|
187
|
+
breadcrumbsPrefix: ["response"],
|
|
188
|
+
}),
|
|
169
189
|
rawResponse: _response.rawResponse,
|
|
170
190
|
};
|
|
171
191
|
}
|
|
172
192
|
if (_response.error.reason === "status-code") {
|
|
173
193
|
switch (_response.error.statusCode) {
|
|
174
194
|
case 422:
|
|
175
|
-
throw new ElevenLabs.UnprocessableEntityError(_response.error.body,
|
|
195
|
+
throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
|
|
196
|
+
unrecognizedObjectKeys: "passthrough",
|
|
197
|
+
allowUnrecognizedUnionMembers: true,
|
|
198
|
+
allowUnrecognizedEnumValues: true,
|
|
199
|
+
breadcrumbsPrefix: ["response"],
|
|
200
|
+
}), _response.rawResponse);
|
|
176
201
|
default:
|
|
177
202
|
throw new errors.ElevenLabsError({
|
|
178
203
|
statusCode: _response.error.statusCode,
|
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* @example
|
|
6
6
|
* {
|
|
7
|
-
*
|
|
7
|
+
* ruleStrings: ["rule_strings"]
|
|
8
8
|
* }
|
|
9
9
|
*/
|
|
10
10
|
export interface RemovePronunciationDictionaryRulesRequest {
|
|
11
11
|
/** List of strings to remove from the pronunciation dictionary. */
|
|
12
|
-
|
|
12
|
+
ruleStrings: string[];
|
|
13
13
|
}
|
|
@@ -53,6 +53,7 @@ const environments = __importStar(require("../../../../environments"));
|
|
|
53
53
|
const core = __importStar(require("../../../../core"));
|
|
54
54
|
const ElevenLabs = __importStar(require("../../../index"));
|
|
55
55
|
const url_join_1 = __importDefault(require("url-join"));
|
|
56
|
+
const serializers = __importStar(require("../../../../serialization/index"));
|
|
56
57
|
const errors = __importStar(require("../../../../errors/index"));
|
|
57
58
|
/**
|
|
58
59
|
* Access to your samples. A sample is any audio file you attached to a voice. A voice can have one or more samples.
|
|
@@ -84,20 +85,33 @@ class Samples {
|
|
|
84
85
|
method: "DELETE",
|
|
85
86
|
headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
|
|
86
87
|
? yield core.Supplier.get(this._options.apiKey)
|
|
87
|
-
: undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.
|
|
88
|
+
: undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.1.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.1.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
|
88
89
|
contentType: "application/json",
|
|
89
90
|
requestType: "json",
|
|
90
|
-
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 :
|
|
91
|
+
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
|
|
91
92
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
92
93
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
93
94
|
});
|
|
94
95
|
if (_response.ok) {
|
|
95
|
-
return {
|
|
96
|
+
return {
|
|
97
|
+
data: serializers.DeleteSampleResponse.parseOrThrow(_response.body, {
|
|
98
|
+
unrecognizedObjectKeys: "passthrough",
|
|
99
|
+
allowUnrecognizedUnionMembers: true,
|
|
100
|
+
allowUnrecognizedEnumValues: true,
|
|
101
|
+
breadcrumbsPrefix: ["response"],
|
|
102
|
+
}),
|
|
103
|
+
rawResponse: _response.rawResponse,
|
|
104
|
+
};
|
|
96
105
|
}
|
|
97
106
|
if (_response.error.reason === "status-code") {
|
|
98
107
|
switch (_response.error.statusCode) {
|
|
99
108
|
case 422:
|
|
100
|
-
throw new ElevenLabs.UnprocessableEntityError(_response.error.body,
|
|
109
|
+
throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
|
|
110
|
+
unrecognizedObjectKeys: "passthrough",
|
|
111
|
+
allowUnrecognizedUnionMembers: true,
|
|
112
|
+
allowUnrecognizedEnumValues: true,
|
|
113
|
+
breadcrumbsPrefix: ["response"],
|
|
114
|
+
}), _response.rawResponse);
|
|
101
115
|
default:
|
|
102
116
|
throw new errors.ElevenLabsError({
|
|
103
117
|
statusCode: _response.error.statusCode,
|
|
@@ -52,6 +52,7 @@ exports.SpeechToSpeech = void 0;
|
|
|
52
52
|
const environments = __importStar(require("../../../../environments"));
|
|
53
53
|
const core = __importStar(require("../../../../core"));
|
|
54
54
|
const ElevenLabs = __importStar(require("../../../index"));
|
|
55
|
+
const serializers = __importStar(require("../../../../serialization/index"));
|
|
55
56
|
const url_join_1 = __importDefault(require("url-join"));
|
|
56
57
|
const errors = __importStar(require("../../../../errors/index"));
|
|
57
58
|
class SpeechToSpeech {
|
|
@@ -69,31 +70,33 @@ class SpeechToSpeech {
|
|
|
69
70
|
return __awaiter(this, void 0, void 0, function* () {
|
|
70
71
|
var _a, _b;
|
|
71
72
|
const _queryParams = {};
|
|
72
|
-
if (request.
|
|
73
|
-
_queryParams["enable_logging"] = request.
|
|
73
|
+
if (request.enableLogging != null) {
|
|
74
|
+
_queryParams["enable_logging"] = request.enableLogging.toString();
|
|
74
75
|
}
|
|
75
|
-
if (request.
|
|
76
|
-
_queryParams["optimize_streaming_latency"] = request.
|
|
76
|
+
if (request.optimizeStreamingLatency != null) {
|
|
77
|
+
_queryParams["optimize_streaming_latency"] = request.optimizeStreamingLatency.toString();
|
|
77
78
|
}
|
|
78
|
-
if (request.
|
|
79
|
-
_queryParams["output_format"] = request.
|
|
79
|
+
if (request.outputFormat != null) {
|
|
80
|
+
_queryParams["output_format"] = serializers.SpeechToSpeechConvertRequestOutputFormat.jsonOrThrow(request.outputFormat, { unrecognizedObjectKeys: "strip" });
|
|
80
81
|
}
|
|
81
82
|
const _request = yield core.newFormData();
|
|
82
83
|
yield _request.appendFile("audio", request.audio);
|
|
83
|
-
if (request.
|
|
84
|
-
_request.append("model_id", request.
|
|
84
|
+
if (request.modelId != null) {
|
|
85
|
+
_request.append("model_id", request.modelId);
|
|
85
86
|
}
|
|
86
|
-
if (request.
|
|
87
|
-
_request.append("voice_settings", request.
|
|
87
|
+
if (request.voiceSettings != null) {
|
|
88
|
+
_request.append("voice_settings", request.voiceSettings);
|
|
88
89
|
}
|
|
89
90
|
if (request.seed != null) {
|
|
90
91
|
_request.append("seed", request.seed.toString());
|
|
91
92
|
}
|
|
92
|
-
if (request.
|
|
93
|
-
_request.append("remove_background_noise", request.
|
|
93
|
+
if (request.removeBackgroundNoise != null) {
|
|
94
|
+
_request.append("remove_background_noise", request.removeBackgroundNoise.toString());
|
|
94
95
|
}
|
|
95
|
-
if (request.
|
|
96
|
-
_request.append("file_format", request.
|
|
96
|
+
if (request.fileFormat != null) {
|
|
97
|
+
_request.append("file_format", serializers.SpeechToSpeechConvertRequestFileFormat.jsonOrThrow(request.fileFormat, {
|
|
98
|
+
unrecognizedObjectKeys: "strip",
|
|
99
|
+
}));
|
|
97
100
|
}
|
|
98
101
|
const _maybeEncodedRequest = yield _request.getRequest();
|
|
99
102
|
const _response = yield core.fetcher({
|
|
@@ -101,13 +104,13 @@ class SpeechToSpeech {
|
|
|
101
104
|
method: "POST",
|
|
102
105
|
headers: Object.assign(Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
|
|
103
106
|
? yield core.Supplier.get(this._options.apiKey)
|
|
104
|
-
: undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.
|
|
107
|
+
: undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.1.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.1.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, _maybeEncodedRequest.headers), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
|
105
108
|
queryParameters: _queryParams,
|
|
106
109
|
requestType: "file",
|
|
107
110
|
duplex: _maybeEncodedRequest.duplex,
|
|
108
111
|
body: _maybeEncodedRequest.body,
|
|
109
112
|
responseType: "streaming",
|
|
110
|
-
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 :
|
|
113
|
+
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
|
|
111
114
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
112
115
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
113
116
|
});
|
|
@@ -117,7 +120,12 @@ class SpeechToSpeech {
|
|
|
117
120
|
if (_response.error.reason === "status-code") {
|
|
118
121
|
switch (_response.error.statusCode) {
|
|
119
122
|
case 422:
|
|
120
|
-
throw new ElevenLabs.UnprocessableEntityError(_response.error.body,
|
|
123
|
+
throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
|
|
124
|
+
unrecognizedObjectKeys: "passthrough",
|
|
125
|
+
allowUnrecognizedUnionMembers: true,
|
|
126
|
+
allowUnrecognizedEnumValues: true,
|
|
127
|
+
breadcrumbsPrefix: ["response"],
|
|
128
|
+
}), _response.rawResponse);
|
|
121
129
|
default:
|
|
122
130
|
throw new errors.ElevenLabsError({
|
|
123
131
|
statusCode: _response.error.statusCode,
|
|
@@ -154,31 +162,33 @@ class SpeechToSpeech {
|
|
|
154
162
|
return __awaiter(this, void 0, void 0, function* () {
|
|
155
163
|
var _a, _b;
|
|
156
164
|
const _queryParams = {};
|
|
157
|
-
if (request.
|
|
158
|
-
_queryParams["enable_logging"] = request.
|
|
165
|
+
if (request.enableLogging != null) {
|
|
166
|
+
_queryParams["enable_logging"] = request.enableLogging.toString();
|
|
159
167
|
}
|
|
160
|
-
if (request.
|
|
161
|
-
_queryParams["optimize_streaming_latency"] = request.
|
|
168
|
+
if (request.optimizeStreamingLatency != null) {
|
|
169
|
+
_queryParams["optimize_streaming_latency"] = request.optimizeStreamingLatency.toString();
|
|
162
170
|
}
|
|
163
|
-
if (request.
|
|
164
|
-
_queryParams["output_format"] = request.
|
|
171
|
+
if (request.outputFormat != null) {
|
|
172
|
+
_queryParams["output_format"] = serializers.SpeechToSpeechStreamRequestOutputFormat.jsonOrThrow(request.outputFormat, { unrecognizedObjectKeys: "strip" });
|
|
165
173
|
}
|
|
166
174
|
const _request = yield core.newFormData();
|
|
167
175
|
yield _request.appendFile("audio", request.audio);
|
|
168
|
-
if (request.
|
|
169
|
-
_request.append("model_id", request.
|
|
176
|
+
if (request.modelId != null) {
|
|
177
|
+
_request.append("model_id", request.modelId);
|
|
170
178
|
}
|
|
171
|
-
if (request.
|
|
172
|
-
_request.append("voice_settings", request.
|
|
179
|
+
if (request.voiceSettings != null) {
|
|
180
|
+
_request.append("voice_settings", request.voiceSettings);
|
|
173
181
|
}
|
|
174
182
|
if (request.seed != null) {
|
|
175
183
|
_request.append("seed", request.seed.toString());
|
|
176
184
|
}
|
|
177
|
-
if (request.
|
|
178
|
-
_request.append("remove_background_noise", request.
|
|
185
|
+
if (request.removeBackgroundNoise != null) {
|
|
186
|
+
_request.append("remove_background_noise", request.removeBackgroundNoise.toString());
|
|
179
187
|
}
|
|
180
|
-
if (request.
|
|
181
|
-
_request.append("file_format", request.
|
|
188
|
+
if (request.fileFormat != null) {
|
|
189
|
+
_request.append("file_format", serializers.SpeechToSpeechStreamRequestFileFormat.jsonOrThrow(request.fileFormat, {
|
|
190
|
+
unrecognizedObjectKeys: "strip",
|
|
191
|
+
}));
|
|
182
192
|
}
|
|
183
193
|
const _maybeEncodedRequest = yield _request.getRequest();
|
|
184
194
|
const _response = yield core.fetcher({
|
|
@@ -186,13 +196,13 @@ class SpeechToSpeech {
|
|
|
186
196
|
method: "POST",
|
|
187
197
|
headers: Object.assign(Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
|
|
188
198
|
? yield core.Supplier.get(this._options.apiKey)
|
|
189
|
-
: undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.
|
|
199
|
+
: undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.1.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.1.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, _maybeEncodedRequest.headers), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
|
190
200
|
queryParameters: _queryParams,
|
|
191
201
|
requestType: "file",
|
|
192
202
|
duplex: _maybeEncodedRequest.duplex,
|
|
193
203
|
body: _maybeEncodedRequest.body,
|
|
194
204
|
responseType: "streaming",
|
|
195
|
-
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 :
|
|
205
|
+
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
|
|
196
206
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
197
207
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
198
208
|
});
|
|
@@ -202,7 +212,12 @@ class SpeechToSpeech {
|
|
|
202
212
|
if (_response.error.reason === "status-code") {
|
|
203
213
|
switch (_response.error.statusCode) {
|
|
204
214
|
case 422:
|
|
205
|
-
throw new ElevenLabs.UnprocessableEntityError(_response.error.body,
|
|
215
|
+
throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
|
|
216
|
+
unrecognizedObjectKeys: "passthrough",
|
|
217
|
+
allowUnrecognizedUnionMembers: true,
|
|
218
|
+
allowUnrecognizedEnumValues: true,
|
|
219
|
+
breadcrumbsPrefix: ["response"],
|
|
220
|
+
}), _response.rawResponse);
|
|
206
221
|
default:
|
|
207
222
|
throw new errors.ElevenLabsError({
|
|
208
223
|
statusCode: _response.error.statusCode,
|
|
@@ -7,15 +7,15 @@ import * as ElevenLabs from "../../../../index";
|
|
|
7
7
|
* @example
|
|
8
8
|
* {
|
|
9
9
|
* audio: fs.createReadStream("/path/to/your/file"),
|
|
10
|
-
*
|
|
11
|
-
*
|
|
10
|
+
* outputFormat: "mp3_44100_128",
|
|
11
|
+
* modelId: "eleven_multilingual_sts_v2"
|
|
12
12
|
* }
|
|
13
13
|
*/
|
|
14
14
|
export interface BodySpeechToSpeechStreamingV1SpeechToSpeechVoiceIdStreamPost {
|
|
15
15
|
/**
|
|
16
16
|
* When enable_logging is set to false zero retention mode will be used for the request. This will mean history features are unavailable for this request, including request stitching. Zero retention mode may only be used by enterprise customers.
|
|
17
17
|
*/
|
|
18
|
-
|
|
18
|
+
enableLogging?: boolean;
|
|
19
19
|
/**
|
|
20
20
|
* You can turn on latency optimizations at some cost of quality. The best possible final latency varies by model. Possible values:
|
|
21
21
|
* 0 - default mode (no latency optimizations)
|
|
@@ -26,20 +26,20 @@ export interface BodySpeechToSpeechStreamingV1SpeechToSpeechVoiceIdStreamPost {
|
|
|
26
26
|
*
|
|
27
27
|
* Defaults to None.
|
|
28
28
|
*/
|
|
29
|
-
|
|
29
|
+
optimizeStreamingLatency?: number;
|
|
30
30
|
/**
|
|
31
31
|
* Output format of the generated audio. Formatted as codec_sample_rate_bitrate. So an mp3 with 22.05kHz sample rate at 32kbs is represented as mp3_22050_32. MP3 with 192kbps bitrate requires you to be subscribed to Creator tier or above. PCM with 44.1kHz sample rate requires you to be subscribed to Pro tier or above. Note that the μ-law format (sometimes written mu-law, often approximated as u-law) is commonly used for Twilio audio inputs.
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
outputFormat?: ElevenLabs.SpeechToSpeechStreamRequestOutputFormat;
|
|
34
34
|
audio: File | fs.ReadStream | Blob;
|
|
35
35
|
/** Identifier of the model that will be used, you can query them using GET /v1/models. The model needs to have support for speech to speech, you can check this using the can_do_voice_conversion property. */
|
|
36
|
-
|
|
36
|
+
modelId?: string;
|
|
37
37
|
/** Voice settings overriding stored settings for the given voice. They are applied only on the given request. Needs to be send as a JSON encoded string. */
|
|
38
|
-
|
|
38
|
+
voiceSettings?: string;
|
|
39
39
|
/** If specified, our system will make a best effort to sample deterministically, such that repeated requests with the same seed and parameters should return the same result. Determinism is not guaranteed. Must be integer between 0 and 4294967295. */
|
|
40
40
|
seed?: number;
|
|
41
41
|
/** If set, will remove the background noise from your audio input using our audio isolation model. Only applies to Voice Changer. */
|
|
42
|
-
|
|
42
|
+
removeBackgroundNoise?: boolean;
|
|
43
43
|
/** The format of input audio. Options are 'pcm_s16le_16' or 'other' For `pcm_s16le_16`, the input audio must be 16-bit PCM at a 16kHz sample rate, single channel (mono), and little-endian byte order. Latency will be lower than with passing an encoded waveform. */
|
|
44
|
-
|
|
44
|
+
fileFormat?: ElevenLabs.SpeechToSpeechStreamRequestFileFormat;
|
|
45
45
|
}
|
|
@@ -7,15 +7,15 @@ import * as ElevenLabs from "../../../../index";
|
|
|
7
7
|
* @example
|
|
8
8
|
* {
|
|
9
9
|
* audio: fs.createReadStream("/path/to/your/file"),
|
|
10
|
-
*
|
|
11
|
-
*
|
|
10
|
+
* outputFormat: "mp3_44100_128",
|
|
11
|
+
* modelId: "eleven_multilingual_sts_v2"
|
|
12
12
|
* }
|
|
13
13
|
*/
|
|
14
14
|
export interface BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost {
|
|
15
15
|
/**
|
|
16
16
|
* When enable_logging is set to false zero retention mode will be used for the request. This will mean history features are unavailable for this request, including request stitching. Zero retention mode may only be used by enterprise customers.
|
|
17
17
|
*/
|
|
18
|
-
|
|
18
|
+
enableLogging?: boolean;
|
|
19
19
|
/**
|
|
20
20
|
* You can turn on latency optimizations at some cost of quality. The best possible final latency varies by model. Possible values:
|
|
21
21
|
* 0 - default mode (no latency optimizations)
|
|
@@ -26,20 +26,20 @@ export interface BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost {
|
|
|
26
26
|
*
|
|
27
27
|
* Defaults to None.
|
|
28
28
|
*/
|
|
29
|
-
|
|
29
|
+
optimizeStreamingLatency?: number;
|
|
30
30
|
/**
|
|
31
31
|
* Output format of the generated audio. Formatted as codec_sample_rate_bitrate. So an mp3 with 22.05kHz sample rate at 32kbs is represented as mp3_22050_32. MP3 with 192kbps bitrate requires you to be subscribed to Creator tier or above. PCM with 44.1kHz sample rate requires you to be subscribed to Pro tier or above. Note that the μ-law format (sometimes written mu-law, often approximated as u-law) is commonly used for Twilio audio inputs.
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
outputFormat?: ElevenLabs.SpeechToSpeechConvertRequestOutputFormat;
|
|
34
34
|
audio: File | fs.ReadStream | Blob;
|
|
35
35
|
/** Identifier of the model that will be used, you can query them using GET /v1/models. The model needs to have support for speech to speech, you can check this using the can_do_voice_conversion property. */
|
|
36
|
-
|
|
36
|
+
modelId?: string;
|
|
37
37
|
/** Voice settings overriding stored settings for the given voice. They are applied only on the given request. Needs to be send as a JSON encoded string. */
|
|
38
|
-
|
|
38
|
+
voiceSettings?: string;
|
|
39
39
|
/** If specified, our system will make a best effort to sample deterministically, such that repeated requests with the same seed and parameters should return the same result. Determinism is not guaranteed. Must be integer between 0 and 4294967295. */
|
|
40
40
|
seed?: number;
|
|
41
41
|
/** If set, will remove the background noise from your audio input using our audio isolation model. Only applies to Voice Changer. */
|
|
42
|
-
|
|
42
|
+
removeBackgroundNoise?: boolean;
|
|
43
43
|
/** The format of input audio. Options are 'pcm_s16le_16' or 'other' For `pcm_s16le_16`, the input audio must be 16-bit PCM at a 16kHz sample rate, single channel (mono), and little-endian byte order. Latency will be lower than with passing an encoded waveform. */
|
|
44
|
-
|
|
44
|
+
fileFormat?: ElevenLabs.SpeechToSpeechConvertRequestFileFormat;
|
|
45
45
|
}
|
|
@@ -77,29 +77,29 @@ class SpeechToText {
|
|
|
77
77
|
return __awaiter(this, void 0, void 0, function* () {
|
|
78
78
|
var _a, _b;
|
|
79
79
|
const _queryParams = {};
|
|
80
|
-
if (request.
|
|
81
|
-
_queryParams["enable_logging"] = request.
|
|
80
|
+
if (request.enableLogging != null) {
|
|
81
|
+
_queryParams["enable_logging"] = request.enableLogging.toString();
|
|
82
82
|
}
|
|
83
83
|
const _request = yield core.newFormData();
|
|
84
|
-
_request.append("model_id", request.
|
|
84
|
+
_request.append("model_id", request.modelId);
|
|
85
85
|
yield _request.appendFile("file", request.file);
|
|
86
|
-
if (request.
|
|
87
|
-
_request.append("language_code", request.
|
|
86
|
+
if (request.languageCode != null) {
|
|
87
|
+
_request.append("language_code", request.languageCode);
|
|
88
88
|
}
|
|
89
|
-
if (request.
|
|
90
|
-
_request.append("tag_audio_events", request.
|
|
89
|
+
if (request.tagAudioEvents != null) {
|
|
90
|
+
_request.append("tag_audio_events", request.tagAudioEvents.toString());
|
|
91
91
|
}
|
|
92
|
-
if (request.
|
|
93
|
-
_request.append("num_speakers", request.
|
|
92
|
+
if (request.numSpeakers != null) {
|
|
93
|
+
_request.append("num_speakers", request.numSpeakers.toString());
|
|
94
94
|
}
|
|
95
|
-
if (request.
|
|
96
|
-
_request.append("timestamps_granularity", request.
|
|
95
|
+
if (request.timestampsGranularity != null) {
|
|
96
|
+
_request.append("timestamps_granularity", request.timestampsGranularity);
|
|
97
97
|
}
|
|
98
98
|
if (request.diarize != null) {
|
|
99
99
|
_request.append("diarize", request.diarize.toString());
|
|
100
100
|
}
|
|
101
|
-
if (request.
|
|
102
|
-
_request.append("additional_formats", (0, json_1.toJson)(request.
|
|
101
|
+
if (request.additionalFormats != null) {
|
|
102
|
+
_request.append("additional_formats", (0, json_1.toJson)(request.additionalFormats));
|
|
103
103
|
}
|
|
104
104
|
const _maybeEncodedRequest = yield _request.getRequest();
|
|
105
105
|
const _response = yield core.fetcher({
|
package/dist/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts
CHANGED
|
@@ -6,31 +6,31 @@ import * as ElevenLabs from "../../../../index";
|
|
|
6
6
|
/**
|
|
7
7
|
* @example
|
|
8
8
|
* {
|
|
9
|
-
*
|
|
9
|
+
* modelId: "model_id"
|
|
10
10
|
* }
|
|
11
11
|
*/
|
|
12
12
|
export interface BodySpeechToTextV1SpeechToTextPost {
|
|
13
13
|
/**
|
|
14
14
|
* When enable_logging is set to false zero retention mode will be used for the request. This will mean history features are unavailable for this request, including request stitching. Zero retention mode may only be used by enterprise customers.
|
|
15
15
|
*/
|
|
16
|
-
|
|
16
|
+
enableLogging?: boolean;
|
|
17
17
|
/** The ID of the model to use for transcription, currently only 'scribe_v1' and 'scribe_v1_experimental' are available. */
|
|
18
|
-
|
|
18
|
+
modelId: string;
|
|
19
19
|
file?: File | fs.ReadStream | Blob | undefined;
|
|
20
20
|
/** An ISO-639-1 or ISO-639-3 language_code corresponding to the language of the audio file. Can sometimes improve transcription performance if known beforehand. Defaults to null, in this case the language is predicted automatically. */
|
|
21
|
-
|
|
21
|
+
languageCode?: string;
|
|
22
22
|
/** Whether to tag audio events like (laughter), (footsteps), etc. in the transcription. */
|
|
23
|
-
|
|
23
|
+
tagAudioEvents?: boolean;
|
|
24
24
|
/** The maximum amount of speakers talking in the uploaded file. Can help with predicting who speaks when. The maximum amount of speakers that can be predicted is 32. Defaults to null, in this case the amount of speakers is set to the maximum value the model supports. */
|
|
25
|
-
|
|
25
|
+
numSpeakers?: number;
|
|
26
26
|
/** The granularity of the timestamps in the transcription. 'word' provides word-level timestamps and 'character' provides character-level timestamps per word. */
|
|
27
|
-
|
|
27
|
+
timestampsGranularity?: ElevenLabs.SpeechToTextConvertRequestTimestampsGranularity;
|
|
28
28
|
/** Whether to annotate which speaker is currently talking in the uploaded file. */
|
|
29
29
|
diarize?: boolean;
|
|
30
30
|
/** A list of additional formats to export the transcript to. */
|
|
31
|
-
|
|
31
|
+
additionalFormats?: ElevenLabs.AdditionalFormats;
|
|
32
32
|
/** The format of input audio. Options are 'pcm_s16le_16' or 'other' For `pcm_s16le_16`, the input audio must be 16-bit PCM at a 16kHz sample rate, single channel (mono), and little-endian byte order. Latency will be lower than with passing an encoded waveform. */
|
|
33
|
-
|
|
33
|
+
fileFormat?: ElevenLabs.SpeechToTextConvertRequestFileFormat;
|
|
34
34
|
/** The valid AWS S3, Cloudflare R2 or Google Cloud Storage URL of the file to transcribe. Exactly one of the file or cloud_storage_url parameters must be provided. The file must be a valid publicly accessible cloud storage URL. The file size must be less than 2GB. URL can be pre-signed. */
|
|
35
|
-
|
|
35
|
+
cloudStorageUrl?: string;
|
|
36
36
|
}
|
|
@@ -41,12 +41,12 @@ export declare class Studio {
|
|
|
41
41
|
*
|
|
42
42
|
* @example
|
|
43
43
|
* await client.studio.createPodcast({
|
|
44
|
-
*
|
|
44
|
+
* modelId: "21m00Tcm4TlvDq8ikWAM",
|
|
45
45
|
* mode: {
|
|
46
46
|
* type: "conversation",
|
|
47
47
|
* conversation: {
|
|
48
|
-
*
|
|
49
|
-
*
|
|
48
|
+
* hostVoiceId: "aw1NgEzBg83R7vgmiJt6",
|
|
49
|
+
* guestVoiceId: "aw1NgEzBg83R7vgmiJt7"
|
|
50
50
|
* }
|
|
51
51
|
* },
|
|
52
52
|
* source: {
|
|
@@ -52,6 +52,7 @@ exports.Studio = void 0;
|
|
|
52
52
|
const environments = __importStar(require("../../../../environments"));
|
|
53
53
|
const core = __importStar(require("../../../../core"));
|
|
54
54
|
const ElevenLabs = __importStar(require("../../../index"));
|
|
55
|
+
const serializers = __importStar(require("../../../../serialization/index"));
|
|
55
56
|
const url_join_1 = __importDefault(require("url-join"));
|
|
56
57
|
const errors = __importStar(require("../../../../errors/index"));
|
|
57
58
|
const Client_1 = require("../resources/projects/client/Client");
|
|
@@ -73,12 +74,12 @@ class Studio {
|
|
|
73
74
|
*
|
|
74
75
|
* @example
|
|
75
76
|
* await client.studio.createPodcast({
|
|
76
|
-
*
|
|
77
|
+
* modelId: "21m00Tcm4TlvDq8ikWAM",
|
|
77
78
|
* mode: {
|
|
78
79
|
* type: "conversation",
|
|
79
80
|
* conversation: {
|
|
80
|
-
*
|
|
81
|
-
*
|
|
81
|
+
* hostVoiceId: "aw1NgEzBg83R7vgmiJt6",
|
|
82
|
+
* guestVoiceId: "aw1NgEzBg83R7vgmiJt7"
|
|
82
83
|
* }
|
|
83
84
|
* },
|
|
84
85
|
* source: {
|
|
@@ -97,24 +98,36 @@ class Studio {
|
|
|
97
98
|
method: "POST",
|
|
98
99
|
headers: Object.assign({ "xi-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
|
|
99
100
|
? yield core.Supplier.get(this._options.apiKey)
|
|
100
|
-
: undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.
|
|
101
|
+
: undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js", "X-Fern-SDK-Version": "v2.1.0", "User-Agent": "@elevenlabs/elevenlabs-js/v2.1.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
|
101
102
|
contentType: "application/json",
|
|
102
103
|
requestType: "json",
|
|
103
|
-
body: request,
|
|
104
|
-
|
|
104
|
+
body: serializers.BodyCreatePodcastV1StudioPodcastsPost.jsonOrThrow(request, {
|
|
105
|
+
unrecognizedObjectKeys: "strip",
|
|
106
|
+
}),
|
|
107
|
+
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 240000,
|
|
105
108
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
106
109
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
107
110
|
});
|
|
108
111
|
if (_response.ok) {
|
|
109
112
|
return {
|
|
110
|
-
data: _response.body,
|
|
113
|
+
data: serializers.PodcastProjectResponseModel.parseOrThrow(_response.body, {
|
|
114
|
+
unrecognizedObjectKeys: "passthrough",
|
|
115
|
+
allowUnrecognizedUnionMembers: true,
|
|
116
|
+
allowUnrecognizedEnumValues: true,
|
|
117
|
+
breadcrumbsPrefix: ["response"],
|
|
118
|
+
}),
|
|
111
119
|
rawResponse: _response.rawResponse,
|
|
112
120
|
};
|
|
113
121
|
}
|
|
114
122
|
if (_response.error.reason === "status-code") {
|
|
115
123
|
switch (_response.error.statusCode) {
|
|
116
124
|
case 422:
|
|
117
|
-
throw new ElevenLabs.UnprocessableEntityError(_response.error.body,
|
|
125
|
+
throw new ElevenLabs.UnprocessableEntityError(serializers.HttpValidationError.parseOrThrow(_response.error.body, {
|
|
126
|
+
unrecognizedObjectKeys: "passthrough",
|
|
127
|
+
allowUnrecognizedUnionMembers: true,
|
|
128
|
+
allowUnrecognizedEnumValues: true,
|
|
129
|
+
breadcrumbsPrefix: ["response"],
|
|
130
|
+
}), _response.rawResponse);
|
|
118
131
|
default:
|
|
119
132
|
throw new errors.ElevenLabsError({
|
|
120
133
|
statusCode: _response.error.statusCode,
|