@elevenlabs/elevenlabs-js 2.39.0 → 2.41.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/BaseClient.js +2 -2
- package/Client.d.ts +5 -2
- package/Client.js +46 -41
- package/api/errors/BadRequestError.d.ts +1 -2
- package/api/errors/UnprocessableEntityError.d.ts +1 -2
- package/api/resources/audioIsolation/client/Client.js +2 -12
- package/api/resources/audioNative/client/Client.js +4 -24
- package/api/resources/conversationalAi/client/Client.js +4 -24
- package/api/resources/conversationalAi/conversation/Conversation.d.ts +12 -0
- package/api/resources/conversationalAi/conversation/Conversation.js +18 -0
- package/api/resources/conversationalAi/conversation/__tests__/Conversation.test.js +25 -0
- package/api/resources/conversationalAi/conversation/events.d.ts +19 -2
- package/api/resources/conversationalAi/conversation/events.js +2 -0
- package/api/resources/conversationalAi/resources/agents/client/Client.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/client/Client.js +14 -55
- package/api/resources/conversationalAi/resources/agents/client/requests/AgentsListRequest.d.ts +4 -1
- package/api/resources/conversationalAi/resources/agents/resources/branches/client/Client.js +5 -30
- package/api/resources/conversationalAi/resources/agents/resources/deployments/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/agents/resources/drafts/client/Client.d.ts +120 -40
- package/api/resources/conversationalAi/resources/agents/resources/drafts/client/Client.js +122 -52
- package/api/resources/conversationalAi/resources/agents/resources/drafts/client/requests/BodyCreateAgentDraftV1ConvaiAgentsAgentIdDraftsPost.d.ts +120 -40
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/agents/resources/summaries/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/batchCalls/client/Client.js +6 -36
- package/api/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +2 -0
- package/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +4 -2
- package/api/resources/conversationalAi/resources/conversations/client/Client.js +34 -35
- package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +4 -1
- package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetWebrtcTokenRequest.d.ts +4 -1
- package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +4 -0
- package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +1 -7
- package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/conversations/resources/files/client/Client.js +2 -12
- package/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.d.ts +1 -0
- package/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.js +25 -13
- package/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesTextSearchRequest.d.ts +7 -0
- package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +2 -12
- package/api/resources/conversationalAi/resources/index.d.ts +0 -1
- package/api/resources/conversationalAi/resources/index.js +0 -1
- package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +7 -13
- package/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.d.ts +4 -1
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +13 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +56 -6
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.d.ts +16 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +17 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +12 -72
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.d.ts +4 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +4 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.d.ts +5 -2
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +17 -12
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.d.ts +1 -1
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.js +15 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/ChunkGetRequest.d.ts +11 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/index.js +2 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/index.js +1 -0
- package/api/resources/conversationalAi/resources/llm/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/llmUsage/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/mcpServers/client/Client.js +5 -30
- package/api/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.d.ts +1 -1
- package/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.js +2 -12
- package/api/resources/conversationalAi/resources/mcpServers/resources/toolConfigs/client/Client.js +4 -24
- package/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.d.ts +5 -0
- package/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.d.ts +1 -1
- package/api/resources/conversationalAi/resources/mcpServers/types/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/mcpServers/types/index.js +1 -0
- package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +5 -30
- package/api/resources/conversationalAi/resources/secrets/client/Client.js +4 -24
- package/api/resources/conversationalAi/resources/settings/client/Client.js +2 -12
- package/api/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +2 -0
- package/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/tests/client/Client.js +6 -36
- package/api/resources/conversationalAi/resources/tests/resources/invocations/client/Client.js +3 -18
- package/api/resources/conversationalAi/resources/tools/client/Client.d.ts +6 -2
- package/api/resources/conversationalAi/resources/tools/client/Client.js +25 -43
- package/api/resources/conversationalAi/resources/tools/client/requests/ToolsDeleteRequest.d.ts +10 -0
- package/api/resources/conversationalAi/resources/tools/client/requests/ToolsListRequest.d.ts +4 -1
- package/api/resources/conversationalAi/resources/tools/client/requests/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/twilio/client/Client.js +2 -12
- package/api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +1 -1
- package/api/resources/conversationalAi/resources/twilio/index.d.ts +0 -1
- package/api/resources/conversationalAi/resources/twilio/index.js +0 -1
- package/api/resources/conversationalAi/resources/users/client/Client.js +1 -6
- package/api/resources/conversationalAi/resources/whatsapp/client/Client.js +2 -12
- package/api/resources/conversationalAi/resources/whatsappAccounts/client/Client.js +4 -24
- package/api/resources/dubbing/client/Client.js +4 -24
- package/api/resources/dubbing/resources/audio/client/Client.js +1 -7
- package/api/resources/dubbing/resources/resource/client/Client.js +6 -36
- package/api/resources/dubbing/resources/resource/resources/language/client/Client.js +1 -6
- package/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +2 -12
- package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +3 -18
- package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +1 -6
- package/api/resources/dubbing/resources/transcript/client/Client.js +1 -6
- package/api/resources/dubbing/resources/transcripts/client/Client.js +1 -6
- package/api/resources/environmentVariables/client/Client.d.ts +86 -0
- package/api/resources/environmentVariables/client/Client.js +342 -0
- package/api/resources/environmentVariables/client/index.d.ts +1 -0
- package/api/resources/environmentVariables/client/index.js +17 -0
- package/api/resources/environmentVariables/client/requests/EnvironmentVariablesListRequest.d.ts +23 -0
- package/api/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.d.ts +11 -0
- package/api/resources/environmentVariables/client/requests/index.d.ts +2 -0
- package/api/resources/environmentVariables/client/requests/index.js +2 -0
- package/api/resources/environmentVariables/index.d.ts +2 -0
- package/api/resources/environmentVariables/index.js +18 -0
- package/api/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.d.ts +13 -0
- package/api/resources/environmentVariables/types/EnvironmentVariablesListRequestType.d.ts +6 -0
- package/api/resources/environmentVariables/types/EnvironmentVariablesListRequestType.js +9 -0
- package/api/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.d.ts +2 -0
- package/api/resources/environmentVariables/types/index.d.ts +3 -0
- package/api/resources/environmentVariables/types/index.js +19 -0
- package/api/resources/forcedAlignment/client/Client.js +1 -6
- package/api/resources/history/client/Client.js +6 -36
- package/api/resources/index.d.ts +3 -0
- package/api/resources/index.js +4 -1
- package/api/resources/models/client/Client.js +1 -6
- package/api/resources/music/client/Client.d.ts +7 -0
- package/api/resources/music/client/Client.js +74 -30
- package/api/resources/music/client/requests/BodyVideoToMusicV1MusicVideoToMusicPost.d.ts +19 -0
- package/api/resources/music/client/requests/index.d.ts +1 -0
- package/api/resources/music/resources/compositionPlan/client/Client.js +1 -6
- package/api/resources/pronunciationDictionaries/client/Client.js +6 -36
- package/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +3 -18
- package/api/resources/samples/client/Client.js +1 -6
- package/api/resources/serviceAccounts/client/Client.js +1 -6
- package/api/resources/serviceAccounts/resources/apiKeys/client/Client.js +4 -24
- package/api/resources/speechToSpeech/client/Client.js +2 -12
- package/api/resources/speechToText/client/Client.js +12 -8
- package/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +7 -3
- package/api/resources/speechToText/resources/transcripts/client/Client.js +2 -12
- package/api/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.d.ts +4 -0
- package/api/resources/speechToText/types/index.d.ts +1 -0
- package/api/resources/speechToText/types/index.js +1 -0
- package/api/resources/studio/client/Client.js +1 -6
- package/api/resources/studio/resources/projects/client/Client.js +7 -42
- package/api/resources/studio/resources/projects/resources/chapters/client/Client.js +6 -36
- package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +3 -18
- package/api/resources/studio/resources/projects/resources/content/client/Client.js +1 -6
- package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +1 -6
- package/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +4 -24
- package/api/resources/textToDialogue/client/Client.js +4 -24
- package/api/resources/textToSoundEffects/client/Client.js +1 -6
- package/api/resources/textToSpeech/client/Client.js +4 -24
- package/api/resources/textToVoice/client/Client.js +4 -24
- package/api/resources/textToVoice/resources/preview/client/Client.js +1 -7
- package/api/resources/tokens/resources/singleUse/client/Client.js +1 -6
- package/api/resources/usage/client/Client.js +1 -6
- package/api/resources/user/client/Client.js +1 -6
- package/api/resources/user/resources/subscription/client/Client.js +1 -6
- package/api/resources/voices/client/Client.js +8 -48
- package/api/resources/voices/resources/ivc/client/Client.js +1 -6
- package/api/resources/voices/resources/pvc/client/Client.js +3 -18
- package/api/resources/voices/resources/pvc/resources/samples/client/Client.js +3 -18
- package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +1 -6
- package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +2 -12
- package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +1 -6
- package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +1 -6
- package/api/resources/voices/resources/pvc/resources/verification/client/Client.js +1 -6
- package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +2 -12
- package/api/resources/voices/resources/samples/resources/audio/client/Client.js +1 -7
- package/api/resources/voices/resources/settings/client/Client.js +2 -12
- package/api/resources/webhooks/client/Client.js +4 -24
- package/api/resources/workspace/client/Client.d.ts +3 -0
- package/api/resources/workspace/client/Client.js +13 -8
- package/api/resources/workspace/resources/authConnections/client/Client.d.ts +58 -0
- package/api/resources/workspace/resources/authConnections/client/Client.js +228 -0
- package/api/resources/workspace/resources/authConnections/client/index.d.ts +1 -0
- package/api/resources/workspace/resources/authConnections/client/index.js +2 -0
- package/api/resources/workspace/resources/authConnections/index.d.ts +2 -0
- package/api/resources/workspace/resources/authConnections/index.js +18 -0
- package/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +22 -0
- package/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +31 -0
- package/api/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
- package/api/resources/workspace/resources/authConnections/types/index.js +18 -0
- package/api/resources/workspace/resources/groups/client/Client.js +2 -12
- package/api/resources/workspace/resources/groups/resources/members/client/Client.js +2 -12
- package/api/resources/workspace/resources/index.d.ts +2 -0
- package/api/resources/workspace/resources/index.js +3 -1
- package/api/resources/workspace/resources/invites/client/Client.js +3 -18
- package/api/resources/workspace/resources/members/client/Client.js +1 -6
- package/api/resources/workspace/resources/resources/client/Client.js +3 -18
- package/api/types/AgentConfig.d.ts +2 -0
- package/api/types/AgentConfigApiModelWorkflowOverrideInput.d.ts +2 -0
- package/api/types/AgentConfigApiModelWorkflowOverrideOutput.d.ts +2 -0
- package/api/types/AgentConfigOverrideConfig.d.ts +2 -0
- package/api/types/AgentConfigOverrideInput.d.ts +2 -0
- package/api/types/AgentConfigOverrideOutput.d.ts +2 -0
- package/api/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
- package/api/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
- package/api/types/AgentSortBy.d.ts +1 -0
- package/api/types/AgentSortBy.js +1 -0
- package/api/types/ApiIntegrationOAuth2AuthCodeResponse.d.ts +24 -0
- package/api/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.d.ts +6 -0
- package/api/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.js +9 -0
- package/api/types/ApiIntegrationWebhookOverrides.d.ts +11 -0
- package/api/types/ApiIntegrationWebhookOverridesRequestHeadersValue.d.ts +2 -0
- package/api/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.d.ts +13 -0
- package/api/types/ApiIntegrationWebhookToolConfigInput.d.ts +1 -1
- package/api/types/ApiIntegrationWebhookToolConfigOutput.d.ts +1 -1
- package/api/types/AssetTranscription.d.ts +6 -0
- package/api/types/AssetTranscriptionWord.d.ts +6 -0
- package/api/types/AstAdditionOperatorNodeInput.d.ts +7 -0
- package/api/types/AstAdditionOperatorNodeInputLeft.d.ts +62 -0
- package/api/types/AstAdditionOperatorNodeInputRight.d.ts +62 -0
- package/api/types/AstAdditionOperatorNodeOutput.d.ts +7 -0
- package/api/types/AstAdditionOperatorNodeOutputLeft.d.ts +61 -0
- package/api/types/AstAdditionOperatorNodeOutputRight.d.ts +61 -0
- package/api/types/AstAndOperatorNodeInputChildrenItem.d.ts +18 -2
- package/api/types/AstAndOperatorNodeOutputChildrenItem.d.ts +16 -1
- package/api/types/AstConditionalOperatorNodeInput.d.ts +9 -0
- package/api/types/AstConditionalOperatorNodeInputCondition.d.ts +62 -0
- package/api/types/AstConditionalOperatorNodeInputFalseExpression.d.ts +62 -0
- package/api/types/AstConditionalOperatorNodeInputTrueExpression.d.ts +62 -0
- package/api/types/AstConditionalOperatorNodeOutput.d.ts +9 -0
- package/api/types/AstConditionalOperatorNodeOutputCondition.d.ts +61 -0
- package/api/types/AstConditionalOperatorNodeOutputFalseExpression.d.ts +61 -0
- package/api/types/AstConditionalOperatorNodeOutputTrueExpression.d.ts +61 -0
- package/api/types/AstDivisionOperatorNodeInput.d.ts +7 -0
- package/api/types/AstDivisionOperatorNodeInputLeft.d.ts +62 -0
- package/api/types/AstDivisionOperatorNodeInputRight.d.ts +62 -0
- package/api/types/AstDivisionOperatorNodeOutput.d.ts +7 -0
- package/api/types/AstDivisionOperatorNodeOutputLeft.d.ts +61 -0
- package/api/types/AstDivisionOperatorNodeOutputRight.d.ts +61 -0
- package/api/types/AstEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/api/types/AstEqualsOperatorNodeInputRight.d.ts +18 -2
- package/api/types/AstEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/api/types/AstEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/api/types/AstGreaterThanOperatorNodeInputLeft.d.ts +18 -2
- package/api/types/AstGreaterThanOperatorNodeInputRight.d.ts +18 -2
- package/api/types/AstGreaterThanOperatorNodeOutputLeft.d.ts +16 -1
- package/api/types/AstGreaterThanOperatorNodeOutputRight.d.ts +16 -1
- package/api/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/api/types/AstGreaterThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
- package/api/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/api/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/api/types/AstLessThanOperatorNodeInputLeft.d.ts +18 -2
- package/api/types/AstLessThanOperatorNodeInputRight.d.ts +18 -2
- package/api/types/AstLessThanOperatorNodeOutputLeft.d.ts +16 -1
- package/api/types/AstLessThanOperatorNodeOutputRight.d.ts +16 -1
- package/api/types/AstLessThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/api/types/AstLessThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
- package/api/types/AstLessThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/api/types/AstLessThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/api/types/AstMultiplicationOperatorNodeInput.d.ts +7 -0
- package/api/types/AstMultiplicationOperatorNodeInputLeft.d.ts +62 -0
- package/api/types/AstMultiplicationOperatorNodeInputRight.d.ts +62 -0
- package/api/types/AstMultiplicationOperatorNodeOutput.d.ts +7 -0
- package/api/types/AstMultiplicationOperatorNodeOutputLeft.d.ts +61 -0
- package/api/types/AstMultiplicationOperatorNodeOutputRight.d.ts +61 -0
- package/api/types/AstNotEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/api/types/AstNotEqualsOperatorNodeInputRight.d.ts +18 -2
- package/api/types/AstNotEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/api/types/AstNotEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/api/types/AstOrOperatorNodeInputChildrenItem.d.ts +18 -2
- package/api/types/AstOrOperatorNodeOutputChildrenItem.d.ts +16 -1
- package/api/types/AstSubtractionOperatorNodeInput.d.ts +7 -0
- package/api/types/AstSubtractionOperatorNodeInput.js +3 -0
- package/api/types/AstSubtractionOperatorNodeInputLeft.d.ts +62 -0
- package/api/types/AstSubtractionOperatorNodeInputLeft.js +3 -0
- package/api/types/AstSubtractionOperatorNodeInputRight.d.ts +62 -0
- package/api/types/AstSubtractionOperatorNodeInputRight.js +3 -0
- package/api/types/AstSubtractionOperatorNodeOutput.d.ts +7 -0
- package/api/types/AstSubtractionOperatorNodeOutput.js +3 -0
- package/api/types/AstSubtractionOperatorNodeOutputLeft.d.ts +61 -0
- package/api/types/AstSubtractionOperatorNodeOutputLeft.js +3 -0
- package/api/types/AstSubtractionOperatorNodeOutputRight.d.ts +61 -0
- package/api/types/AstSubtractionOperatorNodeOutputRight.js +3 -0
- package/api/types/AstllmNodeInput.d.ts +2 -4
- package/api/types/AstllmNodeInputPrompt.d.ts +5 -0
- package/api/types/AstllmNodeInputPrompt.js +3 -0
- package/api/types/AstllmNodeInputValueSchema.d.ts +6 -0
- package/api/types/AstllmNodeInputValueSchema.js +3 -0
- package/api/types/AstllmNodeOutput.d.ts +4 -1
- package/api/types/AsyncConversationMetadata.d.ts +1 -0
- package/api/types/AudioAnalysis.d.ts +6 -0
- package/api/types/AudioAnalysis.js +3 -0
- package/api/types/AudioAnalysisResult.d.ts +10 -0
- package/api/types/AudioAnalysisResult.js +3 -0
- package/api/types/AudioAnalysisStatus.d.ts +6 -0
- package/api/types/AudioAnalysisStatus.js +9 -0
- package/api/types/AudioKeyMoment.d.ts +5 -0
- package/api/types/AudioKeyMoment.js +3 -0
- package/api/types/AudioSegment.d.ts +9 -0
- package/api/types/AudioSegment.js +3 -0
- package/api/types/AuthConnectionDependencies.d.ts +9 -0
- package/api/types/AuthConnectionDependencies.js +3 -0
- package/api/types/AuthConnectionDependenciesMcpServersItem.d.ts +10 -0
- package/api/types/AuthConnectionDependenciesMcpServersItem.js +3 -0
- package/api/types/AuthConnectionDependenciesToolsItem.d.ts +10 -0
- package/api/types/AuthConnectionDependenciesToolsItem.js +3 -0
- package/api/types/AutoSyncInfo.d.ts +10 -0
- package/api/types/AutoSyncInfo.js +3 -0
- package/api/types/BasicAuthResponse.d.ts +11 -0
- package/api/types/BasicAuthResponse.js +3 -0
- package/api/types/BatchCallDetailedResponse.d.ts +3 -0
- package/api/types/BatchCallResponse.d.ts +3 -0
- package/api/types/BearerAuthResponse.d.ts +10 -0
- package/api/types/BearerAuthResponse.js +3 -0
- package/api/types/CanvasPlacement.d.ts +2 -0
- package/api/types/CaptionStyleModel.d.ts +2 -0
- package/api/types/CaptionStyleModelTextBlendMode.d.ts +6 -0
- package/api/types/CaptionStyleModelTextBlendMode.js +9 -0
- package/api/types/CaptionStyleModelTextTransform.d.ts +5 -0
- package/api/types/CaptionStyleModelTextTransform.js +8 -0
- package/api/types/CaptionStyleModelTextWeight.d.ts +1 -0
- package/api/types/CaptionStyleModelTextWeight.js +1 -0
- package/api/types/ContentConfig.d.ts +7 -7
- package/api/types/ContentGuardrailInput.d.ts +1 -0
- package/api/types/ContentGuardrailInputTriggerAction.d.ts +10 -0
- package/api/types/ContentGuardrailInputTriggerAction.js +3 -0
- package/api/types/ContentGuardrailOutput.d.ts +1 -0
- package/api/types/ContentGuardrailOutputTriggerAction.d.ts +10 -0
- package/api/types/ContentGuardrailOutputTriggerAction.js +3 -0
- package/api/types/ContentThresholdGuardrail.d.ts +5 -0
- package/api/types/ContentThresholdGuardrail.js +3 -0
- package/api/types/ContentThresholdGuardrailThreshold.d.ts +1 -0
- package/api/types/ContentThresholdGuardrailThreshold.js +3 -0
- package/api/types/Contributor.d.ts +2 -0
- package/api/types/ConvAiEnvVarLocator.d.ts +6 -0
- package/api/types/ConvAiEnvVarLocator.js +3 -0
- package/api/types/ConversationConfig.d.ts +2 -0
- package/api/types/ConversationConfigWorkflowOverride.d.ts +2 -0
- package/api/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +1 -1
- package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.d.ts +16 -0
- package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.js +3 -0
- package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.d.ts +16 -0
- package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.js +3 -0
- package/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -0
- package/api/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +1 -1
- package/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -0
- package/api/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +1 -1
- package/api/types/ConversationHistoryTranscriptResponseModel.d.ts +1 -0
- package/api/types/ConversationHistoryTranscriptResponseModelToolResultsItem.d.ts +1 -1
- package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.d.ts +7 -0
- package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.js +3 -0
- package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.d.ts +7 -0
- package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.js +3 -0
- package/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +1 -1
- package/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +1 -1
- package/api/types/ConversationHistoryTwilioPhoneCallModel.d.ts +1 -1
- package/api/types/ConversationInitiationClientDataInternal.d.ts +6 -0
- package/api/types/ConversationInitiationClientDataRequestInput.d.ts +4 -0
- package/api/types/ConversationInitiationClientDataRequestOutput.d.ts +4 -0
- package/api/types/ConversationSummaryResponseModel.d.ts +2 -1
- package/api/types/CreateAuthConnectionEnvironmentVariableRequest.d.ts +7 -0
- package/api/types/CreateAuthConnectionEnvironmentVariableRequest.js +3 -0
- package/api/types/CreateBasicAuthRequest.d.ts +9 -0
- package/api/types/CreateBasicAuthRequest.js +3 -0
- package/api/types/CreateCustomHeaderAuthRequest.d.ts +7 -0
- package/api/types/CreateCustomHeaderAuthRequest.js +3 -0
- package/api/types/CreateOAuth2ClientCredsRequest.d.ts +15 -0
- package/api/types/CreateOAuth2ClientCredsRequest.js +3 -0
- package/api/types/CreateOAuth2JwtRequest.d.ts +27 -0
- package/api/types/CreateOAuth2JwtRequest.js +3 -0
- package/api/types/CreateOAuth2JwtRequestAlgorithm.d.ts +10 -0
- package/api/types/CreateOAuth2JwtRequestAlgorithm.js +13 -0
- package/api/types/CreatePrivateKeyJwtRequest.d.ts +23 -0
- package/api/types/CreatePrivateKeyJwtRequest.js +3 -0
- package/api/types/CreatePrivateKeyJwtRequestAlgorithm.d.ts +10 -0
- package/api/types/CreatePrivateKeyJwtRequestAlgorithm.js +13 -0
- package/api/types/CreateSecretEnvironmentVariableRequest.d.ts +7 -0
- package/api/types/CreateSecretEnvironmentVariableRequest.js +3 -0
- package/api/types/CreateSimulationTestRequest.d.ts +4 -0
- package/api/types/CreateStringEnvironmentVariableRequest.d.ts +6 -0
- package/api/types/CreateStringEnvironmentVariableRequest.js +3 -0
- package/api/types/CustomGuardrailConfig.d.ts +1 -0
- package/api/types/CustomGuardrailConfigTriggerAction.d.ts +10 -0
- package/api/types/CustomGuardrailConfigTriggerAction.js +3 -0
- package/api/types/CustomHeaderAuthResponse.d.ts +12 -0
- package/api/types/CustomHeaderAuthResponse.js +3 -0
- package/api/types/CustomLlm.d.ts +1 -1
- package/api/types/CustomLlmApiKey.d.ts +5 -0
- package/api/types/CustomLlmApiKey.js +3 -0
- package/api/types/CustomLlmRequestHeadersValue.d.ts +1 -1
- package/api/types/DependentAvailableMcpServerIdentifier.d.ts +7 -0
- package/api/types/DependentAvailableMcpServerIdentifier.js +3 -0
- package/api/types/DependentAvailableMcpServerIdentifierAccessLevel.d.ts +7 -0
- package/api/types/DependentAvailableMcpServerIdentifierAccessLevel.js +10 -0
- package/api/types/DependentIntegrationConnectionIdentifier.d.ts +7 -0
- package/api/types/DependentIntegrationConnectionIdentifier.js +3 -0
- package/api/types/DependentUnknownMcpServerIdentifier.d.ts +3 -0
- package/api/types/DependentUnknownMcpServerIdentifier.js +3 -0
- package/api/types/DependentUnknownToolIdentifier.d.ts +3 -1
- package/api/types/DirectPublishingReadResponseModel.d.ts +1 -0
- package/api/types/EmbeddingModelEnum.d.ts +0 -1
- package/api/types/EmbeddingModelEnum.js +0 -1
- package/api/types/EndCallTriggerAction.d.ts +1 -0
- package/api/types/EndCallTriggerAction.js +3 -0
- package/api/types/EnvironmentAuthConnectionLocator.d.ts +8 -0
- package/api/types/EnvironmentAuthConnectionLocator.js +3 -0
- package/api/types/EnvironmentVariableAuthConnectionValue.d.ts +3 -0
- package/api/types/EnvironmentVariableAuthConnectionValue.js +3 -0
- package/api/types/EnvironmentVariableAuthConnectionValueRequest.d.ts +3 -0
- package/api/types/EnvironmentVariableAuthConnectionValueRequest.js +3 -0
- package/api/types/EnvironmentVariableResponse.d.ts +11 -0
- package/api/types/EnvironmentVariableResponse.js +3 -0
- package/api/types/EnvironmentVariableResponseType.d.ts +6 -0
- package/api/types/EnvironmentVariableResponseType.js +9 -0
- package/api/types/EnvironmentVariableResponseValues.d.ts +2 -0
- package/api/types/EnvironmentVariableResponseValues.js +3 -0
- package/api/types/EnvironmentVariableSecretValue.d.ts +3 -0
- package/api/types/EnvironmentVariableSecretValue.js +3 -0
- package/api/types/EnvironmentVariableSecretValueRequest.d.ts +3 -0
- package/api/types/EnvironmentVariableSecretValueRequest.js +3 -0
- package/api/types/EnvironmentVariablesListResponse.d.ts +6 -0
- package/api/types/EnvironmentVariablesListResponse.js +3 -0
- package/api/types/FeaturesUsageCommonModel.d.ts +1 -0
- package/api/types/FileInputConfig.d.ts +6 -0
- package/api/types/FileInputConfig.js +3 -0
- package/api/types/FileInputConfigWorkflowOverride.d.ts +6 -0
- package/api/types/FileInputConfigWorkflowOverride.js +3 -0
- package/api/types/GenesysRegion.d.ts +20 -0
- package/api/types/GenesysRegion.js +23 -0
- package/api/types/GetConvAiSettingsResponseModel.d.ts +2 -0
- package/api/types/GetKnowledgeBaseFolderResponseModel.d.ts +1 -0
- package/api/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +1 -0
- package/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +1 -0
- package/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +1 -0
- package/api/types/GetSimulationTestResponseModel.d.ts +4 -0
- package/api/types/GetTestSuiteInvocationResponseModel.d.ts +1 -0
- package/api/types/GuardrailsV1Input.d.ts +0 -1
- package/api/types/GuardrailsV1Output.d.ts +0 -1
- package/api/types/ListAuthConnectionsResponse.d.ts +4 -0
- package/api/types/ListAuthConnectionsResponse.js +3 -0
- package/api/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +31 -0
- package/api/types/ListAuthConnectionsResponseAuthConnectionsItem.js +3 -0
- package/api/types/LlmInfoModelInput.d.ts +2 -0
- package/api/types/LlmInfoModelOutput.d.ts +2 -0
- package/api/types/LlmLiteralJsonSchemaProperty.d.ts +7 -0
- package/api/types/LlmLiteralJsonSchemaProperty.js +3 -0
- package/api/types/LlmLiteralJsonSchemaPropertyType.d.ts +7 -0
- package/api/types/LlmLiteralJsonSchemaPropertyType.js +10 -0
- package/api/types/McpServerConfigInput.d.ts +1 -1
- package/api/types/McpServerConfigInputAuthConnection.d.ts +5 -0
- package/api/types/McpServerConfigInputAuthConnection.js +3 -0
- package/api/types/McpServerConfigInputRequestHeadersValue.d.ts +1 -1
- package/api/types/McpServerConfigOutput.d.ts +1 -1
- package/api/types/McpServerConfigOutputAuthConnection.d.ts +5 -0
- package/api/types/McpServerConfigOutputAuthConnection.js +3 -0
- package/api/types/McpServerConfigOutputRequestHeadersValue.d.ts +1 -1
- package/api/types/MessageSearchSortBy.d.ts +5 -0
- package/api/types/MessageSearchSortBy.js +8 -0
- package/api/types/MockNoMatchBehavior.d.ts +5 -0
- package/api/types/MockNoMatchBehavior.js +8 -0
- package/api/types/MockingStrategy.d.ts +6 -0
- package/api/types/MockingStrategy.js +9 -0
- package/api/types/OAuth2ClientCredsResponse.d.ts +16 -0
- package/api/types/OAuth2ClientCredsResponse.js +3 -0
- package/api/types/OAuth2JwtResponse.d.ts +28 -0
- package/api/types/OAuth2JwtResponse.js +3 -0
- package/api/types/OAuth2JwtResponseAlgorithm.d.ts +10 -0
- package/api/types/OAuth2JwtResponseAlgorithm.js +13 -0
- package/api/types/OAuthConnectionStatus.d.ts +6 -0
- package/api/types/OAuthConnectionStatus.js +9 -0
- package/api/types/OrchestratorToolMockBehaviorConfig.d.ts +12 -0
- package/api/types/OrchestratorToolMockBehaviorConfig.js +3 -0
- package/api/types/PermissionType.d.ts +1 -0
- package/api/types/PermissionType.js +1 -0
- package/api/types/PlayDtmfToolConfig.d.ts +3 -1
- package/api/types/PreviewAudioDbModel.d.ts +2 -0
- package/api/types/PrivateKeyJwtResponse.d.ts +24 -0
- package/api/types/PrivateKeyJwtResponse.js +3 -0
- package/api/types/PrivateKeyJwtResponseAlgorithm.d.ts +10 -0
- package/api/types/PrivateKeyJwtResponseAlgorithm.js +13 -0
- package/api/types/ProcedureCompilerMode.d.ts +5 -0
- package/api/types/ProcedureCompilerMode.js +8 -0
- package/api/types/ProcedureSettings.d.ts +4 -0
- package/api/types/ProcedureSettings.js +3 -0
- package/api/types/ProjectExternalAudioResponseModel.d.ts +3 -1
- package/api/types/ProjectImageResponseModel.d.ts +1 -0
- package/api/types/ProjectVideoResponseModel.d.ts +1 -0
- package/api/types/RetryTriggerAction.d.ts +4 -0
- package/api/types/RetryTriggerAction.js +3 -0
- package/api/types/SimulationTestModel.d.ts +4 -0
- package/api/types/SimulationToolMockBehaviorConfig.d.ts +12 -0
- package/api/types/SimulationToolMockBehaviorConfig.js +3 -0
- package/api/types/SingleTestRunRequestModel.d.ts +4 -0
- package/api/types/SpeechHistoryItemResponse.d.ts +2 -0
- package/api/types/Subscription.d.ts +4 -0
- package/api/types/SystemToolConfigInputParams.d.ts +1 -16
- package/api/types/SystemToolConfigOutputParams.d.ts +1 -16
- package/api/types/TelephonyDirection.d.ts +5 -0
- package/api/types/TelephonyDirection.js +8 -0
- package/api/types/ToolRequestModel.d.ts +2 -0
- package/api/types/ToolResponseMockConfigInput.d.ts +7 -0
- package/api/types/ToolResponseMockConfigInput.js +3 -0
- package/api/types/ToolResponseMockConfigOutput.d.ts +7 -0
- package/api/types/ToolResponseMockConfigOutput.js +3 -0
- package/api/types/ToolResponseModel.d.ts +2 -0
- package/api/types/UnitTestRunResponseModel.d.ts +3 -0
- package/api/types/UpdateSimulationTestRequest.d.ts +4 -0
- package/api/types/VideoAnalysisResult.d.ts +1 -1
- package/api/types/WebhookToolApiSchemaConfigInput.d.ts +1 -1
- package/api/types/WebhookToolApiSchemaConfigInputAuthConnection.d.ts +5 -0
- package/api/types/WebhookToolApiSchemaConfigInputAuthConnection.js +3 -0
- package/api/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +1 -1
- package/api/types/WebhookToolApiSchemaConfigOutput.d.ts +1 -1
- package/api/types/WebhookToolApiSchemaConfigOutputAuthConnection.d.ts +5 -0
- package/api/types/WebhookToolApiSchemaConfigOutputAuthConnection.js +3 -0
- package/api/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +1 -1
- package/api/types/WhatsAppAuthResponse.d.ts +8 -0
- package/api/types/WhatsAppAuthResponse.js +3 -0
- package/api/types/WorkflowExpressionConditionModelInputExpression.d.ts +18 -2
- package/api/types/WorkflowExpressionConditionModelOutputExpression.d.ts +16 -1
- package/api/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +1 -1
- package/api/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +1 -1
- package/api/types/WorkspaceGroupPermission.d.ts +1 -0
- package/api/types/WorkspaceGroupPermission.js +1 -0
- package/api/types/WorkspaceResourceType.d.ts +2 -0
- package/api/types/WorkspaceResourceType.js +2 -0
- package/api/types/index.d.ts +119 -25
- package/api/types/index.js +119 -25
- package/dist/BaseClient.js +2 -2
- package/dist/Client.d.ts +5 -2
- package/dist/Client.js +46 -41
- package/dist/api/errors/BadRequestError.d.ts +1 -2
- package/dist/api/errors/UnprocessableEntityError.d.ts +1 -2
- package/dist/api/resources/audioIsolation/client/Client.js +2 -12
- package/dist/api/resources/audioNative/client/Client.js +4 -24
- package/dist/api/resources/conversationalAi/client/Client.js +4 -24
- package/dist/api/resources/conversationalAi/conversation/Conversation.d.ts +12 -0
- package/dist/api/resources/conversationalAi/conversation/Conversation.js +18 -0
- package/dist/api/resources/conversationalAi/conversation/__tests__/Conversation.test.js +25 -0
- package/dist/api/resources/conversationalAi/conversation/events.d.ts +19 -2
- package/dist/api/resources/conversationalAi/conversation/events.js +2 -0
- package/dist/api/resources/conversationalAi/resources/agents/client/Client.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +14 -55
- package/dist/api/resources/conversationalAi/resources/agents/client/requests/AgentsListRequest.d.ts +4 -1
- package/dist/api/resources/conversationalAi/resources/agents/resources/branches/client/Client.js +5 -30
- package/dist/api/resources/conversationalAi/resources/agents/resources/deployments/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/agents/resources/drafts/client/Client.d.ts +120 -40
- package/dist/api/resources/conversationalAi/resources/agents/resources/drafts/client/Client.js +122 -52
- package/dist/api/resources/conversationalAi/resources/agents/resources/drafts/client/requests/BodyCreateAgentDraftV1ConvaiAgentsAgentIdDraftsPost.d.ts +120 -40
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/agents/resources/summaries/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/analytics/resources/liveCount/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.js +6 -36
- package/dist/api/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +2 -0
- package/dist/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +4 -2
- package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +34 -35
- package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +4 -1
- package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetWebrtcTokenRequest.d.ts +4 -1
- package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +4 -0
- package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +1 -7
- package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/conversations/resources/files/client/Client.js +2 -12
- package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.js +25 -13
- package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesTextSearchRequest.d.ts +7 -0
- package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +2 -12
- package/dist/api/resources/conversationalAi/resources/index.d.ts +0 -1
- package/dist/api/resources/conversationalAi/resources/index.js +0 -1
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +7 -13
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/requests/KnowledgeBaseListRequest.d.ts +4 -1
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +13 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +56 -6
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.d.ts +16 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.js +3 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +12 -72
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.d.ts +4 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +4 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.d.ts +5 -2
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +17 -12
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/index.js +15 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/ChunkGetRequest.d.ts +11 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/ChunkGetRequest.js +3 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/index.js +2 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/summaries/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/index.js +1 -0
- package/dist/api/resources/conversationalAi/resources/llm/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/mcpServers/client/Client.js +5 -30
- package/dist/api/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/mcpServers/resources/approvalPolicy/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolApprovals/client/Client.js +2 -12
- package/dist/api/resources/conversationalAi/resources/mcpServers/resources/toolConfigs/client/Client.js +4 -24
- package/dist/api/resources/conversationalAi/resources/mcpServers/resources/tools/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.d.ts +5 -0
- package/dist/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.js +3 -0
- package/dist/api/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/mcpServers/types/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/mcpServers/types/index.js +1 -0
- package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +5 -30
- package/dist/api/resources/conversationalAi/resources/secrets/client/Client.js +4 -24
- package/dist/api/resources/conversationalAi/resources/settings/client/Client.js +2 -12
- package/dist/api/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +2 -0
- package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/tests/client/Client.js +6 -36
- package/dist/api/resources/conversationalAi/resources/tests/resources/invocations/client/Client.js +3 -18
- package/dist/api/resources/conversationalAi/resources/tools/client/Client.d.ts +6 -2
- package/dist/api/resources/conversationalAi/resources/tools/client/Client.js +25 -43
- package/dist/api/resources/conversationalAi/resources/tools/client/requests/ToolsDeleteRequest.d.ts +10 -0
- package/dist/api/resources/conversationalAi/resources/tools/client/requests/ToolsDeleteRequest.js +3 -0
- package/dist/api/resources/conversationalAi/resources/tools/client/requests/ToolsListRequest.d.ts +4 -1
- package/dist/api/resources/conversationalAi/resources/tools/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/twilio/client/Client.js +2 -12
- package/dist/api/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/twilio/index.d.ts +0 -1
- package/dist/api/resources/conversationalAi/resources/twilio/index.js +0 -1
- package/dist/api/resources/conversationalAi/resources/users/client/Client.js +1 -6
- package/dist/api/resources/conversationalAi/resources/whatsapp/client/Client.js +2 -12
- package/dist/api/resources/conversationalAi/resources/whatsappAccounts/client/Client.js +4 -24
- package/dist/api/resources/dubbing/client/Client.js +4 -24
- package/dist/api/resources/dubbing/resources/audio/client/Client.js +1 -7
- package/dist/api/resources/dubbing/resources/resource/client/Client.js +6 -36
- package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.js +1 -6
- package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +2 -12
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +3 -18
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +1 -6
- package/dist/api/resources/dubbing/resources/transcript/client/Client.js +1 -6
- package/dist/api/resources/dubbing/resources/transcripts/client/Client.js +1 -6
- package/dist/api/resources/environmentVariables/client/Client.d.ts +86 -0
- package/dist/api/resources/environmentVariables/client/Client.js +342 -0
- package/dist/api/resources/environmentVariables/client/index.d.ts +1 -0
- package/dist/api/resources/environmentVariables/client/index.js +17 -0
- package/dist/api/resources/environmentVariables/client/requests/EnvironmentVariablesListRequest.d.ts +23 -0
- package/dist/api/resources/environmentVariables/client/requests/EnvironmentVariablesListRequest.js +3 -0
- package/dist/api/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.d.ts +11 -0
- package/dist/api/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.js +3 -0
- package/dist/api/resources/environmentVariables/client/requests/index.d.ts +2 -0
- package/dist/api/resources/environmentVariables/client/requests/index.js +2 -0
- package/dist/api/resources/environmentVariables/index.d.ts +2 -0
- package/dist/api/resources/environmentVariables/index.js +18 -0
- package/dist/api/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.d.ts +13 -0
- package/dist/api/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.js +3 -0
- package/dist/api/resources/environmentVariables/types/EnvironmentVariablesListRequestType.d.ts +6 -0
- package/dist/api/resources/environmentVariables/types/EnvironmentVariablesListRequestType.js +9 -0
- package/dist/api/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.d.ts +2 -0
- package/dist/api/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.js +3 -0
- package/dist/api/resources/environmentVariables/types/index.d.ts +3 -0
- package/dist/api/resources/environmentVariables/types/index.js +19 -0
- package/dist/api/resources/forcedAlignment/client/Client.js +1 -6
- package/dist/api/resources/history/client/Client.js +6 -36
- package/dist/api/resources/index.d.ts +3 -0
- package/dist/api/resources/index.js +4 -1
- package/dist/api/resources/models/client/Client.js +1 -6
- package/dist/api/resources/music/client/Client.d.ts +7 -0
- package/dist/api/resources/music/client/Client.js +74 -30
- package/dist/api/resources/music/client/requests/BodyVideoToMusicV1MusicVideoToMusicPost.d.ts +19 -0
- package/dist/api/resources/music/client/requests/BodyVideoToMusicV1MusicVideoToMusicPost.js +3 -0
- package/dist/api/resources/music/client/requests/index.d.ts +1 -0
- package/dist/api/resources/music/resources/compositionPlan/client/Client.js +1 -6
- package/dist/api/resources/pronunciationDictionaries/client/Client.js +6 -36
- package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +3 -18
- package/dist/api/resources/samples/client/Client.js +1 -6
- package/dist/api/resources/serviceAccounts/client/Client.js +1 -6
- package/dist/api/resources/serviceAccounts/resources/apiKeys/client/Client.js +4 -24
- package/dist/api/resources/speechToSpeech/client/Client.js +2 -12
- package/dist/api/resources/speechToText/client/Client.js +12 -8
- package/dist/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +7 -3
- package/dist/api/resources/speechToText/resources/transcripts/client/Client.js +2 -12
- package/dist/api/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.d.ts +4 -0
- package/dist/api/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.js +3 -0
- package/dist/api/resources/speechToText/types/index.d.ts +1 -0
- package/dist/api/resources/speechToText/types/index.js +1 -0
- package/dist/api/resources/studio/client/Client.js +1 -6
- package/dist/api/resources/studio/resources/projects/client/Client.js +7 -42
- package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.js +6 -36
- package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +3 -18
- package/dist/api/resources/studio/resources/projects/resources/content/client/Client.js +1 -6
- package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +1 -6
- package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +4 -24
- package/dist/api/resources/textToDialogue/client/Client.js +4 -24
- package/dist/api/resources/textToSoundEffects/client/Client.js +1 -6
- package/dist/api/resources/textToSpeech/client/Client.js +4 -24
- package/dist/api/resources/textToVoice/client/Client.js +4 -24
- package/dist/api/resources/textToVoice/resources/preview/client/Client.js +1 -7
- package/dist/api/resources/tokens/resources/singleUse/client/Client.js +1 -6
- package/dist/api/resources/usage/client/Client.js +1 -6
- package/dist/api/resources/user/client/Client.js +1 -6
- package/dist/api/resources/user/resources/subscription/client/Client.js +1 -6
- package/dist/api/resources/voices/client/Client.js +8 -48
- package/dist/api/resources/voices/resources/ivc/client/Client.js +1 -6
- package/dist/api/resources/voices/resources/pvc/client/Client.js +3 -18
- package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.js +3 -18
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +1 -6
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +2 -12
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +1 -6
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +1 -6
- package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.js +1 -6
- package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +2 -12
- package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.js +1 -7
- package/dist/api/resources/voices/resources/settings/client/Client.js +2 -12
- package/dist/api/resources/webhooks/client/Client.js +4 -24
- package/dist/api/resources/workspace/client/Client.d.ts +3 -0
- package/dist/api/resources/workspace/client/Client.js +13 -8
- package/dist/api/resources/workspace/resources/authConnections/client/Client.d.ts +58 -0
- package/dist/api/resources/workspace/resources/authConnections/client/Client.js +228 -0
- package/dist/api/resources/workspace/resources/authConnections/client/index.d.ts +1 -0
- package/dist/api/resources/workspace/resources/authConnections/client/index.js +2 -0
- package/dist/api/resources/workspace/resources/authConnections/index.d.ts +2 -0
- package/dist/api/resources/workspace/resources/authConnections/index.js +18 -0
- package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +22 -0
- package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js +3 -0
- package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +31 -0
- package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js +3 -0
- package/dist/api/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
- package/dist/api/resources/workspace/resources/authConnections/types/index.js +18 -0
- package/dist/api/resources/workspace/resources/groups/client/Client.js +2 -12
- package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.js +2 -12
- package/dist/api/resources/workspace/resources/index.d.ts +2 -0
- package/dist/api/resources/workspace/resources/index.js +3 -1
- package/dist/api/resources/workspace/resources/invites/client/Client.js +3 -18
- package/dist/api/resources/workspace/resources/members/client/Client.js +1 -6
- package/dist/api/resources/workspace/resources/resources/client/Client.js +3 -18
- package/dist/api/types/AgentConfig.d.ts +2 -0
- package/dist/api/types/AgentConfigApiModelWorkflowOverrideInput.d.ts +2 -0
- package/dist/api/types/AgentConfigApiModelWorkflowOverrideOutput.d.ts +2 -0
- package/dist/api/types/AgentConfigOverrideConfig.d.ts +2 -0
- package/dist/api/types/AgentConfigOverrideInput.d.ts +2 -0
- package/dist/api/types/AgentConfigOverrideOutput.d.ts +2 -0
- package/dist/api/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
- package/dist/api/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
- package/dist/api/types/AgentSortBy.d.ts +1 -0
- package/dist/api/types/AgentSortBy.js +1 -0
- package/dist/api/types/ApiIntegrationOAuth2AuthCodeResponse.d.ts +24 -0
- package/dist/api/types/ApiIntegrationOAuth2AuthCodeResponse.js +3 -0
- package/dist/api/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.d.ts +6 -0
- package/dist/api/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.js +9 -0
- package/dist/api/types/ApiIntegrationWebhookOverrides.d.ts +11 -0
- package/dist/api/types/ApiIntegrationWebhookOverrides.js +3 -0
- package/dist/api/types/ApiIntegrationWebhookOverridesRequestHeadersValue.d.ts +2 -0
- package/dist/api/types/ApiIntegrationWebhookOverridesRequestHeadersValue.js +3 -0
- package/dist/api/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.d.ts +13 -0
- package/dist/api/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.js +3 -0
- package/dist/api/types/ApiIntegrationWebhookToolConfigInput.d.ts +1 -1
- package/dist/api/types/ApiIntegrationWebhookToolConfigOutput.d.ts +1 -1
- package/dist/api/types/AssetTranscription.d.ts +6 -0
- package/dist/api/types/AssetTranscription.js +3 -0
- package/dist/api/types/AssetTranscriptionWord.d.ts +6 -0
- package/dist/api/types/AssetTranscriptionWord.js +3 -0
- package/dist/api/types/AstAdditionOperatorNodeInput.d.ts +7 -0
- package/dist/api/types/AstAdditionOperatorNodeInput.js +3 -0
- package/dist/api/types/AstAdditionOperatorNodeInputLeft.d.ts +62 -0
- package/dist/api/types/AstAdditionOperatorNodeInputLeft.js +3 -0
- package/dist/api/types/AstAdditionOperatorNodeInputRight.d.ts +62 -0
- package/dist/api/types/AstAdditionOperatorNodeInputRight.js +3 -0
- package/dist/api/types/AstAdditionOperatorNodeOutput.d.ts +7 -0
- package/dist/api/types/AstAdditionOperatorNodeOutput.js +3 -0
- package/dist/api/types/AstAdditionOperatorNodeOutputLeft.d.ts +61 -0
- package/dist/api/types/AstAdditionOperatorNodeOutputLeft.js +3 -0
- package/dist/api/types/AstAdditionOperatorNodeOutputRight.d.ts +61 -0
- package/dist/api/types/AstAdditionOperatorNodeOutputRight.js +3 -0
- package/dist/api/types/AstAndOperatorNodeInputChildrenItem.d.ts +18 -2
- package/dist/api/types/AstAndOperatorNodeOutputChildrenItem.d.ts +16 -1
- package/dist/api/types/AstConditionalOperatorNodeInput.d.ts +9 -0
- package/dist/api/types/AstConditionalOperatorNodeInput.js +3 -0
- package/dist/api/types/AstConditionalOperatorNodeInputCondition.d.ts +62 -0
- package/dist/api/types/AstConditionalOperatorNodeInputCondition.js +3 -0
- package/dist/api/types/AstConditionalOperatorNodeInputFalseExpression.d.ts +62 -0
- package/dist/api/types/AstConditionalOperatorNodeInputFalseExpression.js +3 -0
- package/dist/api/types/AstConditionalOperatorNodeInputTrueExpression.d.ts +62 -0
- package/dist/api/types/AstConditionalOperatorNodeInputTrueExpression.js +3 -0
- package/dist/api/types/AstConditionalOperatorNodeOutput.d.ts +9 -0
- package/dist/api/types/AstConditionalOperatorNodeOutput.js +3 -0
- package/dist/api/types/AstConditionalOperatorNodeOutputCondition.d.ts +61 -0
- package/dist/api/types/AstConditionalOperatorNodeOutputCondition.js +3 -0
- package/dist/api/types/AstConditionalOperatorNodeOutputFalseExpression.d.ts +61 -0
- package/dist/api/types/AstConditionalOperatorNodeOutputFalseExpression.js +3 -0
- package/dist/api/types/AstConditionalOperatorNodeOutputTrueExpression.d.ts +61 -0
- package/dist/api/types/AstConditionalOperatorNodeOutputTrueExpression.js +3 -0
- package/dist/api/types/AstDivisionOperatorNodeInput.d.ts +7 -0
- package/dist/api/types/AstDivisionOperatorNodeInput.js +3 -0
- package/dist/api/types/AstDivisionOperatorNodeInputLeft.d.ts +62 -0
- package/dist/api/types/AstDivisionOperatorNodeInputLeft.js +3 -0
- package/dist/api/types/AstDivisionOperatorNodeInputRight.d.ts +62 -0
- package/dist/api/types/AstDivisionOperatorNodeInputRight.js +3 -0
- package/dist/api/types/AstDivisionOperatorNodeOutput.d.ts +7 -0
- package/dist/api/types/AstDivisionOperatorNodeOutput.js +3 -0
- package/dist/api/types/AstDivisionOperatorNodeOutputLeft.d.ts +61 -0
- package/dist/api/types/AstDivisionOperatorNodeOutputLeft.js +3 -0
- package/dist/api/types/AstDivisionOperatorNodeOutputRight.d.ts +61 -0
- package/dist/api/types/AstDivisionOperatorNodeOutputRight.js +3 -0
- package/dist/api/types/AstEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/dist/api/types/AstEqualsOperatorNodeInputRight.d.ts +18 -2
- package/dist/api/types/AstEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/dist/api/types/AstEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/dist/api/types/AstGreaterThanOperatorNodeInputLeft.d.ts +18 -2
- package/dist/api/types/AstGreaterThanOperatorNodeInputRight.d.ts +18 -2
- package/dist/api/types/AstGreaterThanOperatorNodeOutputLeft.d.ts +16 -1
- package/dist/api/types/AstGreaterThanOperatorNodeOutputRight.d.ts +16 -1
- package/dist/api/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/dist/api/types/AstGreaterThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
- package/dist/api/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/dist/api/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/dist/api/types/AstLessThanOperatorNodeInputLeft.d.ts +18 -2
- package/dist/api/types/AstLessThanOperatorNodeInputRight.d.ts +18 -2
- package/dist/api/types/AstLessThanOperatorNodeOutputLeft.d.ts +16 -1
- package/dist/api/types/AstLessThanOperatorNodeOutputRight.d.ts +16 -1
- package/dist/api/types/AstLessThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/dist/api/types/AstLessThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
- package/dist/api/types/AstLessThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/dist/api/types/AstLessThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/dist/api/types/AstMultiplicationOperatorNodeInput.d.ts +7 -0
- package/dist/api/types/AstMultiplicationOperatorNodeInput.js +3 -0
- package/dist/api/types/AstMultiplicationOperatorNodeInputLeft.d.ts +62 -0
- package/dist/api/types/AstMultiplicationOperatorNodeInputLeft.js +3 -0
- package/dist/api/types/AstMultiplicationOperatorNodeInputRight.d.ts +62 -0
- package/dist/api/types/AstMultiplicationOperatorNodeInputRight.js +3 -0
- package/dist/api/types/AstMultiplicationOperatorNodeOutput.d.ts +7 -0
- package/dist/api/types/AstMultiplicationOperatorNodeOutput.js +3 -0
- package/dist/api/types/AstMultiplicationOperatorNodeOutputLeft.d.ts +61 -0
- package/dist/api/types/AstMultiplicationOperatorNodeOutputLeft.js +3 -0
- package/dist/api/types/AstMultiplicationOperatorNodeOutputRight.d.ts +61 -0
- package/dist/api/types/AstMultiplicationOperatorNodeOutputRight.js +3 -0
- package/dist/api/types/AstNotEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/dist/api/types/AstNotEqualsOperatorNodeInputRight.d.ts +18 -2
- package/dist/api/types/AstNotEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/dist/api/types/AstNotEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/dist/api/types/AstOrOperatorNodeInputChildrenItem.d.ts +18 -2
- package/dist/api/types/AstOrOperatorNodeOutputChildrenItem.d.ts +16 -1
- package/dist/api/types/AstSubtractionOperatorNodeInput.d.ts +7 -0
- package/dist/api/types/AstSubtractionOperatorNodeInput.js +3 -0
- package/dist/api/types/AstSubtractionOperatorNodeInputLeft.d.ts +62 -0
- package/dist/api/types/AstSubtractionOperatorNodeInputLeft.js +3 -0
- package/dist/api/types/AstSubtractionOperatorNodeInputRight.d.ts +62 -0
- package/dist/api/types/AstSubtractionOperatorNodeInputRight.js +3 -0
- package/dist/api/types/AstSubtractionOperatorNodeOutput.d.ts +7 -0
- package/dist/api/types/AstSubtractionOperatorNodeOutput.js +3 -0
- package/dist/api/types/AstSubtractionOperatorNodeOutputLeft.d.ts +61 -0
- package/dist/api/types/AstSubtractionOperatorNodeOutputLeft.js +3 -0
- package/dist/api/types/AstSubtractionOperatorNodeOutputRight.d.ts +61 -0
- package/dist/api/types/AstSubtractionOperatorNodeOutputRight.js +3 -0
- package/dist/api/types/AstllmNodeInput.d.ts +2 -4
- package/dist/api/types/AstllmNodeInputPrompt.d.ts +5 -0
- package/dist/api/types/AstllmNodeInputPrompt.js +3 -0
- package/dist/api/types/AstllmNodeInputValueSchema.d.ts +6 -0
- package/dist/api/types/AstllmNodeInputValueSchema.js +3 -0
- package/dist/api/types/AstllmNodeOutput.d.ts +4 -1
- package/dist/api/types/AsyncConversationMetadata.d.ts +1 -0
- package/dist/api/types/AudioAnalysis.d.ts +6 -0
- package/dist/api/types/AudioAnalysis.js +3 -0
- package/dist/api/types/AudioAnalysisResult.d.ts +10 -0
- package/dist/api/types/AudioAnalysisResult.js +3 -0
- package/dist/api/types/AudioAnalysisStatus.d.ts +6 -0
- package/dist/api/types/AudioAnalysisStatus.js +9 -0
- package/dist/api/types/AudioKeyMoment.d.ts +5 -0
- package/dist/api/types/AudioKeyMoment.js +3 -0
- package/dist/api/types/AudioSegment.d.ts +9 -0
- package/dist/api/types/AudioSegment.js +3 -0
- package/dist/api/types/AuthConnectionDependencies.d.ts +9 -0
- package/dist/api/types/AuthConnectionDependencies.js +3 -0
- package/dist/api/types/AuthConnectionDependenciesMcpServersItem.d.ts +10 -0
- package/dist/api/types/AuthConnectionDependenciesMcpServersItem.js +3 -0
- package/dist/api/types/AuthConnectionDependenciesToolsItem.d.ts +10 -0
- package/dist/api/types/AuthConnectionDependenciesToolsItem.js +3 -0
- package/dist/api/types/AutoSyncInfo.d.ts +10 -0
- package/dist/api/types/AutoSyncInfo.js +3 -0
- package/dist/api/types/BasicAuthResponse.d.ts +11 -0
- package/dist/api/types/BasicAuthResponse.js +3 -0
- package/dist/api/types/BatchCallDetailedResponse.d.ts +3 -0
- package/dist/api/types/BatchCallResponse.d.ts +3 -0
- package/dist/api/types/BearerAuthResponse.d.ts +10 -0
- package/dist/api/types/BearerAuthResponse.js +3 -0
- package/dist/api/types/CanvasPlacement.d.ts +2 -0
- package/dist/api/types/CaptionStyleModel.d.ts +2 -0
- package/dist/api/types/CaptionStyleModelTextBlendMode.d.ts +6 -0
- package/dist/api/types/CaptionStyleModelTextBlendMode.js +9 -0
- package/dist/api/types/CaptionStyleModelTextTransform.d.ts +5 -0
- package/dist/api/types/CaptionStyleModelTextTransform.js +8 -0
- package/dist/api/types/CaptionStyleModelTextWeight.d.ts +1 -0
- package/dist/api/types/CaptionStyleModelTextWeight.js +1 -0
- package/dist/api/types/ContentConfig.d.ts +7 -7
- package/dist/api/types/ContentGuardrailInput.d.ts +1 -0
- package/dist/api/types/ContentGuardrailInputTriggerAction.d.ts +10 -0
- package/dist/api/types/ContentGuardrailInputTriggerAction.js +3 -0
- package/dist/api/types/ContentGuardrailOutput.d.ts +1 -0
- package/dist/api/types/ContentGuardrailOutputTriggerAction.d.ts +10 -0
- package/dist/api/types/ContentGuardrailOutputTriggerAction.js +3 -0
- package/dist/api/types/ContentThresholdGuardrail.d.ts +5 -0
- package/dist/api/types/ContentThresholdGuardrail.js +3 -0
- package/dist/api/types/ContentThresholdGuardrailThreshold.d.ts +1 -0
- package/dist/api/types/ContentThresholdGuardrailThreshold.js +3 -0
- package/dist/api/types/Contributor.d.ts +2 -0
- package/dist/api/types/ConvAiEnvVarLocator.d.ts +6 -0
- package/dist/api/types/ConvAiEnvVarLocator.js +3 -0
- package/dist/api/types/ConversationConfig.d.ts +2 -0
- package/dist/api/types/ConversationConfigWorkflowOverride.d.ts +2 -0
- package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +1 -1
- package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.d.ts +16 -0
- package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.js +3 -0
- package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.d.ts +16 -0
- package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.js +3 -0
- package/dist/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -0
- package/dist/api/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +1 -1
- package/dist/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -0
- package/dist/api/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +1 -1
- package/dist/api/types/ConversationHistoryTranscriptResponseModel.d.ts +1 -0
- package/dist/api/types/ConversationHistoryTranscriptResponseModelToolResultsItem.d.ts +1 -1
- package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.d.ts +7 -0
- package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.js +3 -0
- package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.d.ts +7 -0
- package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.js +3 -0
- package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +1 -1
- package/dist/api/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +1 -1
- package/dist/api/types/ConversationHistoryTwilioPhoneCallModel.d.ts +1 -1
- package/dist/api/types/ConversationInitiationClientDataInternal.d.ts +6 -0
- package/dist/api/types/ConversationInitiationClientDataRequestInput.d.ts +4 -0
- package/dist/api/types/ConversationInitiationClientDataRequestOutput.d.ts +4 -0
- package/dist/api/types/ConversationSummaryResponseModel.d.ts +2 -1
- package/dist/api/types/CreateAuthConnectionEnvironmentVariableRequest.d.ts +7 -0
- package/dist/api/types/CreateAuthConnectionEnvironmentVariableRequest.js +3 -0
- package/dist/api/types/CreateBasicAuthRequest.d.ts +9 -0
- package/dist/api/types/CreateBasicAuthRequest.js +3 -0
- package/dist/api/types/CreateCustomHeaderAuthRequest.d.ts +7 -0
- package/dist/api/types/CreateCustomHeaderAuthRequest.js +3 -0
- package/dist/api/types/CreateOAuth2ClientCredsRequest.d.ts +15 -0
- package/dist/api/types/CreateOAuth2ClientCredsRequest.js +3 -0
- package/dist/api/types/CreateOAuth2JwtRequest.d.ts +27 -0
- package/dist/api/types/CreateOAuth2JwtRequest.js +3 -0
- package/dist/api/types/CreateOAuth2JwtRequestAlgorithm.d.ts +10 -0
- package/dist/api/types/CreateOAuth2JwtRequestAlgorithm.js +13 -0
- package/dist/api/types/CreatePrivateKeyJwtRequest.d.ts +23 -0
- package/dist/api/types/CreatePrivateKeyJwtRequest.js +3 -0
- package/dist/api/types/CreatePrivateKeyJwtRequestAlgorithm.d.ts +10 -0
- package/dist/api/types/CreatePrivateKeyJwtRequestAlgorithm.js +13 -0
- package/dist/api/types/CreateSecretEnvironmentVariableRequest.d.ts +7 -0
- package/dist/api/types/CreateSecretEnvironmentVariableRequest.js +3 -0
- package/dist/api/types/CreateSimulationTestRequest.d.ts +4 -0
- package/dist/api/types/CreateStringEnvironmentVariableRequest.d.ts +6 -0
- package/dist/api/types/CreateStringEnvironmentVariableRequest.js +3 -0
- package/dist/api/types/CustomGuardrailConfig.d.ts +1 -0
- package/dist/api/types/CustomGuardrailConfigTriggerAction.d.ts +10 -0
- package/dist/api/types/CustomGuardrailConfigTriggerAction.js +3 -0
- package/dist/api/types/CustomHeaderAuthResponse.d.ts +12 -0
- package/dist/api/types/CustomHeaderAuthResponse.js +3 -0
- package/dist/api/types/CustomLlm.d.ts +1 -1
- package/dist/api/types/CustomLlmApiKey.d.ts +5 -0
- package/dist/api/types/CustomLlmApiKey.js +3 -0
- package/dist/api/types/CustomLlmRequestHeadersValue.d.ts +1 -1
- package/dist/api/types/DependentAvailableMcpServerIdentifier.d.ts +7 -0
- package/dist/api/types/DependentAvailableMcpServerIdentifier.js +3 -0
- package/dist/api/types/DependentAvailableMcpServerIdentifierAccessLevel.d.ts +7 -0
- package/dist/api/types/DependentAvailableMcpServerIdentifierAccessLevel.js +10 -0
- package/dist/api/types/DependentIntegrationConnectionIdentifier.d.ts +7 -0
- package/dist/api/types/DependentIntegrationConnectionIdentifier.js +3 -0
- package/dist/api/types/DependentUnknownMcpServerIdentifier.d.ts +3 -0
- package/dist/api/types/DependentUnknownMcpServerIdentifier.js +3 -0
- package/dist/api/types/DependentUnknownToolIdentifier.d.ts +3 -1
- package/dist/api/types/DirectPublishingReadResponseModel.d.ts +1 -0
- package/dist/api/types/EmbeddingModelEnum.d.ts +0 -1
- package/dist/api/types/EmbeddingModelEnum.js +0 -1
- package/dist/api/types/EndCallTriggerAction.d.ts +1 -0
- package/dist/api/types/EndCallTriggerAction.js +3 -0
- package/dist/api/types/EnvironmentAuthConnectionLocator.d.ts +8 -0
- package/dist/api/types/EnvironmentAuthConnectionLocator.js +3 -0
- package/dist/api/types/EnvironmentVariableAuthConnectionValue.d.ts +3 -0
- package/dist/api/types/EnvironmentVariableAuthConnectionValue.js +3 -0
- package/dist/api/types/EnvironmentVariableAuthConnectionValueRequest.d.ts +3 -0
- package/dist/api/types/EnvironmentVariableAuthConnectionValueRequest.js +3 -0
- package/dist/api/types/EnvironmentVariableResponse.d.ts +11 -0
- package/dist/api/types/EnvironmentVariableResponse.js +3 -0
- package/dist/api/types/EnvironmentVariableResponseType.d.ts +6 -0
- package/dist/api/types/EnvironmentVariableResponseType.js +9 -0
- package/dist/api/types/EnvironmentVariableResponseValues.d.ts +2 -0
- package/dist/api/types/EnvironmentVariableResponseValues.js +3 -0
- package/dist/api/types/EnvironmentVariableSecretValue.d.ts +3 -0
- package/dist/api/types/EnvironmentVariableSecretValue.js +3 -0
- package/dist/api/types/EnvironmentVariableSecretValueRequest.d.ts +3 -0
- package/dist/api/types/EnvironmentVariableSecretValueRequest.js +3 -0
- package/dist/api/types/EnvironmentVariablesListResponse.d.ts +6 -0
- package/dist/api/types/EnvironmentVariablesListResponse.js +3 -0
- package/dist/api/types/FeaturesUsageCommonModel.d.ts +1 -0
- package/dist/api/types/FileInputConfig.d.ts +6 -0
- package/dist/api/types/FileInputConfig.js +3 -0
- package/dist/api/types/FileInputConfigWorkflowOverride.d.ts +6 -0
- package/dist/api/types/FileInputConfigWorkflowOverride.js +3 -0
- package/dist/api/types/GenesysRegion.d.ts +20 -0
- package/dist/api/types/GenesysRegion.js +23 -0
- package/dist/api/types/GetConvAiSettingsResponseModel.d.ts +2 -0
- package/dist/api/types/GetKnowledgeBaseFolderResponseModel.d.ts +1 -0
- package/dist/api/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +1 -0
- package/dist/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +1 -0
- package/dist/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +1 -0
- package/dist/api/types/GetSimulationTestResponseModel.d.ts +4 -0
- package/dist/api/types/GetTestSuiteInvocationResponseModel.d.ts +1 -0
- package/dist/api/types/GuardrailsV1Input.d.ts +0 -1
- package/dist/api/types/GuardrailsV1Output.d.ts +0 -1
- package/dist/api/types/ListAuthConnectionsResponse.d.ts +4 -0
- package/dist/api/types/ListAuthConnectionsResponse.js +3 -0
- package/dist/api/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +31 -0
- package/dist/api/types/ListAuthConnectionsResponseAuthConnectionsItem.js +3 -0
- package/dist/api/types/LlmInfoModelInput.d.ts +2 -0
- package/dist/api/types/LlmInfoModelOutput.d.ts +2 -0
- package/dist/api/types/LlmLiteralJsonSchemaProperty.d.ts +7 -0
- package/dist/api/types/LlmLiteralJsonSchemaProperty.js +3 -0
- package/dist/api/types/LlmLiteralJsonSchemaPropertyType.d.ts +7 -0
- package/dist/api/types/LlmLiteralJsonSchemaPropertyType.js +10 -0
- package/dist/api/types/McpServerConfigInput.d.ts +1 -1
- package/dist/api/types/McpServerConfigInputAuthConnection.d.ts +5 -0
- package/dist/api/types/McpServerConfigInputAuthConnection.js +3 -0
- package/dist/api/types/McpServerConfigInputRequestHeadersValue.d.ts +1 -1
- package/dist/api/types/McpServerConfigOutput.d.ts +1 -1
- package/dist/api/types/McpServerConfigOutputAuthConnection.d.ts +5 -0
- package/dist/api/types/McpServerConfigOutputAuthConnection.js +3 -0
- package/dist/api/types/McpServerConfigOutputRequestHeadersValue.d.ts +1 -1
- package/dist/api/types/MessageSearchSortBy.d.ts +5 -0
- package/dist/api/types/MessageSearchSortBy.js +8 -0
- package/dist/api/types/MockNoMatchBehavior.d.ts +5 -0
- package/dist/api/types/MockNoMatchBehavior.js +8 -0
- package/dist/api/types/MockingStrategy.d.ts +6 -0
- package/dist/api/types/MockingStrategy.js +9 -0
- package/dist/api/types/OAuth2ClientCredsResponse.d.ts +16 -0
- package/dist/api/types/OAuth2ClientCredsResponse.js +3 -0
- package/dist/api/types/OAuth2JwtResponse.d.ts +28 -0
- package/dist/api/types/OAuth2JwtResponse.js +3 -0
- package/dist/api/types/OAuth2JwtResponseAlgorithm.d.ts +10 -0
- package/dist/api/types/OAuth2JwtResponseAlgorithm.js +13 -0
- package/dist/api/types/OAuthConnectionStatus.d.ts +6 -0
- package/dist/api/types/OAuthConnectionStatus.js +9 -0
- package/dist/api/types/OrchestratorToolMockBehaviorConfig.d.ts +12 -0
- package/dist/api/types/OrchestratorToolMockBehaviorConfig.js +3 -0
- package/dist/api/types/PermissionType.d.ts +1 -0
- package/dist/api/types/PermissionType.js +1 -0
- package/dist/api/types/PlayDtmfToolConfig.d.ts +3 -1
- package/dist/api/types/PreviewAudioDbModel.d.ts +2 -0
- package/dist/api/types/PrivateKeyJwtResponse.d.ts +24 -0
- package/dist/api/types/PrivateKeyJwtResponse.js +3 -0
- package/dist/api/types/PrivateKeyJwtResponseAlgorithm.d.ts +10 -0
- package/dist/api/types/PrivateKeyJwtResponseAlgorithm.js +13 -0
- package/dist/api/types/ProcedureCompilerMode.d.ts +5 -0
- package/dist/api/types/ProcedureCompilerMode.js +8 -0
- package/dist/api/types/ProcedureSettings.d.ts +4 -0
- package/dist/api/types/ProcedureSettings.js +3 -0
- package/dist/api/types/ProjectExternalAudioResponseModel.d.ts +3 -1
- package/dist/api/types/ProjectImageResponseModel.d.ts +1 -0
- package/dist/api/types/ProjectVideoResponseModel.d.ts +1 -0
- package/dist/api/types/RetryTriggerAction.d.ts +4 -0
- package/dist/api/types/RetryTriggerAction.js +3 -0
- package/dist/api/types/SimulationTestModel.d.ts +4 -0
- package/dist/api/types/SimulationToolMockBehaviorConfig.d.ts +12 -0
- package/dist/api/types/SimulationToolMockBehaviorConfig.js +3 -0
- package/dist/api/types/SingleTestRunRequestModel.d.ts +4 -0
- package/dist/api/types/SpeechHistoryItemResponse.d.ts +2 -0
- package/dist/api/types/Subscription.d.ts +4 -0
- package/dist/api/types/SystemToolConfigInputParams.d.ts +1 -16
- package/dist/api/types/SystemToolConfigOutputParams.d.ts +1 -16
- package/dist/api/types/TelephonyDirection.d.ts +5 -0
- package/dist/api/types/TelephonyDirection.js +8 -0
- package/dist/api/types/ToolRequestModel.d.ts +2 -0
- package/dist/api/types/ToolResponseMockConfigInput.d.ts +7 -0
- package/dist/api/types/ToolResponseMockConfigInput.js +3 -0
- package/dist/api/types/ToolResponseMockConfigOutput.d.ts +7 -0
- package/dist/api/types/ToolResponseMockConfigOutput.js +3 -0
- package/dist/api/types/ToolResponseModel.d.ts +2 -0
- package/dist/api/types/UnitTestRunResponseModel.d.ts +3 -0
- package/dist/api/types/UpdateSimulationTestRequest.d.ts +4 -0
- package/dist/api/types/VideoAnalysisResult.d.ts +1 -1
- package/dist/api/types/WebhookToolApiSchemaConfigInput.d.ts +1 -1
- package/dist/api/types/WebhookToolApiSchemaConfigInputAuthConnection.d.ts +5 -0
- package/dist/api/types/WebhookToolApiSchemaConfigInputAuthConnection.js +3 -0
- package/dist/api/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +1 -1
- package/dist/api/types/WebhookToolApiSchemaConfigOutput.d.ts +1 -1
- package/dist/api/types/WebhookToolApiSchemaConfigOutputAuthConnection.d.ts +5 -0
- package/dist/api/types/WebhookToolApiSchemaConfigOutputAuthConnection.js +3 -0
- package/dist/api/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +1 -1
- package/dist/api/types/WhatsAppAuthResponse.d.ts +8 -0
- package/dist/api/types/WhatsAppAuthResponse.js +3 -0
- package/dist/api/types/WorkflowExpressionConditionModelInputExpression.d.ts +18 -2
- package/dist/api/types/WorkflowExpressionConditionModelOutputExpression.d.ts +16 -1
- package/dist/api/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +1 -1
- package/dist/api/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +1 -1
- package/dist/api/types/WorkspaceGroupPermission.d.ts +1 -0
- package/dist/api/types/WorkspaceGroupPermission.js +1 -0
- package/dist/api/types/WorkspaceResourceType.d.ts +2 -0
- package/dist/api/types/WorkspaceResourceType.js +2 -0
- package/dist/api/types/index.d.ts +119 -25
- package/dist/api/types/index.js +119 -25
- package/dist/serialization/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.js +2 -0
- package/dist/serialization/resources/conversationalAi/resources/index.d.ts +0 -1
- package/dist/serialization/resources/conversationalAi/resources/index.js +0 -1
- 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 +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.d.ts +23 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.js +53 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.js +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.js +2 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.js +1 -0
- package/dist/serialization/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.d.ts +2 -2
- package/dist/serialization/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.js +2 -2
- package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.d.ts +9 -0
- package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.js +41 -0
- package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.d.ts +2 -1
- package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.js +7 -1
- package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/mcpServers/types/index.js +1 -0
- package/dist/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.js +1 -0
- package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +2 -2
- package/dist/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js +2 -2
- package/dist/serialization/resources/conversationalAi/resources/twilio/index.d.ts +0 -1
- package/dist/serialization/resources/conversationalAi/resources/twilio/index.js +0 -1
- package/dist/serialization/resources/environmentVariables/client/index.d.ts +1 -0
- package/dist/serialization/resources/environmentVariables/client/index.js +17 -0
- package/dist/serialization/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.d.ts +10 -0
- package/dist/serialization/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.js +42 -0
- package/dist/serialization/resources/environmentVariables/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/environmentVariables/client/requests/index.js +5 -0
- package/dist/serialization/resources/environmentVariables/index.d.ts +2 -0
- package/dist/serialization/resources/environmentVariables/index.js +18 -0
- package/dist/serialization/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.d.ts +19 -0
- package/dist/serialization/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.js +51 -0
- package/dist/serialization/resources/environmentVariables/types/EnvironmentVariablesListRequestType.d.ts +7 -0
- package/dist/serialization/resources/environmentVariables/types/EnvironmentVariablesListRequestType.js +39 -0
- package/dist/serialization/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.d.ts +9 -0
- package/dist/serialization/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.js +45 -0
- package/dist/serialization/resources/environmentVariables/types/index.d.ts +3 -0
- package/dist/serialization/resources/environmentVariables/types/index.js +19 -0
- package/dist/serialization/resources/index.d.ts +3 -0
- package/dist/serialization/resources/index.js +4 -1
- package/dist/serialization/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.d.ts +7 -0
- package/dist/serialization/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.js +42 -0
- package/dist/serialization/resources/speechToText/types/index.d.ts +1 -0
- package/dist/serialization/resources/speechToText/types/index.js +1 -0
- package/dist/serialization/resources/workspace/resources/authConnections/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/authConnections/index.js +17 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +27 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js +55 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +39 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js +61 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/index.js +18 -0
- package/dist/serialization/resources/workspace/resources/index.d.ts +2 -0
- package/dist/serialization/resources/workspace/resources/index.js +3 -1
- package/dist/serialization/types/AgentConfig.d.ts +1 -0
- package/dist/serialization/types/AgentConfig.js +1 -0
- package/dist/serialization/types/AgentConfigApiModelWorkflowOverrideInput.d.ts +1 -0
- package/dist/serialization/types/AgentConfigApiModelWorkflowOverrideInput.js +1 -0
- package/dist/serialization/types/AgentConfigApiModelWorkflowOverrideOutput.d.ts +1 -0
- package/dist/serialization/types/AgentConfigApiModelWorkflowOverrideOutput.js +1 -0
- package/dist/serialization/types/AgentConfigOverrideConfig.d.ts +1 -0
- package/dist/serialization/types/AgentConfigOverrideConfig.js +1 -0
- package/dist/serialization/types/AgentConfigOverrideInput.d.ts +1 -0
- package/dist/serialization/types/AgentConfigOverrideInput.js +1 -0
- package/dist/serialization/types/AgentConfigOverrideOutput.d.ts +1 -0
- package/dist/serialization/types/AgentConfigOverrideOutput.js +1 -0
- package/dist/serialization/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
- package/dist/serialization/types/AgentPlatformSettingsRequestModel.js +2 -0
- package/dist/serialization/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
- package/dist/serialization/types/AgentPlatformSettingsResponseModel.js +2 -0
- package/dist/serialization/types/AgentSortBy.d.ts +1 -1
- package/dist/serialization/types/AgentSortBy.js +1 -1
- package/dist/serialization/types/ApiIntegrationOAuth2AuthCodeResponse.d.ts +24 -0
- package/dist/serialization/types/ApiIntegrationOAuth2AuthCodeResponse.js +56 -0
- package/dist/serialization/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.d.ts +7 -0
- package/dist/serialization/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.js +39 -0
- package/dist/serialization/types/ApiIntegrationWebhookOverrides.d.ts +15 -0
- package/dist/serialization/types/ApiIntegrationWebhookOverrides.js +51 -0
- package/dist/serialization/types/ApiIntegrationWebhookOverridesRequestHeadersValue.d.ts +8 -0
- package/dist/serialization/types/ApiIntegrationWebhookOverridesRequestHeadersValue.js +40 -0
- package/dist/serialization/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.d.ts +19 -0
- package/dist/serialization/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.js +51 -0
- package/dist/serialization/types/ApiIntegrationWebhookToolConfigInput.d.ts +2 -2
- package/dist/serialization/types/ApiIntegrationWebhookToolConfigInput.js +2 -2
- package/dist/serialization/types/ApiIntegrationWebhookToolConfigOutput.d.ts +2 -2
- package/dist/serialization/types/ApiIntegrationWebhookToolConfigOutput.js +2 -2
- package/dist/serialization/types/AssetTranscription.d.ts +12 -0
- package/dist/serialization/types/AssetTranscription.js +44 -0
- package/dist/serialization/types/AssetTranscriptionWord.d.ts +12 -0
- package/dist/serialization/types/AssetTranscriptionWord.js +44 -0
- package/dist/serialization/types/AstAdditionOperatorNodeInput.d.ts +10 -0
- package/dist/serialization/types/AstAdditionOperatorNodeInput.js +43 -0
- package/dist/serialization/types/AstAdditionOperatorNodeInputLeft.d.ts +67 -0
- package/dist/serialization/types/AstAdditionOperatorNodeInputLeft.js +71 -0
- package/dist/serialization/types/AstAdditionOperatorNodeInputRight.d.ts +67 -0
- package/dist/serialization/types/AstAdditionOperatorNodeInputRight.js +71 -0
- package/dist/serialization/types/AstAdditionOperatorNodeOutput.d.ts +10 -0
- package/dist/serialization/types/AstAdditionOperatorNodeOutput.js +43 -0
- package/dist/serialization/types/AstAdditionOperatorNodeOutputLeft.d.ts +66 -0
- package/dist/serialization/types/AstAdditionOperatorNodeOutputLeft.js +69 -0
- package/dist/serialization/types/AstAdditionOperatorNodeOutputRight.d.ts +66 -0
- package/dist/serialization/types/AstAdditionOperatorNodeOutputRight.js +69 -0
- package/dist/serialization/types/AstAndOperatorNodeInputChildrenItem.d.ts +18 -2
- package/dist/serialization/types/AstAndOperatorNodeInputChildrenItem.js +8 -1
- package/dist/serialization/types/AstAndOperatorNodeOutputChildrenItem.d.ts +16 -1
- package/dist/serialization/types/AstAndOperatorNodeOutputChildrenItem.js +5 -0
- package/dist/serialization/types/AstConditionalOperatorNodeInput.d.ts +11 -0
- package/dist/serialization/types/AstConditionalOperatorNodeInput.js +44 -0
- package/dist/serialization/types/AstConditionalOperatorNodeInputCondition.d.ts +67 -0
- package/dist/serialization/types/AstConditionalOperatorNodeInputCondition.js +71 -0
- package/dist/serialization/types/AstConditionalOperatorNodeInputFalseExpression.d.ts +67 -0
- package/dist/serialization/types/AstConditionalOperatorNodeInputFalseExpression.js +71 -0
- package/dist/serialization/types/AstConditionalOperatorNodeInputTrueExpression.d.ts +67 -0
- package/dist/serialization/types/AstConditionalOperatorNodeInputTrueExpression.js +71 -0
- package/dist/serialization/types/AstConditionalOperatorNodeOutput.d.ts +11 -0
- package/dist/serialization/types/AstConditionalOperatorNodeOutput.js +44 -0
- package/dist/serialization/types/AstConditionalOperatorNodeOutputCondition.d.ts +66 -0
- package/dist/serialization/types/AstConditionalOperatorNodeOutputCondition.js +69 -0
- package/dist/serialization/types/AstConditionalOperatorNodeOutputFalseExpression.d.ts +66 -0
- package/dist/serialization/types/AstConditionalOperatorNodeOutputFalseExpression.js +69 -0
- package/dist/serialization/types/AstConditionalOperatorNodeOutputTrueExpression.d.ts +66 -0
- package/dist/serialization/types/AstConditionalOperatorNodeOutputTrueExpression.js +69 -0
- package/dist/serialization/types/AstDivisionOperatorNodeInput.d.ts +10 -0
- package/dist/serialization/types/AstDivisionOperatorNodeInput.js +43 -0
- package/dist/serialization/types/AstDivisionOperatorNodeInputLeft.d.ts +67 -0
- package/dist/serialization/types/AstDivisionOperatorNodeInputLeft.js +71 -0
- package/dist/serialization/types/AstDivisionOperatorNodeInputRight.d.ts +67 -0
- package/dist/serialization/types/AstDivisionOperatorNodeInputRight.js +71 -0
- package/dist/serialization/types/AstDivisionOperatorNodeOutput.d.ts +10 -0
- package/dist/serialization/types/AstDivisionOperatorNodeOutput.js +43 -0
- package/dist/serialization/types/AstDivisionOperatorNodeOutputLeft.d.ts +66 -0
- package/dist/serialization/types/AstDivisionOperatorNodeOutputLeft.js +69 -0
- package/dist/serialization/types/AstDivisionOperatorNodeOutputRight.d.ts +66 -0
- package/dist/serialization/types/AstDivisionOperatorNodeOutputRight.js +69 -0
- package/dist/serialization/types/AstEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/dist/serialization/types/AstEqualsOperatorNodeInputLeft.js +8 -1
- package/dist/serialization/types/AstEqualsOperatorNodeInputRight.d.ts +18 -2
- package/dist/serialization/types/AstEqualsOperatorNodeInputRight.js +8 -1
- package/dist/serialization/types/AstEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/dist/serialization/types/AstEqualsOperatorNodeOutputLeft.js +5 -0
- package/dist/serialization/types/AstEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/dist/serialization/types/AstEqualsOperatorNodeOutputRight.js +5 -0
- package/dist/serialization/types/AstGreaterThanOperatorNodeInputLeft.d.ts +18 -2
- package/dist/serialization/types/AstGreaterThanOperatorNodeInputLeft.js +8 -1
- package/dist/serialization/types/AstGreaterThanOperatorNodeInputRight.d.ts +18 -2
- package/dist/serialization/types/AstGreaterThanOperatorNodeInputRight.js +8 -1
- package/dist/serialization/types/AstGreaterThanOperatorNodeOutputLeft.d.ts +16 -1
- package/dist/serialization/types/AstGreaterThanOperatorNodeOutputLeft.js +5 -0
- package/dist/serialization/types/AstGreaterThanOperatorNodeOutputRight.d.ts +16 -1
- package/dist/serialization/types/AstGreaterThanOperatorNodeOutputRight.js +5 -0
- package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.js +8 -1
- package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
- package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputRight.js +8 -1
- package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.js +5 -0
- package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/dist/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.js +5 -0
- package/dist/serialization/types/AstLessThanOperatorNodeInputLeft.d.ts +18 -2
- package/dist/serialization/types/AstLessThanOperatorNodeInputLeft.js +8 -1
- package/dist/serialization/types/AstLessThanOperatorNodeInputRight.d.ts +18 -2
- package/dist/serialization/types/AstLessThanOperatorNodeInputRight.js +8 -1
- package/dist/serialization/types/AstLessThanOperatorNodeOutputLeft.d.ts +16 -1
- package/dist/serialization/types/AstLessThanOperatorNodeOutputLeft.js +5 -0
- package/dist/serialization/types/AstLessThanOperatorNodeOutputRight.d.ts +16 -1
- package/dist/serialization/types/AstLessThanOperatorNodeOutputRight.js +5 -0
- package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeInputLeft.js +8 -1
- package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
- package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeInputRight.js +8 -1
- package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeOutputLeft.js +5 -0
- package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/dist/serialization/types/AstLessThanOrEqualsOperatorNodeOutputRight.js +5 -0
- package/dist/serialization/types/AstMultiplicationOperatorNodeInput.d.ts +10 -0
- package/dist/serialization/types/AstMultiplicationOperatorNodeInput.js +43 -0
- package/dist/serialization/types/AstMultiplicationOperatorNodeInputLeft.d.ts +67 -0
- package/dist/serialization/types/AstMultiplicationOperatorNodeInputLeft.js +71 -0
- package/dist/serialization/types/AstMultiplicationOperatorNodeInputRight.d.ts +67 -0
- package/dist/serialization/types/AstMultiplicationOperatorNodeInputRight.js +71 -0
- package/dist/serialization/types/AstMultiplicationOperatorNodeOutput.d.ts +10 -0
- package/dist/serialization/types/AstMultiplicationOperatorNodeOutput.js +43 -0
- package/dist/serialization/types/AstMultiplicationOperatorNodeOutputLeft.d.ts +66 -0
- package/dist/serialization/types/AstMultiplicationOperatorNodeOutputLeft.js +69 -0
- package/dist/serialization/types/AstMultiplicationOperatorNodeOutputRight.d.ts +66 -0
- package/dist/serialization/types/AstMultiplicationOperatorNodeOutputRight.js +69 -0
- package/dist/serialization/types/AstNotEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/dist/serialization/types/AstNotEqualsOperatorNodeInputLeft.js +8 -1
- package/dist/serialization/types/AstNotEqualsOperatorNodeInputRight.d.ts +18 -2
- package/dist/serialization/types/AstNotEqualsOperatorNodeInputRight.js +8 -1
- package/dist/serialization/types/AstNotEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/dist/serialization/types/AstNotEqualsOperatorNodeOutputLeft.js +5 -0
- package/dist/serialization/types/AstNotEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/dist/serialization/types/AstNotEqualsOperatorNodeOutputRight.js +5 -0
- package/dist/serialization/types/AstOrOperatorNodeInputChildrenItem.d.ts +18 -2
- package/dist/serialization/types/AstOrOperatorNodeInputChildrenItem.js +8 -1
- package/dist/serialization/types/AstOrOperatorNodeOutputChildrenItem.d.ts +16 -1
- package/dist/serialization/types/AstOrOperatorNodeOutputChildrenItem.js +5 -0
- package/dist/serialization/types/AstSubtractionOperatorNodeInput.d.ts +10 -0
- package/dist/serialization/types/AstSubtractionOperatorNodeInput.js +43 -0
- package/dist/serialization/types/AstSubtractionOperatorNodeInputLeft.d.ts +67 -0
- package/dist/serialization/types/AstSubtractionOperatorNodeInputLeft.js +71 -0
- package/dist/serialization/types/AstSubtractionOperatorNodeInputRight.d.ts +67 -0
- package/dist/serialization/types/AstSubtractionOperatorNodeInputRight.js +71 -0
- package/dist/serialization/types/AstSubtractionOperatorNodeOutput.d.ts +10 -0
- package/dist/serialization/types/AstSubtractionOperatorNodeOutput.js +43 -0
- package/dist/serialization/types/AstSubtractionOperatorNodeOutputLeft.d.ts +66 -0
- package/dist/serialization/types/AstSubtractionOperatorNodeOutputLeft.js +69 -0
- package/dist/serialization/types/AstSubtractionOperatorNodeOutputRight.d.ts +66 -0
- package/dist/serialization/types/AstSubtractionOperatorNodeOutputRight.js +69 -0
- package/dist/serialization/types/AstllmNodeInput.d.ts +4 -4
- package/dist/serialization/types/AstllmNodeInput.js +3 -3
- package/dist/serialization/types/AstllmNodeInputPrompt.d.ts +10 -0
- package/dist/serialization/types/AstllmNodeInputPrompt.js +42 -0
- package/dist/serialization/types/AstllmNodeInputValueSchema.d.ts +11 -0
- package/dist/serialization/types/AstllmNodeInputValueSchema.js +43 -0
- package/dist/serialization/types/AstllmNodeOutput.d.ts +2 -0
- package/dist/serialization/types/AstllmNodeOutput.js +2 -0
- package/dist/serialization/types/AsyncConversationMetadata.d.ts +1 -0
- package/dist/serialization/types/AsyncConversationMetadata.js +1 -0
- package/dist/serialization/types/AudioAnalysis.d.ts +13 -0
- package/dist/serialization/types/AudioAnalysis.js +45 -0
- package/dist/serialization/types/AudioAnalysisResult.d.ts +18 -0
- package/dist/serialization/types/AudioAnalysisResult.js +50 -0
- package/dist/serialization/types/AudioAnalysisStatus.d.ts +7 -0
- package/dist/serialization/types/AudioAnalysisStatus.js +39 -0
- package/dist/serialization/types/AudioKeyMoment.d.ts +11 -0
- package/dist/serialization/types/AudioKeyMoment.js +43 -0
- package/dist/serialization/types/AudioSegment.d.ts +15 -0
- package/dist/serialization/types/AudioSegment.js +47 -0
- package/dist/serialization/types/AuthConnectionDependencies.d.ts +14 -0
- package/dist/serialization/types/AuthConnectionDependencies.js +46 -0
- package/dist/serialization/types/AuthConnectionDependenciesMcpServersItem.d.ts +15 -0
- package/dist/serialization/types/AuthConnectionDependenciesMcpServersItem.js +49 -0
- package/dist/serialization/types/AuthConnectionDependenciesToolsItem.d.ts +15 -0
- package/dist/serialization/types/AuthConnectionDependenciesToolsItem.js +49 -0
- package/dist/serialization/types/AutoSyncInfo.d.ts +12 -0
- package/dist/serialization/types/AutoSyncInfo.js +44 -0
- package/dist/serialization/types/BasicAuthResponse.d.ts +14 -0
- package/dist/serialization/types/BasicAuthResponse.js +46 -0
- package/dist/serialization/types/BatchCallDetailedResponse.d.ts +3 -0
- package/dist/serialization/types/BatchCallDetailedResponse.js +3 -0
- package/dist/serialization/types/BatchCallResponse.d.ts +3 -0
- package/dist/serialization/types/BatchCallResponse.js +3 -0
- package/dist/serialization/types/BearerAuthResponse.d.ts +13 -0
- package/dist/serialization/types/BearerAuthResponse.js +45 -0
- package/dist/serialization/types/CanvasPlacement.d.ts +2 -0
- package/dist/serialization/types/CanvasPlacement.js +2 -0
- package/dist/serialization/types/CaptionStyleModel.d.ts +4 -0
- package/dist/serialization/types/CaptionStyleModel.js +4 -0
- package/dist/serialization/types/CaptionStyleModelTextBlendMode.d.ts +7 -0
- package/dist/serialization/types/CaptionStyleModelTextBlendMode.js +39 -0
- package/dist/serialization/types/CaptionStyleModelTextTransform.d.ts +7 -0
- package/dist/serialization/types/CaptionStyleModelTextTransform.js +39 -0
- package/dist/serialization/types/CaptionStyleModelTextWeight.d.ts +1 -1
- package/dist/serialization/types/CaptionStyleModelTextWeight.js +1 -1
- package/dist/serialization/types/ContentConfig.d.ts +8 -8
- package/dist/serialization/types/ContentConfig.js +8 -8
- package/dist/serialization/types/ContentGuardrailInput.d.ts +2 -0
- package/dist/serialization/types/ContentGuardrailInput.js +2 -0
- package/dist/serialization/types/ContentGuardrailInputTriggerAction.d.ts +15 -0
- package/dist/serialization/types/ContentGuardrailInputTriggerAction.js +49 -0
- package/dist/serialization/types/ContentGuardrailOutput.d.ts +2 -0
- package/dist/serialization/types/ContentGuardrailOutput.js +2 -0
- package/dist/serialization/types/ContentGuardrailOutputTriggerAction.d.ts +15 -0
- package/dist/serialization/types/ContentGuardrailOutputTriggerAction.js +49 -0
- package/dist/serialization/types/ContentThresholdGuardrail.d.ts +11 -0
- package/dist/serialization/types/ContentThresholdGuardrail.js +43 -0
- package/dist/serialization/types/ContentThresholdGuardrailThreshold.d.ts +7 -0
- package/dist/serialization/types/ContentThresholdGuardrailThreshold.js +44 -0
- package/dist/serialization/types/Contributor.d.ts +2 -0
- package/dist/serialization/types/Contributor.js +2 -0
- package/dist/serialization/types/ConvAiEnvVarLocator.d.ts +9 -0
- package/dist/serialization/types/ConvAiEnvVarLocator.js +41 -0
- package/dist/serialization/types/ConversationConfig.d.ts +2 -0
- package/dist/serialization/types/ConversationConfig.js +2 -0
- package/dist/serialization/types/ConversationConfigWorkflowOverride.d.ts +2 -0
- package/dist/serialization/types/ConversationConfigWorkflowOverride.js +2 -0
- package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +2 -2
- package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.js +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.d.ts +22 -0
- package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.js +54 -0
- package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.d.ts +22 -0
- package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.js +54 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +1 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.js +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +1 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.js +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptResponseModel.d.ts +1 -0
- package/dist/serialization/types/ConversationHistoryTranscriptResponseModel.js +1 -0
- package/dist/serialization/types/ConversationHistoryTranscriptResponseModelToolResultsItem.d.ts +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptResponseModelToolResultsItem.js +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.d.ts +13 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.js +45 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.d.ts +13 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.js +45 -0
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +2 -2
- package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModel.d.ts +2 -2
- package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModel.js +2 -2
- package/dist/serialization/types/ConversationInitiationClientDataInternal.d.ts +4 -0
- package/dist/serialization/types/ConversationInitiationClientDataInternal.js +4 -0
- package/dist/serialization/types/ConversationInitiationClientDataRequestInput.d.ts +2 -0
- package/dist/serialization/types/ConversationInitiationClientDataRequestInput.js +2 -0
- package/dist/serialization/types/ConversationInitiationClientDataRequestOutput.d.ts +2 -0
- package/dist/serialization/types/ConversationInitiationClientDataRequestOutput.js +2 -0
- package/dist/serialization/types/ConversationSummaryResponseModel.d.ts +3 -2
- package/dist/serialization/types/ConversationSummaryResponseModel.js +3 -2
- package/dist/serialization/types/CreateAuthConnectionEnvironmentVariableRequest.d.ts +11 -0
- package/dist/serialization/types/CreateAuthConnectionEnvironmentVariableRequest.js +43 -0
- package/dist/serialization/types/CreateBasicAuthRequest.d.ts +12 -0
- package/dist/serialization/types/CreateBasicAuthRequest.js +44 -0
- package/dist/serialization/types/CreateCustomHeaderAuthRequest.d.ts +12 -0
- package/dist/serialization/types/CreateCustomHeaderAuthRequest.js +44 -0
- package/dist/serialization/types/CreateOAuth2ClientCredsRequest.d.ts +17 -0
- package/dist/serialization/types/CreateOAuth2ClientCredsRequest.js +49 -0
- package/dist/serialization/types/CreateOAuth2JwtRequest.d.ts +21 -0
- package/dist/serialization/types/CreateOAuth2JwtRequest.js +53 -0
- package/dist/serialization/types/CreateOAuth2JwtRequestAlgorithm.d.ts +7 -0
- package/dist/serialization/types/CreateOAuth2JwtRequestAlgorithm.js +39 -0
- package/dist/serialization/types/CreatePrivateKeyJwtRequest.d.ts +19 -0
- package/dist/serialization/types/CreatePrivateKeyJwtRequest.js +51 -0
- package/dist/serialization/types/CreatePrivateKeyJwtRequestAlgorithm.d.ts +7 -0
- package/dist/serialization/types/CreatePrivateKeyJwtRequestAlgorithm.js +39 -0
- package/dist/serialization/types/CreateSecretEnvironmentVariableRequest.d.ts +11 -0
- package/dist/serialization/types/CreateSecretEnvironmentVariableRequest.js +43 -0
- package/dist/serialization/types/CreateSimulationTestRequest.d.ts +3 -0
- package/dist/serialization/types/CreateSimulationTestRequest.js +3 -0
- package/dist/serialization/types/CreateStringEnvironmentVariableRequest.d.ts +10 -0
- package/dist/serialization/types/CreateStringEnvironmentVariableRequest.js +42 -0
- package/dist/serialization/types/CustomGuardrailConfig.d.ts +2 -0
- package/dist/serialization/types/CustomGuardrailConfig.js +2 -0
- package/dist/serialization/types/CustomGuardrailConfigTriggerAction.d.ts +15 -0
- package/dist/serialization/types/CustomGuardrailConfigTriggerAction.js +49 -0
- package/dist/serialization/types/CustomHeaderAuthResponse.d.ts +14 -0
- package/dist/serialization/types/CustomHeaderAuthResponse.js +46 -0
- package/dist/serialization/types/CustomLlm.d.ts +2 -2
- package/dist/serialization/types/CustomLlm.js +2 -2
- package/dist/serialization/types/CustomLlmApiKey.d.ts +9 -0
- package/dist/serialization/types/CustomLlmApiKey.js +41 -0
- package/dist/serialization/types/CustomLlmRequestHeadersValue.d.ts +2 -1
- package/dist/serialization/types/CustomLlmRequestHeadersValue.js +7 -1
- package/dist/serialization/types/DependentAvailableMcpServerIdentifier.d.ts +13 -0
- package/dist/serialization/types/DependentAvailableMcpServerIdentifier.js +45 -0
- package/dist/serialization/types/DependentAvailableMcpServerIdentifierAccessLevel.d.ts +7 -0
- package/dist/serialization/types/DependentAvailableMcpServerIdentifierAccessLevel.js +39 -0
- package/dist/serialization/types/DependentIntegrationConnectionIdentifier.d.ts +10 -0
- package/dist/serialization/types/DependentIntegrationConnectionIdentifier.js +42 -0
- package/dist/serialization/types/DependentUnknownMcpServerIdentifier.d.ts +9 -0
- package/dist/serialization/types/DependentUnknownMcpServerIdentifier.js +41 -0
- package/dist/serialization/types/DependentUnknownToolIdentifier.d.ts +3 -1
- package/dist/serialization/types/DependentUnknownToolIdentifier.js +3 -1
- package/dist/serialization/types/DirectPublishingReadResponseModel.d.ts +1 -0
- package/dist/serialization/types/DirectPublishingReadResponseModel.js +1 -0
- package/dist/serialization/types/EmbeddingModelEnum.d.ts +1 -1
- package/dist/serialization/types/EmbeddingModelEnum.js +1 -1
- package/dist/serialization/types/EndCallTriggerAction.d.ts +7 -0
- package/dist/serialization/types/EndCallTriggerAction.js +39 -0
- package/dist/serialization/types/EnvironmentAuthConnectionLocator.d.ts +9 -0
- package/dist/serialization/types/EnvironmentAuthConnectionLocator.js +41 -0
- package/dist/serialization/types/EnvironmentVariableAuthConnectionValue.d.ts +9 -0
- package/dist/serialization/types/EnvironmentVariableAuthConnectionValue.js +41 -0
- package/dist/serialization/types/EnvironmentVariableAuthConnectionValueRequest.d.ts +9 -0
- package/dist/serialization/types/EnvironmentVariableAuthConnectionValueRequest.js +41 -0
- package/dist/serialization/types/EnvironmentVariableResponse.d.ts +18 -0
- package/dist/serialization/types/EnvironmentVariableResponse.js +50 -0
- package/dist/serialization/types/EnvironmentVariableResponseType.d.ts +7 -0
- package/dist/serialization/types/EnvironmentVariableResponseType.js +39 -0
- package/dist/serialization/types/EnvironmentVariableResponseValues.d.ts +9 -0
- package/dist/serialization/types/EnvironmentVariableResponseValues.js +45 -0
- package/dist/serialization/types/EnvironmentVariableSecretValue.d.ts +9 -0
- package/dist/serialization/types/EnvironmentVariableSecretValue.js +41 -0
- package/dist/serialization/types/EnvironmentVariableSecretValueRequest.d.ts +9 -0
- package/dist/serialization/types/EnvironmentVariableSecretValueRequest.js +41 -0
- package/dist/serialization/types/EnvironmentVariablesListResponse.d.ts +12 -0
- package/dist/serialization/types/EnvironmentVariablesListResponse.js +44 -0
- package/dist/serialization/types/FeaturesUsageCommonModel.d.ts +1 -0
- package/dist/serialization/types/FeaturesUsageCommonModel.js +1 -0
- package/dist/serialization/types/FileInputConfig.d.ts +10 -0
- package/dist/serialization/types/FileInputConfig.js +42 -0
- package/dist/serialization/types/FileInputConfigWorkflowOverride.d.ts +10 -0
- package/dist/serialization/types/FileInputConfigWorkflowOverride.js +42 -0
- package/dist/serialization/types/GenesysRegion.d.ts +7 -0
- package/dist/serialization/types/GenesysRegion.js +57 -0
- package/dist/serialization/types/GetConvAiSettingsResponseModel.d.ts +1 -0
- package/dist/serialization/types/GetConvAiSettingsResponseModel.js +1 -0
- package/dist/serialization/types/GetKnowledgeBaseFolderResponseModel.d.ts +2 -0
- package/dist/serialization/types/GetKnowledgeBaseFolderResponseModel.js +2 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +2 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.js +2 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +2 -0
- package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.js +2 -0
- package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +2 -0
- package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.js +2 -0
- package/dist/serialization/types/GetSimulationTestResponseModel.d.ts +3 -0
- package/dist/serialization/types/GetSimulationTestResponseModel.js +3 -0
- package/dist/serialization/types/GetTestSuiteInvocationResponseModel.d.ts +1 -0
- package/dist/serialization/types/GetTestSuiteInvocationResponseModel.js +1 -0
- package/dist/serialization/types/GuardrailsV1Input.d.ts +0 -2
- package/dist/serialization/types/GuardrailsV1Input.js +0 -2
- package/dist/serialization/types/GuardrailsV1Output.d.ts +0 -2
- package/dist/serialization/types/GuardrailsV1Output.js +0 -2
- package/dist/serialization/types/ListAuthConnectionsResponse.d.ts +10 -0
- package/dist/serialization/types/ListAuthConnectionsResponse.js +42 -0
- package/dist/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +39 -0
- package/dist/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.js +61 -0
- package/dist/serialization/types/LlmInfoModelInput.d.ts +1 -0
- package/dist/serialization/types/LlmInfoModelInput.js +1 -0
- package/dist/serialization/types/LlmInfoModelOutput.d.ts +1 -0
- package/dist/serialization/types/LlmInfoModelOutput.js +1 -0
- package/dist/serialization/types/LlmLiteralJsonSchemaProperty.d.ts +12 -0
- package/dist/serialization/types/LlmLiteralJsonSchemaProperty.js +44 -0
- package/dist/serialization/types/LlmLiteralJsonSchemaPropertyType.d.ts +7 -0
- package/dist/serialization/types/LlmLiteralJsonSchemaPropertyType.js +39 -0
- package/dist/serialization/types/McpServerConfigInput.d.ts +2 -2
- package/dist/serialization/types/McpServerConfigInput.js +2 -2
- package/dist/serialization/types/McpServerConfigInputAuthConnection.d.ts +9 -0
- package/dist/serialization/types/McpServerConfigInputAuthConnection.js +41 -0
- package/dist/serialization/types/McpServerConfigInputRequestHeadersValue.d.ts +2 -1
- package/dist/serialization/types/McpServerConfigInputRequestHeadersValue.js +7 -1
- package/dist/serialization/types/McpServerConfigOutput.d.ts +2 -2
- package/dist/serialization/types/McpServerConfigOutput.js +2 -2
- package/dist/serialization/types/McpServerConfigOutputAuthConnection.d.ts +9 -0
- package/dist/serialization/types/McpServerConfigOutputAuthConnection.js +41 -0
- package/dist/serialization/types/McpServerConfigOutputRequestHeadersValue.d.ts +2 -1
- package/dist/serialization/types/McpServerConfigOutputRequestHeadersValue.js +7 -1
- package/dist/serialization/types/MessageSearchSortBy.d.ts +7 -0
- package/dist/serialization/types/MessageSearchSortBy.js +39 -0
- package/dist/serialization/types/MockNoMatchBehavior.d.ts +7 -0
- package/dist/serialization/types/MockNoMatchBehavior.js +39 -0
- package/dist/serialization/types/MockingStrategy.d.ts +7 -0
- package/dist/serialization/types/MockingStrategy.js +39 -0
- package/dist/serialization/types/OAuth2ClientCredsResponse.d.ts +18 -0
- package/dist/serialization/types/OAuth2ClientCredsResponse.js +50 -0
- package/dist/serialization/types/OAuth2JwtResponse.d.ts +23 -0
- package/dist/serialization/types/OAuth2JwtResponse.js +55 -0
- package/dist/serialization/types/OAuth2JwtResponseAlgorithm.d.ts +7 -0
- package/dist/serialization/types/OAuth2JwtResponseAlgorithm.js +39 -0
- package/dist/serialization/types/OAuthConnectionStatus.d.ts +7 -0
- package/dist/serialization/types/OAuthConnectionStatus.js +39 -0
- package/dist/serialization/types/OrchestratorToolMockBehaviorConfig.d.ts +13 -0
- package/dist/serialization/types/OrchestratorToolMockBehaviorConfig.js +45 -0
- package/dist/serialization/types/PermissionType.d.ts +1 -1
- package/dist/serialization/types/PermissionType.js +1 -0
- package/dist/serialization/types/PlayDtmfToolConfig.d.ts +1 -0
- package/dist/serialization/types/PlayDtmfToolConfig.js +1 -0
- package/dist/serialization/types/PreviewAudioDbModel.d.ts +2 -0
- package/dist/serialization/types/PreviewAudioDbModel.js +2 -0
- package/dist/serialization/types/PrivateKeyJwtResponse.d.ts +21 -0
- package/dist/serialization/types/PrivateKeyJwtResponse.js +53 -0
- package/dist/serialization/types/PrivateKeyJwtResponseAlgorithm.d.ts +7 -0
- package/dist/serialization/types/PrivateKeyJwtResponseAlgorithm.js +39 -0
- package/dist/serialization/types/ProcedureCompilerMode.d.ts +7 -0
- package/dist/serialization/types/ProcedureCompilerMode.js +39 -0
- package/dist/serialization/types/ProcedureSettings.d.ts +10 -0
- package/dist/serialization/types/ProcedureSettings.js +42 -0
- package/dist/serialization/types/ProjectExternalAudioResponseModel.d.ts +4 -1
- package/dist/serialization/types/ProjectExternalAudioResponseModel.js +4 -1
- package/dist/serialization/types/ProjectImageResponseModel.d.ts +1 -0
- package/dist/serialization/types/ProjectImageResponseModel.js +1 -0
- package/dist/serialization/types/ProjectVideoResponseModel.d.ts +1 -0
- package/dist/serialization/types/ProjectVideoResponseModel.js +1 -0
- package/dist/serialization/types/RetryTriggerAction.d.ts +9 -0
- package/dist/serialization/types/RetryTriggerAction.js +41 -0
- package/dist/serialization/types/SimulationTestModel.d.ts +3 -0
- package/dist/serialization/types/SimulationTestModel.js +3 -0
- package/dist/serialization/types/SimulationToolMockBehaviorConfig.d.ts +13 -0
- package/dist/serialization/types/SimulationToolMockBehaviorConfig.js +45 -0
- package/dist/serialization/types/SingleTestRunRequestModel.d.ts +2 -0
- package/dist/serialization/types/SingleTestRunRequestModel.js +2 -0
- package/dist/serialization/types/SpeechHistoryItemResponse.d.ts +1 -0
- package/dist/serialization/types/SpeechHistoryItemResponse.js +1 -0
- package/dist/serialization/types/Subscription.d.ts +2 -0
- package/dist/serialization/types/Subscription.js +2 -0
- package/dist/serialization/types/SystemToolConfigInputParams.d.ts +1 -21
- package/dist/serialization/types/SystemToolConfigInputParams.js +0 -10
- package/dist/serialization/types/SystemToolConfigOutputParams.d.ts +1 -21
- package/dist/serialization/types/SystemToolConfigOutputParams.js +0 -10
- package/dist/serialization/types/TelephonyDirection.d.ts +7 -0
- package/dist/serialization/types/TelephonyDirection.js +39 -0
- package/dist/serialization/types/ToolRequestModel.d.ts +2 -0
- package/dist/serialization/types/ToolRequestModel.js +2 -0
- package/dist/serialization/types/ToolResponseMockConfigInput.d.ts +11 -0
- package/dist/serialization/types/ToolResponseMockConfigInput.js +43 -0
- package/dist/serialization/types/ToolResponseMockConfigOutput.d.ts +11 -0
- package/dist/serialization/types/ToolResponseMockConfigOutput.js +43 -0
- package/dist/serialization/types/ToolResponseModel.d.ts +2 -0
- package/dist/serialization/types/ToolResponseModel.js +2 -0
- package/dist/serialization/types/UnitTestRunResponseModel.d.ts +3 -0
- package/dist/serialization/types/UnitTestRunResponseModel.js +3 -0
- package/dist/serialization/types/UpdateSimulationTestRequest.d.ts +3 -0
- package/dist/serialization/types/UpdateSimulationTestRequest.js +3 -0
- package/dist/serialization/types/VideoAnalysisResult.d.ts +2 -2
- package/dist/serialization/types/VideoAnalysisResult.js +2 -2
- package/dist/serialization/types/WebhookToolApiSchemaConfigInput.d.ts +2 -2
- package/dist/serialization/types/WebhookToolApiSchemaConfigInput.js +2 -2
- package/dist/serialization/types/WebhookToolApiSchemaConfigInputAuthConnection.d.ts +9 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigInputAuthConnection.js +41 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +2 -1
- package/dist/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.js +7 -1
- package/dist/serialization/types/WebhookToolApiSchemaConfigOutput.d.ts +2 -2
- package/dist/serialization/types/WebhookToolApiSchemaConfigOutput.js +2 -2
- package/dist/serialization/types/WebhookToolApiSchemaConfigOutputAuthConnection.d.ts +9 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigOutputAuthConnection.js +41 -0
- package/dist/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +2 -1
- package/dist/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.js +7 -1
- package/dist/serialization/types/WhatsAppAuthResponse.d.ts +14 -0
- package/dist/serialization/types/WhatsAppAuthResponse.js +46 -0
- package/dist/serialization/types/WorkflowExpressionConditionModelInputExpression.d.ts +18 -2
- package/dist/serialization/types/WorkflowExpressionConditionModelInputExpression.js +8 -1
- package/dist/serialization/types/WorkflowExpressionConditionModelOutputExpression.d.ts +16 -1
- package/dist/serialization/types/WorkflowExpressionConditionModelOutputExpression.js +5 -0
- package/dist/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +2 -2
- package/dist/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.js +2 -2
- package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +2 -2
- package/dist/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.js +2 -2
- package/dist/serialization/types/WorkspaceGroupPermission.d.ts +1 -1
- package/dist/serialization/types/WorkspaceGroupPermission.js +1 -0
- package/dist/serialization/types/WorkspaceResourceType.d.ts +1 -1
- package/dist/serialization/types/WorkspaceResourceType.js +2 -0
- package/dist/serialization/types/index.d.ts +119 -25
- package/dist/serialization/types/index.js +119 -25
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +701 -68
- package/serialization/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/batchCalls/client/requests/BodySubmitABatchCallRequestV1ConvaiBatchCallingSubmitPost.js +2 -0
- package/serialization/resources/conversationalAi/resources/index.d.ts +0 -1
- package/serialization/resources/conversationalAi/resources/index.js +0 -1
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/index.js +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.d.ts +23 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.js +53 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateFolderV1ConvaiKnowledgeBaseFolderPost.js +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyCreateUrlDocumentV1ConvaiKnowledgeBaseUrlPost.js +2 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/index.js +1 -0
- package/serialization/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.d.ts +2 -2
- package/serialization/resources/conversationalAi/resources/mcpServers/client/requests/McpServerConfigUpdateRequestModel.js +2 -2
- package/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.d.ts +9 -0
- package/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.js +41 -0
- package/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.d.ts +2 -1
- package/serialization/resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelRequestHeadersValue.js +7 -1
- package/serialization/resources/conversationalAi/resources/mcpServers/types/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/mcpServers/types/index.js +1 -0
- package/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/settings/client/requests/PatchConvAiSettingsRequest.js +1 -0
- package/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.d.ts +2 -2
- package/serialization/resources/conversationalAi/resources/twilio/client/requests/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPost.js +2 -2
- package/serialization/resources/conversationalAi/resources/twilio/index.d.ts +0 -1
- package/serialization/resources/conversationalAi/resources/twilio/index.js +0 -1
- package/serialization/resources/environmentVariables/client/index.d.ts +1 -0
- package/serialization/resources/environmentVariables/client/index.js +17 -0
- package/serialization/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.d.ts +10 -0
- package/serialization/resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.js +42 -0
- package/serialization/resources/environmentVariables/client/requests/index.d.ts +1 -0
- package/serialization/resources/environmentVariables/client/requests/index.js +5 -0
- package/serialization/resources/environmentVariables/index.d.ts +2 -0
- package/serialization/resources/environmentVariables/index.js +18 -0
- package/serialization/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.d.ts +19 -0
- package/serialization/resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.js +51 -0
- package/serialization/resources/environmentVariables/types/EnvironmentVariablesListRequestType.d.ts +7 -0
- package/serialization/resources/environmentVariables/types/EnvironmentVariablesListRequestType.js +39 -0
- package/serialization/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.d.ts +9 -0
- package/serialization/resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.js +45 -0
- package/serialization/resources/environmentVariables/types/index.d.ts +3 -0
- package/serialization/resources/environmentVariables/types/index.js +19 -0
- package/serialization/resources/index.d.ts +3 -0
- package/serialization/resources/index.js +4 -1
- package/serialization/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.d.ts +7 -0
- package/serialization/resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.js +42 -0
- package/serialization/resources/speechToText/types/index.d.ts +1 -0
- package/serialization/resources/speechToText/types/index.js +1 -0
- package/serialization/resources/workspace/resources/authConnections/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/authConnections/index.js +17 -0
- package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +27 -0
- package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js +55 -0
- package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +39 -0
- package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js +61 -0
- package/serialization/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
- package/serialization/resources/workspace/resources/authConnections/types/index.js +18 -0
- package/serialization/resources/workspace/resources/index.d.ts +2 -0
- package/serialization/resources/workspace/resources/index.js +3 -1
- package/serialization/types/AgentConfig.d.ts +1 -0
- package/serialization/types/AgentConfig.js +1 -0
- package/serialization/types/AgentConfigApiModelWorkflowOverrideInput.d.ts +1 -0
- package/serialization/types/AgentConfigApiModelWorkflowOverrideInput.js +1 -0
- package/serialization/types/AgentConfigApiModelWorkflowOverrideOutput.d.ts +1 -0
- package/serialization/types/AgentConfigApiModelWorkflowOverrideOutput.js +1 -0
- package/serialization/types/AgentConfigOverrideConfig.d.ts +1 -0
- package/serialization/types/AgentConfigOverrideConfig.js +1 -0
- package/serialization/types/AgentConfigOverrideInput.d.ts +1 -0
- package/serialization/types/AgentConfigOverrideInput.js +1 -0
- package/serialization/types/AgentConfigOverrideOutput.d.ts +1 -0
- package/serialization/types/AgentConfigOverrideOutput.js +1 -0
- package/serialization/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
- package/serialization/types/AgentPlatformSettingsRequestModel.js +2 -0
- package/serialization/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
- package/serialization/types/AgentPlatformSettingsResponseModel.js +2 -0
- package/serialization/types/AgentSortBy.d.ts +1 -1
- package/serialization/types/AgentSortBy.js +1 -1
- package/serialization/types/ApiIntegrationOAuth2AuthCodeResponse.d.ts +24 -0
- package/serialization/types/ApiIntegrationOAuth2AuthCodeResponse.js +56 -0
- package/serialization/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.d.ts +7 -0
- package/serialization/types/ApiIntegrationOAuth2AuthCodeResponseScopeSeparator.js +39 -0
- package/serialization/types/ApiIntegrationWebhookOverrides.d.ts +15 -0
- package/serialization/types/ApiIntegrationWebhookOverrides.js +51 -0
- package/serialization/types/ApiIntegrationWebhookOverridesRequestHeadersValue.d.ts +8 -0
- package/serialization/types/ApiIntegrationWebhookOverridesRequestHeadersValue.js +40 -0
- package/serialization/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.d.ts +19 -0
- package/serialization/types/ApiIntegrationWebhookOverridesSchemaOverridesValue.js +51 -0
- package/serialization/types/ApiIntegrationWebhookToolConfigInput.d.ts +2 -2
- package/serialization/types/ApiIntegrationWebhookToolConfigInput.js +2 -2
- package/serialization/types/ApiIntegrationWebhookToolConfigOutput.d.ts +2 -2
- package/serialization/types/ApiIntegrationWebhookToolConfigOutput.js +2 -2
- package/serialization/types/AssetTranscription.d.ts +12 -0
- package/serialization/types/AssetTranscription.js +44 -0
- package/serialization/types/AssetTranscriptionWord.d.ts +12 -0
- package/serialization/types/AssetTranscriptionWord.js +44 -0
- package/serialization/types/AstAdditionOperatorNodeInput.d.ts +10 -0
- package/serialization/types/AstAdditionOperatorNodeInput.js +43 -0
- package/serialization/types/AstAdditionOperatorNodeInputLeft.d.ts +67 -0
- package/serialization/types/AstAdditionOperatorNodeInputLeft.js +71 -0
- package/serialization/types/AstAdditionOperatorNodeInputRight.d.ts +67 -0
- package/serialization/types/AstAdditionOperatorNodeInputRight.js +71 -0
- package/serialization/types/AstAdditionOperatorNodeOutput.d.ts +10 -0
- package/serialization/types/AstAdditionOperatorNodeOutput.js +43 -0
- package/serialization/types/AstAdditionOperatorNodeOutputLeft.d.ts +66 -0
- package/serialization/types/AstAdditionOperatorNodeOutputLeft.js +69 -0
- package/serialization/types/AstAdditionOperatorNodeOutputRight.d.ts +66 -0
- package/serialization/types/AstAdditionOperatorNodeOutputRight.js +69 -0
- package/serialization/types/AstAndOperatorNodeInputChildrenItem.d.ts +18 -2
- package/serialization/types/AstAndOperatorNodeInputChildrenItem.js +8 -1
- package/serialization/types/AstAndOperatorNodeOutputChildrenItem.d.ts +16 -1
- package/serialization/types/AstAndOperatorNodeOutputChildrenItem.js +5 -0
- package/serialization/types/AstConditionalOperatorNodeInput.d.ts +11 -0
- package/serialization/types/AstConditionalOperatorNodeInput.js +44 -0
- package/serialization/types/AstConditionalOperatorNodeInputCondition.d.ts +67 -0
- package/serialization/types/AstConditionalOperatorNodeInputCondition.js +71 -0
- package/serialization/types/AstConditionalOperatorNodeInputFalseExpression.d.ts +67 -0
- package/serialization/types/AstConditionalOperatorNodeInputFalseExpression.js +71 -0
- package/serialization/types/AstConditionalOperatorNodeInputTrueExpression.d.ts +67 -0
- package/serialization/types/AstConditionalOperatorNodeInputTrueExpression.js +71 -0
- package/serialization/types/AstConditionalOperatorNodeOutput.d.ts +11 -0
- package/serialization/types/AstConditionalOperatorNodeOutput.js +44 -0
- package/serialization/types/AstConditionalOperatorNodeOutputCondition.d.ts +66 -0
- package/serialization/types/AstConditionalOperatorNodeOutputCondition.js +69 -0
- package/serialization/types/AstConditionalOperatorNodeOutputFalseExpression.d.ts +66 -0
- package/serialization/types/AstConditionalOperatorNodeOutputFalseExpression.js +69 -0
- package/serialization/types/AstConditionalOperatorNodeOutputTrueExpression.d.ts +66 -0
- package/serialization/types/AstConditionalOperatorNodeOutputTrueExpression.js +69 -0
- package/serialization/types/AstDivisionOperatorNodeInput.d.ts +10 -0
- package/serialization/types/AstDivisionOperatorNodeInput.js +43 -0
- package/serialization/types/AstDivisionOperatorNodeInputLeft.d.ts +67 -0
- package/serialization/types/AstDivisionOperatorNodeInputLeft.js +71 -0
- package/serialization/types/AstDivisionOperatorNodeInputRight.d.ts +67 -0
- package/serialization/types/AstDivisionOperatorNodeInputRight.js +71 -0
- package/serialization/types/AstDivisionOperatorNodeOutput.d.ts +10 -0
- package/serialization/types/AstDivisionOperatorNodeOutput.js +43 -0
- package/serialization/types/AstDivisionOperatorNodeOutputLeft.d.ts +66 -0
- package/serialization/types/AstDivisionOperatorNodeOutputLeft.js +69 -0
- package/serialization/types/AstDivisionOperatorNodeOutputRight.d.ts +66 -0
- package/serialization/types/AstDivisionOperatorNodeOutputRight.js +69 -0
- package/serialization/types/AstEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/serialization/types/AstEqualsOperatorNodeInputLeft.js +8 -1
- package/serialization/types/AstEqualsOperatorNodeInputRight.d.ts +18 -2
- package/serialization/types/AstEqualsOperatorNodeInputRight.js +8 -1
- package/serialization/types/AstEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/serialization/types/AstEqualsOperatorNodeOutputLeft.js +5 -0
- package/serialization/types/AstEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/serialization/types/AstEqualsOperatorNodeOutputRight.js +5 -0
- package/serialization/types/AstGreaterThanOperatorNodeInputLeft.d.ts +18 -2
- package/serialization/types/AstGreaterThanOperatorNodeInputLeft.js +8 -1
- package/serialization/types/AstGreaterThanOperatorNodeInputRight.d.ts +18 -2
- package/serialization/types/AstGreaterThanOperatorNodeInputRight.js +8 -1
- package/serialization/types/AstGreaterThanOperatorNodeOutputLeft.d.ts +16 -1
- package/serialization/types/AstGreaterThanOperatorNodeOutputLeft.js +5 -0
- package/serialization/types/AstGreaterThanOperatorNodeOutputRight.d.ts +16 -1
- package/serialization/types/AstGreaterThanOperatorNodeOutputRight.js +5 -0
- package/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputLeft.js +8 -1
- package/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
- package/serialization/types/AstGreaterThanOrEqualsOperatorNodeInputRight.js +8 -1
- package/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputLeft.js +5 -0
- package/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/serialization/types/AstGreaterThanOrEqualsOperatorNodeOutputRight.js +5 -0
- package/serialization/types/AstLessThanOperatorNodeInputLeft.d.ts +18 -2
- package/serialization/types/AstLessThanOperatorNodeInputLeft.js +8 -1
- package/serialization/types/AstLessThanOperatorNodeInputRight.d.ts +18 -2
- package/serialization/types/AstLessThanOperatorNodeInputRight.js +8 -1
- package/serialization/types/AstLessThanOperatorNodeOutputLeft.d.ts +16 -1
- package/serialization/types/AstLessThanOperatorNodeOutputLeft.js +5 -0
- package/serialization/types/AstLessThanOperatorNodeOutputRight.d.ts +16 -1
- package/serialization/types/AstLessThanOperatorNodeOutputRight.js +5 -0
- package/serialization/types/AstLessThanOrEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/serialization/types/AstLessThanOrEqualsOperatorNodeInputLeft.js +8 -1
- package/serialization/types/AstLessThanOrEqualsOperatorNodeInputRight.d.ts +18 -2
- package/serialization/types/AstLessThanOrEqualsOperatorNodeInputRight.js +8 -1
- package/serialization/types/AstLessThanOrEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/serialization/types/AstLessThanOrEqualsOperatorNodeOutputLeft.js +5 -0
- package/serialization/types/AstLessThanOrEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/serialization/types/AstLessThanOrEqualsOperatorNodeOutputRight.js +5 -0
- package/serialization/types/AstMultiplicationOperatorNodeInput.d.ts +10 -0
- package/serialization/types/AstMultiplicationOperatorNodeInput.js +43 -0
- package/serialization/types/AstMultiplicationOperatorNodeInputLeft.d.ts +67 -0
- package/serialization/types/AstMultiplicationOperatorNodeInputLeft.js +71 -0
- package/serialization/types/AstMultiplicationOperatorNodeInputRight.d.ts +67 -0
- package/serialization/types/AstMultiplicationOperatorNodeInputRight.js +71 -0
- package/serialization/types/AstMultiplicationOperatorNodeOutput.d.ts +10 -0
- package/serialization/types/AstMultiplicationOperatorNodeOutput.js +43 -0
- package/serialization/types/AstMultiplicationOperatorNodeOutputLeft.d.ts +66 -0
- package/serialization/types/AstMultiplicationOperatorNodeOutputLeft.js +69 -0
- package/serialization/types/AstMultiplicationOperatorNodeOutputRight.d.ts +66 -0
- package/serialization/types/AstMultiplicationOperatorNodeOutputRight.js +69 -0
- package/serialization/types/AstNotEqualsOperatorNodeInputLeft.d.ts +18 -2
- package/serialization/types/AstNotEqualsOperatorNodeInputLeft.js +8 -1
- package/serialization/types/AstNotEqualsOperatorNodeInputRight.d.ts +18 -2
- package/serialization/types/AstNotEqualsOperatorNodeInputRight.js +8 -1
- package/serialization/types/AstNotEqualsOperatorNodeOutputLeft.d.ts +16 -1
- package/serialization/types/AstNotEqualsOperatorNodeOutputLeft.js +5 -0
- package/serialization/types/AstNotEqualsOperatorNodeOutputRight.d.ts +16 -1
- package/serialization/types/AstNotEqualsOperatorNodeOutputRight.js +5 -0
- package/serialization/types/AstOrOperatorNodeInputChildrenItem.d.ts +18 -2
- package/serialization/types/AstOrOperatorNodeInputChildrenItem.js +8 -1
- package/serialization/types/AstOrOperatorNodeOutputChildrenItem.d.ts +16 -1
- package/serialization/types/AstOrOperatorNodeOutputChildrenItem.js +5 -0
- package/serialization/types/AstSubtractionOperatorNodeInput.d.ts +10 -0
- package/serialization/types/AstSubtractionOperatorNodeInput.js +43 -0
- package/serialization/types/AstSubtractionOperatorNodeInputLeft.d.ts +67 -0
- package/serialization/types/AstSubtractionOperatorNodeInputLeft.js +71 -0
- package/serialization/types/AstSubtractionOperatorNodeInputRight.d.ts +67 -0
- package/serialization/types/AstSubtractionOperatorNodeInputRight.js +71 -0
- package/serialization/types/AstSubtractionOperatorNodeOutput.d.ts +10 -0
- package/serialization/types/AstSubtractionOperatorNodeOutput.js +43 -0
- package/serialization/types/AstSubtractionOperatorNodeOutputLeft.d.ts +66 -0
- package/serialization/types/AstSubtractionOperatorNodeOutputLeft.js +69 -0
- package/serialization/types/AstSubtractionOperatorNodeOutputRight.d.ts +66 -0
- package/serialization/types/AstSubtractionOperatorNodeOutputRight.js +69 -0
- package/serialization/types/AstllmNodeInput.d.ts +4 -4
- package/serialization/types/AstllmNodeInput.js +3 -3
- package/serialization/types/AstllmNodeInputPrompt.d.ts +10 -0
- package/serialization/types/AstllmNodeInputPrompt.js +42 -0
- package/serialization/types/AstllmNodeInputValueSchema.d.ts +11 -0
- package/serialization/types/AstllmNodeInputValueSchema.js +43 -0
- package/serialization/types/AstllmNodeOutput.d.ts +2 -0
- package/serialization/types/AstllmNodeOutput.js +2 -0
- package/serialization/types/AsyncConversationMetadata.d.ts +1 -0
- package/serialization/types/AsyncConversationMetadata.js +1 -0
- package/serialization/types/AudioAnalysis.d.ts +13 -0
- package/serialization/types/AudioAnalysis.js +45 -0
- package/serialization/types/AudioAnalysisResult.d.ts +18 -0
- package/serialization/types/AudioAnalysisResult.js +50 -0
- package/serialization/types/AudioAnalysisStatus.d.ts +7 -0
- package/serialization/types/AudioAnalysisStatus.js +39 -0
- package/serialization/types/AudioKeyMoment.d.ts +11 -0
- package/serialization/types/AudioKeyMoment.js +43 -0
- package/serialization/types/AudioSegment.d.ts +15 -0
- package/serialization/types/AudioSegment.js +47 -0
- package/serialization/types/AuthConnectionDependencies.d.ts +14 -0
- package/serialization/types/AuthConnectionDependencies.js +46 -0
- package/serialization/types/AuthConnectionDependenciesMcpServersItem.d.ts +15 -0
- package/serialization/types/AuthConnectionDependenciesMcpServersItem.js +49 -0
- package/serialization/types/AuthConnectionDependenciesToolsItem.d.ts +15 -0
- package/serialization/types/AuthConnectionDependenciesToolsItem.js +49 -0
- package/serialization/types/AutoSyncInfo.d.ts +12 -0
- package/serialization/types/AutoSyncInfo.js +44 -0
- package/serialization/types/BasicAuthResponse.d.ts +14 -0
- package/serialization/types/BasicAuthResponse.js +46 -0
- package/serialization/types/BatchCallDetailedResponse.d.ts +3 -0
- package/serialization/types/BatchCallDetailedResponse.js +3 -0
- package/serialization/types/BatchCallResponse.d.ts +3 -0
- package/serialization/types/BatchCallResponse.js +3 -0
- package/serialization/types/BearerAuthResponse.d.ts +13 -0
- package/serialization/types/BearerAuthResponse.js +45 -0
- package/serialization/types/CanvasPlacement.d.ts +2 -0
- package/serialization/types/CanvasPlacement.js +2 -0
- package/serialization/types/CaptionStyleModel.d.ts +4 -0
- package/serialization/types/CaptionStyleModel.js +4 -0
- package/serialization/types/CaptionStyleModelTextBlendMode.d.ts +7 -0
- package/serialization/types/CaptionStyleModelTextBlendMode.js +39 -0
- package/serialization/types/CaptionStyleModelTextTransform.d.ts +7 -0
- package/serialization/types/CaptionStyleModelTextTransform.js +39 -0
- package/serialization/types/CaptionStyleModelTextWeight.d.ts +1 -1
- package/serialization/types/CaptionStyleModelTextWeight.js +1 -1
- package/serialization/types/ContentConfig.d.ts +8 -8
- package/serialization/types/ContentConfig.js +8 -8
- package/serialization/types/ContentGuardrailInput.d.ts +2 -0
- package/serialization/types/ContentGuardrailInput.js +2 -0
- package/serialization/types/ContentGuardrailInputTriggerAction.d.ts +15 -0
- package/serialization/types/ContentGuardrailInputTriggerAction.js +49 -0
- package/serialization/types/ContentGuardrailOutput.d.ts +2 -0
- package/serialization/types/ContentGuardrailOutput.js +2 -0
- package/serialization/types/ContentGuardrailOutputTriggerAction.d.ts +15 -0
- package/serialization/types/ContentGuardrailOutputTriggerAction.js +49 -0
- package/serialization/types/ContentThresholdGuardrail.d.ts +11 -0
- package/serialization/types/ContentThresholdGuardrail.js +43 -0
- package/serialization/types/ContentThresholdGuardrailThreshold.d.ts +7 -0
- package/serialization/types/ContentThresholdGuardrailThreshold.js +44 -0
- package/serialization/types/Contributor.d.ts +2 -0
- package/serialization/types/Contributor.js +2 -0
- package/serialization/types/ConvAiEnvVarLocator.d.ts +9 -0
- package/serialization/types/ConvAiEnvVarLocator.js +41 -0
- package/serialization/types/ConversationConfig.d.ts +2 -0
- package/serialization/types/ConversationConfig.js +2 -0
- package/serialization/types/ConversationConfigWorkflowOverride.d.ts +2 -0
- package/serialization/types/ConversationConfigWorkflowOverride.js +2 -0
- package/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.d.ts +2 -2
- package/serialization/types/ConversationHistorySipTrunkingPhoneCallModel.js +2 -2
- package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.d.ts +22 -0
- package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelInput.js +54 -0
- package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.d.ts +22 -0
- package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModelOutput.js +54 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +1 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.d.ts +2 -2
- package/serialization/types/ConversationHistoryTranscriptCommonModelInputToolResultsItem.js +2 -2
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +1 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.d.ts +2 -2
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutputToolResultsItem.js +2 -2
- package/serialization/types/ConversationHistoryTranscriptResponseModel.d.ts +1 -0
- package/serialization/types/ConversationHistoryTranscriptResponseModel.js +1 -0
- package/serialization/types/ConversationHistoryTranscriptResponseModelToolResultsItem.d.ts +2 -2
- package/serialization/types/ConversationHistoryTranscriptResponseModelToolResultsItem.js +2 -2
- package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.d.ts +13 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsInput.js +45 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.d.ts +13 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetailsOutput.js +45 -0
- package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.d.ts +2 -2
- package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelInputToolDetails.js +2 -2
- package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.d.ts +2 -2
- package/serialization/types/ConversationHistoryTranscriptToolCallCommonModelOutputToolDetails.js +2 -2
- package/serialization/types/ConversationHistoryTwilioPhoneCallModel.d.ts +2 -2
- package/serialization/types/ConversationHistoryTwilioPhoneCallModel.js +2 -2
- package/serialization/types/ConversationInitiationClientDataInternal.d.ts +4 -0
- package/serialization/types/ConversationInitiationClientDataInternal.js +4 -0
- package/serialization/types/ConversationInitiationClientDataRequestInput.d.ts +2 -0
- package/serialization/types/ConversationInitiationClientDataRequestInput.js +2 -0
- package/serialization/types/ConversationInitiationClientDataRequestOutput.d.ts +2 -0
- package/serialization/types/ConversationInitiationClientDataRequestOutput.js +2 -0
- package/serialization/types/ConversationSummaryResponseModel.d.ts +3 -2
- package/serialization/types/ConversationSummaryResponseModel.js +3 -2
- package/serialization/types/CreateAuthConnectionEnvironmentVariableRequest.d.ts +11 -0
- package/serialization/types/CreateAuthConnectionEnvironmentVariableRequest.js +43 -0
- package/serialization/types/CreateBasicAuthRequest.d.ts +12 -0
- package/serialization/types/CreateBasicAuthRequest.js +44 -0
- package/serialization/types/CreateCustomHeaderAuthRequest.d.ts +12 -0
- package/serialization/types/CreateCustomHeaderAuthRequest.js +44 -0
- package/serialization/types/CreateOAuth2ClientCredsRequest.d.ts +17 -0
- package/serialization/types/CreateOAuth2ClientCredsRequest.js +49 -0
- package/serialization/types/CreateOAuth2JwtRequest.d.ts +21 -0
- package/serialization/types/CreateOAuth2JwtRequest.js +53 -0
- package/serialization/types/CreateOAuth2JwtRequestAlgorithm.d.ts +7 -0
- package/serialization/types/CreateOAuth2JwtRequestAlgorithm.js +39 -0
- package/serialization/types/CreatePrivateKeyJwtRequest.d.ts +19 -0
- package/serialization/types/CreatePrivateKeyJwtRequest.js +51 -0
- package/serialization/types/CreatePrivateKeyJwtRequestAlgorithm.d.ts +7 -0
- package/serialization/types/CreatePrivateKeyJwtRequestAlgorithm.js +39 -0
- package/serialization/types/CreateSecretEnvironmentVariableRequest.d.ts +11 -0
- package/serialization/types/CreateSecretEnvironmentVariableRequest.js +43 -0
- package/serialization/types/CreateSimulationTestRequest.d.ts +3 -0
- package/serialization/types/CreateSimulationTestRequest.js +3 -0
- package/serialization/types/CreateStringEnvironmentVariableRequest.d.ts +10 -0
- package/serialization/types/CreateStringEnvironmentVariableRequest.js +42 -0
- package/serialization/types/CustomGuardrailConfig.d.ts +2 -0
- package/serialization/types/CustomGuardrailConfig.js +2 -0
- package/serialization/types/CustomGuardrailConfigTriggerAction.d.ts +15 -0
- package/serialization/types/CustomGuardrailConfigTriggerAction.js +49 -0
- package/serialization/types/CustomHeaderAuthResponse.d.ts +14 -0
- package/serialization/types/CustomHeaderAuthResponse.js +46 -0
- package/serialization/types/CustomLlm.d.ts +2 -2
- package/serialization/types/CustomLlm.js +2 -2
- package/serialization/types/CustomLlmApiKey.d.ts +9 -0
- package/serialization/types/CustomLlmApiKey.js +41 -0
- package/serialization/types/CustomLlmRequestHeadersValue.d.ts +2 -1
- package/serialization/types/CustomLlmRequestHeadersValue.js +7 -1
- package/serialization/types/DependentAvailableMcpServerIdentifier.d.ts +13 -0
- package/serialization/types/DependentAvailableMcpServerIdentifier.js +45 -0
- package/serialization/types/DependentAvailableMcpServerIdentifierAccessLevel.d.ts +7 -0
- package/serialization/types/DependentAvailableMcpServerIdentifierAccessLevel.js +39 -0
- package/serialization/types/DependentIntegrationConnectionIdentifier.d.ts +10 -0
- package/serialization/types/DependentIntegrationConnectionIdentifier.js +42 -0
- package/serialization/types/DependentUnknownMcpServerIdentifier.d.ts +9 -0
- package/serialization/types/DependentUnknownMcpServerIdentifier.js +41 -0
- package/serialization/types/DependentUnknownToolIdentifier.d.ts +3 -1
- package/serialization/types/DependentUnknownToolIdentifier.js +3 -1
- package/serialization/types/DirectPublishingReadResponseModel.d.ts +1 -0
- package/serialization/types/DirectPublishingReadResponseModel.js +1 -0
- package/serialization/types/EmbeddingModelEnum.d.ts +1 -1
- package/serialization/types/EmbeddingModelEnum.js +1 -1
- package/serialization/types/EndCallTriggerAction.d.ts +7 -0
- package/serialization/types/EndCallTriggerAction.js +39 -0
- package/serialization/types/EnvironmentAuthConnectionLocator.d.ts +9 -0
- package/serialization/types/EnvironmentAuthConnectionLocator.js +41 -0
- package/serialization/types/EnvironmentVariableAuthConnectionValue.d.ts +9 -0
- package/serialization/types/EnvironmentVariableAuthConnectionValue.js +41 -0
- package/serialization/types/EnvironmentVariableAuthConnectionValueRequest.d.ts +9 -0
- package/serialization/types/EnvironmentVariableAuthConnectionValueRequest.js +41 -0
- package/serialization/types/EnvironmentVariableResponse.d.ts +18 -0
- package/serialization/types/EnvironmentVariableResponse.js +50 -0
- package/serialization/types/EnvironmentVariableResponseType.d.ts +7 -0
- package/serialization/types/EnvironmentVariableResponseType.js +39 -0
- package/serialization/types/EnvironmentVariableResponseValues.d.ts +9 -0
- package/serialization/types/EnvironmentVariableResponseValues.js +45 -0
- package/serialization/types/EnvironmentVariableSecretValue.d.ts +9 -0
- package/serialization/types/EnvironmentVariableSecretValue.js +41 -0
- package/serialization/types/EnvironmentVariableSecretValueRequest.d.ts +9 -0
- package/serialization/types/EnvironmentVariableSecretValueRequest.js +41 -0
- package/serialization/types/EnvironmentVariablesListResponse.d.ts +12 -0
- package/serialization/types/EnvironmentVariablesListResponse.js +44 -0
- package/serialization/types/FeaturesUsageCommonModel.d.ts +1 -0
- package/serialization/types/FeaturesUsageCommonModel.js +1 -0
- package/serialization/types/FileInputConfig.d.ts +10 -0
- package/serialization/types/FileInputConfig.js +42 -0
- package/serialization/types/FileInputConfigWorkflowOverride.d.ts +10 -0
- package/serialization/types/FileInputConfigWorkflowOverride.js +42 -0
- package/serialization/types/GenesysRegion.d.ts +7 -0
- package/serialization/types/GenesysRegion.js +57 -0
- package/serialization/types/GetConvAiSettingsResponseModel.d.ts +1 -0
- package/serialization/types/GetConvAiSettingsResponseModel.js +1 -0
- package/serialization/types/GetKnowledgeBaseFolderResponseModel.d.ts +2 -0
- package/serialization/types/GetKnowledgeBaseFolderResponseModel.js +2 -0
- package/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.d.ts +2 -0
- package/serialization/types/GetKnowledgeBaseSummaryFolderResponseModel.js +2 -0
- package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +2 -0
- package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.js +2 -0
- package/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +2 -0
- package/serialization/types/GetKnowledgeBaseUrlResponseModel.js +2 -0
- package/serialization/types/GetSimulationTestResponseModel.d.ts +3 -0
- package/serialization/types/GetSimulationTestResponseModel.js +3 -0
- package/serialization/types/GetTestSuiteInvocationResponseModel.d.ts +1 -0
- package/serialization/types/GetTestSuiteInvocationResponseModel.js +1 -0
- package/serialization/types/GuardrailsV1Input.d.ts +0 -2
- package/serialization/types/GuardrailsV1Input.js +0 -2
- package/serialization/types/GuardrailsV1Output.d.ts +0 -2
- package/serialization/types/GuardrailsV1Output.js +0 -2
- package/serialization/types/ListAuthConnectionsResponse.d.ts +10 -0
- package/serialization/types/ListAuthConnectionsResponse.js +42 -0
- package/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +39 -0
- package/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.js +61 -0
- package/serialization/types/LlmInfoModelInput.d.ts +1 -0
- package/serialization/types/LlmInfoModelInput.js +1 -0
- package/serialization/types/LlmInfoModelOutput.d.ts +1 -0
- package/serialization/types/LlmInfoModelOutput.js +1 -0
- package/serialization/types/LlmLiteralJsonSchemaProperty.d.ts +12 -0
- package/serialization/types/LlmLiteralJsonSchemaProperty.js +44 -0
- package/serialization/types/LlmLiteralJsonSchemaPropertyType.d.ts +7 -0
- package/serialization/types/LlmLiteralJsonSchemaPropertyType.js +39 -0
- package/serialization/types/McpServerConfigInput.d.ts +2 -2
- package/serialization/types/McpServerConfigInput.js +2 -2
- package/serialization/types/McpServerConfigInputAuthConnection.d.ts +9 -0
- package/serialization/types/McpServerConfigInputAuthConnection.js +41 -0
- package/serialization/types/McpServerConfigInputRequestHeadersValue.d.ts +2 -1
- package/serialization/types/McpServerConfigInputRequestHeadersValue.js +7 -1
- package/serialization/types/McpServerConfigOutput.d.ts +2 -2
- package/serialization/types/McpServerConfigOutput.js +2 -2
- package/serialization/types/McpServerConfigOutputAuthConnection.d.ts +9 -0
- package/serialization/types/McpServerConfigOutputAuthConnection.js +41 -0
- package/serialization/types/McpServerConfigOutputRequestHeadersValue.d.ts +2 -1
- package/serialization/types/McpServerConfigOutputRequestHeadersValue.js +7 -1
- package/serialization/types/MessageSearchSortBy.d.ts +7 -0
- package/serialization/types/MessageSearchSortBy.js +39 -0
- package/serialization/types/MockNoMatchBehavior.d.ts +7 -0
- package/serialization/types/MockNoMatchBehavior.js +39 -0
- package/serialization/types/MockingStrategy.d.ts +7 -0
- package/serialization/types/MockingStrategy.js +39 -0
- package/serialization/types/OAuth2ClientCredsResponse.d.ts +18 -0
- package/serialization/types/OAuth2ClientCredsResponse.js +50 -0
- package/serialization/types/OAuth2JwtResponse.d.ts +23 -0
- package/serialization/types/OAuth2JwtResponse.js +55 -0
- package/serialization/types/OAuth2JwtResponseAlgorithm.d.ts +7 -0
- package/serialization/types/OAuth2JwtResponseAlgorithm.js +39 -0
- package/serialization/types/OAuthConnectionStatus.d.ts +7 -0
- package/serialization/types/OAuthConnectionStatus.js +39 -0
- package/serialization/types/OrchestratorToolMockBehaviorConfig.d.ts +13 -0
- package/serialization/types/OrchestratorToolMockBehaviorConfig.js +45 -0
- package/serialization/types/PermissionType.d.ts +1 -1
- package/serialization/types/PermissionType.js +1 -0
- package/serialization/types/PlayDtmfToolConfig.d.ts +1 -0
- package/serialization/types/PlayDtmfToolConfig.js +1 -0
- package/serialization/types/PreviewAudioDbModel.d.ts +2 -0
- package/serialization/types/PreviewAudioDbModel.js +2 -0
- package/serialization/types/PrivateKeyJwtResponse.d.ts +21 -0
- package/serialization/types/PrivateKeyJwtResponse.js +53 -0
- package/serialization/types/PrivateKeyJwtResponseAlgorithm.d.ts +7 -0
- package/serialization/types/PrivateKeyJwtResponseAlgorithm.js +39 -0
- package/serialization/types/ProcedureCompilerMode.d.ts +7 -0
- package/serialization/types/ProcedureCompilerMode.js +39 -0
- package/serialization/types/ProcedureSettings.d.ts +10 -0
- package/serialization/types/ProcedureSettings.js +42 -0
- package/serialization/types/ProjectExternalAudioResponseModel.d.ts +4 -1
- package/serialization/types/ProjectExternalAudioResponseModel.js +4 -1
- package/serialization/types/ProjectImageResponseModel.d.ts +1 -0
- package/serialization/types/ProjectImageResponseModel.js +1 -0
- package/serialization/types/ProjectVideoResponseModel.d.ts +1 -0
- package/serialization/types/ProjectVideoResponseModel.js +1 -0
- package/serialization/types/RetryTriggerAction.d.ts +9 -0
- package/serialization/types/RetryTriggerAction.js +41 -0
- package/serialization/types/SimulationTestModel.d.ts +3 -0
- package/serialization/types/SimulationTestModel.js +3 -0
- package/serialization/types/SimulationToolMockBehaviorConfig.d.ts +13 -0
- package/serialization/types/SimulationToolMockBehaviorConfig.js +45 -0
- package/serialization/types/SingleTestRunRequestModel.d.ts +2 -0
- package/serialization/types/SingleTestRunRequestModel.js +2 -0
- package/serialization/types/SpeechHistoryItemResponse.d.ts +1 -0
- package/serialization/types/SpeechHistoryItemResponse.js +1 -0
- package/serialization/types/Subscription.d.ts +2 -0
- package/serialization/types/Subscription.js +2 -0
- package/serialization/types/SystemToolConfigInputParams.d.ts +1 -21
- package/serialization/types/SystemToolConfigInputParams.js +0 -10
- package/serialization/types/SystemToolConfigOutputParams.d.ts +1 -21
- package/serialization/types/SystemToolConfigOutputParams.js +0 -10
- package/serialization/types/TelephonyDirection.d.ts +7 -0
- package/serialization/types/TelephonyDirection.js +39 -0
- package/serialization/types/ToolRequestModel.d.ts +2 -0
- package/serialization/types/ToolRequestModel.js +2 -0
- package/serialization/types/ToolResponseMockConfigInput.d.ts +11 -0
- package/serialization/types/ToolResponseMockConfigInput.js +43 -0
- package/serialization/types/ToolResponseMockConfigOutput.d.ts +11 -0
- package/serialization/types/ToolResponseMockConfigOutput.js +43 -0
- package/serialization/types/ToolResponseModel.d.ts +2 -0
- package/serialization/types/ToolResponseModel.js +2 -0
- package/serialization/types/UnitTestRunResponseModel.d.ts +3 -0
- package/serialization/types/UnitTestRunResponseModel.js +3 -0
- package/serialization/types/UpdateSimulationTestRequest.d.ts +3 -0
- package/serialization/types/UpdateSimulationTestRequest.js +3 -0
- package/serialization/types/VideoAnalysisResult.d.ts +2 -2
- package/serialization/types/VideoAnalysisResult.js +2 -2
- package/serialization/types/WebhookToolApiSchemaConfigInput.d.ts +2 -2
- package/serialization/types/WebhookToolApiSchemaConfigInput.js +2 -2
- package/serialization/types/WebhookToolApiSchemaConfigInputAuthConnection.d.ts +9 -0
- package/serialization/types/WebhookToolApiSchemaConfigInputAuthConnection.js +41 -0
- package/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.d.ts +2 -1
- package/serialization/types/WebhookToolApiSchemaConfigInputRequestHeadersValue.js +7 -1
- package/serialization/types/WebhookToolApiSchemaConfigOutput.d.ts +2 -2
- package/serialization/types/WebhookToolApiSchemaConfigOutput.js +2 -2
- package/serialization/types/WebhookToolApiSchemaConfigOutputAuthConnection.d.ts +9 -0
- package/serialization/types/WebhookToolApiSchemaConfigOutputAuthConnection.js +41 -0
- package/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.d.ts +2 -1
- package/serialization/types/WebhookToolApiSchemaConfigOutputRequestHeadersValue.js +7 -1
- package/serialization/types/WhatsAppAuthResponse.d.ts +14 -0
- package/serialization/types/WhatsAppAuthResponse.js +46 -0
- package/serialization/types/WorkflowExpressionConditionModelInputExpression.d.ts +18 -2
- package/serialization/types/WorkflowExpressionConditionModelInputExpression.js +8 -1
- package/serialization/types/WorkflowExpressionConditionModelOutputExpression.d.ts +16 -1
- package/serialization/types/WorkflowExpressionConditionModelOutputExpression.js +5 -0
- package/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.d.ts +2 -2
- package/serialization/types/WorkflowToolNestedToolsStepModelInputResultsItem.js +2 -2
- package/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.d.ts +2 -2
- package/serialization/types/WorkflowToolNestedToolsStepModelOutputResultsItem.js +2 -2
- package/serialization/types/WorkspaceGroupPermission.d.ts +1 -1
- package/serialization/types/WorkspaceGroupPermission.js +1 -0
- package/serialization/types/WorkspaceResourceType.d.ts +1 -1
- package/serialization/types/WorkspaceResourceType.js +2 -0
- package/serialization/types/index.d.ts +119 -25
- package/serialization/types/index.js +119 -25
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +0 -5
- package/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +0 -8
- package/api/resources/conversationalAi/resources/twilio/types/index.d.ts +0 -1
- package/api/resources/conversationalAi/resources/twilio/types/index.js +0 -17
- package/api/types/AgentPromptChangeToolConfig.d.ts +0 -1
- package/api/types/ApiIntegrationWebhookOverridesInput.d.ts +0 -14
- package/api/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.d.ts +0 -2
- package/api/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.d.ts +0 -13
- package/api/types/ApiIntegrationWebhookOverridesOutput.d.ts +0 -14
- package/api/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.d.ts +0 -2
- package/api/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.d.ts +0 -13
- package/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +0 -5
- package/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +0 -8
- package/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +0 -16
- package/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +0 -7
- package/api/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +0 -5
- package/api/types/ConversationHistoryTwilioPhoneCallModelDirection.js +0 -8
- package/api/types/ConversationSummaryResponseModelDirection.d.ts +0 -5
- package/api/types/ConversationSummaryResponseModelDirection.js +0 -8
- package/api/types/LiteralOverride.d.ts +0 -6
- package/api/types/LiteralOverrideConstantValue.d.ts +0 -1
- package/api/types/MemoryEntryCreateToolConfig.d.ts +0 -1
- package/api/types/MemoryEntryDeleteToolConfig.d.ts +0 -1
- package/api/types/MemoryEntrySearchToolConfig.d.ts +0 -1
- package/api/types/MemoryEntryUpdateToolConfig.d.ts +0 -1
- package/api/types/ObjectOverrideInput.d.ts +0 -6
- package/api/types/ObjectOverrideInputPropertiesValue.d.ts +0 -2
- package/api/types/ObjectOverrideOutput.d.ts +0 -6
- package/api/types/ObjectOverrideOutputPropertiesValue.d.ts +0 -2
- package/api/types/QueryOverride.d.ts +0 -5
- package/api/types/VideoTranscription.d.ts +0 -6
- package/api/types/VideoTranscriptionWord.d.ts +0 -6
- package/dist/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +0 -5
- package/dist/api/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +0 -8
- package/dist/api/resources/conversationalAi/resources/twilio/types/index.d.ts +0 -1
- package/dist/api/resources/conversationalAi/resources/twilio/types/index.js +0 -17
- package/dist/api/types/AgentPromptChangeToolConfig.d.ts +0 -1
- package/dist/api/types/ApiIntegrationWebhookOverridesInput.d.ts +0 -14
- package/dist/api/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.d.ts +0 -2
- package/dist/api/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.d.ts +0 -13
- package/dist/api/types/ApiIntegrationWebhookOverridesOutput.d.ts +0 -14
- package/dist/api/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.d.ts +0 -2
- package/dist/api/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.d.ts +0 -13
- package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +0 -5
- package/dist/api/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +0 -8
- package/dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +0 -16
- package/dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +0 -7
- package/dist/api/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +0 -5
- package/dist/api/types/ConversationHistoryTwilioPhoneCallModelDirection.js +0 -8
- package/dist/api/types/ConversationSummaryResponseModelDirection.d.ts +0 -5
- package/dist/api/types/ConversationSummaryResponseModelDirection.js +0 -8
- package/dist/api/types/LiteralOverride.d.ts +0 -6
- package/dist/api/types/LiteralOverrideConstantValue.d.ts +0 -1
- package/dist/api/types/MemoryEntryCreateToolConfig.d.ts +0 -1
- package/dist/api/types/MemoryEntryDeleteToolConfig.d.ts +0 -1
- package/dist/api/types/MemoryEntrySearchToolConfig.d.ts +0 -1
- package/dist/api/types/MemoryEntryUpdateToolConfig.d.ts +0 -1
- package/dist/api/types/ObjectOverrideInput.d.ts +0 -6
- package/dist/api/types/ObjectOverrideInputPropertiesValue.d.ts +0 -2
- package/dist/api/types/ObjectOverrideOutput.d.ts +0 -6
- package/dist/api/types/ObjectOverrideOutputPropertiesValue.d.ts +0 -2
- package/dist/api/types/QueryOverride.d.ts +0 -5
- package/dist/api/types/VideoTranscription.d.ts +0 -6
- package/dist/api/types/VideoTranscriptionWord.d.ts +0 -6
- package/dist/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +0 -7
- package/dist/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +0 -39
- package/dist/serialization/resources/conversationalAi/resources/twilio/types/index.d.ts +0 -1
- package/dist/serialization/resources/conversationalAi/resources/twilio/types/index.js +0 -17
- package/dist/serialization/types/AgentPromptChangeToolConfig.d.ts +0 -7
- package/dist/serialization/types/AgentPromptChangeToolConfig.js +0 -39
- package/dist/serialization/types/ApiIntegrationWebhookOverridesInput.d.ts +0 -20
- package/dist/serialization/types/ApiIntegrationWebhookOverridesInput.js +0 -57
- package/dist/serialization/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.d.ts +0 -8
- package/dist/serialization/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.js +0 -40
- package/dist/serialization/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.d.ts +0 -19
- package/dist/serialization/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.js +0 -51
- package/dist/serialization/types/ApiIntegrationWebhookOverridesOutput.d.ts +0 -20
- package/dist/serialization/types/ApiIntegrationWebhookOverridesOutput.js +0 -57
- package/dist/serialization/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.d.ts +0 -8
- package/dist/serialization/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.js +0 -40
- package/dist/serialization/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.d.ts +0 -19
- package/dist/serialization/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.js +0 -51
- package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +0 -7
- package/dist/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +0 -39
- package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +0 -22
- package/dist/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js +0 -54
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +0 -13
- package/dist/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js +0 -45
- package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +0 -7
- package/dist/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.js +0 -39
- package/dist/serialization/types/ConversationSummaryResponseModelDirection.d.ts +0 -7
- package/dist/serialization/types/ConversationSummaryResponseModelDirection.js +0 -39
- package/dist/serialization/types/LiteralOverride.d.ts +0 -12
- package/dist/serialization/types/LiteralOverride.js +0 -44
- package/dist/serialization/types/LiteralOverrideConstantValue.d.ts +0 -7
- package/dist/serialization/types/LiteralOverrideConstantValue.js +0 -44
- package/dist/serialization/types/MemoryEntryCreateToolConfig.d.ts +0 -7
- package/dist/serialization/types/MemoryEntryCreateToolConfig.js +0 -39
- package/dist/serialization/types/MemoryEntryDeleteToolConfig.d.ts +0 -7
- package/dist/serialization/types/MemoryEntryDeleteToolConfig.js +0 -39
- package/dist/serialization/types/MemoryEntrySearchToolConfig.d.ts +0 -7
- package/dist/serialization/types/MemoryEntrySearchToolConfig.js +0 -39
- package/dist/serialization/types/MemoryEntryUpdateToolConfig.d.ts +0 -7
- package/dist/serialization/types/MemoryEntryUpdateToolConfig.js +0 -39
- package/dist/serialization/types/ObjectOverrideInput.d.ts +0 -11
- package/dist/serialization/types/ObjectOverrideInput.js +0 -46
- package/dist/serialization/types/ObjectOverrideInputPropertiesValue.d.ts +0 -8
- package/dist/serialization/types/ObjectOverrideInputPropertiesValue.js +0 -44
- package/dist/serialization/types/ObjectOverrideOutput.d.ts +0 -11
- package/dist/serialization/types/ObjectOverrideOutput.js +0 -46
- package/dist/serialization/types/ObjectOverrideOutputPropertiesValue.d.ts +0 -8
- package/dist/serialization/types/ObjectOverrideOutputPropertiesValue.js +0 -44
- package/dist/serialization/types/QueryOverride.d.ts +0 -11
- package/dist/serialization/types/QueryOverride.js +0 -43
- package/dist/serialization/types/VideoTranscription.d.ts +0 -12
- package/dist/serialization/types/VideoTranscription.js +0 -44
- package/dist/serialization/types/VideoTranscriptionWord.d.ts +0 -12
- package/dist/serialization/types/VideoTranscriptionWord.js +0 -44
- package/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.d.ts +0 -7
- package/serialization/resources/conversationalAi/resources/twilio/types/BodyRegisterATwilioCallAndReturnTwiMlV1ConvaiTwilioRegisterCallPostDirection.js +0 -39
- package/serialization/resources/conversationalAi/resources/twilio/types/index.d.ts +0 -1
- package/serialization/resources/conversationalAi/resources/twilio/types/index.js +0 -17
- package/serialization/types/AgentPromptChangeToolConfig.d.ts +0 -7
- package/serialization/types/AgentPromptChangeToolConfig.js +0 -39
- package/serialization/types/ApiIntegrationWebhookOverridesInput.d.ts +0 -20
- package/serialization/types/ApiIntegrationWebhookOverridesInput.js +0 -57
- package/serialization/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.d.ts +0 -8
- package/serialization/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.js +0 -40
- package/serialization/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.d.ts +0 -19
- package/serialization/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.js +0 -51
- package/serialization/types/ApiIntegrationWebhookOverridesOutput.d.ts +0 -20
- package/serialization/types/ApiIntegrationWebhookOverridesOutput.js +0 -57
- package/serialization/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.d.ts +0 -8
- package/serialization/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.js +0 -40
- package/serialization/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.d.ts +0 -19
- package/serialization/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.js +0 -51
- package/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.d.ts +0 -7
- package/serialization/types/ConversationHistorySipTrunkingPhoneCallModelDirection.js +0 -39
- package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.d.ts +0 -22
- package/serialization/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js +0 -54
- package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.d.ts +0 -13
- package/serialization/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js +0 -45
- package/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.d.ts +0 -7
- package/serialization/types/ConversationHistoryTwilioPhoneCallModelDirection.js +0 -39
- package/serialization/types/ConversationSummaryResponseModelDirection.d.ts +0 -7
- package/serialization/types/ConversationSummaryResponseModelDirection.js +0 -39
- package/serialization/types/LiteralOverride.d.ts +0 -12
- package/serialization/types/LiteralOverride.js +0 -44
- package/serialization/types/LiteralOverrideConstantValue.d.ts +0 -7
- package/serialization/types/LiteralOverrideConstantValue.js +0 -44
- package/serialization/types/MemoryEntryCreateToolConfig.d.ts +0 -7
- package/serialization/types/MemoryEntryCreateToolConfig.js +0 -39
- package/serialization/types/MemoryEntryDeleteToolConfig.d.ts +0 -7
- package/serialization/types/MemoryEntryDeleteToolConfig.js +0 -39
- package/serialization/types/MemoryEntrySearchToolConfig.d.ts +0 -7
- package/serialization/types/MemoryEntrySearchToolConfig.js +0 -39
- package/serialization/types/MemoryEntryUpdateToolConfig.d.ts +0 -7
- package/serialization/types/MemoryEntryUpdateToolConfig.js +0 -39
- package/serialization/types/ObjectOverrideInput.d.ts +0 -11
- package/serialization/types/ObjectOverrideInput.js +0 -46
- package/serialization/types/ObjectOverrideInputPropertiesValue.d.ts +0 -8
- package/serialization/types/ObjectOverrideInputPropertiesValue.js +0 -44
- package/serialization/types/ObjectOverrideOutput.d.ts +0 -11
- package/serialization/types/ObjectOverrideOutput.js +0 -46
- package/serialization/types/ObjectOverrideOutputPropertiesValue.d.ts +0 -8
- package/serialization/types/ObjectOverrideOutputPropertiesValue.js +0 -44
- package/serialization/types/QueryOverride.d.ts +0 -11
- package/serialization/types/QueryOverride.js +0 -43
- package/serialization/types/VideoTranscription.d.ts +0 -12
- package/serialization/types/VideoTranscription.js +0 -44
- package/serialization/types/VideoTranscriptionWord.d.ts +0 -12
- package/serialization/types/VideoTranscriptionWord.js +0 -44
- /package/api/{types/AgentPromptChangeToolConfig.js → resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentRefreshResponse.js} +0 -0
- /package/api/{types/ApiIntegrationWebhookOverridesInput.js → resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/requests/ChunkGetRequest.js} +0 -0
- /package/api/{types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.js → resources/conversationalAi/resources/mcpServers/types/McpServerConfigUpdateRequestModelAuthConnection.js} +0 -0
- /package/api/{types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.js → resources/conversationalAi/resources/tools/client/requests/ToolsDeleteRequest.js} +0 -0
- /package/api/{types/ApiIntegrationWebhookOverridesOutput.js → resources/environmentVariables/client/requests/EnvironmentVariablesListRequest.js} +0 -0
- /package/api/{types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.js → resources/environmentVariables/client/requests/UpdateEnvironmentVariableRequest.js} +0 -0
- /package/api/{types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.js → resources/environmentVariables/types/EnvironmentVariablesCreateRequestBody.js} +0 -0
- /package/api/{types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js → resources/environmentVariables/types/UpdateEnvironmentVariableRequestValuesValue.js} +0 -0
- /package/api/{types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js → resources/music/client/requests/BodyVideoToMusicV1MusicVideoToMusicPost.js} +0 -0
- /package/api/{types/LiteralOverride.js → resources/speechToText/types/SpeechToTextConvertRequestEntityRedaction.js} +0 -0
- /package/api/{types/LiteralOverrideConstantValue.js → resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js} +0 -0
- /package/api/{types/MemoryEntryCreateToolConfig.js → resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js} +0 -0
- /package/api/types/{MemoryEntryDeleteToolConfig.js → ApiIntegrationOAuth2AuthCodeResponse.js} +0 -0
- /package/api/types/{MemoryEntrySearchToolConfig.js → ApiIntegrationWebhookOverrides.js} +0 -0
- /package/api/types/{MemoryEntryUpdateToolConfig.js → ApiIntegrationWebhookOverridesRequestHeadersValue.js} +0 -0
- /package/api/types/{ObjectOverrideInput.js → ApiIntegrationWebhookOverridesSchemaOverridesValue.js} +0 -0
- /package/api/types/{ObjectOverrideInputPropertiesValue.js → AssetTranscription.js} +0 -0
- /package/api/types/{ObjectOverrideOutput.js → AssetTranscriptionWord.js} +0 -0
- /package/api/types/{ObjectOverrideOutputPropertiesValue.js → AstAdditionOperatorNodeInput.js} +0 -0
- /package/api/types/{QueryOverride.js → AstAdditionOperatorNodeInputLeft.js} +0 -0
- /package/api/types/{VideoTranscription.js → AstAdditionOperatorNodeInputRight.js} +0 -0
- /package/api/types/{VideoTranscriptionWord.js → AstAdditionOperatorNodeOutput.js} +0 -0
- /package/{dist/api/types/AgentPromptChangeToolConfig.js → api/types/AstAdditionOperatorNodeOutputLeft.js} +0 -0
- /package/{dist/api/types/ApiIntegrationWebhookOverridesInput.js → api/types/AstAdditionOperatorNodeOutputRight.js} +0 -0
- /package/{dist/api/types/ApiIntegrationWebhookOverridesInputRequestHeadersValue.js → api/types/AstConditionalOperatorNodeInput.js} +0 -0
- /package/{dist/api/types/ApiIntegrationWebhookOverridesInputSchemaOverridesValue.js → api/types/AstConditionalOperatorNodeInputCondition.js} +0 -0
- /package/{dist/api/types/ApiIntegrationWebhookOverridesOutput.js → api/types/AstConditionalOperatorNodeInputFalseExpression.js} +0 -0
- /package/{dist/api/types/ApiIntegrationWebhookOverridesOutputRequestHeadersValue.js → api/types/AstConditionalOperatorNodeInputTrueExpression.js} +0 -0
- /package/{dist/api/types/ApiIntegrationWebhookOverridesOutputSchemaOverridesValue.js → api/types/AstConditionalOperatorNodeOutput.js} +0 -0
- /package/{dist/api/types/ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel.js → api/types/AstConditionalOperatorNodeOutputCondition.js} +0 -0
- /package/{dist/api/types/ConversationHistoryTranscriptToolCallApiIntegrationWebhookDetails.js → api/types/AstConditionalOperatorNodeOutputFalseExpression.js} +0 -0
- /package/{dist/api/types/LiteralOverride.js → api/types/AstConditionalOperatorNodeOutputTrueExpression.js} +0 -0
- /package/{dist/api/types/LiteralOverrideConstantValue.js → api/types/AstDivisionOperatorNodeInput.js} +0 -0
- /package/{dist/api/types/MemoryEntryCreateToolConfig.js → api/types/AstDivisionOperatorNodeInputLeft.js} +0 -0
- /package/{dist/api/types/MemoryEntryDeleteToolConfig.js → api/types/AstDivisionOperatorNodeInputRight.js} +0 -0
- /package/{dist/api/types/MemoryEntrySearchToolConfig.js → api/types/AstDivisionOperatorNodeOutput.js} +0 -0
- /package/{dist/api/types/MemoryEntryUpdateToolConfig.js → api/types/AstDivisionOperatorNodeOutputLeft.js} +0 -0
- /package/{dist/api/types/ObjectOverrideInput.js → api/types/AstDivisionOperatorNodeOutputRight.js} +0 -0
- /package/{dist/api/types/ObjectOverrideInputPropertiesValue.js → api/types/AstMultiplicationOperatorNodeInput.js} +0 -0
- /package/{dist/api/types/ObjectOverrideOutput.js → api/types/AstMultiplicationOperatorNodeInputLeft.js} +0 -0
- /package/{dist/api/types/ObjectOverrideOutputPropertiesValue.js → api/types/AstMultiplicationOperatorNodeInputRight.js} +0 -0
- /package/{dist/api/types/QueryOverride.js → api/types/AstMultiplicationOperatorNodeOutput.js} +0 -0
- /package/{dist/api/types/VideoTranscription.js → api/types/AstMultiplicationOperatorNodeOutputLeft.js} +0 -0
- /package/{dist/api/types/VideoTranscriptionWord.js → api/types/AstMultiplicationOperatorNodeOutputRight.js} +0 -0
package/BaseClient.js
CHANGED
|
@@ -41,8 +41,8 @@ function normalizeClientOptions(options) {
|
|
|
41
41
|
const headers = (0, headers_1.mergeHeaders)({
|
|
42
42
|
"X-Fern-Language": "JavaScript",
|
|
43
43
|
"X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js",
|
|
44
|
-
"X-Fern-SDK-Version": "v2.
|
|
45
|
-
"User-Agent": "@elevenlabs/elevenlabs-js/v2.
|
|
44
|
+
"X-Fern-SDK-Version": "v2.41.0",
|
|
45
|
+
"User-Agent": "@elevenlabs/elevenlabs-js/v2.41.0",
|
|
46
46
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
47
47
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
48
48
|
"xi-api-key": options === null || options === void 0 ? void 0 : options.apiKey,
|
package/Client.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { AudioIsolationClient } from "./api/resources/audioIsolation/client/Clie
|
|
|
2
2
|
import { AudioNativeClient } from "./api/resources/audioNative/client/Client";
|
|
3
3
|
import { ConversationalAiClient } from "./api/resources/conversationalAi/client/Client";
|
|
4
4
|
import { DubbingClient } from "./api/resources/dubbing/client/Client";
|
|
5
|
+
import { EnvironmentVariablesClient } from "./api/resources/environmentVariables/client/Client";
|
|
5
6
|
import { ForcedAlignmentClient } from "./api/resources/forcedAlignment/client/Client";
|
|
6
7
|
import { HistoryClient } from "./api/resources/history/client/Client";
|
|
7
8
|
import { ModelsClient } from "./api/resources/models/client/Client";
|
|
@@ -43,6 +44,7 @@ export declare class ElevenLabsClient {
|
|
|
43
44
|
protected _user: UserClient | undefined;
|
|
44
45
|
protected _voices: VoicesClient | undefined;
|
|
45
46
|
protected _studio: StudioClient | undefined;
|
|
47
|
+
protected _music: MusicClient | undefined;
|
|
46
48
|
protected _dubbing: DubbingClient | undefined;
|
|
47
49
|
protected _models: ModelsClient | undefined;
|
|
48
50
|
protected _audioNative: AudioNativeClient | undefined;
|
|
@@ -53,7 +55,7 @@ export declare class ElevenLabsClient {
|
|
|
53
55
|
protected _speechToText: SpeechToTextClient | undefined;
|
|
54
56
|
protected _forcedAlignment: ForcedAlignmentClient | undefined;
|
|
55
57
|
protected _conversationalAi: ConversationalAiClient | undefined;
|
|
56
|
-
protected
|
|
58
|
+
protected _environmentVariables: EnvironmentVariablesClient | undefined;
|
|
57
59
|
protected _tokens: TokensClient | undefined;
|
|
58
60
|
protected _workspace: WorkspaceClient | undefined;
|
|
59
61
|
constructor(options?: ElevenLabsClient.Options);
|
|
@@ -68,6 +70,7 @@ export declare class ElevenLabsClient {
|
|
|
68
70
|
get user(): UserClient;
|
|
69
71
|
get voices(): VoicesClient;
|
|
70
72
|
get studio(): StudioClient;
|
|
73
|
+
get music(): MusicClient;
|
|
71
74
|
get dubbing(): DubbingClient;
|
|
72
75
|
get models(): ModelsClient;
|
|
73
76
|
get audioNative(): AudioNativeClient;
|
|
@@ -78,7 +81,7 @@ export declare class ElevenLabsClient {
|
|
|
78
81
|
get speechToText(): SpeechToTextClient;
|
|
79
82
|
get forcedAlignment(): ForcedAlignmentClient;
|
|
80
83
|
get conversationalAi(): ConversationalAiClient;
|
|
81
|
-
get
|
|
84
|
+
get environmentVariables(): EnvironmentVariablesClient;
|
|
82
85
|
get tokens(): TokensClient;
|
|
83
86
|
get workspace(): WorkspaceClient;
|
|
84
87
|
/**
|
package/Client.js
CHANGED
|
@@ -48,26 +48,27 @@ const Client_1 = require("./api/resources/audioIsolation/client/Client");
|
|
|
48
48
|
const Client_2 = require("./api/resources/audioNative/client/Client");
|
|
49
49
|
const Client_3 = require("./api/resources/conversationalAi/client/Client");
|
|
50
50
|
const Client_4 = require("./api/resources/dubbing/client/Client");
|
|
51
|
-
const Client_5 = require("./api/resources/
|
|
52
|
-
const Client_6 = require("./api/resources/
|
|
53
|
-
const Client_7 = require("./api/resources/
|
|
54
|
-
const Client_8 = require("./api/resources/
|
|
55
|
-
const Client_9 = require("./api/resources/
|
|
56
|
-
const Client_10 = require("./api/resources/
|
|
57
|
-
const Client_11 = require("./api/resources/
|
|
58
|
-
const Client_12 = require("./api/resources/
|
|
59
|
-
const Client_13 = require("./api/resources/
|
|
60
|
-
const Client_14 = require("./api/resources/
|
|
61
|
-
const Client_15 = require("./api/resources/
|
|
62
|
-
const Client_16 = require("./api/resources/
|
|
63
|
-
const Client_17 = require("./api/resources/
|
|
64
|
-
const Client_18 = require("./api/resources/
|
|
65
|
-
const Client_19 = require("./api/resources/
|
|
66
|
-
const Client_20 = require("./api/resources/
|
|
67
|
-
const Client_21 = require("./api/resources/
|
|
68
|
-
const Client_22 = require("./api/resources/
|
|
69
|
-
const Client_23 = require("./api/resources/
|
|
70
|
-
const Client_24 = require("./api/resources/
|
|
51
|
+
const Client_5 = require("./api/resources/environmentVariables/client/Client");
|
|
52
|
+
const Client_6 = require("./api/resources/forcedAlignment/client/Client");
|
|
53
|
+
const Client_7 = require("./api/resources/history/client/Client");
|
|
54
|
+
const Client_8 = require("./api/resources/models/client/Client");
|
|
55
|
+
const Client_9 = require("./api/resources/music/client/Client");
|
|
56
|
+
const Client_10 = require("./api/resources/pronunciationDictionaries/client/Client");
|
|
57
|
+
const Client_11 = require("./api/resources/samples/client/Client");
|
|
58
|
+
const Client_12 = require("./api/resources/serviceAccounts/client/Client");
|
|
59
|
+
const Client_13 = require("./api/resources/speechToSpeech/client/Client");
|
|
60
|
+
const Client_14 = require("./api/resources/speechToText/client/Client");
|
|
61
|
+
const Client_15 = require("./api/resources/studio/client/Client");
|
|
62
|
+
const Client_16 = require("./api/resources/textToDialogue/client/Client");
|
|
63
|
+
const Client_17 = require("./api/resources/textToSoundEffects/client/Client");
|
|
64
|
+
const Client_18 = require("./api/resources/textToSpeech/client/Client");
|
|
65
|
+
const Client_19 = require("./api/resources/textToVoice/client/Client");
|
|
66
|
+
const Client_20 = require("./api/resources/tokens/client/Client");
|
|
67
|
+
const Client_21 = require("./api/resources/usage/client/Client");
|
|
68
|
+
const Client_22 = require("./api/resources/user/client/Client");
|
|
69
|
+
const Client_23 = require("./api/resources/voices/client/Client");
|
|
70
|
+
const Client_24 = require("./api/resources/webhooks/client/Client");
|
|
71
|
+
const Client_25 = require("./api/resources/workspace/client/Client");
|
|
71
72
|
const BaseClient_1 = require("./BaseClient");
|
|
72
73
|
const core = __importStar(require("./core"));
|
|
73
74
|
const headers_1 = require("./core/headers");
|
|
@@ -80,11 +81,11 @@ class ElevenLabsClient {
|
|
|
80
81
|
}
|
|
81
82
|
get history() {
|
|
82
83
|
var _a;
|
|
83
|
-
return ((_a = this._history) !== null && _a !== void 0 ? _a : (this._history = new
|
|
84
|
+
return ((_a = this._history) !== null && _a !== void 0 ? _a : (this._history = new Client_7.HistoryClient(this._options)));
|
|
84
85
|
}
|
|
85
86
|
get textToSoundEffects() {
|
|
86
87
|
var _a;
|
|
87
|
-
return ((_a = this._textToSoundEffects) !== null && _a !== void 0 ? _a : (this._textToSoundEffects = new
|
|
88
|
+
return ((_a = this._textToSoundEffects) !== null && _a !== void 0 ? _a : (this._textToSoundEffects = new Client_17.TextToSoundEffectsClient(this._options)));
|
|
88
89
|
}
|
|
89
90
|
get audioIsolation() {
|
|
90
91
|
var _a;
|
|
@@ -92,35 +93,39 @@ class ElevenLabsClient {
|
|
|
92
93
|
}
|
|
93
94
|
get samples() {
|
|
94
95
|
var _a;
|
|
95
|
-
return ((_a = this._samples) !== null && _a !== void 0 ? _a : (this._samples = new
|
|
96
|
+
return ((_a = this._samples) !== null && _a !== void 0 ? _a : (this._samples = new Client_11.SamplesClient(this._options)));
|
|
96
97
|
}
|
|
97
98
|
get textToSpeech() {
|
|
98
99
|
var _a;
|
|
99
|
-
return ((_a = this._textToSpeech) !== null && _a !== void 0 ? _a : (this._textToSpeech = new
|
|
100
|
+
return ((_a = this._textToSpeech) !== null && _a !== void 0 ? _a : (this._textToSpeech = new Client_18.TextToSpeechClient(this._options)));
|
|
100
101
|
}
|
|
101
102
|
get textToDialogue() {
|
|
102
103
|
var _a;
|
|
103
|
-
return ((_a = this._textToDialogue) !== null && _a !== void 0 ? _a : (this._textToDialogue = new
|
|
104
|
+
return ((_a = this._textToDialogue) !== null && _a !== void 0 ? _a : (this._textToDialogue = new Client_16.TextToDialogueClient(this._options)));
|
|
104
105
|
}
|
|
105
106
|
get speechToSpeech() {
|
|
106
107
|
var _a;
|
|
107
|
-
return ((_a = this._speechToSpeech) !== null && _a !== void 0 ? _a : (this._speechToSpeech = new
|
|
108
|
+
return ((_a = this._speechToSpeech) !== null && _a !== void 0 ? _a : (this._speechToSpeech = new Client_13.SpeechToSpeechClient(this._options)));
|
|
108
109
|
}
|
|
109
110
|
get textToVoice() {
|
|
110
111
|
var _a;
|
|
111
|
-
return ((_a = this._textToVoice) !== null && _a !== void 0 ? _a : (this._textToVoice = new
|
|
112
|
+
return ((_a = this._textToVoice) !== null && _a !== void 0 ? _a : (this._textToVoice = new Client_19.TextToVoiceClient(this._options)));
|
|
112
113
|
}
|
|
113
114
|
get user() {
|
|
114
115
|
var _a;
|
|
115
|
-
return ((_a = this._user) !== null && _a !== void 0 ? _a : (this._user = new
|
|
116
|
+
return ((_a = this._user) !== null && _a !== void 0 ? _a : (this._user = new Client_22.UserClient(this._options)));
|
|
116
117
|
}
|
|
117
118
|
get voices() {
|
|
118
119
|
var _a;
|
|
119
|
-
return ((_a = this._voices) !== null && _a !== void 0 ? _a : (this._voices = new
|
|
120
|
+
return ((_a = this._voices) !== null && _a !== void 0 ? _a : (this._voices = new Client_23.VoicesClient(this._options)));
|
|
120
121
|
}
|
|
121
122
|
get studio() {
|
|
122
123
|
var _a;
|
|
123
|
-
return ((_a = this._studio) !== null && _a !== void 0 ? _a : (this._studio = new
|
|
124
|
+
return ((_a = this._studio) !== null && _a !== void 0 ? _a : (this._studio = new Client_15.StudioClient(this._options)));
|
|
125
|
+
}
|
|
126
|
+
get music() {
|
|
127
|
+
var _a;
|
|
128
|
+
return ((_a = this._music) !== null && _a !== void 0 ? _a : (this._music = new Client_9.MusicClient(this._options)));
|
|
124
129
|
}
|
|
125
130
|
get dubbing() {
|
|
126
131
|
var _a;
|
|
@@ -128,7 +133,7 @@ class ElevenLabsClient {
|
|
|
128
133
|
}
|
|
129
134
|
get models() {
|
|
130
135
|
var _a;
|
|
131
|
-
return ((_a = this._models) !== null && _a !== void 0 ? _a : (this._models = new
|
|
136
|
+
return ((_a = this._models) !== null && _a !== void 0 ? _a : (this._models = new Client_8.ModelsClient(this._options)));
|
|
132
137
|
}
|
|
133
138
|
get audioNative() {
|
|
134
139
|
var _a;
|
|
@@ -136,43 +141,43 @@ class ElevenLabsClient {
|
|
|
136
141
|
}
|
|
137
142
|
get usage() {
|
|
138
143
|
var _a;
|
|
139
|
-
return ((_a = this._usage) !== null && _a !== void 0 ? _a : (this._usage = new
|
|
144
|
+
return ((_a = this._usage) !== null && _a !== void 0 ? _a : (this._usage = new Client_21.UsageClient(this._options)));
|
|
140
145
|
}
|
|
141
146
|
get pronunciationDictionaries() {
|
|
142
147
|
var _a;
|
|
143
|
-
return ((_a = this._pronunciationDictionaries) !== null && _a !== void 0 ? _a : (this._pronunciationDictionaries = new
|
|
148
|
+
return ((_a = this._pronunciationDictionaries) !== null && _a !== void 0 ? _a : (this._pronunciationDictionaries = new Client_10.PronunciationDictionariesClient(this._options)));
|
|
144
149
|
}
|
|
145
150
|
get serviceAccounts() {
|
|
146
151
|
var _a;
|
|
147
|
-
return ((_a = this._serviceAccounts) !== null && _a !== void 0 ? _a : (this._serviceAccounts = new
|
|
152
|
+
return ((_a = this._serviceAccounts) !== null && _a !== void 0 ? _a : (this._serviceAccounts = new Client_12.ServiceAccountsClient(this._options)));
|
|
148
153
|
}
|
|
149
154
|
get webhooks() {
|
|
150
155
|
var _a;
|
|
151
|
-
return ((_a = this._webhooks) !== null && _a !== void 0 ? _a : (this._webhooks = new
|
|
156
|
+
return ((_a = this._webhooks) !== null && _a !== void 0 ? _a : (this._webhooks = new Client_24.WebhooksClient(this._options)));
|
|
152
157
|
}
|
|
153
158
|
get speechToText() {
|
|
154
159
|
var _a;
|
|
155
|
-
return ((_a = this._speechToText) !== null && _a !== void 0 ? _a : (this._speechToText = new
|
|
160
|
+
return ((_a = this._speechToText) !== null && _a !== void 0 ? _a : (this._speechToText = new Client_14.SpeechToTextClient(this._options)));
|
|
156
161
|
}
|
|
157
162
|
get forcedAlignment() {
|
|
158
163
|
var _a;
|
|
159
|
-
return ((_a = this._forcedAlignment) !== null && _a !== void 0 ? _a : (this._forcedAlignment = new
|
|
164
|
+
return ((_a = this._forcedAlignment) !== null && _a !== void 0 ? _a : (this._forcedAlignment = new Client_6.ForcedAlignmentClient(this._options)));
|
|
160
165
|
}
|
|
161
166
|
get conversationalAi() {
|
|
162
167
|
var _a;
|
|
163
168
|
return ((_a = this._conversationalAi) !== null && _a !== void 0 ? _a : (this._conversationalAi = new Client_3.ConversationalAiClient(this._options)));
|
|
164
169
|
}
|
|
165
|
-
get
|
|
170
|
+
get environmentVariables() {
|
|
166
171
|
var _a;
|
|
167
|
-
return ((_a = this.
|
|
172
|
+
return ((_a = this._environmentVariables) !== null && _a !== void 0 ? _a : (this._environmentVariables = new Client_5.EnvironmentVariablesClient(this._options)));
|
|
168
173
|
}
|
|
169
174
|
get tokens() {
|
|
170
175
|
var _a;
|
|
171
|
-
return ((_a = this._tokens) !== null && _a !== void 0 ? _a : (this._tokens = new
|
|
176
|
+
return ((_a = this._tokens) !== null && _a !== void 0 ? _a : (this._tokens = new Client_20.TokensClient(this._options)));
|
|
172
177
|
}
|
|
173
178
|
get workspace() {
|
|
174
179
|
var _a;
|
|
175
|
-
return ((_a = this._workspace) !== null && _a !== void 0 ? _a : (this._workspace = new
|
|
180
|
+
return ((_a = this._workspace) !== null && _a !== void 0 ? _a : (this._workspace = new Client_25.WorkspaceClient(this._options)));
|
|
176
181
|
}
|
|
177
182
|
/**
|
|
178
183
|
* @param {string} agent_id
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type * as core from "../../core";
|
|
2
2
|
import * as errors from "../../errors/index";
|
|
3
|
-
import type * as ElevenLabs from "../index";
|
|
4
3
|
export declare class BadRequestError extends errors.ElevenLabsError {
|
|
5
|
-
constructor(body
|
|
4
|
+
constructor(body?: unknown, rawResponse?: core.RawResponse);
|
|
6
5
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type * as core from "../../core";
|
|
2
2
|
import * as errors from "../../errors/index";
|
|
3
|
-
import type * as ElevenLabs from "../index";
|
|
4
3
|
export declare class UnprocessableEntityError extends errors.ElevenLabsError {
|
|
5
|
-
constructor(body
|
|
4
|
+
constructor(body?: unknown, rawResponse?: core.RawResponse);
|
|
6
5
|
}
|
|
@@ -99,12 +99,7 @@ class AudioIsolationClient {
|
|
|
99
99
|
if (_response.error.reason === "status-code") {
|
|
100
100
|
switch (_response.error.statusCode) {
|
|
101
101
|
case 422:
|
|
102
|
-
throw new ElevenLabs.UnprocessableEntityError(
|
|
103
|
-
unrecognizedObjectKeys: "passthrough",
|
|
104
|
-
allowUnrecognizedUnionMembers: true,
|
|
105
|
-
allowUnrecognizedEnumValues: true,
|
|
106
|
-
breadcrumbsPrefix: ["response"],
|
|
107
|
-
}), _response.rawResponse);
|
|
102
|
+
throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
|
|
108
103
|
default:
|
|
109
104
|
throw new errors.ElevenLabsError({
|
|
110
105
|
statusCode: _response.error.statusCode,
|
|
@@ -156,12 +151,7 @@ class AudioIsolationClient {
|
|
|
156
151
|
if (_response.error.reason === "status-code") {
|
|
157
152
|
switch (_response.error.statusCode) {
|
|
158
153
|
case 422:
|
|
159
|
-
throw new ElevenLabs.UnprocessableEntityError(
|
|
160
|
-
unrecognizedObjectKeys: "passthrough",
|
|
161
|
-
allowUnrecognizedUnionMembers: true,
|
|
162
|
-
allowUnrecognizedEnumValues: true,
|
|
163
|
-
breadcrumbsPrefix: ["response"],
|
|
164
|
-
}), _response.rawResponse);
|
|
154
|
+
throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
|
|
165
155
|
default:
|
|
166
156
|
throw new errors.ElevenLabsError({
|
|
167
157
|
statusCode: _response.error.statusCode,
|
|
@@ -151,12 +151,7 @@ class AudioNativeClient {
|
|
|
151
151
|
if (_response.error.reason === "status-code") {
|
|
152
152
|
switch (_response.error.statusCode) {
|
|
153
153
|
case 422:
|
|
154
|
-
throw new ElevenLabs.UnprocessableEntityError(
|
|
155
|
-
unrecognizedObjectKeys: "passthrough",
|
|
156
|
-
allowUnrecognizedUnionMembers: true,
|
|
157
|
-
allowUnrecognizedEnumValues: true,
|
|
158
|
-
breadcrumbsPrefix: ["response"],
|
|
159
|
-
}), _response.rawResponse);
|
|
154
|
+
throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
|
|
160
155
|
default:
|
|
161
156
|
throw new errors.ElevenLabsError({
|
|
162
157
|
statusCode: _response.error.statusCode,
|
|
@@ -211,12 +206,7 @@ class AudioNativeClient {
|
|
|
211
206
|
if (_response.error.reason === "status-code") {
|
|
212
207
|
switch (_response.error.statusCode) {
|
|
213
208
|
case 422:
|
|
214
|
-
throw new ElevenLabs.UnprocessableEntityError(
|
|
215
|
-
unrecognizedObjectKeys: "passthrough",
|
|
216
|
-
allowUnrecognizedUnionMembers: true,
|
|
217
|
-
allowUnrecognizedEnumValues: true,
|
|
218
|
-
breadcrumbsPrefix: ["response"],
|
|
219
|
-
}), _response.rawResponse);
|
|
209
|
+
throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
|
|
220
210
|
default:
|
|
221
211
|
throw new errors.ElevenLabsError({
|
|
222
212
|
statusCode: _response.error.statusCode,
|
|
@@ -287,12 +277,7 @@ class AudioNativeClient {
|
|
|
287
277
|
if (_response.error.reason === "status-code") {
|
|
288
278
|
switch (_response.error.statusCode) {
|
|
289
279
|
case 422:
|
|
290
|
-
throw new ElevenLabs.UnprocessableEntityError(
|
|
291
|
-
unrecognizedObjectKeys: "passthrough",
|
|
292
|
-
allowUnrecognizedUnionMembers: true,
|
|
293
|
-
allowUnrecognizedEnumValues: true,
|
|
294
|
-
breadcrumbsPrefix: ["response"],
|
|
295
|
-
}), _response.rawResponse);
|
|
280
|
+
throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
|
|
296
281
|
default:
|
|
297
282
|
throw new errors.ElevenLabsError({
|
|
298
283
|
statusCode: _response.error.statusCode,
|
|
@@ -354,12 +339,7 @@ class AudioNativeClient {
|
|
|
354
339
|
if (_response.error.reason === "status-code") {
|
|
355
340
|
switch (_response.error.statusCode) {
|
|
356
341
|
case 422:
|
|
357
|
-
throw new ElevenLabs.UnprocessableEntityError(
|
|
358
|
-
unrecognizedObjectKeys: "passthrough",
|
|
359
|
-
allowUnrecognizedUnionMembers: true,
|
|
360
|
-
allowUnrecognizedEnumValues: true,
|
|
361
|
-
breadcrumbsPrefix: ["response"],
|
|
362
|
-
}), _response.rawResponse);
|
|
342
|
+
throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
|
|
363
343
|
default:
|
|
364
344
|
throw new errors.ElevenLabsError({
|
|
365
345
|
statusCode: _response.error.statusCode,
|
|
@@ -215,12 +215,7 @@ class ConversationalAiClient {
|
|
|
215
215
|
if (_response.error.reason === "status-code") {
|
|
216
216
|
switch (_response.error.statusCode) {
|
|
217
217
|
case 422:
|
|
218
|
-
throw new ElevenLabs.UnprocessableEntityError(
|
|
219
|
-
unrecognizedObjectKeys: "passthrough",
|
|
220
|
-
allowUnrecognizedUnionMembers: true,
|
|
221
|
-
allowUnrecognizedEnumValues: true,
|
|
222
|
-
breadcrumbsPrefix: ["response"],
|
|
223
|
-
}), _response.rawResponse);
|
|
218
|
+
throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
|
|
224
219
|
default:
|
|
225
220
|
throw new errors.ElevenLabsError({
|
|
226
221
|
statusCode: _response.error.statusCode,
|
|
@@ -274,12 +269,7 @@ class ConversationalAiClient {
|
|
|
274
269
|
if (_response.error.reason === "status-code") {
|
|
275
270
|
switch (_response.error.statusCode) {
|
|
276
271
|
case 422:
|
|
277
|
-
throw new ElevenLabs.UnprocessableEntityError(
|
|
278
|
-
unrecognizedObjectKeys: "passthrough",
|
|
279
|
-
allowUnrecognizedUnionMembers: true,
|
|
280
|
-
allowUnrecognizedEnumValues: true,
|
|
281
|
-
breadcrumbsPrefix: ["response"],
|
|
282
|
-
}), _response.rawResponse);
|
|
272
|
+
throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
|
|
283
273
|
default:
|
|
284
274
|
throw new errors.ElevenLabsError({
|
|
285
275
|
statusCode: _response.error.statusCode,
|
|
@@ -334,12 +324,7 @@ class ConversationalAiClient {
|
|
|
334
324
|
if (_response.error.reason === "status-code") {
|
|
335
325
|
switch (_response.error.statusCode) {
|
|
336
326
|
case 422:
|
|
337
|
-
throw new ElevenLabs.UnprocessableEntityError(
|
|
338
|
-
unrecognizedObjectKeys: "passthrough",
|
|
339
|
-
allowUnrecognizedUnionMembers: true,
|
|
340
|
-
allowUnrecognizedEnumValues: true,
|
|
341
|
-
breadcrumbsPrefix: ["response"],
|
|
342
|
-
}), _response.rawResponse);
|
|
327
|
+
throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
|
|
343
328
|
default:
|
|
344
329
|
throw new errors.ElevenLabsError({
|
|
345
330
|
statusCode: _response.error.statusCode,
|
|
@@ -395,12 +380,7 @@ class ConversationalAiClient {
|
|
|
395
380
|
if (_response.error.reason === "status-code") {
|
|
396
381
|
switch (_response.error.statusCode) {
|
|
397
382
|
case 422:
|
|
398
|
-
throw new ElevenLabs.UnprocessableEntityError(
|
|
399
|
-
unrecognizedObjectKeys: "passthrough",
|
|
400
|
-
allowUnrecognizedUnionMembers: true,
|
|
401
|
-
allowUnrecognizedEnumValues: true,
|
|
402
|
-
breadcrumbsPrefix: ["response"],
|
|
403
|
-
}), _response.rawResponse);
|
|
383
|
+
throw new ElevenLabs.UnprocessableEntityError(_response.error.body, _response.rawResponse);
|
|
404
384
|
default:
|
|
405
385
|
throw new errors.ElevenLabsError({
|
|
406
386
|
statusCode: _response.error.statusCode,
|
|
@@ -66,6 +66,18 @@ export declare class Conversation extends EventEmitter {
|
|
|
66
66
|
* This sends a ping to the orchestrator to reset the timeout timer.
|
|
67
67
|
*/
|
|
68
68
|
registerUserActivity(): void;
|
|
69
|
+
/**
|
|
70
|
+
* Send a multimodal message combining text and a file reference to the agent.
|
|
71
|
+
*
|
|
72
|
+
* At least one of `text` or `fileId` must be provided.
|
|
73
|
+
*
|
|
74
|
+
* @param options.text Optional text message to include
|
|
75
|
+
* @param options.fileId Optional ElevenLabs file ID to include
|
|
76
|
+
*/
|
|
77
|
+
sendMultimodalMessage(options: {
|
|
78
|
+
text?: string;
|
|
79
|
+
fileId?: string;
|
|
80
|
+
}): void;
|
|
69
81
|
/**
|
|
70
82
|
* Send a contextual update to the conversation.
|
|
71
83
|
*
|
|
@@ -120,6 +120,24 @@ class Conversation extends events_1.EventEmitter {
|
|
|
120
120
|
};
|
|
121
121
|
this.ws.send(JSON.stringify(event));
|
|
122
122
|
}
|
|
123
|
+
/**
|
|
124
|
+
* Send a multimodal message combining text and a file reference to the agent.
|
|
125
|
+
*
|
|
126
|
+
* At least one of `text` or `fileId` must be provided.
|
|
127
|
+
*
|
|
128
|
+
* @param options.text Optional text message to include
|
|
129
|
+
* @param options.fileId Optional ElevenLabs file ID to include
|
|
130
|
+
*/
|
|
131
|
+
sendMultimodalMessage(options) {
|
|
132
|
+
if (!this.ws || this.ws.readyState !== ws_1.default.OPEN) {
|
|
133
|
+
throw new Error("Session not started or websocket not connected");
|
|
134
|
+
}
|
|
135
|
+
if (!options.text && !options.fileId) {
|
|
136
|
+
throw new Error("At least one of text or fileId must be provided");
|
|
137
|
+
}
|
|
138
|
+
const event = Object.assign(Object.assign({ type: events_2.ClientToOrchestratorEvent.MULTIMODAL_MESSAGE }, (options.text && { text: { type: events_2.ClientToOrchestratorEvent.USER_MESSAGE, text: options.text } })), (options.fileId && { file: { type: "file_input", file_id: options.fileId } }));
|
|
139
|
+
this.ws.send(JSON.stringify(event));
|
|
140
|
+
}
|
|
123
141
|
/**
|
|
124
142
|
* Send a contextual update to the conversation.
|
|
125
143
|
*
|
|
@@ -172,6 +172,31 @@ describe("Conversation", () => {
|
|
|
172
172
|
text: "User is looking at product page",
|
|
173
173
|
}));
|
|
174
174
|
});
|
|
175
|
+
it("should send multimodal message with text and file", () => {
|
|
176
|
+
conversation.sendMultimodalMessage({ text: "What is in this file?", fileId: "file_abc123" });
|
|
177
|
+
expect(mockWebSocket.send).toHaveBeenCalledWith(JSON.stringify({
|
|
178
|
+
type: "multimodal_message",
|
|
179
|
+
text: { type: "user_message", text: "What is in this file?" },
|
|
180
|
+
file: { type: "file_input", file_id: "file_abc123" },
|
|
181
|
+
}));
|
|
182
|
+
});
|
|
183
|
+
it("should send multimodal message with text only", () => {
|
|
184
|
+
conversation.sendMultimodalMessage({ text: "Hello" });
|
|
185
|
+
expect(mockWebSocket.send).toHaveBeenCalledWith(JSON.stringify({
|
|
186
|
+
type: "multimodal_message",
|
|
187
|
+
text: { type: "user_message", text: "Hello" },
|
|
188
|
+
}));
|
|
189
|
+
});
|
|
190
|
+
it("should send multimodal message with file only", () => {
|
|
191
|
+
conversation.sendMultimodalMessage({ fileId: "file_abc123" });
|
|
192
|
+
expect(mockWebSocket.send).toHaveBeenCalledWith(JSON.stringify({
|
|
193
|
+
type: "multimodal_message",
|
|
194
|
+
file: { type: "file_input", file_id: "file_abc123" },
|
|
195
|
+
}));
|
|
196
|
+
});
|
|
197
|
+
it("should throw error when sending multimodal message without text or fileId", () => {
|
|
198
|
+
expect(() => conversation.sendMultimodalMessage({})).toThrow("At least one of text or fileId must be provided");
|
|
199
|
+
});
|
|
175
200
|
it("should throw error when sending message without active session", () => {
|
|
176
201
|
conversation.endSession();
|
|
177
202
|
expect(() => conversation.sendUserMessage("test")).toThrow("Session not started or websocket not connected");
|
|
@@ -11,7 +11,9 @@ export declare enum ClientToOrchestratorEvent {
|
|
|
11
11
|
CONTEXTUAL_UPDATE = "contextual_update",
|
|
12
12
|
/** User text message. */
|
|
13
13
|
USER_MESSAGE = "user_message",
|
|
14
|
-
USER_ACTIVITY = "user_activity"
|
|
14
|
+
USER_ACTIVITY = "user_activity",
|
|
15
|
+
/** Multimodal message combining text and a file reference. */
|
|
16
|
+
MULTIMODAL_MESSAGE = "multimodal_message"
|
|
15
17
|
}
|
|
16
18
|
/**
|
|
17
19
|
* Base interface for all client-to-orchestrator events.
|
|
@@ -72,6 +74,21 @@ export interface FeedbackEvent extends BaseClientToOrchestratorEvent {
|
|
|
72
74
|
feedback: string;
|
|
73
75
|
rating?: number;
|
|
74
76
|
}
|
|
77
|
+
/**
|
|
78
|
+
* File component of a multimodal message.
|
|
79
|
+
*/
|
|
80
|
+
export interface MultimodalMessageFile {
|
|
81
|
+
type: "file_input";
|
|
82
|
+
file_id: string;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Event for sending multimodal messages combining text and a file reference.
|
|
86
|
+
*/
|
|
87
|
+
export interface MultimodalMessageClientToOrchestratorEvent extends BaseClientToOrchestratorEvent {
|
|
88
|
+
type: ClientToOrchestratorEvent.MULTIMODAL_MESSAGE;
|
|
89
|
+
text?: UserMessageClientToOrchestratorEvent;
|
|
90
|
+
file?: MultimodalMessageFile;
|
|
91
|
+
}
|
|
75
92
|
/**
|
|
76
93
|
* Event for sending user audio chunks.
|
|
77
94
|
*/
|
|
@@ -81,4 +98,4 @@ export interface UserAudioChunkEvent {
|
|
|
81
98
|
/**
|
|
82
99
|
* Union type for all client-to-orchestrator events.
|
|
83
100
|
*/
|
|
84
|
-
export type ClientToOrchestratorEventUnion = UserMessageClientToOrchestratorEvent | UserActivityClientToOrchestratorEvent | ContextualUpdateClientToOrchestratorEvent | ConversationInitiationClientDataEvent | ClientToolResultEvent | PongEvent | FeedbackEvent;
|
|
101
|
+
export type ClientToOrchestratorEventUnion = UserMessageClientToOrchestratorEvent | UserActivityClientToOrchestratorEvent | ContextualUpdateClientToOrchestratorEvent | ConversationInitiationClientDataEvent | ClientToolResultEvent | PongEvent | FeedbackEvent | MultimodalMessageClientToOrchestratorEvent;
|
|
@@ -16,4 +16,6 @@ var ClientToOrchestratorEvent;
|
|
|
16
16
|
/** User text message. */
|
|
17
17
|
ClientToOrchestratorEvent["USER_MESSAGE"] = "user_message";
|
|
18
18
|
ClientToOrchestratorEvent["USER_ACTIVITY"] = "user_activity";
|
|
19
|
+
/** Multimodal message combining text and a file reference. */
|
|
20
|
+
ClientToOrchestratorEvent["MULTIMODAL_MESSAGE"] = "multimodal_message";
|
|
19
21
|
})(ClientToOrchestratorEvent || (exports.ClientToOrchestratorEvent = ClientToOrchestratorEvent = {}));
|