@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
|
@@ -16,7 +16,6 @@ export * from "./AdditionalFormats";
|
|
|
16
16
|
export * from "./AgentBan";
|
|
17
17
|
export * from "./AgentCallLimits";
|
|
18
18
|
export * from "./AgentConfig";
|
|
19
|
-
export * from "./AgentConfigDbModel";
|
|
20
19
|
export * from "./AgentConfigOverride";
|
|
21
20
|
export * from "./AgentConfigOverrideConfig";
|
|
22
21
|
export * from "./AgentMetadataResponseModel";
|
|
@@ -71,6 +70,7 @@ export * from "./BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjectSnapsh
|
|
|
71
70
|
export * from "./UpdatePronunciationDictionariesRequest";
|
|
72
71
|
export * from "./BreakdownTypes";
|
|
73
72
|
export * from "./ChapterContentBlockExtendableNodeResponseModel";
|
|
73
|
+
export * from "./ChapterContentBlockInputModelSubType";
|
|
74
74
|
export * from "./ChapterContentBlockInputModel";
|
|
75
75
|
export * from "./ChapterContentBlockResponseModelNodesItem";
|
|
76
76
|
export * from "./ChapterContentBlockResponseModel";
|
|
@@ -213,6 +213,7 @@ export * from "./ForcedAlignmentCharacterResponseModel";
|
|
|
213
213
|
export * from "./ForcedAlignmentResponseModel";
|
|
214
214
|
export * from "./ForcedAlignmentWordResponseModel";
|
|
215
215
|
export * from "./GetAgentEmbedResponseModel";
|
|
216
|
+
export * from "./GetAgentKnowledgebaseSizeResponseModel";
|
|
216
217
|
export * from "./GetAgentLinkResponseModel";
|
|
217
218
|
export * from "./GetAgentResponseModelPhoneNumbersItem";
|
|
218
219
|
export * from "./GetAgentResponseModel";
|
|
@@ -265,6 +266,8 @@ export * from "./LlmInputOutputTokensUsage";
|
|
|
265
266
|
export * from "./LlmTokensCategoryUsage";
|
|
266
267
|
export * from "./LlmUsageInput";
|
|
267
268
|
export * from "./LlmUsageOutput";
|
|
269
|
+
export * from "./LlmUsageCalculatorLlmResponseModel";
|
|
270
|
+
export * from "./LlmUsageCalculatorResponseModel";
|
|
268
271
|
export * from "./LanguageAddedResponse";
|
|
269
272
|
export * from "./LanguageDetectionToolConfig";
|
|
270
273
|
export * from "./LanguagePresetInput";
|
|
@@ -288,6 +291,8 @@ export * from "./Model";
|
|
|
288
291
|
export * from "./ModerationStatusResponseModelSafetyStatus";
|
|
289
292
|
export * from "./ModerationStatusResponseModelWarningStatus";
|
|
290
293
|
export * from "./ModerationStatusResponseModel";
|
|
294
|
+
export * from "./NativeMcpToolConfigInput";
|
|
295
|
+
export * from "./NativeMcpToolConfigOutput";
|
|
291
296
|
export * from "./ObjectJsonSchemaPropertyInputPropertiesValue";
|
|
292
297
|
export * from "./ObjectJsonSchemaPropertyInput";
|
|
293
298
|
export * from "./ObjectJsonSchemaPropertyOutputPropertiesValue";
|
package/dist/api/types/index.js
CHANGED
|
@@ -32,7 +32,6 @@ __exportStar(require("./AdditionalFormats"), exports);
|
|
|
32
32
|
__exportStar(require("./AgentBan"), exports);
|
|
33
33
|
__exportStar(require("./AgentCallLimits"), exports);
|
|
34
34
|
__exportStar(require("./AgentConfig"), exports);
|
|
35
|
-
__exportStar(require("./AgentConfigDbModel"), exports);
|
|
36
35
|
__exportStar(require("./AgentConfigOverride"), exports);
|
|
37
36
|
__exportStar(require("./AgentConfigOverrideConfig"), exports);
|
|
38
37
|
__exportStar(require("./AgentMetadataResponseModel"), exports);
|
|
@@ -87,6 +86,7 @@ __exportStar(require("./BodyStreamProjectAudioV1ProjectsProjectIdSnapshotsProjec
|
|
|
87
86
|
__exportStar(require("./UpdatePronunciationDictionariesRequest"), exports);
|
|
88
87
|
__exportStar(require("./BreakdownTypes"), exports);
|
|
89
88
|
__exportStar(require("./ChapterContentBlockExtendableNodeResponseModel"), exports);
|
|
89
|
+
__exportStar(require("./ChapterContentBlockInputModelSubType"), exports);
|
|
90
90
|
__exportStar(require("./ChapterContentBlockInputModel"), exports);
|
|
91
91
|
__exportStar(require("./ChapterContentBlockResponseModelNodesItem"), exports);
|
|
92
92
|
__exportStar(require("./ChapterContentBlockResponseModel"), exports);
|
|
@@ -229,6 +229,7 @@ __exportStar(require("./ForcedAlignmentCharacterResponseModel"), exports);
|
|
|
229
229
|
__exportStar(require("./ForcedAlignmentResponseModel"), exports);
|
|
230
230
|
__exportStar(require("./ForcedAlignmentWordResponseModel"), exports);
|
|
231
231
|
__exportStar(require("./GetAgentEmbedResponseModel"), exports);
|
|
232
|
+
__exportStar(require("./GetAgentKnowledgebaseSizeResponseModel"), exports);
|
|
232
233
|
__exportStar(require("./GetAgentLinkResponseModel"), exports);
|
|
233
234
|
__exportStar(require("./GetAgentResponseModelPhoneNumbersItem"), exports);
|
|
234
235
|
__exportStar(require("./GetAgentResponseModel"), exports);
|
|
@@ -281,6 +282,8 @@ __exportStar(require("./LlmInputOutputTokensUsage"), exports);
|
|
|
281
282
|
__exportStar(require("./LlmTokensCategoryUsage"), exports);
|
|
282
283
|
__exportStar(require("./LlmUsageInput"), exports);
|
|
283
284
|
__exportStar(require("./LlmUsageOutput"), exports);
|
|
285
|
+
__exportStar(require("./LlmUsageCalculatorLlmResponseModel"), exports);
|
|
286
|
+
__exportStar(require("./LlmUsageCalculatorResponseModel"), exports);
|
|
284
287
|
__exportStar(require("./LanguageAddedResponse"), exports);
|
|
285
288
|
__exportStar(require("./LanguageDetectionToolConfig"), exports);
|
|
286
289
|
__exportStar(require("./LanguagePresetInput"), exports);
|
|
@@ -304,6 +307,8 @@ __exportStar(require("./Model"), exports);
|
|
|
304
307
|
__exportStar(require("./ModerationStatusResponseModelSafetyStatus"), exports);
|
|
305
308
|
__exportStar(require("./ModerationStatusResponseModelWarningStatus"), exports);
|
|
306
309
|
__exportStar(require("./ModerationStatusResponseModel"), exports);
|
|
310
|
+
__exportStar(require("./NativeMcpToolConfigInput"), exports);
|
|
311
|
+
__exportStar(require("./NativeMcpToolConfigOutput"), exports);
|
|
307
312
|
__exportStar(require("./ObjectJsonSchemaPropertyInputPropertiesValue"), exports);
|
|
308
313
|
__exportStar(require("./ObjectJsonSchemaPropertyInput"), exports);
|
|
309
314
|
__exportStar(require("./ObjectJsonSchemaPropertyOutputPropertiesValue"), exports);
|
package/dist/core/index.d.ts
CHANGED
package/dist/core/index.js
CHANGED
|
@@ -10,11 +10,35 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
10
10
|
if (k2 === undefined) k2 = k;
|
|
11
11
|
o[k2] = m[k];
|
|
12
12
|
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
13
18
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
19
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
20
|
};
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
16
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.serialization = void 0;
|
|
17
40
|
__exportStar(require("./fetcher"), exports);
|
|
18
41
|
__exportStar(require("./runtime"), exports);
|
|
19
42
|
__exportStar(require("./form-data-utils"), exports);
|
|
20
43
|
__exportStar(require("./streaming-fetcher"), exports);
|
|
44
|
+
exports.serialization = __importStar(require("./schemas"));
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { SchemaUtils } from "./builders";
|
|
2
|
+
export type Schema<Raw = unknown, Parsed = unknown> = BaseSchema<Raw, Parsed> & SchemaUtils<Raw, Parsed>;
|
|
3
|
+
export type inferRaw<S extends Schema> = S extends Schema<infer Raw, any> ? Raw : never;
|
|
4
|
+
export type inferParsed<S extends Schema> = S extends Schema<any, infer Parsed> ? Parsed : never;
|
|
5
|
+
export interface BaseSchema<Raw, Parsed> {
|
|
6
|
+
parse: (raw: unknown, opts?: SchemaOptions) => MaybeValid<Parsed>;
|
|
7
|
+
json: (parsed: unknown, opts?: SchemaOptions) => MaybeValid<Raw>;
|
|
8
|
+
getType: () => SchemaType | SchemaType;
|
|
9
|
+
}
|
|
10
|
+
export declare const SchemaType: {
|
|
11
|
+
readonly BIGINT: "bigint";
|
|
12
|
+
readonly DATE: "date";
|
|
13
|
+
readonly ENUM: "enum";
|
|
14
|
+
readonly LIST: "list";
|
|
15
|
+
readonly STRING_LITERAL: "stringLiteral";
|
|
16
|
+
readonly BOOLEAN_LITERAL: "booleanLiteral";
|
|
17
|
+
readonly OBJECT: "object";
|
|
18
|
+
readonly ANY: "any";
|
|
19
|
+
readonly BOOLEAN: "boolean";
|
|
20
|
+
readonly NUMBER: "number";
|
|
21
|
+
readonly STRING: "string";
|
|
22
|
+
readonly UNKNOWN: "unknown";
|
|
23
|
+
readonly RECORD: "record";
|
|
24
|
+
readonly SET: "set";
|
|
25
|
+
readonly UNION: "union";
|
|
26
|
+
readonly UNDISCRIMINATED_UNION: "undiscriminatedUnion";
|
|
27
|
+
readonly NULLABLE: "nullable";
|
|
28
|
+
readonly OPTIONAL: "optional";
|
|
29
|
+
readonly OPTIONAL_NULLABLE: "optionalNullable";
|
|
30
|
+
};
|
|
31
|
+
export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType];
|
|
32
|
+
export type MaybeValid<T> = Valid<T> | Invalid;
|
|
33
|
+
export interface Valid<T> {
|
|
34
|
+
ok: true;
|
|
35
|
+
value: T;
|
|
36
|
+
}
|
|
37
|
+
export interface Invalid {
|
|
38
|
+
ok: false;
|
|
39
|
+
errors: ValidationError[];
|
|
40
|
+
}
|
|
41
|
+
export interface ValidationError {
|
|
42
|
+
path: string[];
|
|
43
|
+
message: string;
|
|
44
|
+
}
|
|
45
|
+
export interface SchemaOptions {
|
|
46
|
+
/**
|
|
47
|
+
* how to handle unrecognized keys in objects
|
|
48
|
+
*
|
|
49
|
+
* @default "fail"
|
|
50
|
+
*/
|
|
51
|
+
unrecognizedObjectKeys?: "fail" | "passthrough" | "strip";
|
|
52
|
+
/**
|
|
53
|
+
* whether to fail when an unrecognized discriminant value is
|
|
54
|
+
* encountered in a union
|
|
55
|
+
*
|
|
56
|
+
* @default false
|
|
57
|
+
*/
|
|
58
|
+
allowUnrecognizedUnionMembers?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* whether to fail when an unrecognized enum value is encountered
|
|
61
|
+
*
|
|
62
|
+
* @default false
|
|
63
|
+
*/
|
|
64
|
+
allowUnrecognizedEnumValues?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* whether to allow data that doesn't conform to the schema.
|
|
67
|
+
* invalid data is passed through without transformation.
|
|
68
|
+
*
|
|
69
|
+
* when this is enabled, .parse() and .json() will always
|
|
70
|
+
* return `ok: true`. `.parseOrThrow()` and `.jsonOrThrow()`
|
|
71
|
+
* will never fail.
|
|
72
|
+
*
|
|
73
|
+
* @default false
|
|
74
|
+
*/
|
|
75
|
+
skipValidation?: boolean;
|
|
76
|
+
/**
|
|
77
|
+
* each validation failure contains a "path" property, which is
|
|
78
|
+
* the breadcrumbs to the offending node in the JSON. you can supply
|
|
79
|
+
* a prefix that is prepended to all the errors' paths. this can be
|
|
80
|
+
* helpful for zurg's internal debug logging.
|
|
81
|
+
*/
|
|
82
|
+
breadcrumbsPrefix?: string[];
|
|
83
|
+
/**
|
|
84
|
+
* whether to send 'null' for optional properties explicitly set to 'undefined'.
|
|
85
|
+
*/
|
|
86
|
+
omitUndefined?: boolean;
|
|
87
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SchemaType = void 0;
|
|
4
|
+
exports.SchemaType = {
|
|
5
|
+
BIGINT: "bigint",
|
|
6
|
+
DATE: "date",
|
|
7
|
+
ENUM: "enum",
|
|
8
|
+
LIST: "list",
|
|
9
|
+
STRING_LITERAL: "stringLiteral",
|
|
10
|
+
BOOLEAN_LITERAL: "booleanLiteral",
|
|
11
|
+
OBJECT: "object",
|
|
12
|
+
ANY: "any",
|
|
13
|
+
BOOLEAN: "boolean",
|
|
14
|
+
NUMBER: "number",
|
|
15
|
+
STRING: "string",
|
|
16
|
+
UNKNOWN: "unknown",
|
|
17
|
+
RECORD: "record",
|
|
18
|
+
SET: "set",
|
|
19
|
+
UNION: "union",
|
|
20
|
+
UNDISCRIMINATED_UNION: "undiscriminatedUnion",
|
|
21
|
+
NULLABLE: "nullable",
|
|
22
|
+
OPTIONAL: "optional",
|
|
23
|
+
OPTIONAL_NULLABLE: "optionalNullable",
|
|
24
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.bigint = bigint;
|
|
4
|
+
const Schema_1 = require("../../Schema");
|
|
5
|
+
const getErrorMessageForIncorrectType_1 = require("../../utils/getErrorMessageForIncorrectType");
|
|
6
|
+
const maybeSkipValidation_1 = require("../../utils/maybeSkipValidation");
|
|
7
|
+
const schema_utils_1 = require("../schema-utils");
|
|
8
|
+
function bigint() {
|
|
9
|
+
const baseSchema = {
|
|
10
|
+
parse: (raw, { breadcrumbsPrefix = [] } = {}) => {
|
|
11
|
+
if (typeof raw === "bigint") {
|
|
12
|
+
return {
|
|
13
|
+
ok: true,
|
|
14
|
+
value: raw,
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
if (typeof raw === "number") {
|
|
18
|
+
return {
|
|
19
|
+
ok: true,
|
|
20
|
+
value: BigInt(raw),
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
ok: false,
|
|
25
|
+
errors: [
|
|
26
|
+
{
|
|
27
|
+
path: breadcrumbsPrefix,
|
|
28
|
+
message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(raw, "bigint | number"),
|
|
29
|
+
},
|
|
30
|
+
],
|
|
31
|
+
};
|
|
32
|
+
},
|
|
33
|
+
json: (bigint, { breadcrumbsPrefix = [] } = {}) => {
|
|
34
|
+
if (typeof bigint !== "bigint") {
|
|
35
|
+
return {
|
|
36
|
+
ok: false,
|
|
37
|
+
errors: [
|
|
38
|
+
{
|
|
39
|
+
path: breadcrumbsPrefix,
|
|
40
|
+
message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(bigint, "bigint"),
|
|
41
|
+
},
|
|
42
|
+
],
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
ok: true,
|
|
47
|
+
value: bigint,
|
|
48
|
+
};
|
|
49
|
+
},
|
|
50
|
+
getType: () => Schema_1.SchemaType.BIGINT,
|
|
51
|
+
};
|
|
52
|
+
return Object.assign(Object.assign({}, (0, maybeSkipValidation_1.maybeSkipValidation)(baseSchema)), (0, schema_utils_1.getSchemaUtils)(baseSchema));
|
|
53
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { bigint } from "./bigint";
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.date = date;
|
|
4
|
+
const Schema_1 = require("../../Schema");
|
|
5
|
+
const getErrorMessageForIncorrectType_1 = require("../../utils/getErrorMessageForIncorrectType");
|
|
6
|
+
const maybeSkipValidation_1 = require("../../utils/maybeSkipValidation");
|
|
7
|
+
const schema_utils_1 = require("../schema-utils");
|
|
8
|
+
// https://stackoverflow.com/questions/12756159/regex-and-iso8601-formatted-datetime
|
|
9
|
+
const ISO_8601_REGEX = /^([+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24:?00)([.,]\d+(?!:))?)?(\17[0-5]\d([.,]\d+)?)?([zZ]|([+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$/;
|
|
10
|
+
function date() {
|
|
11
|
+
const baseSchema = {
|
|
12
|
+
parse: (raw, { breadcrumbsPrefix = [] } = {}) => {
|
|
13
|
+
if (typeof raw !== "string") {
|
|
14
|
+
return {
|
|
15
|
+
ok: false,
|
|
16
|
+
errors: [
|
|
17
|
+
{
|
|
18
|
+
path: breadcrumbsPrefix,
|
|
19
|
+
message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(raw, "string"),
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
if (!ISO_8601_REGEX.test(raw)) {
|
|
25
|
+
return {
|
|
26
|
+
ok: false,
|
|
27
|
+
errors: [
|
|
28
|
+
{
|
|
29
|
+
path: breadcrumbsPrefix,
|
|
30
|
+
message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(raw, "ISO 8601 date string"),
|
|
31
|
+
},
|
|
32
|
+
],
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
ok: true,
|
|
37
|
+
value: new Date(raw),
|
|
38
|
+
};
|
|
39
|
+
},
|
|
40
|
+
json: (date, { breadcrumbsPrefix = [] } = {}) => {
|
|
41
|
+
if (date instanceof Date) {
|
|
42
|
+
return {
|
|
43
|
+
ok: true,
|
|
44
|
+
value: date.toISOString(),
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
return {
|
|
49
|
+
ok: false,
|
|
50
|
+
errors: [
|
|
51
|
+
{
|
|
52
|
+
path: breadcrumbsPrefix,
|
|
53
|
+
message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(date, "Date object"),
|
|
54
|
+
},
|
|
55
|
+
],
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
getType: () => Schema_1.SchemaType.DATE,
|
|
60
|
+
};
|
|
61
|
+
return Object.assign(Object.assign({}, (0, maybeSkipValidation_1.maybeSkipValidation)(baseSchema)), (0, schema_utils_1.getSchemaUtils)(baseSchema));
|
|
62
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { date } from "./date";
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.enum_ = enum_;
|
|
4
|
+
const Schema_1 = require("../../Schema");
|
|
5
|
+
const createIdentitySchemaCreator_1 = require("../../utils/createIdentitySchemaCreator");
|
|
6
|
+
const getErrorMessageForIncorrectType_1 = require("../../utils/getErrorMessageForIncorrectType");
|
|
7
|
+
function enum_(values) {
|
|
8
|
+
const validValues = new Set(values);
|
|
9
|
+
const schemaCreator = (0, createIdentitySchemaCreator_1.createIdentitySchemaCreator)(Schema_1.SchemaType.ENUM, (value, { allowUnrecognizedEnumValues, breadcrumbsPrefix = [] } = {}) => {
|
|
10
|
+
if (typeof value !== "string") {
|
|
11
|
+
return {
|
|
12
|
+
ok: false,
|
|
13
|
+
errors: [
|
|
14
|
+
{
|
|
15
|
+
path: breadcrumbsPrefix,
|
|
16
|
+
message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(value, "string"),
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
if (!validValues.has(value) && !allowUnrecognizedEnumValues) {
|
|
22
|
+
return {
|
|
23
|
+
ok: false,
|
|
24
|
+
errors: [
|
|
25
|
+
{
|
|
26
|
+
path: breadcrumbsPrefix,
|
|
27
|
+
message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(value, "enum"),
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
ok: true,
|
|
34
|
+
value: value,
|
|
35
|
+
};
|
|
36
|
+
});
|
|
37
|
+
return schemaCreator();
|
|
38
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { enum_ } from "./enum";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from "./bigint";
|
|
2
|
+
export * from "./date";
|
|
3
|
+
export * from "./enum";
|
|
4
|
+
export * from "./lazy";
|
|
5
|
+
export * from "./list";
|
|
6
|
+
export * from "./literals";
|
|
7
|
+
export * from "./object";
|
|
8
|
+
export * from "./object-like";
|
|
9
|
+
export * from "./primitives";
|
|
10
|
+
export * from "./record";
|
|
11
|
+
export * from "./schema-utils";
|
|
12
|
+
export * from "./set";
|
|
13
|
+
export * from "./undiscriminated-union";
|
|
14
|
+
export * from "./union";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./bigint"), exports);
|
|
18
|
+
__exportStar(require("./date"), exports);
|
|
19
|
+
__exportStar(require("./enum"), exports);
|
|
20
|
+
__exportStar(require("./lazy"), exports);
|
|
21
|
+
__exportStar(require("./list"), exports);
|
|
22
|
+
__exportStar(require("./literals"), exports);
|
|
23
|
+
__exportStar(require("./object"), exports);
|
|
24
|
+
__exportStar(require("./object-like"), exports);
|
|
25
|
+
__exportStar(require("./primitives"), exports);
|
|
26
|
+
__exportStar(require("./record"), exports);
|
|
27
|
+
__exportStar(require("./schema-utils"), exports);
|
|
28
|
+
__exportStar(require("./set"), exports);
|
|
29
|
+
__exportStar(require("./undiscriminated-union"), exports);
|
|
30
|
+
__exportStar(require("./union"), exports);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.lazyObject = exports.lazy = void 0;
|
|
4
|
+
var lazy_1 = require("./lazy");
|
|
5
|
+
Object.defineProperty(exports, "lazy", { enumerable: true, get: function () { return lazy_1.lazy; } });
|
|
6
|
+
var lazyObject_1 = require("./lazyObject");
|
|
7
|
+
Object.defineProperty(exports, "lazyObject", { enumerable: true, get: function () { return lazyObject_1.lazyObject; } });
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { BaseSchema, Schema } from "../../Schema";
|
|
2
|
+
export type SchemaGetter<SchemaType extends Schema<any, any>> = () => SchemaType;
|
|
3
|
+
export declare function lazy<Raw, Parsed>(getter: SchemaGetter<Schema<Raw, Parsed>>): Schema<Raw, Parsed>;
|
|
4
|
+
export declare function constructLazyBaseSchema<Raw, Parsed>(getter: SchemaGetter<Schema<Raw, Parsed>>): BaseSchema<Raw, Parsed>;
|
|
5
|
+
export declare function getMemoizedSchema<SchemaType extends Schema<any, any>>(getter: SchemaGetter<SchemaType>): SchemaType;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.lazy = lazy;
|
|
4
|
+
exports.constructLazyBaseSchema = constructLazyBaseSchema;
|
|
5
|
+
exports.getMemoizedSchema = getMemoizedSchema;
|
|
6
|
+
const schema_utils_1 = require("../schema-utils");
|
|
7
|
+
function lazy(getter) {
|
|
8
|
+
const baseSchema = constructLazyBaseSchema(getter);
|
|
9
|
+
return Object.assign(Object.assign({}, baseSchema), (0, schema_utils_1.getSchemaUtils)(baseSchema));
|
|
10
|
+
}
|
|
11
|
+
function constructLazyBaseSchema(getter) {
|
|
12
|
+
return {
|
|
13
|
+
parse: (raw, opts) => getMemoizedSchema(getter).parse(raw, opts),
|
|
14
|
+
json: (parsed, opts) => getMemoizedSchema(getter).json(parsed, opts),
|
|
15
|
+
getType: () => getMemoizedSchema(getter).getType(),
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
function getMemoizedSchema(getter) {
|
|
19
|
+
const castedGetter = getter;
|
|
20
|
+
if (castedGetter.__zurg_memoized == null) {
|
|
21
|
+
castedGetter.__zurg_memoized = getter();
|
|
22
|
+
}
|
|
23
|
+
return castedGetter.__zurg_memoized;
|
|
24
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.lazyObject = lazyObject;
|
|
4
|
+
const object_1 = require("../object");
|
|
5
|
+
const object_like_1 = require("../object-like");
|
|
6
|
+
const schema_utils_1 = require("../schema-utils");
|
|
7
|
+
const lazy_1 = require("./lazy");
|
|
8
|
+
function lazyObject(getter) {
|
|
9
|
+
const baseSchema = Object.assign(Object.assign({}, (0, lazy_1.constructLazyBaseSchema)(getter)), { _getRawProperties: () => (0, lazy_1.getMemoizedSchema)(getter)._getRawProperties(), _getParsedProperties: () => (0, lazy_1.getMemoizedSchema)(getter)._getParsedProperties() });
|
|
10
|
+
return Object.assign(Object.assign(Object.assign(Object.assign({}, baseSchema), (0, schema_utils_1.getSchemaUtils)(baseSchema)), (0, object_like_1.getObjectLikeUtils)(baseSchema)), (0, object_1.getObjectUtils)(baseSchema));
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { list } from "./list";
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.list = list;
|
|
4
|
+
const Schema_1 = require("../../Schema");
|
|
5
|
+
const getErrorMessageForIncorrectType_1 = require("../../utils/getErrorMessageForIncorrectType");
|
|
6
|
+
const maybeSkipValidation_1 = require("../../utils/maybeSkipValidation");
|
|
7
|
+
const schema_utils_1 = require("../schema-utils");
|
|
8
|
+
function list(schema) {
|
|
9
|
+
const baseSchema = {
|
|
10
|
+
parse: (raw, opts) => validateAndTransformArray(raw, (item, index) => {
|
|
11
|
+
var _a;
|
|
12
|
+
return schema.parse(item, Object.assign(Object.assign({}, opts), { breadcrumbsPrefix: [...((_a = opts === null || opts === void 0 ? void 0 : opts.breadcrumbsPrefix) !== null && _a !== void 0 ? _a : []), `[${index}]`] }));
|
|
13
|
+
}),
|
|
14
|
+
json: (parsed, opts) => validateAndTransformArray(parsed, (item, index) => {
|
|
15
|
+
var _a;
|
|
16
|
+
return schema.json(item, Object.assign(Object.assign({}, opts), { breadcrumbsPrefix: [...((_a = opts === null || opts === void 0 ? void 0 : opts.breadcrumbsPrefix) !== null && _a !== void 0 ? _a : []), `[${index}]`] }));
|
|
17
|
+
}),
|
|
18
|
+
getType: () => Schema_1.SchemaType.LIST,
|
|
19
|
+
};
|
|
20
|
+
return Object.assign(Object.assign({}, (0, maybeSkipValidation_1.maybeSkipValidation)(baseSchema)), (0, schema_utils_1.getSchemaUtils)(baseSchema));
|
|
21
|
+
}
|
|
22
|
+
function validateAndTransformArray(value, transformItem) {
|
|
23
|
+
if (!Array.isArray(value)) {
|
|
24
|
+
return {
|
|
25
|
+
ok: false,
|
|
26
|
+
errors: [
|
|
27
|
+
{
|
|
28
|
+
message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(value, "list"),
|
|
29
|
+
path: [],
|
|
30
|
+
},
|
|
31
|
+
],
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
const maybeValidItems = value.map((item, index) => transformItem(item, index));
|
|
35
|
+
return maybeValidItems.reduce((acc, item) => {
|
|
36
|
+
if (acc.ok && item.ok) {
|
|
37
|
+
return {
|
|
38
|
+
ok: true,
|
|
39
|
+
value: [...acc.value, item.value],
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
const errors = [];
|
|
43
|
+
if (!acc.ok) {
|
|
44
|
+
errors.push(...acc.errors);
|
|
45
|
+
}
|
|
46
|
+
if (!item.ok) {
|
|
47
|
+
errors.push(...item.errors);
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
ok: false,
|
|
51
|
+
errors,
|
|
52
|
+
};
|
|
53
|
+
}, { ok: true, value: [] });
|
|
54
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.booleanLiteral = booleanLiteral;
|
|
4
|
+
const Schema_1 = require("../../Schema");
|
|
5
|
+
const createIdentitySchemaCreator_1 = require("../../utils/createIdentitySchemaCreator");
|
|
6
|
+
const getErrorMessageForIncorrectType_1 = require("../../utils/getErrorMessageForIncorrectType");
|
|
7
|
+
function booleanLiteral(literal) {
|
|
8
|
+
const schemaCreator = (0, createIdentitySchemaCreator_1.createIdentitySchemaCreator)(Schema_1.SchemaType.BOOLEAN_LITERAL, (value, { breadcrumbsPrefix = [] } = {}) => {
|
|
9
|
+
if (value === literal) {
|
|
10
|
+
return {
|
|
11
|
+
ok: true,
|
|
12
|
+
value: literal,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
else {
|
|
16
|
+
return {
|
|
17
|
+
ok: false,
|
|
18
|
+
errors: [
|
|
19
|
+
{
|
|
20
|
+
path: breadcrumbsPrefix,
|
|
21
|
+
message: (0, getErrorMessageForIncorrectType_1.getErrorMessageForIncorrectType)(value, `${literal.toString()}`),
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
return schemaCreator();
|
|
28
|
+
}
|