@elevenlabs/elevenlabs-js 2.0.1 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mock/asyncapi.yml +11 -11
- package/.mock/definition/__package__.yml +709 -107
- package/.mock/definition/conversationalAi/agents/knowledgeBase.yml +32 -0
- package/.mock/definition/conversationalAi/agents/link.yml +2 -1
- package/.mock/definition/conversationalAi/agents/llmUsage.yml +51 -0
- package/.mock/definition/conversationalAi/agents/widget.yml +30 -0
- package/.mock/definition/conversationalAi/agents.yml +47 -27
- package/.mock/definition/conversationalAi/batchCalls.yml +83 -0
- package/.mock/definition/conversationalAi/knowledgeBase/document.yml +5 -1
- package/.mock/definition/conversationalAi/knowledgeBase/documents.yml +14 -5
- package/.mock/definition/conversationalAi/knowledgeBase.yml +2 -1
- package/.mock/definition/conversationalAi/llmUsage.yml +52 -0
- package/.mock/definition/conversationalAi.yml +99 -1
- package/.mock/definition/history.yml +8 -0
- package/.mock/definition/pronunciationDictionaries.yml +2 -2
- package/.mock/definition/speechToText.yml +14 -2
- package/.mock/definition/textToDialogue.yml +213 -0
- package/.mock/definition/textToVoice.yml +1 -1
- package/.mock/definition/v1TextToSpeechVoiceIdMultiStreamInput.yml +5 -3
- package/.mock/definition/voices/settings.yml +3 -3
- package/.mock/definition/voices.yml +6 -3
- package/.mock/definition/workspace/groups/members.yml +0 -2
- package/.mock/definition/workspace/groups.yml +0 -1
- package/.mock/fern.config.json +1 -1
- package/.mock/openapi.json +3163 -232
- package/Client.d.ts +3 -0
- package/Client.js +33 -28
- package/README.md +2 -2
- package/api/resources/audioIsolation/client/Client.js +4 -4
- package/api/resources/audioNative/client/Client.js +6 -6
- package/api/resources/conversationalAi/client/Client.d.ts +42 -0
- package/api/resources/conversationalAi/client/Client.js +243 -16
- package/api/resources/conversationalAi/resources/agents/client/Client.d.ts +6 -0
- package/api/resources/conversationalAi/resources/agents/client/Client.js +24 -14
- package/api/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +5 -2
- package/api/resources/conversationalAi/resources/agents/resources/index.d.ts +3 -0
- package/api/resources/conversationalAi/resources/agents/resources/index.js +4 -1
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.d.ts +44 -0
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +137 -0
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/index.js +2 -0
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/index.js +17 -0
- package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +2 -2
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.d.ts +45 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +141 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.js +17 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.d.ts +15 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.js +2 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/index.js +17 -0
- package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +2 -2
- package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +2 -2
- package/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +26 -0
- package/api/resources/conversationalAi/resources/batchCalls/client/Client.js +154 -6
- package/api/resources/conversationalAi/resources/conversations/client/Client.js +8 -8
- package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +2 -2
- package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +2 -2
- package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +4 -4
- package/api/resources/conversationalAi/resources/index.d.ts +2 -0
- package/api/resources/conversationalAi/resources/index.js +3 -1
- package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +2 -2
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +1 -1
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +3 -3
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +2 -1
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +27 -20
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsDeleteRequest.d.ts +13 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +2 -2
- package/api/resources/conversationalAi/resources/llmUsage/client/Client.d.ts +48 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/Client.js +144 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/index.js +17 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.d.ts +19 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/llmUsage/client/requests/index.js +2 -0
- package/api/resources/conversationalAi/resources/llmUsage/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/llmUsage/index.js +17 -0
- package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +10 -10
- package/api/resources/conversationalAi/resources/secrets/client/Client.js +6 -6
- package/api/resources/conversationalAi/resources/settings/client/Client.js +4 -4
- package/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +2 -2
- package/api/resources/conversationalAi/resources/twilio/client/Client.js +2 -2
- package/api/resources/dubbing/client/Client.js +6 -6
- package/api/resources/dubbing/resources/audio/client/Client.js +2 -2
- package/api/resources/dubbing/resources/resource/client/Client.js +10 -10
- package/api/resources/dubbing/resources/resource/resources/language/client/Client.js +2 -2
- package/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +4 -4
- package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +4 -4
- package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +2 -2
- package/api/resources/dubbing/resources/transcript/client/Client.js +2 -2
- package/api/resources/forcedAlignment/client/Client.js +2 -2
- package/api/resources/history/client/Client.js +10 -10
- package/api/resources/index.d.ts +3 -0
- package/api/resources/index.js +4 -1
- package/api/resources/models/client/Client.js +2 -2
- package/api/resources/pronunciationDictionaries/client/Client.js +10 -10
- package/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +4 -4
- package/api/resources/samples/client/Client.js +2 -2
- package/api/resources/speechToSpeech/client/Client.js +4 -4
- package/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +2 -0
- package/api/resources/studio/client/Client.js +2 -2
- package/api/resources/studio/resources/projects/client/Client.js +12 -12
- package/api/resources/studio/resources/projects/resources/chapters/client/Client.js +12 -12
- package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +6 -6
- package/api/resources/studio/resources/projects/resources/content/client/Client.js +2 -2
- package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +2 -2
- package/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +8 -8
- package/api/resources/textToDialogue/client/Client.d.ts +44 -0
- package/api/resources/textToDialogue/client/Client.js +212 -0
- package/api/resources/textToDialogue/client/index.d.ts +1 -0
- package/api/resources/textToDialogue/client/index.js +17 -0
- package/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.d.ts +32 -0
- package/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.d.ts +32 -0
- package/api/resources/textToDialogue/client/requests/index.d.ts +2 -0
- package/api/resources/textToDialogue/client/requests/index.js +2 -0
- package/api/resources/textToDialogue/index.d.ts +2 -0
- package/api/resources/textToDialogue/index.js +18 -0
- package/api/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.d.ts +28 -0
- package/api/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.js +27 -0
- package/api/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.d.ts +28 -0
- package/api/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.js +27 -0
- package/api/resources/textToDialogue/types/index.d.ts +2 -0
- package/api/resources/textToDialogue/types/index.js +18 -0
- package/api/resources/textToSoundEffects/client/Client.js +2 -2
- package/api/resources/textToSpeech/client/Client.js +8 -8
- package/api/resources/textToVoice/client/Client.js +4 -4
- package/api/resources/usage/client/Client.js +2 -2
- package/api/resources/user/client/Client.js +2 -2
- package/api/resources/user/resources/subscription/client/Client.js +2 -2
- package/api/resources/voices/client/Client.js +20 -17
- package/api/resources/voices/client/requests/VoicesGetSharedRequest.d.ts +4 -0
- package/api/resources/voices/resources/ivc/client/Client.js +2 -2
- package/api/resources/voices/resources/pvc/client/Client.js +6 -6
- package/api/resources/voices/resources/pvc/resources/samples/client/Client.js +6 -6
- package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +2 -2
- package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +4 -4
- package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +2 -2
- package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +2 -2
- package/api/resources/voices/resources/pvc/resources/verification/client/Client.js +2 -2
- package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +4 -4
- package/api/resources/voices/resources/samples/resources/audio/client/Client.js +2 -2
- package/api/resources/voices/resources/settings/client/Client.d.ts +1 -1
- package/api/resources/voices/resources/settings/client/Client.js +7 -7
- package/api/resources/workspace/resources/groups/client/Client.js +2 -2
- package/api/resources/workspace/resources/groups/resources/members/client/Client.js +4 -4
- package/api/resources/workspace/resources/invites/client/Client.js +6 -6
- package/api/resources/workspace/resources/members/client/Client.js +4 -4
- package/api/resources/workspace/resources/resources/client/Client.js +6 -6
- package/api/types/AddKnowledgeBaseResponseModel.d.ts +0 -1
- package/api/types/AgentConfigOverride.d.ts +4 -4
- package/api/types/AgentConfigOverrideConfig.d.ts +4 -4
- package/api/types/AudioOutputMulti.d.ts +1 -1
- package/api/types/AuthorizationMethod.d.ts +2 -1
- package/api/types/AuthorizationMethod.js +1 -0
- package/api/types/ChapterContentBlockInputModel.d.ts +1 -0
- package/api/types/ChapterContentBlockInputModelSubType.d.ts +10 -0
- package/api/types/ChapterContentBlockInputModelSubType.js +12 -0
- package/api/types/ClientEvent.d.ts +2 -1
- package/api/types/ClientEvent.js +1 -0
- package/api/types/ConversationConfigClientOverrideConfigInput.d.ts +4 -4
- package/api/types/ConversationConfigClientOverrideConfigOutput.d.ts +4 -4
- package/api/types/ConversationConfigClientOverrideInput.d.ts +4 -4
- package/api/types/ConversationConfigClientOverrideOutput.d.ts +4 -4
- package/api/types/ConversationConfigOverride.d.ts +1 -0
- package/api/types/ConversationConfigOverrideConfig.d.ts +1 -1
- package/api/types/ConversationHistoryMetadataCommonModel.d.ts +2 -0
- package/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -1
- package/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -1
- package/api/types/ConversationTokenDbModel.d.ts +2 -0
- package/api/types/ConversationalConfig.d.ts +1 -1
- package/api/types/CustomLlm.d.ts +2 -0
- package/api/types/CustomLlmRequestHeadersValue.d.ts +5 -0
- package/api/types/DialogueInput.d.ts +9 -0
- package/api/types/DialogueInputResponseModel.d.ts +11 -0
- package/api/types/EmbedVariant.d.ts +2 -1
- package/api/types/EmbedVariant.js +1 -0
- package/api/types/FeatureStatusCommonModel.d.ts +7 -0
- package/api/types/FeatureStatusCommonModel.js +5 -0
- package/api/types/FeaturesUsageCommonModel.d.ts +12 -0
- package/api/types/FeaturesUsageCommonModel.js +5 -0
- package/api/types/GetAgentEmbedResponseModel.d.ts +1 -1
- package/api/types/GetAgentKnowledgebaseSizeResponseModel.d.ts +6 -0
- package/api/types/GetAgentKnowledgebaseSizeResponseModel.js +5 -0
- package/api/types/GetKnowledgeBaseFileResponseModel.d.ts +1 -1
- package/api/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +1 -1
- package/api/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +1 -1
- package/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +1 -1
- package/api/types/GetKnowledgeBaseTextResponseModel.d.ts +1 -1
- package/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +1 -1
- package/api/types/GetSharedSoundGenerationsResponseModel.d.ts +9 -0
- package/api/types/GetSharedSoundGenerationsResponseModel.js +5 -0
- package/api/types/Llm.d.ts +28 -3
- package/api/types/Llm.js +27 -2
- package/api/types/LlmUsageCalculatorLlmResponseModel.d.ts +8 -0
- package/api/types/LlmUsageCalculatorLlmResponseModel.js +5 -0
- package/api/types/LlmUsageCalculatorResponseModel.d.ts +7 -0
- package/api/types/LlmUsageCalculatorResponseModel.js +5 -0
- package/api/types/McpApprovalRequiredModel.d.ts +12 -0
- package/api/types/McpApprovalRequiredModel.js +11 -0
- package/api/types/McpToolConfigInput.d.ts +2 -0
- package/api/types/McpToolConfigOutput.d.ts +2 -0
- package/api/types/ModelSettingsResponseModel.d.ts +9 -0
- package/api/types/ModelSettingsResponseModel.js +5 -0
- package/api/types/NativeMcpToolConfigInput.d.ts +22 -0
- package/api/types/NativeMcpToolConfigInput.js +5 -0
- package/api/types/NativeMcpToolConfigOutput.d.ts +22 -0
- package/api/types/NativeMcpToolConfigOutput.js +5 -0
- package/api/types/PromptAgent.d.ts +2 -0
- package/api/types/PromptAgentDbModel.d.ts +2 -0
- package/api/types/PromptAgentDbModelToolsItem.d.ts +4 -1
- package/api/types/PromptAgentInputToolsItem.d.ts +4 -1
- package/api/types/PromptAgentOutputToolsItem.d.ts +4 -1
- package/api/types/PromptAgentOverride.d.ts +1 -1
- package/api/types/PromptAgentOverrideConfig.d.ts +1 -1
- package/api/types/PronunciationDictionaryLocator.d.ts +1 -1
- package/api/types/RagConfig.d.ts +2 -0
- package/{dist/api/types/RagIndexResponseModel.d.ts → api/types/RagDocumentIndexResponseModel.d.ts} +4 -1
- package/api/types/RagDocumentIndexResponseModel.js +5 -0
- package/api/types/RagDocumentIndexUsage.d.ts +6 -0
- package/api/types/RagDocumentIndexUsage.js +5 -0
- package/api/types/RagDocumentIndexesResponseModel.d.ts +7 -0
- package/api/types/RagDocumentIndexesResponseModel.js +5 -0
- package/api/types/RagIndexOverviewEmbeddingModelResponseModel.d.ts +8 -0
- package/api/types/RagIndexOverviewEmbeddingModelResponseModel.js +5 -0
- package/api/types/RagIndexOverviewResponseModel.d.ts +9 -0
- package/api/types/RagIndexOverviewResponseModel.js +5 -0
- package/api/types/RagIndexStatus.d.ts +3 -1
- package/api/types/RagIndexStatus.js +2 -0
- package/api/types/SharedSoundGenerationResponseModel.d.ts +17 -0
- package/api/types/SharedSoundGenerationResponseModel.js +5 -0
- package/api/types/SkipTurnToolConfig.d.ts +16 -0
- package/api/types/SkipTurnToolConfig.js +5 -0
- package/api/types/SpeechHistoryItemResponse.d.ts +5 -3
- package/api/types/Subscription.d.ts +1 -1
- package/api/types/SubscriptionResponse.d.ts +1 -1
- package/api/types/{SubscriptionStatus.d.ts → SubscriptionStatusType.d.ts} +3 -5
- package/{dist/api/types/ExtendedSubscriptionResponseModelStatus.js → api/types/SubscriptionStatusType.js} +3 -2
- package/api/types/SupportedVoice.d.ts +11 -0
- package/api/types/SupportedVoice.js +5 -0
- package/api/types/SystemToolConfigInputParams.d.ts +4 -1
- package/api/types/SystemToolConfigOutputParams.d.ts +4 -1
- package/{dist/api/types/TtsConversationalConfig.d.ts → api/types/TtsConversationalConfigInput.d.ts} +3 -1
- package/api/types/TtsConversationalConfigInput.js +5 -0
- package/api/types/TtsConversationalConfigOutput.d.ts +24 -0
- package/api/types/TtsConversationalConfigOutput.js +5 -0
- package/api/types/TtsConversationalConfigOverride.d.ts +1 -0
- package/api/types/TtsConversationalConfigOverrideConfig.d.ts +1 -1
- package/api/types/TtsModelFamily.d.ts +9 -0
- package/api/types/TtsModelFamily.js +11 -0
- package/api/types/VoiceSettings.d.ts +2 -2
- package/api/types/WebsocketTtsClientMessageMulti.d.ts +2 -2
- package/api/types/WidgetConfig.d.ts +13 -1
- package/{dist/api/types/WidgetConfigAvatar.d.ts → api/types/WidgetConfigInputAvatar.d.ts} +2 -2
- package/api/types/WidgetConfigInputAvatar.js +5 -0
- package/api/types/WidgetConfigOutputAvatar.d.ts +19 -0
- package/api/types/WidgetConfigOutputAvatar.js +5 -0
- package/api/types/{WidgetConfigResponseModel.d.ts → WidgetConfigResponse.d.ts} +16 -1
- package/api/types/WidgetConfigResponse.js +5 -0
- package/api/types/WidgetLanguagePreset.d.ts +8 -0
- package/api/types/WidgetLanguagePreset.js +5 -0
- package/api/types/WidgetLanguagePresetResponse.d.ts +9 -0
- package/api/types/WidgetLanguagePresetResponse.js +5 -0
- package/api/types/WidgetPlacement.d.ts +12 -0
- package/api/types/WidgetPlacement.js +14 -0
- package/api/types/WidgetTextContents.d.ts +47 -0
- package/api/types/WidgetTextContents.js +5 -0
- package/api/types/index.d.ts +33 -6
- package/api/types/index.js +33 -6
- package/dist/Client.d.ts +3 -0
- package/dist/Client.js +33 -28
- package/dist/api/resources/audioIsolation/client/Client.js +4 -4
- package/dist/api/resources/audioNative/client/Client.js +6 -6
- package/dist/api/resources/conversationalAi/client/Client.d.ts +42 -0
- package/dist/api/resources/conversationalAi/client/Client.js +243 -16
- package/dist/api/resources/conversationalAi/resources/agents/client/Client.d.ts +6 -0
- package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +24 -14
- package/dist/api/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +5 -2
- package/dist/api/resources/conversationalAi/resources/agents/resources/index.d.ts +3 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/index.js +4 -1
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.d.ts +44 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +137 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/index.js +2 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +2 -2
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.d.ts +45 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +141 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.d.ts +15 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.js +5 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.js +2 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +2 -2
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +2 -2
- package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +26 -0
- package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.js +154 -6
- package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +8 -8
- package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +2 -2
- package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +2 -2
- package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +4 -4
- package/dist/api/resources/conversationalAi/resources/index.d.ts +2 -0
- package/dist/api/resources/conversationalAi/resources/index.js +3 -1
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +2 -2
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +3 -3
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +2 -1
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +27 -20
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsDeleteRequest.d.ts +13 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsDeleteRequest.js +5 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunk/client/Client.js +2 -2
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.d.ts +48 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.js +144 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.d.ts +19 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.js +5 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/requests/index.js +2 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/llmUsage/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +10 -10
- package/dist/api/resources/conversationalAi/resources/secrets/client/Client.js +6 -6
- package/dist/api/resources/conversationalAi/resources/settings/client/Client.js +4 -4
- package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +2 -2
- package/dist/api/resources/conversationalAi/resources/twilio/client/Client.js +2 -2
- package/dist/api/resources/dubbing/client/Client.js +6 -6
- package/dist/api/resources/dubbing/resources/audio/client/Client.js +2 -2
- package/dist/api/resources/dubbing/resources/resource/client/Client.js +10 -10
- package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.js +2 -2
- package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +4 -4
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +4 -4
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +2 -2
- package/dist/api/resources/dubbing/resources/transcript/client/Client.js +2 -2
- package/dist/api/resources/forcedAlignment/client/Client.js +2 -2
- package/dist/api/resources/history/client/Client.js +10 -10
- 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 +2 -2
- package/dist/api/resources/pronunciationDictionaries/client/Client.js +10 -10
- package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +4 -4
- package/dist/api/resources/samples/client/Client.js +2 -2
- package/dist/api/resources/speechToSpeech/client/Client.js +4 -4
- package/dist/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +2 -0
- package/dist/api/resources/studio/client/Client.js +2 -2
- package/dist/api/resources/studio/resources/projects/client/Client.js +12 -12
- package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.js +12 -12
- package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +6 -6
- package/dist/api/resources/studio/resources/projects/resources/content/client/Client.js +2 -2
- package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +2 -2
- package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +8 -8
- package/dist/api/resources/textToDialogue/client/Client.d.ts +44 -0
- package/dist/api/resources/textToDialogue/client/Client.js +212 -0
- package/dist/api/resources/textToDialogue/client/index.d.ts +1 -0
- package/dist/api/resources/textToDialogue/client/index.js +17 -0
- package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.d.ts +32 -0
- package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.js +5 -0
- package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.d.ts +32 -0
- package/dist/api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.js +5 -0
- package/dist/api/resources/textToDialogue/client/requests/index.d.ts +2 -0
- package/dist/api/resources/textToDialogue/client/requests/index.js +2 -0
- package/dist/api/resources/textToDialogue/index.d.ts +2 -0
- package/dist/api/resources/textToDialogue/index.js +18 -0
- package/dist/api/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.d.ts +28 -0
- package/dist/api/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.js +27 -0
- package/dist/api/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.d.ts +28 -0
- package/dist/api/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.js +27 -0
- package/dist/api/resources/textToDialogue/types/index.d.ts +2 -0
- package/dist/api/resources/textToDialogue/types/index.js +18 -0
- package/dist/api/resources/textToSoundEffects/client/Client.js +2 -2
- package/dist/api/resources/textToSpeech/client/Client.js +8 -8
- package/dist/api/resources/textToVoice/client/Client.js +4 -4
- package/dist/api/resources/usage/client/Client.js +2 -2
- package/dist/api/resources/user/client/Client.js +2 -2
- package/dist/api/resources/user/resources/subscription/client/Client.js +2 -2
- package/dist/api/resources/voices/client/Client.js +20 -17
- package/dist/api/resources/voices/client/requests/VoicesGetSharedRequest.d.ts +4 -0
- package/dist/api/resources/voices/resources/ivc/client/Client.js +2 -2
- package/dist/api/resources/voices/resources/pvc/client/Client.js +6 -6
- package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.js +6 -6
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +2 -2
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +4 -4
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +2 -2
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +2 -2
- package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.js +2 -2
- package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +4 -4
- package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.js +2 -2
- package/dist/api/resources/voices/resources/settings/client/Client.d.ts +1 -1
- package/dist/api/resources/voices/resources/settings/client/Client.js +7 -7
- package/dist/api/resources/workspace/resources/groups/client/Client.js +2 -2
- package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.js +4 -4
- package/dist/api/resources/workspace/resources/invites/client/Client.js +6 -6
- package/dist/api/resources/workspace/resources/members/client/Client.js +4 -4
- package/dist/api/resources/workspace/resources/resources/client/Client.js +6 -6
- package/dist/api/types/AddKnowledgeBaseResponseModel.d.ts +0 -1
- package/dist/api/types/AgentConfigOverride.d.ts +4 -4
- package/dist/api/types/AgentConfigOverrideConfig.d.ts +4 -4
- package/dist/api/types/AudioOutputMulti.d.ts +1 -1
- package/dist/api/types/AuthorizationMethod.d.ts +2 -1
- package/dist/api/types/AuthorizationMethod.js +1 -0
- package/dist/api/types/ChapterContentBlockInputModel.d.ts +1 -0
- package/dist/api/types/ChapterContentBlockInputModelSubType.d.ts +10 -0
- package/dist/api/types/ChapterContentBlockInputModelSubType.js +12 -0
- package/dist/api/types/ClientEvent.d.ts +2 -1
- package/dist/api/types/ClientEvent.js +1 -0
- package/dist/api/types/ConversationConfigClientOverrideConfigInput.d.ts +4 -4
- package/dist/api/types/ConversationConfigClientOverrideConfigOutput.d.ts +4 -4
- package/dist/api/types/ConversationConfigClientOverrideInput.d.ts +4 -4
- package/dist/api/types/ConversationConfigClientOverrideOutput.d.ts +4 -4
- package/dist/api/types/ConversationConfigOverride.d.ts +1 -0
- package/dist/api/types/ConversationConfigOverrideConfig.d.ts +1 -1
- package/dist/api/types/ConversationHistoryMetadataCommonModel.d.ts +2 -0
- package/dist/api/types/ConversationHistoryTranscriptCommonModelInput.d.ts +1 -1
- package/dist/api/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +1 -1
- package/dist/api/types/ConversationTokenDbModel.d.ts +2 -0
- package/dist/api/types/ConversationalConfig.d.ts +1 -1
- package/dist/api/types/CustomLlm.d.ts +2 -0
- package/dist/api/types/CustomLlmRequestHeadersValue.d.ts +5 -0
- package/dist/api/types/CustomLlmRequestHeadersValue.js +5 -0
- package/dist/api/types/DialogueInput.d.ts +9 -0
- package/dist/api/types/DialogueInput.js +5 -0
- package/dist/api/types/DialogueInputResponseModel.d.ts +11 -0
- package/dist/api/types/DialogueInputResponseModel.js +5 -0
- package/dist/api/types/EmbedVariant.d.ts +2 -1
- package/dist/api/types/EmbedVariant.js +1 -0
- package/dist/api/types/FeatureStatusCommonModel.d.ts +7 -0
- package/dist/api/types/FeatureStatusCommonModel.js +5 -0
- package/dist/api/types/FeaturesUsageCommonModel.d.ts +12 -0
- package/dist/api/types/FeaturesUsageCommonModel.js +5 -0
- package/dist/api/types/GetAgentEmbedResponseModel.d.ts +1 -1
- package/dist/api/types/GetAgentKnowledgebaseSizeResponseModel.d.ts +6 -0
- package/dist/api/types/GetAgentKnowledgebaseSizeResponseModel.js +5 -0
- package/dist/api/types/GetKnowledgeBaseFileResponseModel.d.ts +1 -1
- package/dist/api/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +1 -1
- package/dist/api/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +1 -1
- package/dist/api/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +1 -1
- package/dist/api/types/GetKnowledgeBaseTextResponseModel.d.ts +1 -1
- package/dist/api/types/GetKnowledgeBaseUrlResponseModel.d.ts +1 -1
- package/dist/api/types/GetSharedSoundGenerationsResponseModel.d.ts +9 -0
- package/dist/api/types/GetSharedSoundGenerationsResponseModel.js +5 -0
- package/dist/api/types/Llm.d.ts +28 -3
- package/dist/api/types/Llm.js +27 -2
- package/dist/api/types/LlmUsageCalculatorLlmResponseModel.d.ts +8 -0
- package/dist/api/types/LlmUsageCalculatorLlmResponseModel.js +5 -0
- package/dist/api/types/LlmUsageCalculatorResponseModel.d.ts +7 -0
- package/dist/api/types/LlmUsageCalculatorResponseModel.js +5 -0
- package/dist/api/types/McpApprovalRequiredModel.d.ts +12 -0
- package/dist/api/types/McpApprovalRequiredModel.js +11 -0
- package/dist/api/types/McpToolConfigInput.d.ts +2 -0
- package/dist/api/types/McpToolConfigOutput.d.ts +2 -0
- package/dist/api/types/ModelSettingsResponseModel.d.ts +9 -0
- package/dist/api/types/ModelSettingsResponseModel.js +5 -0
- package/dist/api/types/NativeMcpToolConfigInput.d.ts +22 -0
- package/dist/api/types/NativeMcpToolConfigInput.js +5 -0
- package/dist/api/types/NativeMcpToolConfigOutput.d.ts +22 -0
- package/dist/api/types/NativeMcpToolConfigOutput.js +5 -0
- package/dist/api/types/PromptAgent.d.ts +2 -0
- package/dist/api/types/PromptAgentDbModel.d.ts +2 -0
- package/dist/api/types/PromptAgentDbModelToolsItem.d.ts +4 -1
- package/dist/api/types/PromptAgentInputToolsItem.d.ts +4 -1
- package/dist/api/types/PromptAgentOutputToolsItem.d.ts +4 -1
- package/dist/api/types/PromptAgentOverride.d.ts +1 -1
- package/dist/api/types/PromptAgentOverrideConfig.d.ts +1 -1
- package/dist/api/types/PronunciationDictionaryLocator.d.ts +1 -1
- package/dist/api/types/RagConfig.d.ts +2 -0
- package/{api/types/RagIndexResponseModel.d.ts → dist/api/types/RagDocumentIndexResponseModel.d.ts} +4 -1
- package/dist/api/types/RagDocumentIndexResponseModel.js +5 -0
- package/dist/api/types/RagDocumentIndexUsage.d.ts +6 -0
- package/dist/api/types/RagDocumentIndexUsage.js +5 -0
- package/dist/api/types/RagDocumentIndexesResponseModel.d.ts +7 -0
- package/dist/api/types/RagDocumentIndexesResponseModel.js +5 -0
- package/dist/api/types/RagIndexOverviewEmbeddingModelResponseModel.d.ts +8 -0
- package/dist/api/types/RagIndexOverviewEmbeddingModelResponseModel.js +5 -0
- package/dist/api/types/RagIndexOverviewResponseModel.d.ts +9 -0
- package/dist/api/types/RagIndexOverviewResponseModel.js +5 -0
- package/dist/api/types/RagIndexStatus.d.ts +3 -1
- package/dist/api/types/RagIndexStatus.js +2 -0
- package/dist/api/types/SharedSoundGenerationResponseModel.d.ts +17 -0
- package/dist/api/types/SharedSoundGenerationResponseModel.js +5 -0
- package/dist/api/types/SkipTurnToolConfig.d.ts +16 -0
- package/dist/api/types/SkipTurnToolConfig.js +5 -0
- package/dist/api/types/SpeechHistoryItemResponse.d.ts +5 -3
- package/dist/api/types/Subscription.d.ts +1 -1
- package/dist/api/types/SubscriptionResponse.d.ts +1 -1
- package/dist/api/types/{SubscriptionStatus.d.ts → SubscriptionStatusType.d.ts} +3 -5
- package/{api/types/ExtendedSubscriptionResponseModelStatus.js → dist/api/types/SubscriptionStatusType.js} +3 -2
- package/dist/api/types/SupportedVoice.d.ts +11 -0
- package/dist/api/types/SupportedVoice.js +5 -0
- package/dist/api/types/SystemToolConfigInputParams.d.ts +4 -1
- package/dist/api/types/SystemToolConfigOutputParams.d.ts +4 -1
- package/{api/types/TtsConversationalConfig.d.ts → dist/api/types/TtsConversationalConfigInput.d.ts} +3 -1
- package/dist/api/types/TtsConversationalConfigInput.js +5 -0
- package/dist/api/types/TtsConversationalConfigOutput.d.ts +24 -0
- package/dist/api/types/TtsConversationalConfigOutput.js +5 -0
- package/dist/api/types/TtsConversationalConfigOverride.d.ts +1 -0
- package/dist/api/types/TtsConversationalConfigOverrideConfig.d.ts +1 -1
- package/dist/api/types/TtsModelFamily.d.ts +9 -0
- package/dist/api/types/TtsModelFamily.js +11 -0
- package/dist/api/types/VoiceSettings.d.ts +2 -2
- package/dist/api/types/WebsocketTtsClientMessageMulti.d.ts +2 -2
- package/dist/api/types/WidgetConfig.d.ts +13 -1
- package/{api/types/WidgetConfigAvatar.d.ts → dist/api/types/WidgetConfigInputAvatar.d.ts} +2 -2
- package/dist/api/types/WidgetConfigInputAvatar.js +5 -0
- package/dist/api/types/WidgetConfigOutputAvatar.d.ts +19 -0
- package/dist/api/types/WidgetConfigOutputAvatar.js +5 -0
- package/dist/api/types/{WidgetConfigResponseModel.d.ts → WidgetConfigResponse.d.ts} +16 -1
- package/dist/api/types/WidgetConfigResponse.js +5 -0
- package/dist/api/types/WidgetLanguagePreset.d.ts +8 -0
- package/dist/api/types/WidgetLanguagePreset.js +5 -0
- package/dist/api/types/WidgetLanguagePresetResponse.d.ts +9 -0
- package/dist/api/types/WidgetLanguagePresetResponse.js +5 -0
- package/dist/api/types/WidgetPlacement.d.ts +12 -0
- package/dist/api/types/WidgetPlacement.js +14 -0
- package/dist/api/types/WidgetTextContents.d.ts +47 -0
- package/dist/api/types/WidgetTextContents.js +5 -0
- package/dist/api/types/index.d.ts +33 -6
- package/dist/api/types/index.js +33 -6
- package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +4 -2
- package/dist/serialization/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.js +4 -2
- package/dist/serialization/resources/conversationalAi/resources/agents/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/index.js +1 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/index.js +41 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.d.ts +14 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.js +45 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/index.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/index.js +3 -1
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/index.js +17 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.d.ts +14 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.js +45 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/client/requests/index.js +5 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/llmUsage/index.js +17 -0
- package/dist/serialization/resources/index.d.ts +3 -0
- package/dist/serialization/resources/index.js +4 -1
- package/dist/serialization/resources/textToDialogue/client/index.d.ts +1 -0
- package/dist/serialization/resources/textToDialogue/client/index.js +17 -0
- package/dist/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.d.ts +19 -0
- package/dist/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.js +50 -0
- package/dist/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.d.ts +19 -0
- package/dist/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.js +50 -0
- package/dist/serialization/resources/textToDialogue/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/textToDialogue/client/requests/index.js +7 -0
- package/dist/serialization/resources/textToDialogue/index.d.ts +2 -0
- package/dist/serialization/resources/textToDialogue/index.js +18 -0
- package/dist/serialization/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.d.ts +10 -0
- package/dist/serialization/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.js +61 -0
- package/dist/serialization/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.d.ts +10 -0
- package/dist/serialization/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.js +61 -0
- package/dist/serialization/resources/textToDialogue/types/index.d.ts +2 -0
- package/dist/serialization/resources/textToDialogue/types/index.js +18 -0
- package/dist/serialization/types/AddKnowledgeBaseResponseModel.d.ts +0 -1
- package/dist/serialization/types/AddKnowledgeBaseResponseModel.js +0 -1
- package/dist/serialization/types/AgentConfigOverride.d.ts +1 -1
- package/dist/serialization/types/AgentConfigOverride.js +1 -1
- package/dist/serialization/types/AgentConfigOverrideConfig.d.ts +1 -1
- package/dist/serialization/types/AgentConfigOverrideConfig.js +1 -1
- package/dist/serialization/types/AudioOutputMulti.d.ts +1 -1
- package/dist/serialization/types/AudioOutputMulti.js +1 -1
- package/dist/serialization/types/AuthorizationMethod.d.ts +1 -1
- package/dist/serialization/types/AuthorizationMethod.js +1 -0
- package/dist/serialization/types/ChapterContentBlockInputModel.d.ts +2 -0
- package/dist/serialization/types/ChapterContentBlockInputModel.js +2 -0
- package/dist/serialization/types/ChapterContentBlockInputModelSubType.d.ts +10 -0
- package/dist/serialization/types/ChapterContentBlockInputModelSubType.js +41 -0
- package/dist/serialization/types/ClientEvent.d.ts +1 -1
- package/dist/serialization/types/ClientEvent.js +1 -0
- package/dist/serialization/types/ConversationConfigClientOverrideConfigInput.d.ts +2 -2
- package/dist/serialization/types/ConversationConfigClientOverrideConfigInput.js +2 -2
- package/dist/serialization/types/ConversationConfigClientOverrideConfigOutput.d.ts +2 -2
- package/dist/serialization/types/ConversationConfigClientOverrideConfigOutput.js +2 -2
- package/dist/serialization/types/ConversationConfigClientOverrideInput.d.ts +2 -2
- package/dist/serialization/types/ConversationConfigClientOverrideInput.js +2 -2
- package/dist/serialization/types/ConversationConfigClientOverrideOutput.d.ts +2 -2
- package/dist/serialization/types/ConversationConfigClientOverrideOutput.js +2 -2
- package/dist/serialization/types/ConversationHistoryMetadataCommonModel.d.ts +3 -0
- package/dist/serialization/types/ConversationHistoryMetadataCommonModel.js +3 -0
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +2 -2
- package/dist/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +2 -2
- package/dist/serialization/types/ConversationTokenDbModel.d.ts +1 -0
- package/dist/serialization/types/ConversationTokenDbModel.js +1 -0
- package/dist/serialization/types/ConversationalConfig.d.ts +2 -2
- package/dist/serialization/types/ConversationalConfig.js +2 -2
- package/dist/serialization/types/CustomLlm.d.ts +2 -0
- package/dist/serialization/types/CustomLlm.js +2 -0
- package/dist/serialization/types/CustomLlmRequestHeadersValue.d.ts +12 -0
- package/dist/serialization/types/CustomLlmRequestHeadersValue.js +43 -0
- package/dist/serialization/types/DialogueInput.d.ts +13 -0
- package/dist/serialization/types/DialogueInput.js +44 -0
- package/dist/serialization/types/DialogueInputResponseModel.d.ts +14 -0
- package/dist/serialization/types/DialogueInputResponseModel.js +45 -0
- package/dist/serialization/types/EmbedVariant.d.ts +1 -1
- package/dist/serialization/types/EmbedVariant.js +1 -1
- package/dist/serialization/types/FeatureStatusCommonModel.d.ts +13 -0
- package/dist/serialization/types/FeatureStatusCommonModel.js +44 -0
- package/dist/serialization/types/FeaturesUsageCommonModel.d.ts +18 -0
- package/dist/serialization/types/FeaturesUsageCommonModel.js +49 -0
- package/dist/serialization/types/GetAgentEmbedResponseModel.d.ts +2 -2
- package/dist/serialization/types/GetAgentEmbedResponseModel.js +2 -2
- package/dist/serialization/types/GetAgentKnowledgebaseSizeResponseModel.d.ts +12 -0
- package/dist/serialization/types/GetAgentKnowledgebaseSizeResponseModel.js +43 -0
- package/dist/serialization/types/GetKnowledgeBaseFileResponseModel.d.ts +2 -1
- package/dist/serialization/types/GetKnowledgeBaseFileResponseModel.js +2 -1
- package/dist/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +2 -1
- package/dist/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.js +2 -1
- package/dist/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +2 -1
- package/dist/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.js +2 -1
- package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +2 -1
- package/dist/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.js +2 -1
- package/dist/serialization/types/GetKnowledgeBaseTextResponseModel.d.ts +2 -1
- package/dist/serialization/types/GetKnowledgeBaseTextResponseModel.js +2 -1
- package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +2 -1
- package/dist/serialization/types/GetKnowledgeBaseUrlResponseModel.js +2 -1
- package/dist/serialization/types/GetSharedSoundGenerationsResponseModel.d.ts +15 -0
- package/dist/serialization/types/GetSharedSoundGenerationsResponseModel.js +46 -0
- package/dist/serialization/types/Llm.d.ts +1 -1
- package/dist/serialization/types/Llm.js +27 -2
- package/dist/serialization/types/LlmUsageCalculatorLlmResponseModel.d.ts +14 -0
- package/dist/serialization/types/LlmUsageCalculatorLlmResponseModel.js +45 -0
- package/dist/serialization/types/LlmUsageCalculatorResponseModel.d.ts +13 -0
- package/dist/serialization/types/LlmUsageCalculatorResponseModel.js +44 -0
- package/dist/serialization/types/McpApprovalRequiredModel.d.ts +10 -0
- package/{serialization/types/ExtendedSubscriptionResponseModelStatus.js → dist/serialization/types/McpApprovalRequiredModel.js} +5 -10
- package/dist/serialization/types/McpToolConfigInput.d.ts +2 -0
- package/dist/serialization/types/McpToolConfigInput.js +2 -0
- package/dist/serialization/types/McpToolConfigOutput.d.ts +2 -0
- package/dist/serialization/types/McpToolConfigOutput.js +2 -0
- package/dist/serialization/types/ModelSettingsResponseModel.d.ts +13 -0
- package/dist/serialization/types/ModelSettingsResponseModel.js +44 -0
- package/dist/serialization/types/NativeMcpToolConfigInput.d.ts +20 -0
- package/dist/serialization/types/NativeMcpToolConfigInput.js +52 -0
- package/dist/serialization/types/NativeMcpToolConfigOutput.d.ts +20 -0
- package/dist/serialization/types/NativeMcpToolConfigOutput.js +52 -0
- package/dist/serialization/types/PromptAgent.d.ts +1 -0
- package/dist/serialization/types/PromptAgent.js +1 -0
- package/dist/serialization/types/PromptAgentDbModel.d.ts +1 -0
- package/dist/serialization/types/PromptAgentDbModel.js +1 -0
- package/dist/serialization/types/PromptAgentDbModelToolsItem.d.ts +5 -1
- package/dist/serialization/types/PromptAgentDbModelToolsItem.js +2 -0
- package/dist/serialization/types/PromptAgentInputToolsItem.d.ts +5 -1
- package/dist/serialization/types/PromptAgentInputToolsItem.js +2 -0
- package/dist/serialization/types/PromptAgentOutputToolsItem.d.ts +5 -1
- package/dist/serialization/types/PromptAgentOutputToolsItem.js +2 -0
- package/dist/serialization/types/PronunciationDictionaryLocator.d.ts +1 -1
- package/dist/serialization/types/PronunciationDictionaryLocator.js +1 -1
- package/dist/serialization/types/RagConfig.d.ts +1 -0
- package/dist/serialization/types/RagConfig.js +1 -0
- package/dist/serialization/types/RagDocumentIndexResponseModel.d.ts +19 -0
- package/dist/serialization/types/RagDocumentIndexResponseModel.js +50 -0
- package/dist/serialization/types/RagDocumentIndexUsage.d.ts +12 -0
- package/dist/serialization/types/RagDocumentIndexUsage.js +43 -0
- package/dist/serialization/types/RagDocumentIndexesResponseModel.d.ts +13 -0
- package/{serialization/types/RagIndexResponseModel.js → dist/serialization/types/RagDocumentIndexesResponseModel.js} +4 -5
- package/dist/serialization/types/RagIndexOverviewEmbeddingModelResponseModel.d.ts +14 -0
- package/dist/serialization/types/RagIndexOverviewEmbeddingModelResponseModel.js +45 -0
- package/dist/serialization/types/RagIndexOverviewResponseModel.d.ts +15 -0
- package/dist/serialization/types/RagIndexOverviewResponseModel.js +46 -0
- package/dist/serialization/types/RagIndexStatus.d.ts +1 -1
- package/dist/serialization/types/RagIndexStatus.js +8 -1
- package/dist/serialization/types/SharedSoundGenerationResponseModel.d.ts +23 -0
- package/dist/serialization/types/SharedSoundGenerationResponseModel.js +54 -0
- package/dist/serialization/types/SkipTurnToolConfig.d.ts +11 -0
- package/dist/serialization/types/SkipTurnToolConfig.js +41 -0
- package/dist/serialization/types/SpeechHistoryItemResponse.d.ts +5 -3
- package/dist/serialization/types/SpeechHistoryItemResponse.js +5 -3
- package/dist/serialization/types/Subscription.d.ts +2 -2
- package/dist/serialization/types/Subscription.js +2 -2
- package/dist/serialization/types/SubscriptionResponse.d.ts +2 -2
- package/dist/serialization/types/SubscriptionResponse.js +2 -2
- package/dist/serialization/types/SubscriptionStatusType.d.ts +10 -0
- package/dist/serialization/types/{SubscriptionStatus.js → SubscriptionStatusType.js} +3 -2
- package/dist/serialization/types/SupportedVoice.d.ts +17 -0
- package/dist/serialization/types/SupportedVoice.js +48 -0
- package/dist/serialization/types/SystemToolConfigInputParams.d.ts +5 -1
- package/dist/serialization/types/SystemToolConfigInputParams.js +2 -0
- package/dist/serialization/types/SystemToolConfigOutputParams.d.ts +5 -1
- package/dist/serialization/types/SystemToolConfigOutputParams.js +2 -0
- package/dist/serialization/types/{TtsConversationalConfig.d.ts → TtsConversationalConfigInput.d.ts} +4 -2
- package/{serialization/types/TtsConversationalConfig.js → dist/serialization/types/TtsConversationalConfigInput.js} +4 -2
- package/dist/serialization/types/TtsConversationalConfigOutput.d.ts +25 -0
- package/dist/serialization/types/TtsConversationalConfigOutput.js +56 -0
- package/dist/serialization/types/TtsModelFamily.d.ts +10 -0
- package/dist/serialization/types/TtsModelFamily.js +41 -0
- package/dist/serialization/types/VoiceSettings.d.ts +1 -1
- package/dist/serialization/types/VoiceSettings.js +1 -1
- package/dist/serialization/types/WebsocketTtsClientMessageMulti.d.ts +1 -1
- package/dist/serialization/types/WebsocketTtsClientMessageMulti.js +1 -1
- package/dist/serialization/types/WidgetConfig.d.ts +11 -2
- package/dist/serialization/types/WidgetConfig.js +11 -2
- package/dist/serialization/types/{WidgetConfigAvatar.d.ts → WidgetConfigInputAvatar.d.ts} +3 -3
- package/dist/serialization/types/{WidgetConfigAvatar.js → WidgetConfigInputAvatar.js} +2 -2
- package/dist/serialization/types/WidgetConfigOutputAvatar.d.ts +22 -0
- package/dist/serialization/types/WidgetConfigOutputAvatar.js +53 -0
- package/dist/serialization/types/{WidgetConfigResponseModel.d.ts → WidgetConfigResponse.d.ts} +13 -2
- package/dist/serialization/types/{WidgetConfigResponseModel.js → WidgetConfigResponse.js} +13 -2
- package/dist/serialization/types/WidgetLanguagePreset.d.ts +13 -0
- package/dist/serialization/types/WidgetLanguagePreset.js +44 -0
- package/dist/serialization/types/WidgetLanguagePresetResponse.d.ts +14 -0
- package/dist/serialization/types/WidgetLanguagePresetResponse.js +45 -0
- package/dist/serialization/types/WidgetPlacement.d.ts +10 -0
- package/dist/serialization/types/WidgetPlacement.js +41 -0
- package/dist/serialization/types/WidgetTextContents.d.ts +32 -0
- package/dist/serialization/types/WidgetTextContents.js +63 -0
- package/dist/serialization/types/index.d.ts +33 -6
- package/dist/serialization/types/index.js +33 -6
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +883 -203
- package/serialization/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +4 -2
- package/serialization/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.js +4 -2
- package/serialization/resources/conversationalAi/resources/agents/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/agents/index.js +1 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/index.js +41 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.d.ts +14 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.js +45 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/agents/resources/llmUsage/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/index.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/index.js +3 -1
- package/serialization/resources/conversationalAi/resources/llmUsage/client/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/client/index.js +17 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.d.ts +14 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.js +45 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/client/requests/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/client/requests/index.js +5 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/llmUsage/index.js +17 -0
- package/serialization/resources/index.d.ts +3 -0
- package/serialization/resources/index.js +4 -1
- package/serialization/resources/textToDialogue/client/index.d.ts +1 -0
- package/serialization/resources/textToDialogue/client/index.js +17 -0
- package/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.d.ts +19 -0
- package/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.js +50 -0
- package/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.d.ts +19 -0
- package/serialization/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.js +50 -0
- package/serialization/resources/textToDialogue/client/requests/index.d.ts +2 -0
- package/serialization/resources/textToDialogue/client/requests/index.js +7 -0
- package/serialization/resources/textToDialogue/index.d.ts +2 -0
- package/serialization/resources/textToDialogue/index.js +18 -0
- package/serialization/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.d.ts +10 -0
- package/serialization/resources/textToDialogue/types/TextToDialogueConvertRequestOutputFormat.js +61 -0
- package/serialization/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.d.ts +10 -0
- package/serialization/resources/textToDialogue/types/TextToDialogueStreamRequestOutputFormat.js +61 -0
- package/serialization/resources/textToDialogue/types/index.d.ts +2 -0
- package/serialization/resources/textToDialogue/types/index.js +18 -0
- package/serialization/types/AddKnowledgeBaseResponseModel.d.ts +0 -1
- package/serialization/types/AddKnowledgeBaseResponseModel.js +0 -1
- package/serialization/types/AgentConfigOverride.d.ts +1 -1
- package/serialization/types/AgentConfigOverride.js +1 -1
- package/serialization/types/AgentConfigOverrideConfig.d.ts +1 -1
- package/serialization/types/AgentConfigOverrideConfig.js +1 -1
- package/serialization/types/AudioOutputMulti.d.ts +1 -1
- package/serialization/types/AudioOutputMulti.js +1 -1
- package/serialization/types/AuthorizationMethod.d.ts +1 -1
- package/serialization/types/AuthorizationMethod.js +1 -0
- package/serialization/types/ChapterContentBlockInputModel.d.ts +2 -0
- package/serialization/types/ChapterContentBlockInputModel.js +2 -0
- package/serialization/types/ChapterContentBlockInputModelSubType.d.ts +10 -0
- package/serialization/types/ChapterContentBlockInputModelSubType.js +41 -0
- package/serialization/types/ClientEvent.d.ts +1 -1
- package/serialization/types/ClientEvent.js +1 -0
- package/serialization/types/ConversationConfigClientOverrideConfigInput.d.ts +2 -2
- package/serialization/types/ConversationConfigClientOverrideConfigInput.js +2 -2
- package/serialization/types/ConversationConfigClientOverrideConfigOutput.d.ts +2 -2
- package/serialization/types/ConversationConfigClientOverrideConfigOutput.js +2 -2
- package/serialization/types/ConversationConfigClientOverrideInput.d.ts +2 -2
- package/serialization/types/ConversationConfigClientOverrideInput.js +2 -2
- package/serialization/types/ConversationConfigClientOverrideOutput.d.ts +2 -2
- package/serialization/types/ConversationConfigClientOverrideOutput.js +2 -2
- package/serialization/types/ConversationHistoryMetadataCommonModel.d.ts +3 -0
- package/serialization/types/ConversationHistoryMetadataCommonModel.js +3 -0
- package/serialization/types/ConversationHistoryTranscriptCommonModelInput.d.ts +2 -2
- package/serialization/types/ConversationHistoryTranscriptCommonModelInput.js +2 -2
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.d.ts +2 -2
- package/serialization/types/ConversationHistoryTranscriptCommonModelOutput.js +2 -2
- package/serialization/types/ConversationTokenDbModel.d.ts +1 -0
- package/serialization/types/ConversationTokenDbModel.js +1 -0
- package/serialization/types/ConversationalConfig.d.ts +2 -2
- package/serialization/types/ConversationalConfig.js +2 -2
- package/serialization/types/CustomLlm.d.ts +2 -0
- package/serialization/types/CustomLlm.js +2 -0
- package/serialization/types/CustomLlmRequestHeadersValue.d.ts +12 -0
- package/serialization/types/CustomLlmRequestHeadersValue.js +43 -0
- package/serialization/types/DialogueInput.d.ts +13 -0
- package/serialization/types/DialogueInput.js +44 -0
- package/serialization/types/DialogueInputResponseModel.d.ts +14 -0
- package/serialization/types/DialogueInputResponseModel.js +45 -0
- package/serialization/types/EmbedVariant.d.ts +1 -1
- package/serialization/types/EmbedVariant.js +1 -1
- package/serialization/types/FeatureStatusCommonModel.d.ts +13 -0
- package/serialization/types/FeatureStatusCommonModel.js +44 -0
- package/serialization/types/FeaturesUsageCommonModel.d.ts +18 -0
- package/serialization/types/FeaturesUsageCommonModel.js +49 -0
- package/serialization/types/GetAgentEmbedResponseModel.d.ts +2 -2
- package/serialization/types/GetAgentEmbedResponseModel.js +2 -2
- package/serialization/types/GetAgentKnowledgebaseSizeResponseModel.d.ts +12 -0
- package/serialization/types/GetAgentKnowledgebaseSizeResponseModel.js +43 -0
- package/serialization/types/GetKnowledgeBaseFileResponseModel.d.ts +2 -1
- package/serialization/types/GetKnowledgeBaseFileResponseModel.js +2 -1
- package/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.d.ts +2 -1
- package/serialization/types/GetKnowledgeBaseSummaryFileResponseModel.js +2 -1
- package/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.d.ts +2 -1
- package/serialization/types/GetKnowledgeBaseSummaryTextResponseModel.js +2 -1
- package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.d.ts +2 -1
- package/serialization/types/GetKnowledgeBaseSummaryUrlResponseModel.js +2 -1
- package/serialization/types/GetKnowledgeBaseTextResponseModel.d.ts +2 -1
- package/serialization/types/GetKnowledgeBaseTextResponseModel.js +2 -1
- package/serialization/types/GetKnowledgeBaseUrlResponseModel.d.ts +2 -1
- package/serialization/types/GetKnowledgeBaseUrlResponseModel.js +2 -1
- package/serialization/types/GetSharedSoundGenerationsResponseModel.d.ts +15 -0
- package/serialization/types/GetSharedSoundGenerationsResponseModel.js +46 -0
- package/serialization/types/Llm.d.ts +1 -1
- package/serialization/types/Llm.js +27 -2
- package/serialization/types/LlmUsageCalculatorLlmResponseModel.d.ts +14 -0
- package/serialization/types/LlmUsageCalculatorLlmResponseModel.js +45 -0
- package/serialization/types/LlmUsageCalculatorResponseModel.d.ts +13 -0
- package/serialization/types/LlmUsageCalculatorResponseModel.js +44 -0
- package/serialization/types/McpApprovalRequiredModel.d.ts +10 -0
- package/{dist/serialization/types/ExtendedSubscriptionResponseModelStatus.js → serialization/types/McpApprovalRequiredModel.js} +5 -10
- package/serialization/types/McpToolConfigInput.d.ts +2 -0
- package/serialization/types/McpToolConfigInput.js +2 -0
- package/serialization/types/McpToolConfigOutput.d.ts +2 -0
- package/serialization/types/McpToolConfigOutput.js +2 -0
- package/serialization/types/ModelSettingsResponseModel.d.ts +13 -0
- package/serialization/types/ModelSettingsResponseModel.js +44 -0
- package/serialization/types/NativeMcpToolConfigInput.d.ts +20 -0
- package/serialization/types/NativeMcpToolConfigInput.js +52 -0
- package/serialization/types/NativeMcpToolConfigOutput.d.ts +20 -0
- package/serialization/types/NativeMcpToolConfigOutput.js +52 -0
- package/serialization/types/PromptAgent.d.ts +1 -0
- package/serialization/types/PromptAgent.js +1 -0
- package/serialization/types/PromptAgentDbModel.d.ts +1 -0
- package/serialization/types/PromptAgentDbModel.js +1 -0
- package/serialization/types/PromptAgentDbModelToolsItem.d.ts +5 -1
- package/serialization/types/PromptAgentDbModelToolsItem.js +2 -0
- package/serialization/types/PromptAgentInputToolsItem.d.ts +5 -1
- package/serialization/types/PromptAgentInputToolsItem.js +2 -0
- package/serialization/types/PromptAgentOutputToolsItem.d.ts +5 -1
- package/serialization/types/PromptAgentOutputToolsItem.js +2 -0
- package/serialization/types/PronunciationDictionaryLocator.d.ts +1 -1
- package/serialization/types/PronunciationDictionaryLocator.js +1 -1
- package/serialization/types/RagConfig.d.ts +1 -0
- package/serialization/types/RagConfig.js +1 -0
- package/serialization/types/RagDocumentIndexResponseModel.d.ts +19 -0
- package/serialization/types/RagDocumentIndexResponseModel.js +50 -0
- package/serialization/types/RagDocumentIndexUsage.d.ts +12 -0
- package/serialization/types/RagDocumentIndexUsage.js +43 -0
- package/serialization/types/RagDocumentIndexesResponseModel.d.ts +13 -0
- package/{dist/serialization/types/RagIndexResponseModel.js → serialization/types/RagDocumentIndexesResponseModel.js} +4 -5
- package/serialization/types/RagIndexOverviewEmbeddingModelResponseModel.d.ts +14 -0
- package/serialization/types/RagIndexOverviewEmbeddingModelResponseModel.js +45 -0
- package/serialization/types/RagIndexOverviewResponseModel.d.ts +15 -0
- package/serialization/types/RagIndexOverviewResponseModel.js +46 -0
- package/serialization/types/RagIndexStatus.d.ts +1 -1
- package/serialization/types/RagIndexStatus.js +8 -1
- package/serialization/types/SharedSoundGenerationResponseModel.d.ts +23 -0
- package/serialization/types/SharedSoundGenerationResponseModel.js +54 -0
- package/serialization/types/SkipTurnToolConfig.d.ts +11 -0
- package/serialization/types/SkipTurnToolConfig.js +41 -0
- package/serialization/types/SpeechHistoryItemResponse.d.ts +5 -3
- package/serialization/types/SpeechHistoryItemResponse.js +5 -3
- package/serialization/types/Subscription.d.ts +2 -2
- package/serialization/types/Subscription.js +2 -2
- package/serialization/types/SubscriptionResponse.d.ts +2 -2
- package/serialization/types/SubscriptionResponse.js +2 -2
- package/serialization/types/SubscriptionStatusType.d.ts +10 -0
- package/serialization/types/{SubscriptionStatus.js → SubscriptionStatusType.js} +3 -2
- package/serialization/types/SupportedVoice.d.ts +17 -0
- package/serialization/types/SupportedVoice.js +48 -0
- package/serialization/types/SystemToolConfigInputParams.d.ts +5 -1
- package/serialization/types/SystemToolConfigInputParams.js +2 -0
- package/serialization/types/SystemToolConfigOutputParams.d.ts +5 -1
- package/serialization/types/SystemToolConfigOutputParams.js +2 -0
- package/serialization/types/{TtsConversationalConfig.d.ts → TtsConversationalConfigInput.d.ts} +4 -2
- package/{dist/serialization/types/TtsConversationalConfig.js → serialization/types/TtsConversationalConfigInput.js} +4 -2
- package/serialization/types/TtsConversationalConfigOutput.d.ts +25 -0
- package/serialization/types/TtsConversationalConfigOutput.js +56 -0
- package/serialization/types/TtsModelFamily.d.ts +10 -0
- package/serialization/types/TtsModelFamily.js +41 -0
- package/serialization/types/VoiceSettings.d.ts +1 -1
- package/serialization/types/VoiceSettings.js +1 -1
- package/serialization/types/WebsocketTtsClientMessageMulti.d.ts +1 -1
- package/serialization/types/WebsocketTtsClientMessageMulti.js +1 -1
- package/serialization/types/WidgetConfig.d.ts +11 -2
- package/serialization/types/WidgetConfig.js +11 -2
- package/serialization/types/{WidgetConfigAvatar.d.ts → WidgetConfigInputAvatar.d.ts} +3 -3
- package/serialization/types/{WidgetConfigAvatar.js → WidgetConfigInputAvatar.js} +2 -2
- package/serialization/types/WidgetConfigOutputAvatar.d.ts +22 -0
- package/serialization/types/WidgetConfigOutputAvatar.js +53 -0
- package/serialization/types/{WidgetConfigResponseModel.d.ts → WidgetConfigResponse.d.ts} +13 -2
- package/serialization/types/{WidgetConfigResponseModel.js → WidgetConfigResponse.js} +13 -2
- package/serialization/types/WidgetLanguagePreset.d.ts +13 -0
- package/serialization/types/WidgetLanguagePreset.js +44 -0
- package/serialization/types/WidgetLanguagePresetResponse.d.ts +14 -0
- package/serialization/types/WidgetLanguagePresetResponse.js +45 -0
- package/serialization/types/WidgetPlacement.d.ts +10 -0
- package/serialization/types/WidgetPlacement.js +41 -0
- package/serialization/types/WidgetTextContents.d.ts +32 -0
- package/serialization/types/WidgetTextContents.js +63 -0
- package/serialization/types/index.d.ts +33 -6
- package/serialization/types/index.js +33 -6
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/api/types/ExtendedSubscriptionResponseModelStatus.d.ts +0 -17
- package/api/types/SubscriptionStatus.js +0 -16
- package/dist/api/types/ExtendedSubscriptionResponseModelStatus.d.ts +0 -17
- package/dist/api/types/SubscriptionStatus.js +0 -16
- package/dist/serialization/types/ExtendedSubscriptionResponseModelStatus.d.ts +0 -10
- package/dist/serialization/types/RagIndexResponseModel.d.ts +0 -14
- package/dist/serialization/types/SubscriptionStatus.d.ts +0 -10
- package/serialization/types/ExtendedSubscriptionResponseModelStatus.d.ts +0 -10
- package/serialization/types/RagIndexResponseModel.d.ts +0 -14
- package/serialization/types/SubscriptionStatus.d.ts +0 -10
- /package/api/{types/RagIndexResponseModel.js → resources/conversationalAi/resources/agents/resources/llmUsage/client/requests/LlmUsageCalculatorRequestModel.js} +0 -0
- /package/api/{types/TtsConversationalConfig.js → resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/DocumentsDeleteRequest.js} +0 -0
- /package/api/{types/WidgetConfigAvatar.js → resources/conversationalAi/resources/llmUsage/client/requests/LlmUsageCalculatorPublicRequestModel.js} +0 -0
- /package/api/{types/WidgetConfigResponseModel.js → resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.js} +0 -0
- /package/{dist/api/types/RagIndexResponseModel.js → api/resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.js} +0 -0
- /package/{dist/api/types/TtsConversationalConfig.js → api/types/CustomLlmRequestHeadersValue.js} +0 -0
- /package/{dist/api/types/WidgetConfigAvatar.js → api/types/DialogueInput.js} +0 -0
- /package/{dist/api/types/WidgetConfigResponseModel.js → api/types/DialogueInputResponseModel.js} +0 -0
|
@@ -85,7 +85,6 @@ types:
|
|
|
85
85
|
properties:
|
|
86
86
|
id: string
|
|
87
87
|
name: string
|
|
88
|
-
prompt_injectable: boolean
|
|
89
88
|
source:
|
|
90
89
|
openapi: openapi.json
|
|
91
90
|
AddProjectResponseModel:
|
|
@@ -232,32 +231,32 @@ types:
|
|
|
232
231
|
openapi: openapi.json
|
|
233
232
|
AgentConfigOverride:
|
|
234
233
|
properties:
|
|
235
|
-
prompt:
|
|
236
|
-
type: optional<PromptAgentOverride>
|
|
237
|
-
docs: The overrides for the prompt configuration
|
|
238
234
|
first_message:
|
|
239
235
|
type: optional<string>
|
|
240
236
|
docs: >-
|
|
241
237
|
If non-empty, the first message the agent will say. If empty, the
|
|
242
|
-
agent waits for the user to start the discussion
|
|
238
|
+
agent waits for the user to start the discussion.
|
|
243
239
|
language:
|
|
244
240
|
type: optional<string>
|
|
245
|
-
docs:
|
|
241
|
+
docs: Language of the agent - used for ASR and TTS
|
|
242
|
+
prompt:
|
|
243
|
+
type: optional<PromptAgentOverride>
|
|
244
|
+
docs: The prompt for the agent
|
|
246
245
|
source:
|
|
247
246
|
openapi: openapi.json
|
|
248
247
|
AgentConfigOverrideConfig:
|
|
249
248
|
properties:
|
|
250
|
-
prompt:
|
|
251
|
-
type: optional<PromptAgentOverrideConfig>
|
|
252
|
-
docs: Overrides for the prompt configuration
|
|
253
249
|
first_message:
|
|
254
250
|
type: optional<boolean>
|
|
255
|
-
docs: Whether to allow overriding the
|
|
251
|
+
docs: Whether to allow overriding the first_message field.
|
|
256
252
|
default: false
|
|
257
253
|
language:
|
|
258
254
|
type: optional<boolean>
|
|
259
|
-
docs: Whether to allow overriding the language
|
|
255
|
+
docs: Whether to allow overriding the language field.
|
|
260
256
|
default: false
|
|
257
|
+
prompt:
|
|
258
|
+
type: optional<PromptAgentOverrideConfig>
|
|
259
|
+
docs: Configures overrides for nested fields.
|
|
261
260
|
source:
|
|
262
261
|
openapi: openapi.json
|
|
263
262
|
AgentMetadataResponseModel:
|
|
@@ -540,6 +539,7 @@ types:
|
|
|
540
539
|
- shareable_link
|
|
541
540
|
- livekit_token
|
|
542
541
|
- livekit_token_website
|
|
542
|
+
- genesys_api_key
|
|
543
543
|
source:
|
|
544
544
|
openapi: openapi.json
|
|
545
545
|
BanReasonType:
|
|
@@ -1233,8 +1233,19 @@ types:
|
|
|
1233
1233
|
properties: {}
|
|
1234
1234
|
source:
|
|
1235
1235
|
openapi: openapi.json
|
|
1236
|
+
ChapterContentBlockInputModelSubType:
|
|
1237
|
+
enum:
|
|
1238
|
+
- p
|
|
1239
|
+
- h1
|
|
1240
|
+
- h2
|
|
1241
|
+
- h3
|
|
1242
|
+
inline: true
|
|
1243
|
+
source:
|
|
1244
|
+
openapi: openapi.json
|
|
1236
1245
|
ChapterContentBlockInputModel:
|
|
1237
1246
|
properties:
|
|
1247
|
+
sub_type:
|
|
1248
|
+
type: optional<ChapterContentBlockInputModelSubType>
|
|
1238
1249
|
block_id:
|
|
1239
1250
|
type: optional<string>
|
|
1240
1251
|
nodes:
|
|
@@ -1455,6 +1466,7 @@ types:
|
|
|
1455
1466
|
- vad_score
|
|
1456
1467
|
- internal_turn_probability
|
|
1457
1468
|
- internal_tentative_agent_response
|
|
1469
|
+
- internal_native_mcp_tool_call
|
|
1458
1470
|
source:
|
|
1459
1471
|
openapi: openapi.json
|
|
1460
1472
|
ClientToolConfigInput:
|
|
@@ -1635,67 +1647,70 @@ types:
|
|
|
1635
1647
|
openapi: openapi.json
|
|
1636
1648
|
ConversationConfigClientOverrideInput:
|
|
1637
1649
|
properties:
|
|
1638
|
-
agent:
|
|
1639
|
-
type: optional<AgentConfigOverride>
|
|
1640
|
-
docs: The overrides for the agent configuration
|
|
1641
1650
|
tts:
|
|
1642
1651
|
type: optional<TtsConversationalConfigOverride>
|
|
1643
|
-
docs:
|
|
1652
|
+
docs: Configuration for conversational text to speech
|
|
1644
1653
|
conversation:
|
|
1645
1654
|
type: optional<ConversationConfigOverride>
|
|
1646
|
-
docs:
|
|
1655
|
+
docs: Configuration for conversational events
|
|
1656
|
+
agent:
|
|
1657
|
+
type: optional<AgentConfigOverride>
|
|
1658
|
+
docs: Agent specific configuration
|
|
1647
1659
|
source:
|
|
1648
1660
|
openapi: openapi.json
|
|
1649
1661
|
ConversationConfigClientOverrideOutput:
|
|
1650
1662
|
properties:
|
|
1651
|
-
agent:
|
|
1652
|
-
type: optional<AgentConfigOverride>
|
|
1653
|
-
docs: The overrides for the agent configuration
|
|
1654
1663
|
tts:
|
|
1655
1664
|
type: optional<TtsConversationalConfigOverride>
|
|
1656
|
-
docs:
|
|
1665
|
+
docs: Configuration for conversational text to speech
|
|
1657
1666
|
conversation:
|
|
1658
1667
|
type: optional<ConversationConfigOverride>
|
|
1659
|
-
docs:
|
|
1668
|
+
docs: Configuration for conversational events
|
|
1669
|
+
agent:
|
|
1670
|
+
type: optional<AgentConfigOverride>
|
|
1671
|
+
docs: Agent specific configuration
|
|
1660
1672
|
source:
|
|
1661
1673
|
openapi: openapi.json
|
|
1662
1674
|
ConversationConfigClientOverrideConfigInput:
|
|
1663
1675
|
properties:
|
|
1664
|
-
agent:
|
|
1665
|
-
type: optional<AgentConfigOverrideConfig>
|
|
1666
|
-
docs: Overrides for the agent configuration
|
|
1667
1676
|
tts:
|
|
1668
1677
|
type: optional<TtsConversationalConfigOverrideConfig>
|
|
1669
|
-
docs:
|
|
1678
|
+
docs: Configures overrides for nested fields.
|
|
1670
1679
|
conversation:
|
|
1671
1680
|
type: optional<ConversationConfigOverrideConfig>
|
|
1672
|
-
docs:
|
|
1681
|
+
docs: Configures overrides for nested fields.
|
|
1682
|
+
agent:
|
|
1683
|
+
type: optional<AgentConfigOverrideConfig>
|
|
1684
|
+
docs: Configures overrides for nested fields.
|
|
1673
1685
|
source:
|
|
1674
1686
|
openapi: openapi.json
|
|
1675
1687
|
ConversationConfigClientOverrideConfigOutput:
|
|
1676
1688
|
properties:
|
|
1677
|
-
agent:
|
|
1678
|
-
type: optional<AgentConfigOverrideConfig>
|
|
1679
|
-
docs: Overrides for the agent configuration
|
|
1680
1689
|
tts:
|
|
1681
1690
|
type: optional<TtsConversationalConfigOverrideConfig>
|
|
1682
|
-
docs:
|
|
1691
|
+
docs: Configures overrides for nested fields.
|
|
1683
1692
|
conversation:
|
|
1684
1693
|
type: optional<ConversationConfigOverrideConfig>
|
|
1685
|
-
docs:
|
|
1694
|
+
docs: Configures overrides for nested fields.
|
|
1695
|
+
agent:
|
|
1696
|
+
type: optional<AgentConfigOverrideConfig>
|
|
1697
|
+
docs: Configures overrides for nested fields.
|
|
1686
1698
|
source:
|
|
1687
1699
|
openapi: openapi.json
|
|
1688
1700
|
ConversationConfigOverride:
|
|
1689
1701
|
properties:
|
|
1690
1702
|
text_only:
|
|
1691
1703
|
type: optional<boolean>
|
|
1704
|
+
docs: >-
|
|
1705
|
+
If enabled audio will not be processed and only text will be used, use
|
|
1706
|
+
to avoid audio pricing.
|
|
1692
1707
|
source:
|
|
1693
1708
|
openapi: openapi.json
|
|
1694
1709
|
ConversationConfigOverrideConfig:
|
|
1695
1710
|
properties:
|
|
1696
1711
|
text_only:
|
|
1697
1712
|
type: optional<boolean>
|
|
1698
|
-
docs: Whether to allow overriding the
|
|
1713
|
+
docs: Whether to allow overriding the text_only field.
|
|
1699
1714
|
default: false
|
|
1700
1715
|
source:
|
|
1701
1716
|
openapi: openapi.json
|
|
@@ -1802,6 +1817,11 @@ types:
|
|
|
1802
1817
|
type: optional<string>
|
|
1803
1818
|
rag_usage:
|
|
1804
1819
|
type: optional<ConversationHistoryRagUsageCommonModel>
|
|
1820
|
+
text_only:
|
|
1821
|
+
type: optional<boolean>
|
|
1822
|
+
default: false
|
|
1823
|
+
features_usage:
|
|
1824
|
+
type: optional<FeaturesUsageCommonModel>
|
|
1805
1825
|
source:
|
|
1806
1826
|
openapi: openapi.json
|
|
1807
1827
|
ConversationHistoryRagUsageCommonModel:
|
|
@@ -1855,8 +1875,6 @@ types:
|
|
|
1855
1875
|
type: optional<UserFeedback>
|
|
1856
1876
|
llm_override:
|
|
1857
1877
|
type: optional<string>
|
|
1858
|
-
source_medium:
|
|
1859
|
-
type: optional<ConversationHistoryTranscriptCommonModelInputSourceMedium>
|
|
1860
1878
|
time_in_call_secs: integer
|
|
1861
1879
|
conversation_turn_metrics:
|
|
1862
1880
|
type: optional<ConversationTurnMetrics>
|
|
@@ -1869,6 +1887,8 @@ types:
|
|
|
1869
1887
|
default: false
|
|
1870
1888
|
original_message:
|
|
1871
1889
|
type: optional<string>
|
|
1890
|
+
source_medium:
|
|
1891
|
+
type: optional<ConversationHistoryTranscriptCommonModelInputSourceMedium>
|
|
1872
1892
|
source:
|
|
1873
1893
|
openapi: openapi.json
|
|
1874
1894
|
ConversationHistoryTranscriptCommonModelOutputRole:
|
|
@@ -1899,8 +1919,6 @@ types:
|
|
|
1899
1919
|
type: optional<UserFeedback>
|
|
1900
1920
|
llm_override:
|
|
1901
1921
|
type: optional<string>
|
|
1902
|
-
source_medium:
|
|
1903
|
-
type: optional<ConversationHistoryTranscriptCommonModelOutputSourceMedium>
|
|
1904
1922
|
time_in_call_secs: integer
|
|
1905
1923
|
conversation_turn_metrics:
|
|
1906
1924
|
type: optional<ConversationTurnMetrics>
|
|
@@ -1913,6 +1931,8 @@ types:
|
|
|
1913
1931
|
default: false
|
|
1914
1932
|
original_message:
|
|
1915
1933
|
type: optional<string>
|
|
1934
|
+
source_medium:
|
|
1935
|
+
type: optional<ConversationHistoryTranscriptCommonModelOutputSourceMedium>
|
|
1916
1936
|
source:
|
|
1917
1937
|
openapi: openapi.json
|
|
1918
1938
|
ConversationHistoryTranscriptToolCallClientDetails:
|
|
@@ -2162,6 +2182,9 @@ types:
|
|
|
2162
2182
|
expiration_time_unix_secs:
|
|
2163
2183
|
type: optional<integer>
|
|
2164
2184
|
docs: The expiration time of the token in unix seconds
|
|
2185
|
+
conversation_id:
|
|
2186
|
+
type: optional<string>
|
|
2187
|
+
docs: The ID of the conversation
|
|
2165
2188
|
purpose:
|
|
2166
2189
|
type: optional<ConversationTokenPurpose>
|
|
2167
2190
|
docs: The purpose of the token
|
|
@@ -2188,7 +2211,7 @@ types:
|
|
|
2188
2211
|
type: optional<TurnConfig>
|
|
2189
2212
|
docs: Configuration for turn detection
|
|
2190
2213
|
tts:
|
|
2191
|
-
type: optional<
|
|
2214
|
+
type: optional<TtsConversationalConfigOutput>
|
|
2192
2215
|
docs: Configuration for conversational text to speech
|
|
2193
2216
|
conversation:
|
|
2194
2217
|
type: optional<ConversationConfig>
|
|
@@ -2303,6 +2326,15 @@ types:
|
|
|
2303
2326
|
docs: Twilio Auth Token
|
|
2304
2327
|
source:
|
|
2305
2328
|
openapi: openapi.json
|
|
2329
|
+
CustomLlmRequestHeadersValue:
|
|
2330
|
+
discriminated: false
|
|
2331
|
+
union:
|
|
2332
|
+
- string
|
|
2333
|
+
- type: ConvAiSecretLocator
|
|
2334
|
+
- type: ConvAiDynamicVariable
|
|
2335
|
+
source:
|
|
2336
|
+
openapi: openapi.json
|
|
2337
|
+
inline: true
|
|
2306
2338
|
CustomLlm:
|
|
2307
2339
|
properties:
|
|
2308
2340
|
url:
|
|
@@ -2314,6 +2346,9 @@ types:
|
|
|
2314
2346
|
api_key:
|
|
2315
2347
|
type: optional<ConvAiSecretLocator>
|
|
2316
2348
|
docs: The API key for authentication
|
|
2349
|
+
request_headers:
|
|
2350
|
+
type: optional<map<string, CustomLlmRequestHeadersValue>>
|
|
2351
|
+
docs: Headers that should be included in the request
|
|
2317
2352
|
source:
|
|
2318
2353
|
openapi: openapi.json
|
|
2319
2354
|
DashboardCallSuccessChartModel:
|
|
@@ -2526,6 +2561,29 @@ types:
|
|
|
2526
2561
|
properties: {}
|
|
2527
2562
|
source:
|
|
2528
2563
|
openapi: openapi.json
|
|
2564
|
+
DialogueInput:
|
|
2565
|
+
properties:
|
|
2566
|
+
text:
|
|
2567
|
+
type: string
|
|
2568
|
+
docs: The text to be converted into speech.
|
|
2569
|
+
voice_id:
|
|
2570
|
+
type: string
|
|
2571
|
+
docs: The ID of the voice to be used for the generation.
|
|
2572
|
+
source:
|
|
2573
|
+
openapi: openapi.json
|
|
2574
|
+
DialogueInputResponseModel:
|
|
2575
|
+
properties:
|
|
2576
|
+
text:
|
|
2577
|
+
type: string
|
|
2578
|
+
docs: The text of the dialogue input line.
|
|
2579
|
+
voice_id:
|
|
2580
|
+
type: string
|
|
2581
|
+
docs: The ID of the voice used for this dialogue input line.
|
|
2582
|
+
voice_name:
|
|
2583
|
+
type: string
|
|
2584
|
+
docs: The name of the voice used for this dialogue input line.
|
|
2585
|
+
source:
|
|
2586
|
+
openapi: openapi.json
|
|
2529
2587
|
DoDubbingResponse:
|
|
2530
2588
|
properties:
|
|
2531
2589
|
dubbing_id:
|
|
@@ -2692,6 +2750,7 @@ types:
|
|
|
2692
2750
|
openapi: openapi.json
|
|
2693
2751
|
EmbedVariant:
|
|
2694
2752
|
enum:
|
|
2753
|
+
- tiny
|
|
2695
2754
|
- compact
|
|
2696
2755
|
- full
|
|
2697
2756
|
- expandable
|
|
@@ -2751,20 +2810,6 @@ types:
|
|
|
2751
2810
|
inline: true
|
|
2752
2811
|
source:
|
|
2753
2812
|
openapi: openapi.json
|
|
2754
|
-
ExtendedSubscriptionResponseModelStatus:
|
|
2755
|
-
enum:
|
|
2756
|
-
- trialing
|
|
2757
|
-
- active
|
|
2758
|
-
- incomplete
|
|
2759
|
-
- incomplete_expired
|
|
2760
|
-
- past_due
|
|
2761
|
-
- canceled
|
|
2762
|
-
- unpaid
|
|
2763
|
-
- free
|
|
2764
|
-
docs: The status of the user's subscription.
|
|
2765
|
-
inline: true
|
|
2766
|
-
source:
|
|
2767
|
-
openapi: openapi.json
|
|
2768
2813
|
ExtendedSubscriptionResponseModelBillingPeriod:
|
|
2769
2814
|
enum:
|
|
2770
2815
|
- monthly_period
|
|
@@ -2839,7 +2884,7 @@ types:
|
|
|
2839
2884
|
type: optional<ExtendedSubscriptionResponseModelCurrency>
|
|
2840
2885
|
docs: The currency of the user's subscription.
|
|
2841
2886
|
status:
|
|
2842
|
-
type:
|
|
2887
|
+
type: SubscriptionStatusType
|
|
2843
2888
|
docs: The status of the user's subscription.
|
|
2844
2889
|
billing_period:
|
|
2845
2890
|
type: optional<ExtendedSubscriptionResponseModelBillingPeriod>
|
|
@@ -2855,6 +2900,34 @@ types:
|
|
|
2855
2900
|
docs: Whether the user has open invoices.
|
|
2856
2901
|
source:
|
|
2857
2902
|
openapi: openapi.json
|
|
2903
|
+
FeatureStatusCommonModel:
|
|
2904
|
+
properties:
|
|
2905
|
+
enabled:
|
|
2906
|
+
type: optional<boolean>
|
|
2907
|
+
default: false
|
|
2908
|
+
used:
|
|
2909
|
+
type: optional<boolean>
|
|
2910
|
+
default: false
|
|
2911
|
+
source:
|
|
2912
|
+
openapi: openapi.json
|
|
2913
|
+
FeaturesUsageCommonModel:
|
|
2914
|
+
properties:
|
|
2915
|
+
language_detection:
|
|
2916
|
+
type: optional<FeatureStatusCommonModel>
|
|
2917
|
+
transfer_to_agent:
|
|
2918
|
+
type: optional<FeatureStatusCommonModel>
|
|
2919
|
+
transfer_to_number:
|
|
2920
|
+
type: optional<FeatureStatusCommonModel>
|
|
2921
|
+
multivoice:
|
|
2922
|
+
type: optional<FeatureStatusCommonModel>
|
|
2923
|
+
pii_zrm_workspace:
|
|
2924
|
+
type: optional<boolean>
|
|
2925
|
+
default: false
|
|
2926
|
+
pii_zrm_agent:
|
|
2927
|
+
type: optional<boolean>
|
|
2928
|
+
default: false
|
|
2929
|
+
source:
|
|
2930
|
+
openapi: openapi.json
|
|
2858
2931
|
FeedbackItem:
|
|
2859
2932
|
properties:
|
|
2860
2933
|
thumbs_up:
|
|
@@ -2994,7 +3067,12 @@ types:
|
|
|
2994
3067
|
properties:
|
|
2995
3068
|
agent_id: string
|
|
2996
3069
|
widget_config:
|
|
2997
|
-
type:
|
|
3070
|
+
type: WidgetConfigResponse
|
|
3071
|
+
source:
|
|
3072
|
+
openapi: openapi.json
|
|
3073
|
+
GetAgentKnowledgebaseSizeResponseModel:
|
|
3074
|
+
properties:
|
|
3075
|
+
number_of_pages: double
|
|
2998
3076
|
source:
|
|
2999
3077
|
openapi: openapi.json
|
|
3000
3078
|
GetAgentLinkResponseModel:
|
|
@@ -3176,7 +3254,8 @@ types:
|
|
|
3176
3254
|
name: string
|
|
3177
3255
|
metadata:
|
|
3178
3256
|
type: KnowledgeBaseDocumentMetadataResponseModel
|
|
3179
|
-
|
|
3257
|
+
supported_usages:
|
|
3258
|
+
type: list<DocumentUsageModeEnum>
|
|
3180
3259
|
access_info:
|
|
3181
3260
|
type: ResourceAccessInfo
|
|
3182
3261
|
extracted_inner_html: string
|
|
@@ -3219,7 +3298,8 @@ types:
|
|
|
3219
3298
|
name: string
|
|
3220
3299
|
metadata:
|
|
3221
3300
|
type: KnowledgeBaseDocumentMetadataResponseModel
|
|
3222
|
-
|
|
3301
|
+
supported_usages:
|
|
3302
|
+
type: list<DocumentUsageModeEnum>
|
|
3223
3303
|
access_info:
|
|
3224
3304
|
type: ResourceAccessInfo
|
|
3225
3305
|
dependent_agents:
|
|
@@ -3242,7 +3322,8 @@ types:
|
|
|
3242
3322
|
name: string
|
|
3243
3323
|
metadata:
|
|
3244
3324
|
type: KnowledgeBaseDocumentMetadataResponseModel
|
|
3245
|
-
|
|
3325
|
+
supported_usages:
|
|
3326
|
+
type: list<DocumentUsageModeEnum>
|
|
3246
3327
|
access_info:
|
|
3247
3328
|
type: ResourceAccessInfo
|
|
3248
3329
|
dependent_agents:
|
|
@@ -3265,7 +3346,8 @@ types:
|
|
|
3265
3346
|
name: string
|
|
3266
3347
|
metadata:
|
|
3267
3348
|
type: KnowledgeBaseDocumentMetadataResponseModel
|
|
3268
|
-
|
|
3349
|
+
supported_usages:
|
|
3350
|
+
type: list<DocumentUsageModeEnum>
|
|
3269
3351
|
access_info:
|
|
3270
3352
|
type: ResourceAccessInfo
|
|
3271
3353
|
dependent_agents:
|
|
@@ -3279,7 +3361,8 @@ types:
|
|
|
3279
3361
|
name: string
|
|
3280
3362
|
metadata:
|
|
3281
3363
|
type: KnowledgeBaseDocumentMetadataResponseModel
|
|
3282
|
-
|
|
3364
|
+
supported_usages:
|
|
3365
|
+
type: list<DocumentUsageModeEnum>
|
|
3283
3366
|
access_info:
|
|
3284
3367
|
type: ResourceAccessInfo
|
|
3285
3368
|
extracted_inner_html: string
|
|
@@ -3291,7 +3374,8 @@ types:
|
|
|
3291
3374
|
name: string
|
|
3292
3375
|
metadata:
|
|
3293
3376
|
type: KnowledgeBaseDocumentMetadataResponseModel
|
|
3294
|
-
|
|
3377
|
+
supported_usages:
|
|
3378
|
+
type: list<DocumentUsageModeEnum>
|
|
3295
3379
|
access_info:
|
|
3296
3380
|
type: ResourceAccessInfo
|
|
3297
3381
|
extracted_inner_html: string
|
|
@@ -3406,6 +3490,14 @@ types:
|
|
|
3406
3490
|
docs: The description of the pronunciation dictionary.
|
|
3407
3491
|
source:
|
|
3408
3492
|
openapi: openapi.json
|
|
3493
|
+
GetSharedSoundGenerationsResponseModel:
|
|
3494
|
+
properties:
|
|
3495
|
+
shared_sound_generations:
|
|
3496
|
+
type: list<SharedSoundGenerationResponseModel>
|
|
3497
|
+
last_sort_id: optional<string>
|
|
3498
|
+
has_more: boolean
|
|
3499
|
+
source:
|
|
3500
|
+
openapi: openapi.json
|
|
3409
3501
|
GetSpeechHistoryResponse:
|
|
3410
3502
|
properties:
|
|
3411
3503
|
history:
|
|
@@ -3567,14 +3659,14 @@ types:
|
|
|
3567
3659
|
name: Gemini15Pro
|
|
3568
3660
|
- value: gemini-1.5-flash
|
|
3569
3661
|
name: Gemini15Flash
|
|
3570
|
-
- value: gemini-2.0-flash
|
|
3571
|
-
name:
|
|
3662
|
+
- value: gemini-2.0-flash
|
|
3663
|
+
name: Gemini20Flash
|
|
3572
3664
|
- value: gemini-2.0-flash-lite
|
|
3573
3665
|
name: Gemini20FlashLite
|
|
3574
3666
|
- value: gemini-2.5-flash
|
|
3575
3667
|
name: Gemini25Flash
|
|
3576
|
-
- value:
|
|
3577
|
-
name:
|
|
3668
|
+
- value: claude-sonnet-4
|
|
3669
|
+
name: ClaudeSonnet4
|
|
3578
3670
|
- value: claude-3-7-sonnet
|
|
3579
3671
|
name: Claude37Sonnet
|
|
3580
3672
|
- value: claude-3-5-sonnet
|
|
@@ -3587,6 +3679,56 @@ types:
|
|
|
3587
3679
|
name: GrokBeta
|
|
3588
3680
|
- value: custom-llm
|
|
3589
3681
|
name: CustomLlm
|
|
3682
|
+
- value: gemini-2.5-flash-preview-05-20
|
|
3683
|
+
name: Gemini25FlashPreview0520
|
|
3684
|
+
- value: gemini-2.5-flash-preview-04-17
|
|
3685
|
+
name: Gemini25FlashPreview0417
|
|
3686
|
+
- value: gemini-2.0-flash-lite-001
|
|
3687
|
+
name: Gemini20FlashLite001
|
|
3688
|
+
- value: gemini-2.0-flash-001
|
|
3689
|
+
name: Gemini20Flash001
|
|
3690
|
+
- value: gemini-1.5-flash-002
|
|
3691
|
+
name: Gemini15Flash002
|
|
3692
|
+
- value: gemini-1.5-flash-001
|
|
3693
|
+
name: Gemini15Flash001
|
|
3694
|
+
- value: gemini-1.5-pro-002
|
|
3695
|
+
name: Gemini15Pro002
|
|
3696
|
+
- value: gemini-1.5-pro-001
|
|
3697
|
+
name: Gemini15Pro001
|
|
3698
|
+
- value: claude-sonnet-4@20250514
|
|
3699
|
+
name: ClaudeSonnet420250514
|
|
3700
|
+
- value: claude-3-7-sonnet@20250219
|
|
3701
|
+
name: Claude37Sonnet20250219
|
|
3702
|
+
- value: claude-3-5-sonnet@20240620
|
|
3703
|
+
name: Claude35Sonnet20240620
|
|
3704
|
+
- value: claude-3-5-sonnet-v2@20241022
|
|
3705
|
+
name: Claude35SonnetV220241022
|
|
3706
|
+
- value: claude-3-haiku@20240307
|
|
3707
|
+
name: Claude3Haiku20240307
|
|
3708
|
+
- value: gpt-4.1-2025-04-14
|
|
3709
|
+
name: Gpt4120250414
|
|
3710
|
+
- value: gpt-4.1-mini-2025-04-14
|
|
3711
|
+
name: Gpt41Mini20250414
|
|
3712
|
+
- value: gpt-4.1-nano-2025-04-14
|
|
3713
|
+
name: Gpt41Nano20250414
|
|
3714
|
+
- value: gpt-4o-mini-2024-07-18
|
|
3715
|
+
name: Gpt4OMini20240718
|
|
3716
|
+
- value: gpt-4o-2024-11-20
|
|
3717
|
+
name: Gpt4O20241120
|
|
3718
|
+
- value: gpt-4o-2024-08-06
|
|
3719
|
+
name: Gpt4O20240806
|
|
3720
|
+
- value: gpt-4o-2024-05-13
|
|
3721
|
+
name: Gpt4O20240513
|
|
3722
|
+
- value: gpt-4-0613
|
|
3723
|
+
name: Gpt40613
|
|
3724
|
+
- value: gpt-4-0314
|
|
3725
|
+
name: Gpt40314
|
|
3726
|
+
- value: gpt-4-turbo-2024-04-09
|
|
3727
|
+
name: Gpt4Turbo20240409
|
|
3728
|
+
- value: gpt-3.5-turbo-0125
|
|
3729
|
+
name: Gpt35Turbo0125
|
|
3730
|
+
- value: gpt-3.5-turbo-1106
|
|
3731
|
+
name: Gpt35Turbo1106
|
|
3590
3732
|
source:
|
|
3591
3733
|
openapi: openapi.json
|
|
3592
3734
|
LlmCategoryUsage:
|
|
@@ -3631,6 +3773,19 @@ types:
|
|
|
3631
3773
|
type: optional<map<string, LlmInputOutputTokensUsage>>
|
|
3632
3774
|
source:
|
|
3633
3775
|
openapi: openapi.json
|
|
3776
|
+
LlmUsageCalculatorLlmResponseModel:
|
|
3777
|
+
properties:
|
|
3778
|
+
llm:
|
|
3779
|
+
type: Llm
|
|
3780
|
+
price_per_minute: double
|
|
3781
|
+
source:
|
|
3782
|
+
openapi: openapi.json
|
|
3783
|
+
LlmUsageCalculatorResponseModel:
|
|
3784
|
+
properties:
|
|
3785
|
+
llm_prices:
|
|
3786
|
+
type: list<LlmUsageCalculatorLlmResponseModel>
|
|
3787
|
+
source:
|
|
3788
|
+
openapi: openapi.json
|
|
3634
3789
|
LanguageAddedResponse:
|
|
3635
3790
|
properties:
|
|
3636
3791
|
version: integer
|
|
@@ -3822,6 +3977,14 @@ types:
|
|
|
3822
3977
|
docs: The constant value of the property
|
|
3823
3978
|
source:
|
|
3824
3979
|
openapi: openapi.json
|
|
3980
|
+
McpApprovalRequiredModel:
|
|
3981
|
+
enum:
|
|
3982
|
+
- user_approval_always_given
|
|
3983
|
+
- user_approval_never_given
|
|
3984
|
+
- user_approval_required_per_tool
|
|
3985
|
+
docs: Defines the approval model for an MCP tool
|
|
3986
|
+
source:
|
|
3987
|
+
openapi: openapi.json
|
|
3825
3988
|
McpToolConfigInput:
|
|
3826
3989
|
docs: A MCP tool is a tool that is used to call a MCP server
|
|
3827
3990
|
properties:
|
|
@@ -3850,6 +4013,11 @@ types:
|
|
|
3850
4013
|
mcp_server_id:
|
|
3851
4014
|
type: string
|
|
3852
4015
|
docs: The id of the MCP server to call
|
|
4016
|
+
approval_mode:
|
|
4017
|
+
type: optional<McpApprovalRequiredModel>
|
|
4018
|
+
docs: >-
|
|
4019
|
+
If set to approved, the tool will be pre-approved and not require user
|
|
4020
|
+
approval before executing
|
|
3853
4021
|
source:
|
|
3854
4022
|
openapi: openapi.json
|
|
3855
4023
|
McpToolConfigOutput:
|
|
@@ -3880,6 +4048,11 @@ types:
|
|
|
3880
4048
|
mcp_server_id:
|
|
3881
4049
|
type: string
|
|
3882
4050
|
docs: The id of the MCP server to call
|
|
4051
|
+
approval_mode:
|
|
4052
|
+
type: optional<McpApprovalRequiredModel>
|
|
4053
|
+
docs: >-
|
|
4054
|
+
If set to approved, the tool will be pre-approved and not require user
|
|
4055
|
+
approval before executing
|
|
3883
4056
|
source:
|
|
3884
4057
|
openapi: openapi.json
|
|
3885
4058
|
ManualVerificationFileResponse:
|
|
@@ -4001,6 +4174,23 @@ types:
|
|
|
4001
4174
|
docs: The concurrency group for the model.
|
|
4002
4175
|
source:
|
|
4003
4176
|
openapi: openapi.json
|
|
4177
|
+
ModelSettingsResponseModel:
|
|
4178
|
+
properties:
|
|
4179
|
+
stability:
|
|
4180
|
+
type: optional<double>
|
|
4181
|
+
docs: >-
|
|
4182
|
+
Determines how stable the voice is and the randomness between each
|
|
4183
|
+
generation. Lower values introduce broader emotional range for the
|
|
4184
|
+
voice. Higher values can result in a monotonous voice with limited
|
|
4185
|
+
emotion.
|
|
4186
|
+
use_speaker_boost:
|
|
4187
|
+
type: optional<boolean>
|
|
4188
|
+
docs: >-
|
|
4189
|
+
This setting boosts the similarity to the original speaker. Using this
|
|
4190
|
+
setting requires a slightly higher computational load, which in turn
|
|
4191
|
+
increases latency.
|
|
4192
|
+
source:
|
|
4193
|
+
openapi: openapi.json
|
|
4004
4194
|
ModerationStatusResponseModelSafetyStatus:
|
|
4005
4195
|
enum:
|
|
4006
4196
|
- appeal_approved
|
|
@@ -4047,6 +4237,76 @@ types:
|
|
|
4047
4237
|
docs: Whether the user is on the watchlist.
|
|
4048
4238
|
source:
|
|
4049
4239
|
openapi: openapi.json
|
|
4240
|
+
NativeMcpToolConfigInput:
|
|
4241
|
+
docs: A Native MCP tool is a tool that is used to call a Native MCP server
|
|
4242
|
+
properties:
|
|
4243
|
+
id:
|
|
4244
|
+
type: optional<string>
|
|
4245
|
+
default: ''
|
|
4246
|
+
name:
|
|
4247
|
+
type: string
|
|
4248
|
+
validation:
|
|
4249
|
+
pattern: ^[a-zA-Z0-9_-]{1,64}$
|
|
4250
|
+
minLength: 0
|
|
4251
|
+
description:
|
|
4252
|
+
type: string
|
|
4253
|
+
validation:
|
|
4254
|
+
minLength: 0
|
|
4255
|
+
response_timeout_secs:
|
|
4256
|
+
type: optional<integer>
|
|
4257
|
+
docs: The maximum time in seconds to wait for the tool call to complete.
|
|
4258
|
+
default: 20
|
|
4259
|
+
parameters:
|
|
4260
|
+
type: optional<ObjectJsonSchemaPropertyInput>
|
|
4261
|
+
docs: Schema for any parameters the LLM needs to provide to the MCP tool.
|
|
4262
|
+
mcp_tool_name:
|
|
4263
|
+
type: string
|
|
4264
|
+
docs: The name of the MCP tool to call
|
|
4265
|
+
mcp_server_id:
|
|
4266
|
+
type: string
|
|
4267
|
+
docs: The id of the MCP server to call
|
|
4268
|
+
approval_mode:
|
|
4269
|
+
type: optional<McpApprovalRequiredModel>
|
|
4270
|
+
docs: >-
|
|
4271
|
+
If set to always accept, the tool will be pre-approved and not require
|
|
4272
|
+
user approval before executing
|
|
4273
|
+
source:
|
|
4274
|
+
openapi: openapi.json
|
|
4275
|
+
NativeMcpToolConfigOutput:
|
|
4276
|
+
docs: A Native MCP tool is a tool that is used to call a Native MCP server
|
|
4277
|
+
properties:
|
|
4278
|
+
id:
|
|
4279
|
+
type: optional<string>
|
|
4280
|
+
default: ''
|
|
4281
|
+
name:
|
|
4282
|
+
type: string
|
|
4283
|
+
validation:
|
|
4284
|
+
pattern: ^[a-zA-Z0-9_-]{1,64}$
|
|
4285
|
+
minLength: 0
|
|
4286
|
+
description:
|
|
4287
|
+
type: string
|
|
4288
|
+
validation:
|
|
4289
|
+
minLength: 0
|
|
4290
|
+
response_timeout_secs:
|
|
4291
|
+
type: optional<integer>
|
|
4292
|
+
docs: The maximum time in seconds to wait for the tool call to complete.
|
|
4293
|
+
default: 20
|
|
4294
|
+
parameters:
|
|
4295
|
+
type: optional<ObjectJsonSchemaPropertyOutput>
|
|
4296
|
+
docs: Schema for any parameters the LLM needs to provide to the MCP tool.
|
|
4297
|
+
mcp_tool_name:
|
|
4298
|
+
type: string
|
|
4299
|
+
docs: The name of the MCP tool to call
|
|
4300
|
+
mcp_server_id:
|
|
4301
|
+
type: string
|
|
4302
|
+
docs: The id of the MCP server to call
|
|
4303
|
+
approval_mode:
|
|
4304
|
+
type: optional<McpApprovalRequiredModel>
|
|
4305
|
+
docs: >-
|
|
4306
|
+
If set to always accept, the tool will be pre-approved and not require
|
|
4307
|
+
user approval before executing
|
|
4308
|
+
source:
|
|
4309
|
+
openapi: openapi.json
|
|
4050
4310
|
ObjectJsonSchemaPropertyInputPropertiesValue:
|
|
4051
4311
|
discriminated: false
|
|
4052
4312
|
union:
|
|
@@ -4653,6 +4913,8 @@ types:
|
|
|
4653
4913
|
type: ClientToolConfigInput
|
|
4654
4914
|
mcp:
|
|
4655
4915
|
type: McpToolConfigInput
|
|
4916
|
+
native_mcp:
|
|
4917
|
+
type: NativeMcpToolConfigInput
|
|
4656
4918
|
system:
|
|
4657
4919
|
type: SystemToolConfigInput
|
|
4658
4920
|
webhook:
|
|
@@ -4687,6 +4949,9 @@ types:
|
|
|
4687
4949
|
mcp_server_ids:
|
|
4688
4950
|
type: optional<list<string>>
|
|
4689
4951
|
docs: A list of MCP server ids to be used by the agent
|
|
4952
|
+
native_mcp_server_ids:
|
|
4953
|
+
type: optional<list<string>>
|
|
4954
|
+
docs: A list of Native MCP server ids to be used by the agent
|
|
4690
4955
|
knowledge_base:
|
|
4691
4956
|
type: optional<list<KnowledgeBaseLocator>>
|
|
4692
4957
|
docs: A list of knowledge bases to be used by the agent
|
|
@@ -4710,6 +4975,8 @@ types:
|
|
|
4710
4975
|
type: ClientToolConfigOutput
|
|
4711
4976
|
mcp:
|
|
4712
4977
|
type: McpToolConfigOutput
|
|
4978
|
+
native_mcp:
|
|
4979
|
+
type: NativeMcpToolConfigOutput
|
|
4713
4980
|
system:
|
|
4714
4981
|
type: SystemToolConfigOutput
|
|
4715
4982
|
webhook:
|
|
@@ -4725,6 +4992,8 @@ types:
|
|
|
4725
4992
|
type: ClientToolConfigInput
|
|
4726
4993
|
mcp:
|
|
4727
4994
|
type: McpToolConfigInput
|
|
4995
|
+
native_mcp:
|
|
4996
|
+
type: NativeMcpToolConfigInput
|
|
4728
4997
|
system:
|
|
4729
4998
|
type: SystemToolConfigInput
|
|
4730
4999
|
webhook:
|
|
@@ -4759,6 +5028,9 @@ types:
|
|
|
4759
5028
|
mcp_server_ids:
|
|
4760
5029
|
type: optional<list<string>>
|
|
4761
5030
|
docs: A list of MCP server ids to be used by the agent
|
|
5031
|
+
native_mcp_server_ids:
|
|
5032
|
+
type: optional<list<string>>
|
|
5033
|
+
docs: A list of Native MCP server ids to be used by the agent
|
|
4762
5034
|
knowledge_base:
|
|
4763
5035
|
type: optional<list<KnowledgeBaseLocator>>
|
|
4764
5036
|
docs: A list of knowledge bases to be used by the agent
|
|
@@ -4779,17 +5051,14 @@ types:
|
|
|
4779
5051
|
properties:
|
|
4780
5052
|
prompt:
|
|
4781
5053
|
type: optional<string>
|
|
4782
|
-
docs:
|
|
4783
|
-
The initial system message that defines the agent, e.g. “You are a
|
|
4784
|
-
German language teacher named Laura.”
|
|
4785
|
-
default: ''
|
|
5054
|
+
docs: The prompt for the agent
|
|
4786
5055
|
source:
|
|
4787
5056
|
openapi: openapi.json
|
|
4788
5057
|
PromptAgentOverrideConfig:
|
|
4789
5058
|
properties:
|
|
4790
5059
|
prompt:
|
|
4791
5060
|
type: optional<boolean>
|
|
4792
|
-
docs: Whether to allow prompt
|
|
5061
|
+
docs: Whether to allow overriding the prompt field.
|
|
4793
5062
|
default: false
|
|
4794
5063
|
source:
|
|
4795
5064
|
openapi: openapi.json
|
|
@@ -4919,11 +5188,42 @@ types:
|
|
|
4919
5188
|
type: optional<list<string>>
|
|
4920
5189
|
source:
|
|
4921
5190
|
openapi: openapi.json
|
|
4922
|
-
|
|
5191
|
+
RagDocumentIndexResponseModel:
|
|
4923
5192
|
properties:
|
|
5193
|
+
id: string
|
|
5194
|
+
model:
|
|
5195
|
+
type: EmbeddingModelEnum
|
|
4924
5196
|
status:
|
|
4925
5197
|
type: RagIndexStatus
|
|
4926
5198
|
progress_percentage: double
|
|
5199
|
+
document_model_index_usage:
|
|
5200
|
+
type: RagDocumentIndexUsage
|
|
5201
|
+
source:
|
|
5202
|
+
openapi: openapi.json
|
|
5203
|
+
RagDocumentIndexUsage:
|
|
5204
|
+
properties:
|
|
5205
|
+
used_bytes: integer
|
|
5206
|
+
source:
|
|
5207
|
+
openapi: openapi.json
|
|
5208
|
+
RagDocumentIndexesResponseModel:
|
|
5209
|
+
properties:
|
|
5210
|
+
indexes:
|
|
5211
|
+
type: list<RagDocumentIndexResponseModel>
|
|
5212
|
+
source:
|
|
5213
|
+
openapi: openapi.json
|
|
5214
|
+
RagIndexOverviewEmbeddingModelResponseModel:
|
|
5215
|
+
properties:
|
|
5216
|
+
model:
|
|
5217
|
+
type: EmbeddingModelEnum
|
|
5218
|
+
used_bytes: integer
|
|
5219
|
+
source:
|
|
5220
|
+
openapi: openapi.json
|
|
5221
|
+
RagIndexOverviewResponseModel:
|
|
5222
|
+
properties:
|
|
5223
|
+
total_used_bytes: integer
|
|
5224
|
+
total_max_bytes: integer
|
|
5225
|
+
models:
|
|
5226
|
+
type: list<RagIndexOverviewEmbeddingModelResponseModel>
|
|
4927
5227
|
source:
|
|
4928
5228
|
openapi: openapi.json
|
|
4929
5229
|
RagIndexStatus:
|
|
@@ -4932,6 +5232,8 @@ types:
|
|
|
4932
5232
|
- processing
|
|
4933
5233
|
- failed
|
|
4934
5234
|
- succeeded
|
|
5235
|
+
- rag_limit_exceeded
|
|
5236
|
+
- document_too_small
|
|
4935
5237
|
source:
|
|
4936
5238
|
openapi: openapi.json
|
|
4937
5239
|
RagChunkMetadata:
|
|
@@ -4956,6 +5258,15 @@ types:
|
|
|
4956
5258
|
type: optional<integer>
|
|
4957
5259
|
docs: Maximum total length of document chunks retrieved from RAG.
|
|
4958
5260
|
default: 50000
|
|
5261
|
+
max_retrieved_rag_chunks_count:
|
|
5262
|
+
type: optional<integer>
|
|
5263
|
+
docs: >-
|
|
5264
|
+
Maximum number of RAG document chunks to initially retrieve from the
|
|
5265
|
+
vector store. These are then further filtered by vector distance and
|
|
5266
|
+
total length.
|
|
5267
|
+
default: 20
|
|
5268
|
+
validation:
|
|
5269
|
+
max: 20
|
|
4959
5270
|
source:
|
|
4960
5271
|
openapi: openapi.json
|
|
4961
5272
|
RagRetrievalInfo:
|
|
@@ -5316,6 +5627,23 @@ types:
|
|
|
5316
5627
|
'key').
|
|
5317
5628
|
source:
|
|
5318
5629
|
openapi: openapi.json
|
|
5630
|
+
SharedSoundGenerationResponseModel:
|
|
5631
|
+
properties:
|
|
5632
|
+
public_user_id: string
|
|
5633
|
+
history_item_id: string
|
|
5634
|
+
generation_id: string
|
|
5635
|
+
text: string
|
|
5636
|
+
category: string
|
|
5637
|
+
labels:
|
|
5638
|
+
type: map<string, string>
|
|
5639
|
+
purchased_count: integer
|
|
5640
|
+
like_count: integer
|
|
5641
|
+
featured: boolean
|
|
5642
|
+
preview_url: string
|
|
5643
|
+
purchased: boolean
|
|
5644
|
+
icon_url: string
|
|
5645
|
+
source:
|
|
5646
|
+
openapi: openapi.json
|
|
5319
5647
|
SimilarVoiceCategory:
|
|
5320
5648
|
enum:
|
|
5321
5649
|
- premade
|
|
@@ -5344,6 +5672,32 @@ types:
|
|
|
5344
5672
|
type: list<SimilarVoice>
|
|
5345
5673
|
source:
|
|
5346
5674
|
openapi: openapi.json
|
|
5675
|
+
SkipTurnToolConfig:
|
|
5676
|
+
docs: >-
|
|
5677
|
+
Allows the agent to explicitly skip its turn.
|
|
5678
|
+
|
|
5679
|
+
|
|
5680
|
+
This tool should be invoked by the LLM when the user indicates they would
|
|
5681
|
+
like
|
|
5682
|
+
|
|
5683
|
+
to think or take a short pause before continuing the conversation—e.g.
|
|
5684
|
+
when
|
|
5685
|
+
|
|
5686
|
+
they say: "Give me a second", "Let me think", or "One moment please".
|
|
5687
|
+
After
|
|
5688
|
+
|
|
5689
|
+
calling this tool, the assistant should not speak until the user speaks
|
|
5690
|
+
|
|
5691
|
+
again, or another normal turn-taking condition is met. The tool itself
|
|
5692
|
+
has
|
|
5693
|
+
|
|
5694
|
+
no parameters and performs no side-effects other than informing the
|
|
5695
|
+
backend
|
|
5696
|
+
|
|
5697
|
+
that the current turn generation is complete.
|
|
5698
|
+
properties: {}
|
|
5699
|
+
source:
|
|
5700
|
+
openapi: openapi.json
|
|
5347
5701
|
SpeakerAudioResponseModel:
|
|
5348
5702
|
properties:
|
|
5349
5703
|
audio_base_64:
|
|
@@ -5457,13 +5811,13 @@ types:
|
|
|
5457
5811
|
type: optional<string>
|
|
5458
5812
|
docs: The ID of the request.
|
|
5459
5813
|
voice_id:
|
|
5460
|
-
type: string
|
|
5814
|
+
type: optional<string>
|
|
5461
5815
|
docs: The ID of the voice used.
|
|
5462
5816
|
model_id:
|
|
5463
5817
|
type: optional<string>
|
|
5464
5818
|
docs: The ID of the model.
|
|
5465
5819
|
voice_name:
|
|
5466
|
-
type: string
|
|
5820
|
+
type: optional<string>
|
|
5467
5821
|
docs: The name of the voice.
|
|
5468
5822
|
voice_category:
|
|
5469
5823
|
type: optional<SpeechHistoryItemResponseModelVoiceCategory>
|
|
@@ -5471,7 +5825,7 @@ types:
|
|
|
5471
5825
|
The category of the voice. Either 'premade', 'cloned', 'generated' or
|
|
5472
5826
|
'professional'.
|
|
5473
5827
|
text:
|
|
5474
|
-
type: string
|
|
5828
|
+
type: optional<string>
|
|
5475
5829
|
docs: The text used to generate the audio item.
|
|
5476
5830
|
date_unix:
|
|
5477
5831
|
type: integer
|
|
@@ -5506,6 +5860,12 @@ types:
|
|
|
5506
5860
|
alignments:
|
|
5507
5861
|
type: optional<HistoryAlignmentsResponseModel>
|
|
5508
5862
|
docs: The alignments of the history item.
|
|
5863
|
+
dialogue:
|
|
5864
|
+
type: optional<list<DialogueInputResponseModel>>
|
|
5865
|
+
docs: >-
|
|
5866
|
+
The dialogue (voice and text pairs) used to generate the audio item.
|
|
5867
|
+
If this is set then the top level `text` and `voice_id` fields will be
|
|
5868
|
+
empty.
|
|
5509
5869
|
source:
|
|
5510
5870
|
openapi: openapi.json
|
|
5511
5871
|
SpeechToTextCharacterResponseModel:
|
|
@@ -5678,20 +6038,6 @@ types:
|
|
|
5678
6038
|
inline: true
|
|
5679
6039
|
source:
|
|
5680
6040
|
openapi: openapi.json
|
|
5681
|
-
SubscriptionStatus:
|
|
5682
|
-
enum:
|
|
5683
|
-
- trialing
|
|
5684
|
-
- active
|
|
5685
|
-
- incomplete
|
|
5686
|
-
- incomplete_expired
|
|
5687
|
-
- past_due
|
|
5688
|
-
- canceled
|
|
5689
|
-
- unpaid
|
|
5690
|
-
- free
|
|
5691
|
-
docs: The status of the user's subscription.
|
|
5692
|
-
inline: true
|
|
5693
|
-
source:
|
|
5694
|
-
openapi: openapi.json
|
|
5695
6041
|
SubscriptionResponseModelBillingPeriod:
|
|
5696
6042
|
enum:
|
|
5697
6043
|
- monthly_period
|
|
@@ -5766,7 +6112,7 @@ types:
|
|
|
5766
6112
|
type: optional<SubscriptionResponseModelCurrency>
|
|
5767
6113
|
docs: The currency of the user's subscription.
|
|
5768
6114
|
status:
|
|
5769
|
-
type:
|
|
6115
|
+
type: SubscriptionStatusType
|
|
5770
6116
|
docs: The status of the user's subscription.
|
|
5771
6117
|
billing_period:
|
|
5772
6118
|
type: optional<SubscriptionResponseModelBillingPeriod>
|
|
@@ -5776,6 +6122,19 @@ types:
|
|
|
5776
6122
|
docs: The character refresh period of the user's subscription.
|
|
5777
6123
|
source:
|
|
5778
6124
|
openapi: openapi.json
|
|
6125
|
+
SubscriptionStatusType:
|
|
6126
|
+
enum:
|
|
6127
|
+
- trialing
|
|
6128
|
+
- active
|
|
6129
|
+
- incomplete
|
|
6130
|
+
- incomplete_expired
|
|
6131
|
+
- past_due
|
|
6132
|
+
- canceled
|
|
6133
|
+
- unpaid
|
|
6134
|
+
- free
|
|
6135
|
+
- free_disabled
|
|
6136
|
+
source:
|
|
6137
|
+
openapi: openapi.json
|
|
5779
6138
|
SubscriptionUsageResponseModel:
|
|
5780
6139
|
properties:
|
|
5781
6140
|
rollover_credits_quota:
|
|
@@ -5804,6 +6163,24 @@ types:
|
|
|
5804
6163
|
docs: The actual reported credits.
|
|
5805
6164
|
source:
|
|
5806
6165
|
openapi: openapi.json
|
|
6166
|
+
SupportedVoice:
|
|
6167
|
+
properties:
|
|
6168
|
+
label:
|
|
6169
|
+
type: string
|
|
6170
|
+
validation:
|
|
6171
|
+
minLength: 1
|
|
6172
|
+
voice_id:
|
|
6173
|
+
type: string
|
|
6174
|
+
validation:
|
|
6175
|
+
minLength: 1
|
|
6176
|
+
description:
|
|
6177
|
+
type: optional<string>
|
|
6178
|
+
language:
|
|
6179
|
+
type: optional<string>
|
|
6180
|
+
model_family:
|
|
6181
|
+
type: optional<TtsModelFamily>
|
|
6182
|
+
source:
|
|
6183
|
+
openapi: openapi.json
|
|
5807
6184
|
SystemToolConfigInputParams:
|
|
5808
6185
|
discriminant: system_tool_type
|
|
5809
6186
|
base-properties: {}
|
|
@@ -5812,6 +6189,8 @@ types:
|
|
|
5812
6189
|
type: EndCallToolConfig
|
|
5813
6190
|
language_detection:
|
|
5814
6191
|
type: LanguageDetectionToolConfig
|
|
6192
|
+
skip_turn:
|
|
6193
|
+
type: SkipTurnToolConfig
|
|
5815
6194
|
transfer_to_agent:
|
|
5816
6195
|
type: TransferToAgentToolConfig
|
|
5817
6196
|
transfer_to_number:
|
|
@@ -5850,6 +6229,8 @@ types:
|
|
|
5850
6229
|
type: EndCallToolConfig
|
|
5851
6230
|
language_detection:
|
|
5852
6231
|
type: LanguageDetectionToolConfig
|
|
6232
|
+
skip_turn:
|
|
6233
|
+
type: SkipTurnToolConfig
|
|
5853
6234
|
transfer_to_agent:
|
|
5854
6235
|
type: TransferToAgentToolConfig
|
|
5855
6236
|
transfer_to_number:
|
|
@@ -5880,7 +6261,53 @@ types:
|
|
|
5880
6261
|
type: SystemToolConfigOutputParams
|
|
5881
6262
|
source:
|
|
5882
6263
|
openapi: openapi.json
|
|
5883
|
-
|
|
6264
|
+
TtsConversationalConfigInput:
|
|
6265
|
+
properties:
|
|
6266
|
+
model_id:
|
|
6267
|
+
type: optional<TtsConversationalModel>
|
|
6268
|
+
docs: The model to use for TTS
|
|
6269
|
+
voice_id:
|
|
6270
|
+
type: optional<string>
|
|
6271
|
+
docs: The voice ID to use for TTS
|
|
6272
|
+
default: cjVigY5qzO86Huf0OWal
|
|
6273
|
+
validation:
|
|
6274
|
+
minLength: 0
|
|
6275
|
+
supported_voices:
|
|
6276
|
+
type: optional<list<SupportedVoice>>
|
|
6277
|
+
docs: Additional supported voices for the agent
|
|
6278
|
+
agent_output_audio_format:
|
|
6279
|
+
type: optional<TtsOutputFormat>
|
|
6280
|
+
docs: The audio format to use for TTS
|
|
6281
|
+
optimize_streaming_latency:
|
|
6282
|
+
type: optional<TtsOptimizeStreamingLatency>
|
|
6283
|
+
docs: The optimization for streaming latency
|
|
6284
|
+
stability:
|
|
6285
|
+
type: optional<double>
|
|
6286
|
+
docs: The stability of generated speech
|
|
6287
|
+
default: 0.5
|
|
6288
|
+
validation:
|
|
6289
|
+
min: 0
|
|
6290
|
+
max: 1
|
|
6291
|
+
speed:
|
|
6292
|
+
type: optional<double>
|
|
6293
|
+
docs: The speed of generated speech
|
|
6294
|
+
default: 1
|
|
6295
|
+
validation:
|
|
6296
|
+
min: 0.7
|
|
6297
|
+
max: 1.2
|
|
6298
|
+
similarity_boost:
|
|
6299
|
+
type: optional<double>
|
|
6300
|
+
docs: The similarity boost for generated speech
|
|
6301
|
+
default: 0.8
|
|
6302
|
+
validation:
|
|
6303
|
+
min: 0
|
|
6304
|
+
max: 1
|
|
6305
|
+
pronunciation_dictionary_locators:
|
|
6306
|
+
type: optional<list<PydanticPronunciationDictionaryVersionLocator>>
|
|
6307
|
+
docs: The pronunciation dictionary locators
|
|
6308
|
+
source:
|
|
6309
|
+
openapi: openapi.json
|
|
6310
|
+
TtsConversationalConfigOutput:
|
|
5884
6311
|
properties:
|
|
5885
6312
|
model_id:
|
|
5886
6313
|
type: optional<TtsConversationalModel>
|
|
@@ -5891,6 +6318,9 @@ types:
|
|
|
5891
6318
|
default: cjVigY5qzO86Huf0OWal
|
|
5892
6319
|
validation:
|
|
5893
6320
|
minLength: 0
|
|
6321
|
+
supported_voices:
|
|
6322
|
+
type: optional<list<SupportedVoice>>
|
|
6323
|
+
docs: Additional supported voices for the agent
|
|
5894
6324
|
agent_output_audio_format:
|
|
5895
6325
|
type: optional<TtsOutputFormat>
|
|
5896
6326
|
docs: The audio format to use for TTS
|
|
@@ -5927,13 +6357,14 @@ types:
|
|
|
5927
6357
|
properties:
|
|
5928
6358
|
voice_id:
|
|
5929
6359
|
type: optional<string>
|
|
6360
|
+
docs: The voice ID to use for TTS
|
|
5930
6361
|
source:
|
|
5931
6362
|
openapi: openapi.json
|
|
5932
6363
|
TtsConversationalConfigOverrideConfig:
|
|
5933
6364
|
properties:
|
|
5934
6365
|
voice_id:
|
|
5935
6366
|
type: optional<boolean>
|
|
5936
|
-
docs: Whether to allow overriding the
|
|
6367
|
+
docs: Whether to allow overriding the voice_id field.
|
|
5937
6368
|
default: false
|
|
5938
6369
|
source:
|
|
5939
6370
|
openapi: openapi.json
|
|
@@ -5945,6 +6376,13 @@ types:
|
|
|
5945
6376
|
- eleven_flash_v2_5
|
|
5946
6377
|
source:
|
|
5947
6378
|
openapi: openapi.json
|
|
6379
|
+
TtsModelFamily:
|
|
6380
|
+
enum:
|
|
6381
|
+
- turbo
|
|
6382
|
+
- flash
|
|
6383
|
+
- multilingual
|
|
6384
|
+
source:
|
|
6385
|
+
openapi: openapi.json
|
|
5948
6386
|
TtsOptimizeStreamingLatency: integer
|
|
5949
6387
|
TtsOutputFormat:
|
|
5950
6388
|
enum:
|
|
@@ -6368,6 +6806,12 @@ types:
|
|
|
6368
6806
|
generation. Lower values introduce broader emotional range for the
|
|
6369
6807
|
voice. Higher values can result in a monotonous voice with limited
|
|
6370
6808
|
emotion.
|
|
6809
|
+
use_speaker_boost:
|
|
6810
|
+
type: optional<boolean>
|
|
6811
|
+
docs: >-
|
|
6812
|
+
This setting boosts the similarity to the original speaker. Using this
|
|
6813
|
+
setting requires a slightly higher computational load, which in turn
|
|
6814
|
+
increases latency.
|
|
6371
6815
|
similarity_boost:
|
|
6372
6816
|
type: optional<double>
|
|
6373
6817
|
docs: >-
|
|
@@ -6380,12 +6824,6 @@ types:
|
|
|
6380
6824
|
to amplify the style of the original speaker. It does consume
|
|
6381
6825
|
additional computational resources and might increase latency if set
|
|
6382
6826
|
to anything other than 0.
|
|
6383
|
-
use_speaker_boost:
|
|
6384
|
-
type: optional<boolean>
|
|
6385
|
-
docs: >-
|
|
6386
|
-
This setting boosts the similarity to the original speaker. Using this
|
|
6387
|
-
setting requires a slightly higher computational load, which in turn
|
|
6388
|
-
increases latency.
|
|
6389
6827
|
speed:
|
|
6390
6828
|
type: optional<double>
|
|
6391
6829
|
docs: >-
|
|
@@ -6765,7 +7203,7 @@ types:
|
|
|
6765
7203
|
docs: Configuration for dynamic variables
|
|
6766
7204
|
source:
|
|
6767
7205
|
openapi: openapi.json
|
|
6768
|
-
|
|
7206
|
+
WidgetConfigInputAvatar:
|
|
6769
7207
|
discriminant: type
|
|
6770
7208
|
base-properties: {}
|
|
6771
7209
|
docs: The avatar of the widget
|
|
@@ -6783,11 +7221,14 @@ types:
|
|
|
6783
7221
|
variant:
|
|
6784
7222
|
type: optional<EmbedVariant>
|
|
6785
7223
|
docs: The variant of the widget
|
|
7224
|
+
placement:
|
|
7225
|
+
type: optional<WidgetPlacement>
|
|
7226
|
+
docs: The placement of the widget on the screen
|
|
6786
7227
|
expandable:
|
|
6787
7228
|
type: optional<WidgetExpandable>
|
|
6788
7229
|
docs: Whether the widget is expandable
|
|
6789
7230
|
avatar:
|
|
6790
|
-
type: optional<
|
|
7231
|
+
type: optional<WidgetConfigOutputAvatar>
|
|
6791
7232
|
docs: The avatar of the widget
|
|
6792
7233
|
feedback_mode:
|
|
6793
7234
|
type: optional<WidgetFeedbackMode>
|
|
@@ -6870,13 +7311,46 @@ types:
|
|
|
6870
7311
|
type: optional<boolean>
|
|
6871
7312
|
docs: Whether to enable mic muting
|
|
6872
7313
|
default: false
|
|
7314
|
+
transcript_enabled:
|
|
7315
|
+
type: optional<boolean>
|
|
7316
|
+
docs: >-
|
|
7317
|
+
Whether the widget should show the conversation transcript as it goes
|
|
7318
|
+
on
|
|
7319
|
+
default: false
|
|
7320
|
+
text_input_enabled:
|
|
7321
|
+
type: optional<boolean>
|
|
7322
|
+
docs: Whether the user should be able to send text messages
|
|
7323
|
+
default: true
|
|
7324
|
+
text_contents:
|
|
7325
|
+
type: optional<WidgetTextContents>
|
|
7326
|
+
docs: Text contents of the widget
|
|
6873
7327
|
language_selector:
|
|
6874
7328
|
type: optional<boolean>
|
|
6875
7329
|
docs: Whether to show the language selector
|
|
6876
7330
|
default: false
|
|
7331
|
+
supports_text_only:
|
|
7332
|
+
type: optional<boolean>
|
|
7333
|
+
docs: Whether the widget can switch to text only mode
|
|
7334
|
+
default: true
|
|
6877
7335
|
custom_avatar_path:
|
|
6878
7336
|
type: optional<string>
|
|
6879
7337
|
docs: The custom avatar path
|
|
7338
|
+
language_presets:
|
|
7339
|
+
type: optional<map<string, WidgetLanguagePreset>>
|
|
7340
|
+
docs: Language presets for the widget
|
|
7341
|
+
source:
|
|
7342
|
+
openapi: openapi.json
|
|
7343
|
+
WidgetConfigOutputAvatar:
|
|
7344
|
+
discriminant: type
|
|
7345
|
+
base-properties: {}
|
|
7346
|
+
docs: The avatar of the widget
|
|
7347
|
+
union:
|
|
7348
|
+
orb:
|
|
7349
|
+
type: OrbAvatar
|
|
7350
|
+
url:
|
|
7351
|
+
type: UrlAvatar
|
|
7352
|
+
image:
|
|
7353
|
+
type: ImageAvatar
|
|
6880
7354
|
source:
|
|
6881
7355
|
openapi: openapi.json
|
|
6882
7356
|
WidgetConfigResponseModelAvatar:
|
|
@@ -6892,11 +7366,14 @@ types:
|
|
|
6892
7366
|
type: ImageAvatar
|
|
6893
7367
|
source:
|
|
6894
7368
|
openapi: openapi.json
|
|
6895
|
-
|
|
7369
|
+
WidgetConfigResponse:
|
|
6896
7370
|
properties:
|
|
6897
7371
|
variant:
|
|
6898
7372
|
type: optional<EmbedVariant>
|
|
6899
7373
|
docs: The variant of the widget
|
|
7374
|
+
placement:
|
|
7375
|
+
type: optional<WidgetPlacement>
|
|
7376
|
+
docs: The placement of the widget on the screen
|
|
6900
7377
|
expandable:
|
|
6901
7378
|
type: optional<WidgetExpandable>
|
|
6902
7379
|
docs: Whether the widget is expandable
|
|
@@ -6984,9 +7461,35 @@ types:
|
|
|
6984
7461
|
type: optional<boolean>
|
|
6985
7462
|
docs: Whether to enable mic muting
|
|
6986
7463
|
default: false
|
|
7464
|
+
transcript_enabled:
|
|
7465
|
+
type: optional<boolean>
|
|
7466
|
+
docs: >-
|
|
7467
|
+
Whether the widget should show the conversation transcript as it goes
|
|
7468
|
+
on
|
|
7469
|
+
default: false
|
|
7470
|
+
text_input_enabled:
|
|
7471
|
+
type: optional<boolean>
|
|
7472
|
+
docs: Whether the user should be able to send text messages
|
|
7473
|
+
default: true
|
|
7474
|
+
text_contents:
|
|
7475
|
+
type: optional<WidgetTextContents>
|
|
7476
|
+
docs: Text contents of the widget
|
|
6987
7477
|
language: string
|
|
6988
7478
|
supported_language_overrides:
|
|
6989
7479
|
type: optional<list<string>>
|
|
7480
|
+
language_presets:
|
|
7481
|
+
type: optional<map<string, WidgetLanguagePresetResponse>>
|
|
7482
|
+
docs: Language presets for the widget
|
|
7483
|
+
text_only:
|
|
7484
|
+
type: optional<boolean>
|
|
7485
|
+
docs: Whether the agent uses text-only mode
|
|
7486
|
+
default: false
|
|
7487
|
+
supports_text_only:
|
|
7488
|
+
type: optional<boolean>
|
|
7489
|
+
docs: Whether the agent can be switched to text-only mode
|
|
7490
|
+
default: false
|
|
7491
|
+
first_message:
|
|
7492
|
+
type: optional<string>
|
|
6990
7493
|
source:
|
|
6991
7494
|
openapi: openapi.json
|
|
6992
7495
|
WidgetExpandable:
|
|
@@ -7004,6 +7507,105 @@ types:
|
|
|
7004
7507
|
- end
|
|
7005
7508
|
source:
|
|
7006
7509
|
openapi: openapi.json
|
|
7510
|
+
WidgetLanguagePreset:
|
|
7511
|
+
properties:
|
|
7512
|
+
text_contents:
|
|
7513
|
+
type: optional<WidgetTextContents>
|
|
7514
|
+
docs: The text contents for the selected language
|
|
7515
|
+
source:
|
|
7516
|
+
openapi: openapi.json
|
|
7517
|
+
WidgetLanguagePresetResponse:
|
|
7518
|
+
properties:
|
|
7519
|
+
first_message:
|
|
7520
|
+
type: optional<string>
|
|
7521
|
+
text_contents:
|
|
7522
|
+
type: optional<WidgetTextContents>
|
|
7523
|
+
docs: The text contents for the selected language
|
|
7524
|
+
source:
|
|
7525
|
+
openapi: openapi.json
|
|
7526
|
+
WidgetPlacement:
|
|
7527
|
+
enum:
|
|
7528
|
+
- value: top-left
|
|
7529
|
+
name: TopLeft
|
|
7530
|
+
- top
|
|
7531
|
+
- value: top-right
|
|
7532
|
+
name: TopRight
|
|
7533
|
+
- value: bottom-left
|
|
7534
|
+
name: BottomLeft
|
|
7535
|
+
- bottom
|
|
7536
|
+
- value: bottom-right
|
|
7537
|
+
name: BottomRight
|
|
7538
|
+
source:
|
|
7539
|
+
openapi: openapi.json
|
|
7540
|
+
WidgetTextContents:
|
|
7541
|
+
properties:
|
|
7542
|
+
main_label:
|
|
7543
|
+
type: optional<string>
|
|
7544
|
+
docs: Call to action displayed inside the compact and full variants.
|
|
7545
|
+
start_call:
|
|
7546
|
+
type: optional<string>
|
|
7547
|
+
docs: Text and ARIA label for the start call button.
|
|
7548
|
+
new_call:
|
|
7549
|
+
type: optional<string>
|
|
7550
|
+
docs: >-
|
|
7551
|
+
Text and ARIA label for the new call button. Displayed when the caller
|
|
7552
|
+
already finished at least one call in order ot start the next one.
|
|
7553
|
+
end_call:
|
|
7554
|
+
type: optional<string>
|
|
7555
|
+
docs: Text and ARIA label for the end call button.
|
|
7556
|
+
mute_microphone:
|
|
7557
|
+
type: optional<string>
|
|
7558
|
+
docs: ARIA label for the mute microphone button.
|
|
7559
|
+
change_language:
|
|
7560
|
+
type: optional<string>
|
|
7561
|
+
docs: ARIA label for the change language dropdown.
|
|
7562
|
+
collapse:
|
|
7563
|
+
type: optional<string>
|
|
7564
|
+
docs: ARIA label for the collapse button.
|
|
7565
|
+
expand:
|
|
7566
|
+
type: optional<string>
|
|
7567
|
+
docs: ARIA label for the expand button.
|
|
7568
|
+
copied:
|
|
7569
|
+
type: optional<string>
|
|
7570
|
+
docs: Text displayed when the user copies a value using the copy button.
|
|
7571
|
+
accept_terms:
|
|
7572
|
+
type: optional<string>
|
|
7573
|
+
docs: Text and ARIA label for the accept terms button.
|
|
7574
|
+
dismiss_terms:
|
|
7575
|
+
type: optional<string>
|
|
7576
|
+
docs: Text and ARIA label for the cancel terms button.
|
|
7577
|
+
listening_status:
|
|
7578
|
+
type: optional<string>
|
|
7579
|
+
docs: Status displayed when the agent is listening.
|
|
7580
|
+
speaking_status:
|
|
7581
|
+
type: optional<string>
|
|
7582
|
+
docs: Status displayed when the agent is speaking.
|
|
7583
|
+
connecting_status:
|
|
7584
|
+
type: optional<string>
|
|
7585
|
+
docs: Status displayed when the agent is connecting.
|
|
7586
|
+
input_label:
|
|
7587
|
+
type: optional<string>
|
|
7588
|
+
docs: ARIA label for the text message input.
|
|
7589
|
+
input_placeholder:
|
|
7590
|
+
type: optional<string>
|
|
7591
|
+
docs: Placeholder text for the text message input.
|
|
7592
|
+
user_ended_conversation:
|
|
7593
|
+
type: optional<string>
|
|
7594
|
+
docs: Information message displayed when the user ends the conversation.
|
|
7595
|
+
agent_ended_conversation:
|
|
7596
|
+
type: optional<string>
|
|
7597
|
+
docs: Information message displayed when the agent ends the conversation.
|
|
7598
|
+
conversation_id:
|
|
7599
|
+
type: optional<string>
|
|
7600
|
+
docs: Text label used next to the conversation ID.
|
|
7601
|
+
error_occurred:
|
|
7602
|
+
type: optional<string>
|
|
7603
|
+
docs: Text label used when an error occurs.
|
|
7604
|
+
copy_id:
|
|
7605
|
+
type: optional<string>
|
|
7606
|
+
docs: Text and ARIA label used for the copy ID button.
|
|
7607
|
+
source:
|
|
7608
|
+
openapi: openapi.json
|
|
7007
7609
|
WorkspaceBatchCallsResponse:
|
|
7008
7610
|
properties:
|
|
7009
7611
|
batch_calls:
|
|
@@ -7428,7 +8030,7 @@ types:
|
|
|
7428
8030
|
PronunciationDictionaryLocator:
|
|
7429
8031
|
docs: Identifies a specific pronunciation dictionary to use
|
|
7430
8032
|
properties:
|
|
7431
|
-
|
|
8033
|
+
pronunciation_dictionary_id:
|
|
7432
8034
|
type: string
|
|
7433
8035
|
docs: The unique identifier of the pronunciation dictionary
|
|
7434
8036
|
version_id:
|
|
@@ -7442,14 +8044,14 @@ types:
|
|
|
7442
8044
|
text:
|
|
7443
8045
|
type: optional<string>
|
|
7444
8046
|
docs: >
|
|
7445
|
-
Text to be synthesized.
|
|
8047
|
+
Text to be synthesized.
|
|
7446
8048
|
|
|
7447
8049
|
For the first message establishing a new context (identified by
|
|
7448
8050
|
`context_id`, or a default context if `context_id` is absent), this
|
|
7449
|
-
should be a single space character (' ').
|
|
8051
|
+
should be a single space character (' ').
|
|
7450
8052
|
|
|
7451
8053
|
For subsequent messages to an active context, this is the text to
|
|
7452
|
-
synthesize.
|
|
8054
|
+
synthesize.
|
|
7453
8055
|
|
|
7454
8056
|
This field can be null or an empty string if the message is primarily
|
|
7455
8057
|
for control (e.g., using `flush`, `close_context`, or `close_socket`).
|
|
@@ -7486,7 +8088,7 @@ types:
|
|
|
7486
8088
|
docs: >-
|
|
7487
8089
|
Optional list of pronunciation dictionary locators. Can only be
|
|
7488
8090
|
provided in the first message for a given context_id.
|
|
7489
|
-
|
|
8091
|
+
contextId:
|
|
7490
8092
|
type: optional<string>
|
|
7491
8093
|
docs: >-
|
|
7492
8094
|
An identifier for the text-to-speech context. Allows managing multiple
|
|
@@ -7495,14 +8097,14 @@ types:
|
|
|
7495
8097
|
close_context:
|
|
7496
8098
|
type: optional<boolean>
|
|
7497
8099
|
docs: >-
|
|
7498
|
-
If true, closes the specified `
|
|
8100
|
+
If true, closes the specified `contextId`. No further audio will be
|
|
7499
8101
|
generated for this context. The `text` field is ignored.
|
|
7500
8102
|
default: false
|
|
7501
8103
|
close_socket:
|
|
7502
8104
|
type: optional<boolean>
|
|
7503
8105
|
docs: >-
|
|
7504
8106
|
If true, flushes all contexts and closes the entire WebSocket
|
|
7505
|
-
connection. The `text` and `
|
|
8107
|
+
connection. The `text` and `contextId` fields are ignored.
|
|
7506
8108
|
default: false
|
|
7507
8109
|
source:
|
|
7508
8110
|
openapi: asyncapi.yml
|
|
@@ -7631,9 +8233,9 @@ types:
|
|
|
7631
8233
|
docs: Base64 encoded audio chunk.
|
|
7632
8234
|
normalizedAlignment: optional<NormalizedAlignment>
|
|
7633
8235
|
alignment: optional<Alignment>
|
|
7634
|
-
|
|
8236
|
+
contextId:
|
|
7635
8237
|
type: optional<string>
|
|
7636
|
-
docs: The
|
|
8238
|
+
docs: The contextId for which this audio is.
|
|
7637
8239
|
source:
|
|
7638
8240
|
openapi: asyncapi.yml
|
|
7639
8241
|
FinalOutputMulti:
|