@elevenlabs/elevenlabs-js 2.1.0 → 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 +5 -5
- package/.mock/definition/__package__.yml +600 -102
- 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.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/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 +2724 -293
- package/Client.d.ts +3 -0
- package/Client.js +33 -28
- package/api/resources/audioIsolation/client/Client.js +2 -2
- package/api/resources/audioNative/client/Client.js +3 -3
- package/api/resources/conversationalAi/client/Client.d.ts +39 -0
- package/api/resources/conversationalAi/client/Client.js +224 -2
- package/api/resources/conversationalAi/resources/agents/client/Client.js +7 -7
- package/api/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +5 -2
- package/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +1 -1
- package/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +1 -1
- package/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +1 -1
- package/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +1 -1
- package/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +1 -1
- package/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +26 -0
- package/api/resources/conversationalAi/resources/batchCalls/client/Client.js +151 -3
- package/api/resources/conversationalAi/resources/conversations/client/Client.js +4 -4
- package/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +1 -1
- package/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +1 -1
- package/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +2 -2
- package/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +1 -1
- 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 +2 -2
- 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 +19 -12
- 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 +1 -1
- package/api/resources/conversationalAi/resources/llmUsage/client/Client.js +1 -1
- package/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +5 -5
- package/api/resources/conversationalAi/resources/secrets/client/Client.js +3 -3
- package/api/resources/conversationalAi/resources/settings/client/Client.js +2 -2
- package/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +1 -1
- package/api/resources/conversationalAi/resources/twilio/client/Client.js +1 -1
- package/api/resources/dubbing/client/Client.js +3 -3
- package/api/resources/dubbing/resources/audio/client/Client.js +1 -1
- package/api/resources/dubbing/resources/resource/client/Client.js +5 -5
- package/api/resources/dubbing/resources/resource/resources/language/client/Client.js +1 -1
- package/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +2 -2
- package/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +2 -2
- package/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +1 -1
- package/api/resources/dubbing/resources/transcript/client/Client.js +1 -1
- package/api/resources/forcedAlignment/client/Client.js +1 -1
- package/api/resources/history/client/Client.js +5 -5
- package/api/resources/index.d.ts +3 -0
- package/api/resources/index.js +4 -1
- package/api/resources/models/client/Client.js +1 -1
- package/api/resources/pronunciationDictionaries/client/Client.js +5 -5
- package/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +2 -2
- package/api/resources/samples/client/Client.js +1 -1
- package/api/resources/speechToSpeech/client/Client.js +2 -2
- package/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +2 -0
- package/api/resources/studio/client/Client.js +1 -1
- package/api/resources/studio/resources/projects/client/Client.js +6 -6
- package/api/resources/studio/resources/projects/resources/chapters/client/Client.js +6 -6
- package/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +3 -3
- package/api/resources/studio/resources/projects/resources/content/client/Client.js +1 -1
- package/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +1 -1
- package/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +4 -4
- 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 +1 -1
- package/api/resources/textToSpeech/client/Client.js +4 -4
- package/api/resources/textToVoice/client/Client.js +2 -2
- package/api/resources/usage/client/Client.js +1 -1
- package/api/resources/user/client/Client.js +1 -1
- package/api/resources/user/resources/subscription/client/Client.js +1 -1
- package/api/resources/voices/client/Client.js +12 -9
- package/api/resources/voices/client/requests/VoicesGetSharedRequest.d.ts +4 -0
- package/api/resources/voices/resources/ivc/client/Client.js +1 -1
- package/api/resources/voices/resources/pvc/client/Client.js +3 -3
- package/api/resources/voices/resources/pvc/resources/samples/client/Client.js +3 -3
- package/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +1 -1
- package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +2 -2
- package/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +1 -1
- package/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +1 -1
- package/api/resources/voices/resources/pvc/resources/verification/client/Client.js +1 -1
- package/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +2 -2
- package/api/resources/voices/resources/samples/resources/audio/client/Client.js +1 -1
- package/api/resources/voices/resources/settings/client/Client.d.ts +1 -1
- package/api/resources/voices/resources/settings/client/Client.js +4 -4
- package/api/resources/workspace/resources/groups/client/Client.js +1 -1
- package/api/resources/workspace/resources/groups/resources/members/client/Client.js +2 -2
- package/api/resources/workspace/resources/invites/client/Client.js +3 -3
- package/api/resources/workspace/resources/members/client/Client.js +2 -2
- package/api/resources/workspace/resources/resources/client/Client.js +3 -3
- 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/AuthorizationMethod.d.ts +2 -1
- package/api/types/AuthorizationMethod.js +1 -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/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/FeaturesUsageCommonModel.d.ts +12 -0
- package/api/types/GetAgentEmbedResponseModel.d.ts +1 -1
- 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/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 +2 -0
- package/api/types/NativeMcpToolConfigOutput.d.ts +2 -0
- 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/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 +27 -6
- package/api/types/index.js +27 -6
- package/dist/Client.d.ts +3 -0
- package/dist/Client.js +33 -28
- package/dist/api/resources/audioIsolation/client/Client.js +2 -2
- package/dist/api/resources/audioNative/client/Client.js +3 -3
- package/dist/api/resources/conversationalAi/client/Client.d.ts +39 -0
- package/dist/api/resources/conversationalAi/client/Client.js +224 -2
- package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +7 -7
- package/dist/api/resources/conversationalAi/resources/agents/client/requests/UpdateAgentRequest.d.ts +5 -2
- package/dist/api/resources/conversationalAi/resources/agents/resources/knowledgeBase/client/Client.js +1 -1
- package/dist/api/resources/conversationalAi/resources/agents/resources/link/client/Client.js +1 -1
- package/dist/api/resources/conversationalAi/resources/agents/resources/llmUsage/client/Client.js +1 -1
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/client/Client.js +1 -1
- package/dist/api/resources/conversationalAi/resources/agents/resources/widget/resources/avatar/client/Client.js +1 -1
- package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.d.ts +26 -0
- package/dist/api/resources/conversationalAi/resources/batchCalls/client/Client.js +151 -3
- package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +4 -4
- package/dist/api/resources/conversationalAi/resources/conversations/resources/audio/client/Client.js +1 -1
- package/dist/api/resources/conversationalAi/resources/conversations/resources/feedback/client/Client.js +1 -1
- package/dist/api/resources/conversationalAi/resources/dashboard/resources/settings/client/Client.js +2 -2
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/client/Client.js +1 -1
- 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 +2 -2
- 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 +19 -12
- 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 +1 -1
- package/dist/api/resources/conversationalAi/resources/llmUsage/client/Client.js +1 -1
- package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/Client.js +5 -5
- package/dist/api/resources/conversationalAi/resources/secrets/client/Client.js +3 -3
- package/dist/api/resources/conversationalAi/resources/settings/client/Client.js +2 -2
- package/dist/api/resources/conversationalAi/resources/sipTrunk/client/Client.js +1 -1
- package/dist/api/resources/conversationalAi/resources/twilio/client/Client.js +1 -1
- package/dist/api/resources/dubbing/client/Client.js +3 -3
- package/dist/api/resources/dubbing/resources/audio/client/Client.js +1 -1
- package/dist/api/resources/dubbing/resources/resource/client/Client.js +5 -5
- package/dist/api/resources/dubbing/resources/resource/resources/language/client/Client.js +1 -1
- package/dist/api/resources/dubbing/resources/resource/resources/segment/client/Client.js +2 -2
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/client/Client.js +2 -2
- package/dist/api/resources/dubbing/resources/resource/resources/speaker/resources/segment/client/Client.js +1 -1
- package/dist/api/resources/dubbing/resources/transcript/client/Client.js +1 -1
- package/dist/api/resources/forcedAlignment/client/Client.js +1 -1
- package/dist/api/resources/history/client/Client.js +5 -5
- package/dist/api/resources/index.d.ts +3 -0
- package/dist/api/resources/index.js +4 -1
- package/dist/api/resources/models/client/Client.js +1 -1
- package/dist/api/resources/pronunciationDictionaries/client/Client.js +5 -5
- package/dist/api/resources/pronunciationDictionaries/resources/rules/client/Client.js +2 -2
- package/dist/api/resources/samples/client/Client.js +1 -1
- package/dist/api/resources/speechToSpeech/client/Client.js +2 -2
- package/dist/api/resources/speechToText/client/requests/BodySpeechToTextV1SpeechToTextPost.d.ts +2 -0
- package/dist/api/resources/studio/client/Client.js +1 -1
- package/dist/api/resources/studio/resources/projects/client/Client.js +6 -6
- package/dist/api/resources/studio/resources/projects/resources/chapters/client/Client.js +6 -6
- package/dist/api/resources/studio/resources/projects/resources/chapters/resources/snapshots/client/Client.js +3 -3
- package/dist/api/resources/studio/resources/projects/resources/content/client/Client.js +1 -1
- package/dist/api/resources/studio/resources/projects/resources/pronunciationDictionaries/client/Client.js +1 -1
- package/dist/api/resources/studio/resources/projects/resources/snapshots/client/Client.js +4 -4
- 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 +1 -1
- package/dist/api/resources/textToSpeech/client/Client.js +4 -4
- package/dist/api/resources/textToVoice/client/Client.js +2 -2
- package/dist/api/resources/usage/client/Client.js +1 -1
- package/dist/api/resources/user/client/Client.js +1 -1
- package/dist/api/resources/user/resources/subscription/client/Client.js +1 -1
- package/dist/api/resources/voices/client/Client.js +12 -9
- package/dist/api/resources/voices/client/requests/VoicesGetSharedRequest.d.ts +4 -0
- package/dist/api/resources/voices/resources/ivc/client/Client.js +1 -1
- package/dist/api/resources/voices/resources/pvc/client/Client.js +3 -3
- package/dist/api/resources/voices/resources/pvc/resources/samples/client/Client.js +3 -3
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/audio/client/Client.js +1 -1
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/client/Client.js +2 -2
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/speakers/resources/audio/client/Client.js +1 -1
- package/dist/api/resources/voices/resources/pvc/resources/samples/resources/waveform/client/Client.js +1 -1
- package/dist/api/resources/voices/resources/pvc/resources/verification/client/Client.js +1 -1
- package/dist/api/resources/voices/resources/pvc/resources/verification/resources/captcha/client/Client.js +2 -2
- package/dist/api/resources/voices/resources/samples/resources/audio/client/Client.js +1 -1
- package/dist/api/resources/voices/resources/settings/client/Client.d.ts +1 -1
- package/dist/api/resources/voices/resources/settings/client/Client.js +4 -4
- package/dist/api/resources/workspace/resources/groups/client/Client.js +1 -1
- package/dist/api/resources/workspace/resources/groups/resources/members/client/Client.js +2 -2
- package/dist/api/resources/workspace/resources/invites/client/Client.js +3 -3
- package/dist/api/resources/workspace/resources/members/client/Client.js +2 -2
- package/dist/api/resources/workspace/resources/resources/client/Client.js +3 -3
- 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/AuthorizationMethod.d.ts +2 -1
- package/dist/api/types/AuthorizationMethod.js +1 -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/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/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/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 +2 -0
- package/dist/api/types/NativeMcpToolConfigOutput.d.ts +2 -0
- 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/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 +27 -6
- package/dist/api/types/index.js +27 -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/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/AuthorizationMethod.d.ts +1 -1
- package/dist/serialization/types/AuthorizationMethod.js +1 -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/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/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/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 +2 -0
- package/dist/serialization/types/NativeMcpToolConfigInput.js +2 -0
- package/dist/serialization/types/NativeMcpToolConfigOutput.d.ts +2 -0
- package/dist/serialization/types/NativeMcpToolConfigOutput.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/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 +27 -6
- package/dist/serialization/types/index.js +27 -6
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +477 -4
- 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/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/AuthorizationMethod.d.ts +1 -1
- package/serialization/types/AuthorizationMethod.js +1 -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/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/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/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 +2 -0
- package/serialization/types/NativeMcpToolConfigInput.js +2 -0
- package/serialization/types/NativeMcpToolConfigOutput.d.ts +2 -0
- package/serialization/types/NativeMcpToolConfigOutput.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/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 +27 -6
- package/serialization/types/index.js +27 -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/knowledgeBase/resources/documents/client/requests/DocumentsDeleteRequest.js} +0 -0
- /package/api/{types/TtsConversationalConfig.js → resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceStreamingV1TextToDialogueStreamPost.js} +0 -0
- /package/api/{types/WidgetConfigAvatar.js → resources/textToDialogue/client/requests/BodyTextToDialogueMultiVoiceV1TextToDialoguePost.js} +0 -0
- /package/api/types/{WidgetConfigResponseModel.js → CustomLlmRequestHeadersValue.js} +0 -0
- /package/{dist/api/types/RagIndexResponseModel.js → api/types/DialogueInput.js} +0 -0
- /package/{dist/api/types/TtsConversationalConfig.js → api/types/DialogueInputResponseModel.js} +0 -0
- /package/{dist/api/types/WidgetConfigAvatar.js → api/types/FeatureStatusCommonModel.js} +0 -0
- /package/{dist/api/types/WidgetConfigResponseModel.js → api/types/FeaturesUsageCommonModel.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:
|
|
@@ -1466,6 +1466,7 @@ types:
|
|
|
1466
1466
|
- vad_score
|
|
1467
1467
|
- internal_turn_probability
|
|
1468
1468
|
- internal_tentative_agent_response
|
|
1469
|
+
- internal_native_mcp_tool_call
|
|
1469
1470
|
source:
|
|
1470
1471
|
openapi: openapi.json
|
|
1471
1472
|
ClientToolConfigInput:
|
|
@@ -1646,67 +1647,70 @@ types:
|
|
|
1646
1647
|
openapi: openapi.json
|
|
1647
1648
|
ConversationConfigClientOverrideInput:
|
|
1648
1649
|
properties:
|
|
1649
|
-
agent:
|
|
1650
|
-
type: optional<AgentConfigOverride>
|
|
1651
|
-
docs: The overrides for the agent configuration
|
|
1652
1650
|
tts:
|
|
1653
1651
|
type: optional<TtsConversationalConfigOverride>
|
|
1654
|
-
docs:
|
|
1652
|
+
docs: Configuration for conversational text to speech
|
|
1655
1653
|
conversation:
|
|
1656
1654
|
type: optional<ConversationConfigOverride>
|
|
1657
|
-
docs:
|
|
1655
|
+
docs: Configuration for conversational events
|
|
1656
|
+
agent:
|
|
1657
|
+
type: optional<AgentConfigOverride>
|
|
1658
|
+
docs: Agent specific configuration
|
|
1658
1659
|
source:
|
|
1659
1660
|
openapi: openapi.json
|
|
1660
1661
|
ConversationConfigClientOverrideOutput:
|
|
1661
1662
|
properties:
|
|
1662
|
-
agent:
|
|
1663
|
-
type: optional<AgentConfigOverride>
|
|
1664
|
-
docs: The overrides for the agent configuration
|
|
1665
1663
|
tts:
|
|
1666
1664
|
type: optional<TtsConversationalConfigOverride>
|
|
1667
|
-
docs:
|
|
1665
|
+
docs: Configuration for conversational text to speech
|
|
1668
1666
|
conversation:
|
|
1669
1667
|
type: optional<ConversationConfigOverride>
|
|
1670
|
-
docs:
|
|
1668
|
+
docs: Configuration for conversational events
|
|
1669
|
+
agent:
|
|
1670
|
+
type: optional<AgentConfigOverride>
|
|
1671
|
+
docs: Agent specific configuration
|
|
1671
1672
|
source:
|
|
1672
1673
|
openapi: openapi.json
|
|
1673
1674
|
ConversationConfigClientOverrideConfigInput:
|
|
1674
1675
|
properties:
|
|
1675
|
-
agent:
|
|
1676
|
-
type: optional<AgentConfigOverrideConfig>
|
|
1677
|
-
docs: Overrides for the agent configuration
|
|
1678
1676
|
tts:
|
|
1679
1677
|
type: optional<TtsConversationalConfigOverrideConfig>
|
|
1680
|
-
docs:
|
|
1678
|
+
docs: Configures overrides for nested fields.
|
|
1681
1679
|
conversation:
|
|
1682
1680
|
type: optional<ConversationConfigOverrideConfig>
|
|
1683
|
-
docs:
|
|
1681
|
+
docs: Configures overrides for nested fields.
|
|
1682
|
+
agent:
|
|
1683
|
+
type: optional<AgentConfigOverrideConfig>
|
|
1684
|
+
docs: Configures overrides for nested fields.
|
|
1684
1685
|
source:
|
|
1685
1686
|
openapi: openapi.json
|
|
1686
1687
|
ConversationConfigClientOverrideConfigOutput:
|
|
1687
1688
|
properties:
|
|
1688
|
-
agent:
|
|
1689
|
-
type: optional<AgentConfigOverrideConfig>
|
|
1690
|
-
docs: Overrides for the agent configuration
|
|
1691
1689
|
tts:
|
|
1692
1690
|
type: optional<TtsConversationalConfigOverrideConfig>
|
|
1693
|
-
docs:
|
|
1691
|
+
docs: Configures overrides for nested fields.
|
|
1694
1692
|
conversation:
|
|
1695
1693
|
type: optional<ConversationConfigOverrideConfig>
|
|
1696
|
-
docs:
|
|
1694
|
+
docs: Configures overrides for nested fields.
|
|
1695
|
+
agent:
|
|
1696
|
+
type: optional<AgentConfigOverrideConfig>
|
|
1697
|
+
docs: Configures overrides for nested fields.
|
|
1697
1698
|
source:
|
|
1698
1699
|
openapi: openapi.json
|
|
1699
1700
|
ConversationConfigOverride:
|
|
1700
1701
|
properties:
|
|
1701
1702
|
text_only:
|
|
1702
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.
|
|
1703
1707
|
source:
|
|
1704
1708
|
openapi: openapi.json
|
|
1705
1709
|
ConversationConfigOverrideConfig:
|
|
1706
1710
|
properties:
|
|
1707
1711
|
text_only:
|
|
1708
1712
|
type: optional<boolean>
|
|
1709
|
-
docs: Whether to allow overriding the
|
|
1713
|
+
docs: Whether to allow overriding the text_only field.
|
|
1710
1714
|
default: false
|
|
1711
1715
|
source:
|
|
1712
1716
|
openapi: openapi.json
|
|
@@ -1813,6 +1817,11 @@ types:
|
|
|
1813
1817
|
type: optional<string>
|
|
1814
1818
|
rag_usage:
|
|
1815
1819
|
type: optional<ConversationHistoryRagUsageCommonModel>
|
|
1820
|
+
text_only:
|
|
1821
|
+
type: optional<boolean>
|
|
1822
|
+
default: false
|
|
1823
|
+
features_usage:
|
|
1824
|
+
type: optional<FeaturesUsageCommonModel>
|
|
1816
1825
|
source:
|
|
1817
1826
|
openapi: openapi.json
|
|
1818
1827
|
ConversationHistoryRagUsageCommonModel:
|
|
@@ -1866,8 +1875,6 @@ types:
|
|
|
1866
1875
|
type: optional<UserFeedback>
|
|
1867
1876
|
llm_override:
|
|
1868
1877
|
type: optional<string>
|
|
1869
|
-
source_medium:
|
|
1870
|
-
type: optional<ConversationHistoryTranscriptCommonModelInputSourceMedium>
|
|
1871
1878
|
time_in_call_secs: integer
|
|
1872
1879
|
conversation_turn_metrics:
|
|
1873
1880
|
type: optional<ConversationTurnMetrics>
|
|
@@ -1880,6 +1887,8 @@ types:
|
|
|
1880
1887
|
default: false
|
|
1881
1888
|
original_message:
|
|
1882
1889
|
type: optional<string>
|
|
1890
|
+
source_medium:
|
|
1891
|
+
type: optional<ConversationHistoryTranscriptCommonModelInputSourceMedium>
|
|
1883
1892
|
source:
|
|
1884
1893
|
openapi: openapi.json
|
|
1885
1894
|
ConversationHistoryTranscriptCommonModelOutputRole:
|
|
@@ -1910,8 +1919,6 @@ types:
|
|
|
1910
1919
|
type: optional<UserFeedback>
|
|
1911
1920
|
llm_override:
|
|
1912
1921
|
type: optional<string>
|
|
1913
|
-
source_medium:
|
|
1914
|
-
type: optional<ConversationHistoryTranscriptCommonModelOutputSourceMedium>
|
|
1915
1922
|
time_in_call_secs: integer
|
|
1916
1923
|
conversation_turn_metrics:
|
|
1917
1924
|
type: optional<ConversationTurnMetrics>
|
|
@@ -1924,6 +1931,8 @@ types:
|
|
|
1924
1931
|
default: false
|
|
1925
1932
|
original_message:
|
|
1926
1933
|
type: optional<string>
|
|
1934
|
+
source_medium:
|
|
1935
|
+
type: optional<ConversationHistoryTranscriptCommonModelOutputSourceMedium>
|
|
1927
1936
|
source:
|
|
1928
1937
|
openapi: openapi.json
|
|
1929
1938
|
ConversationHistoryTranscriptToolCallClientDetails:
|
|
@@ -2202,7 +2211,7 @@ types:
|
|
|
2202
2211
|
type: optional<TurnConfig>
|
|
2203
2212
|
docs: Configuration for turn detection
|
|
2204
2213
|
tts:
|
|
2205
|
-
type: optional<
|
|
2214
|
+
type: optional<TtsConversationalConfigOutput>
|
|
2206
2215
|
docs: Configuration for conversational text to speech
|
|
2207
2216
|
conversation:
|
|
2208
2217
|
type: optional<ConversationConfig>
|
|
@@ -2317,6 +2326,15 @@ types:
|
|
|
2317
2326
|
docs: Twilio Auth Token
|
|
2318
2327
|
source:
|
|
2319
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
|
|
2320
2338
|
CustomLlm:
|
|
2321
2339
|
properties:
|
|
2322
2340
|
url:
|
|
@@ -2328,6 +2346,9 @@ types:
|
|
|
2328
2346
|
api_key:
|
|
2329
2347
|
type: optional<ConvAiSecretLocator>
|
|
2330
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
|
|
2331
2352
|
source:
|
|
2332
2353
|
openapi: openapi.json
|
|
2333
2354
|
DashboardCallSuccessChartModel:
|
|
@@ -2540,6 +2561,29 @@ types:
|
|
|
2540
2561
|
properties: {}
|
|
2541
2562
|
source:
|
|
2542
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
|
|
2543
2587
|
DoDubbingResponse:
|
|
2544
2588
|
properties:
|
|
2545
2589
|
dubbing_id:
|
|
@@ -2706,6 +2750,7 @@ types:
|
|
|
2706
2750
|
openapi: openapi.json
|
|
2707
2751
|
EmbedVariant:
|
|
2708
2752
|
enum:
|
|
2753
|
+
- tiny
|
|
2709
2754
|
- compact
|
|
2710
2755
|
- full
|
|
2711
2756
|
- expandable
|
|
@@ -2765,20 +2810,6 @@ types:
|
|
|
2765
2810
|
inline: true
|
|
2766
2811
|
source:
|
|
2767
2812
|
openapi: openapi.json
|
|
2768
|
-
ExtendedSubscriptionResponseModelStatus:
|
|
2769
|
-
enum:
|
|
2770
|
-
- trialing
|
|
2771
|
-
- active
|
|
2772
|
-
- incomplete
|
|
2773
|
-
- incomplete_expired
|
|
2774
|
-
- past_due
|
|
2775
|
-
- canceled
|
|
2776
|
-
- unpaid
|
|
2777
|
-
- free
|
|
2778
|
-
docs: The status of the user's subscription.
|
|
2779
|
-
inline: true
|
|
2780
|
-
source:
|
|
2781
|
-
openapi: openapi.json
|
|
2782
2813
|
ExtendedSubscriptionResponseModelBillingPeriod:
|
|
2783
2814
|
enum:
|
|
2784
2815
|
- monthly_period
|
|
@@ -2853,7 +2884,7 @@ types:
|
|
|
2853
2884
|
type: optional<ExtendedSubscriptionResponseModelCurrency>
|
|
2854
2885
|
docs: The currency of the user's subscription.
|
|
2855
2886
|
status:
|
|
2856
|
-
type:
|
|
2887
|
+
type: SubscriptionStatusType
|
|
2857
2888
|
docs: The status of the user's subscription.
|
|
2858
2889
|
billing_period:
|
|
2859
2890
|
type: optional<ExtendedSubscriptionResponseModelBillingPeriod>
|
|
@@ -2869,6 +2900,34 @@ types:
|
|
|
2869
2900
|
docs: Whether the user has open invoices.
|
|
2870
2901
|
source:
|
|
2871
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
|
|
2872
2931
|
FeedbackItem:
|
|
2873
2932
|
properties:
|
|
2874
2933
|
thumbs_up:
|
|
@@ -3008,7 +3067,7 @@ types:
|
|
|
3008
3067
|
properties:
|
|
3009
3068
|
agent_id: string
|
|
3010
3069
|
widget_config:
|
|
3011
|
-
type:
|
|
3070
|
+
type: WidgetConfigResponse
|
|
3012
3071
|
source:
|
|
3013
3072
|
openapi: openapi.json
|
|
3014
3073
|
GetAgentKnowledgebaseSizeResponseModel:
|
|
@@ -3195,7 +3254,8 @@ types:
|
|
|
3195
3254
|
name: string
|
|
3196
3255
|
metadata:
|
|
3197
3256
|
type: KnowledgeBaseDocumentMetadataResponseModel
|
|
3198
|
-
|
|
3257
|
+
supported_usages:
|
|
3258
|
+
type: list<DocumentUsageModeEnum>
|
|
3199
3259
|
access_info:
|
|
3200
3260
|
type: ResourceAccessInfo
|
|
3201
3261
|
extracted_inner_html: string
|
|
@@ -3238,7 +3298,8 @@ types:
|
|
|
3238
3298
|
name: string
|
|
3239
3299
|
metadata:
|
|
3240
3300
|
type: KnowledgeBaseDocumentMetadataResponseModel
|
|
3241
|
-
|
|
3301
|
+
supported_usages:
|
|
3302
|
+
type: list<DocumentUsageModeEnum>
|
|
3242
3303
|
access_info:
|
|
3243
3304
|
type: ResourceAccessInfo
|
|
3244
3305
|
dependent_agents:
|
|
@@ -3261,7 +3322,8 @@ types:
|
|
|
3261
3322
|
name: string
|
|
3262
3323
|
metadata:
|
|
3263
3324
|
type: KnowledgeBaseDocumentMetadataResponseModel
|
|
3264
|
-
|
|
3325
|
+
supported_usages:
|
|
3326
|
+
type: list<DocumentUsageModeEnum>
|
|
3265
3327
|
access_info:
|
|
3266
3328
|
type: ResourceAccessInfo
|
|
3267
3329
|
dependent_agents:
|
|
@@ -3284,7 +3346,8 @@ types:
|
|
|
3284
3346
|
name: string
|
|
3285
3347
|
metadata:
|
|
3286
3348
|
type: KnowledgeBaseDocumentMetadataResponseModel
|
|
3287
|
-
|
|
3349
|
+
supported_usages:
|
|
3350
|
+
type: list<DocumentUsageModeEnum>
|
|
3288
3351
|
access_info:
|
|
3289
3352
|
type: ResourceAccessInfo
|
|
3290
3353
|
dependent_agents:
|
|
@@ -3298,7 +3361,8 @@ types:
|
|
|
3298
3361
|
name: string
|
|
3299
3362
|
metadata:
|
|
3300
3363
|
type: KnowledgeBaseDocumentMetadataResponseModel
|
|
3301
|
-
|
|
3364
|
+
supported_usages:
|
|
3365
|
+
type: list<DocumentUsageModeEnum>
|
|
3302
3366
|
access_info:
|
|
3303
3367
|
type: ResourceAccessInfo
|
|
3304
3368
|
extracted_inner_html: string
|
|
@@ -3310,7 +3374,8 @@ types:
|
|
|
3310
3374
|
name: string
|
|
3311
3375
|
metadata:
|
|
3312
3376
|
type: KnowledgeBaseDocumentMetadataResponseModel
|
|
3313
|
-
|
|
3377
|
+
supported_usages:
|
|
3378
|
+
type: list<DocumentUsageModeEnum>
|
|
3314
3379
|
access_info:
|
|
3315
3380
|
type: ResourceAccessInfo
|
|
3316
3381
|
extracted_inner_html: string
|
|
@@ -3425,6 +3490,14 @@ types:
|
|
|
3425
3490
|
docs: The description of the pronunciation dictionary.
|
|
3426
3491
|
source:
|
|
3427
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
|
|
3428
3501
|
GetSpeechHistoryResponse:
|
|
3429
3502
|
properties:
|
|
3430
3503
|
history:
|
|
@@ -3586,14 +3659,14 @@ types:
|
|
|
3586
3659
|
name: Gemini15Pro
|
|
3587
3660
|
- value: gemini-1.5-flash
|
|
3588
3661
|
name: Gemini15Flash
|
|
3589
|
-
- value: gemini-2.0-flash
|
|
3590
|
-
name:
|
|
3662
|
+
- value: gemini-2.0-flash
|
|
3663
|
+
name: Gemini20Flash
|
|
3591
3664
|
- value: gemini-2.0-flash-lite
|
|
3592
3665
|
name: Gemini20FlashLite
|
|
3593
3666
|
- value: gemini-2.5-flash
|
|
3594
3667
|
name: Gemini25Flash
|
|
3595
|
-
- value:
|
|
3596
|
-
name:
|
|
3668
|
+
- value: claude-sonnet-4
|
|
3669
|
+
name: ClaudeSonnet4
|
|
3597
3670
|
- value: claude-3-7-sonnet
|
|
3598
3671
|
name: Claude37Sonnet
|
|
3599
3672
|
- value: claude-3-5-sonnet
|
|
@@ -3606,6 +3679,56 @@ types:
|
|
|
3606
3679
|
name: GrokBeta
|
|
3607
3680
|
- value: custom-llm
|
|
3608
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
|
|
3609
3732
|
source:
|
|
3610
3733
|
openapi: openapi.json
|
|
3611
3734
|
LlmCategoryUsage:
|
|
@@ -3854,6 +3977,14 @@ types:
|
|
|
3854
3977
|
docs: The constant value of the property
|
|
3855
3978
|
source:
|
|
3856
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
|
|
3857
3988
|
McpToolConfigInput:
|
|
3858
3989
|
docs: A MCP tool is a tool that is used to call a MCP server
|
|
3859
3990
|
properties:
|
|
@@ -3882,6 +4013,11 @@ types:
|
|
|
3882
4013
|
mcp_server_id:
|
|
3883
4014
|
type: string
|
|
3884
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
|
|
3885
4021
|
source:
|
|
3886
4022
|
openapi: openapi.json
|
|
3887
4023
|
McpToolConfigOutput:
|
|
@@ -3912,6 +4048,11 @@ types:
|
|
|
3912
4048
|
mcp_server_id:
|
|
3913
4049
|
type: string
|
|
3914
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
|
|
3915
4056
|
source:
|
|
3916
4057
|
openapi: openapi.json
|
|
3917
4058
|
ManualVerificationFileResponse:
|
|
@@ -4033,6 +4174,23 @@ types:
|
|
|
4033
4174
|
docs: The concurrency group for the model.
|
|
4034
4175
|
source:
|
|
4035
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
|
|
4036
4194
|
ModerationStatusResponseModelSafetyStatus:
|
|
4037
4195
|
enum:
|
|
4038
4196
|
- appeal_approved
|
|
@@ -4107,6 +4265,11 @@ types:
|
|
|
4107
4265
|
mcp_server_id:
|
|
4108
4266
|
type: string
|
|
4109
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
|
|
4110
4273
|
source:
|
|
4111
4274
|
openapi: openapi.json
|
|
4112
4275
|
NativeMcpToolConfigOutput:
|
|
@@ -4137,6 +4300,11 @@ types:
|
|
|
4137
4300
|
mcp_server_id:
|
|
4138
4301
|
type: string
|
|
4139
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
|
|
4140
4308
|
source:
|
|
4141
4309
|
openapi: openapi.json
|
|
4142
4310
|
ObjectJsonSchemaPropertyInputPropertiesValue:
|
|
@@ -4883,17 +5051,14 @@ types:
|
|
|
4883
5051
|
properties:
|
|
4884
5052
|
prompt:
|
|
4885
5053
|
type: optional<string>
|
|
4886
|
-
docs:
|
|
4887
|
-
The initial system message that defines the agent, e.g. “You are a
|
|
4888
|
-
German language teacher named Laura.”
|
|
4889
|
-
default: ''
|
|
5054
|
+
docs: The prompt for the agent
|
|
4890
5055
|
source:
|
|
4891
5056
|
openapi: openapi.json
|
|
4892
5057
|
PromptAgentOverrideConfig:
|
|
4893
5058
|
properties:
|
|
4894
5059
|
prompt:
|
|
4895
5060
|
type: optional<boolean>
|
|
4896
|
-
docs: Whether to allow prompt
|
|
5061
|
+
docs: Whether to allow overriding the prompt field.
|
|
4897
5062
|
default: false
|
|
4898
5063
|
source:
|
|
4899
5064
|
openapi: openapi.json
|
|
@@ -5023,11 +5188,42 @@ types:
|
|
|
5023
5188
|
type: optional<list<string>>
|
|
5024
5189
|
source:
|
|
5025
5190
|
openapi: openapi.json
|
|
5026
|
-
|
|
5191
|
+
RagDocumentIndexResponseModel:
|
|
5027
5192
|
properties:
|
|
5193
|
+
id: string
|
|
5194
|
+
model:
|
|
5195
|
+
type: EmbeddingModelEnum
|
|
5028
5196
|
status:
|
|
5029
5197
|
type: RagIndexStatus
|
|
5030
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>
|
|
5031
5227
|
source:
|
|
5032
5228
|
openapi: openapi.json
|
|
5033
5229
|
RagIndexStatus:
|
|
@@ -5036,6 +5232,8 @@ types:
|
|
|
5036
5232
|
- processing
|
|
5037
5233
|
- failed
|
|
5038
5234
|
- succeeded
|
|
5235
|
+
- rag_limit_exceeded
|
|
5236
|
+
- document_too_small
|
|
5039
5237
|
source:
|
|
5040
5238
|
openapi: openapi.json
|
|
5041
5239
|
RagChunkMetadata:
|
|
@@ -5060,6 +5258,15 @@ types:
|
|
|
5060
5258
|
type: optional<integer>
|
|
5061
5259
|
docs: Maximum total length of document chunks retrieved from RAG.
|
|
5062
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
|
|
5063
5270
|
source:
|
|
5064
5271
|
openapi: openapi.json
|
|
5065
5272
|
RagRetrievalInfo:
|
|
@@ -5420,6 +5627,23 @@ types:
|
|
|
5420
5627
|
'key').
|
|
5421
5628
|
source:
|
|
5422
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
|
|
5423
5647
|
SimilarVoiceCategory:
|
|
5424
5648
|
enum:
|
|
5425
5649
|
- premade
|
|
@@ -5448,6 +5672,32 @@ types:
|
|
|
5448
5672
|
type: list<SimilarVoice>
|
|
5449
5673
|
source:
|
|
5450
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
|
|
5451
5701
|
SpeakerAudioResponseModel:
|
|
5452
5702
|
properties:
|
|
5453
5703
|
audio_base_64:
|
|
@@ -5561,13 +5811,13 @@ types:
|
|
|
5561
5811
|
type: optional<string>
|
|
5562
5812
|
docs: The ID of the request.
|
|
5563
5813
|
voice_id:
|
|
5564
|
-
type: string
|
|
5814
|
+
type: optional<string>
|
|
5565
5815
|
docs: The ID of the voice used.
|
|
5566
5816
|
model_id:
|
|
5567
5817
|
type: optional<string>
|
|
5568
5818
|
docs: The ID of the model.
|
|
5569
5819
|
voice_name:
|
|
5570
|
-
type: string
|
|
5820
|
+
type: optional<string>
|
|
5571
5821
|
docs: The name of the voice.
|
|
5572
5822
|
voice_category:
|
|
5573
5823
|
type: optional<SpeechHistoryItemResponseModelVoiceCategory>
|
|
@@ -5575,7 +5825,7 @@ types:
|
|
|
5575
5825
|
The category of the voice. Either 'premade', 'cloned', 'generated' or
|
|
5576
5826
|
'professional'.
|
|
5577
5827
|
text:
|
|
5578
|
-
type: string
|
|
5828
|
+
type: optional<string>
|
|
5579
5829
|
docs: The text used to generate the audio item.
|
|
5580
5830
|
date_unix:
|
|
5581
5831
|
type: integer
|
|
@@ -5610,6 +5860,12 @@ types:
|
|
|
5610
5860
|
alignments:
|
|
5611
5861
|
type: optional<HistoryAlignmentsResponseModel>
|
|
5612
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.
|
|
5613
5869
|
source:
|
|
5614
5870
|
openapi: openapi.json
|
|
5615
5871
|
SpeechToTextCharacterResponseModel:
|
|
@@ -5782,20 +6038,6 @@ types:
|
|
|
5782
6038
|
inline: true
|
|
5783
6039
|
source:
|
|
5784
6040
|
openapi: openapi.json
|
|
5785
|
-
SubscriptionStatus:
|
|
5786
|
-
enum:
|
|
5787
|
-
- trialing
|
|
5788
|
-
- active
|
|
5789
|
-
- incomplete
|
|
5790
|
-
- incomplete_expired
|
|
5791
|
-
- past_due
|
|
5792
|
-
- canceled
|
|
5793
|
-
- unpaid
|
|
5794
|
-
- free
|
|
5795
|
-
docs: The status of the user's subscription.
|
|
5796
|
-
inline: true
|
|
5797
|
-
source:
|
|
5798
|
-
openapi: openapi.json
|
|
5799
6041
|
SubscriptionResponseModelBillingPeriod:
|
|
5800
6042
|
enum:
|
|
5801
6043
|
- monthly_period
|
|
@@ -5870,7 +6112,7 @@ types:
|
|
|
5870
6112
|
type: optional<SubscriptionResponseModelCurrency>
|
|
5871
6113
|
docs: The currency of the user's subscription.
|
|
5872
6114
|
status:
|
|
5873
|
-
type:
|
|
6115
|
+
type: SubscriptionStatusType
|
|
5874
6116
|
docs: The status of the user's subscription.
|
|
5875
6117
|
billing_period:
|
|
5876
6118
|
type: optional<SubscriptionResponseModelBillingPeriod>
|
|
@@ -5880,6 +6122,19 @@ types:
|
|
|
5880
6122
|
docs: The character refresh period of the user's subscription.
|
|
5881
6123
|
source:
|
|
5882
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
|
|
5883
6138
|
SubscriptionUsageResponseModel:
|
|
5884
6139
|
properties:
|
|
5885
6140
|
rollover_credits_quota:
|
|
@@ -5908,6 +6163,24 @@ types:
|
|
|
5908
6163
|
docs: The actual reported credits.
|
|
5909
6164
|
source:
|
|
5910
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
|
|
5911
6184
|
SystemToolConfigInputParams:
|
|
5912
6185
|
discriminant: system_tool_type
|
|
5913
6186
|
base-properties: {}
|
|
@@ -5916,6 +6189,8 @@ types:
|
|
|
5916
6189
|
type: EndCallToolConfig
|
|
5917
6190
|
language_detection:
|
|
5918
6191
|
type: LanguageDetectionToolConfig
|
|
6192
|
+
skip_turn:
|
|
6193
|
+
type: SkipTurnToolConfig
|
|
5919
6194
|
transfer_to_agent:
|
|
5920
6195
|
type: TransferToAgentToolConfig
|
|
5921
6196
|
transfer_to_number:
|
|
@@ -5954,6 +6229,8 @@ types:
|
|
|
5954
6229
|
type: EndCallToolConfig
|
|
5955
6230
|
language_detection:
|
|
5956
6231
|
type: LanguageDetectionToolConfig
|
|
6232
|
+
skip_turn:
|
|
6233
|
+
type: SkipTurnToolConfig
|
|
5957
6234
|
transfer_to_agent:
|
|
5958
6235
|
type: TransferToAgentToolConfig
|
|
5959
6236
|
transfer_to_number:
|
|
@@ -5984,7 +6261,53 @@ types:
|
|
|
5984
6261
|
type: SystemToolConfigOutputParams
|
|
5985
6262
|
source:
|
|
5986
6263
|
openapi: openapi.json
|
|
5987
|
-
|
|
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:
|
|
5988
6311
|
properties:
|
|
5989
6312
|
model_id:
|
|
5990
6313
|
type: optional<TtsConversationalModel>
|
|
@@ -5995,6 +6318,9 @@ types:
|
|
|
5995
6318
|
default: cjVigY5qzO86Huf0OWal
|
|
5996
6319
|
validation:
|
|
5997
6320
|
minLength: 0
|
|
6321
|
+
supported_voices:
|
|
6322
|
+
type: optional<list<SupportedVoice>>
|
|
6323
|
+
docs: Additional supported voices for the agent
|
|
5998
6324
|
agent_output_audio_format:
|
|
5999
6325
|
type: optional<TtsOutputFormat>
|
|
6000
6326
|
docs: The audio format to use for TTS
|
|
@@ -6031,13 +6357,14 @@ types:
|
|
|
6031
6357
|
properties:
|
|
6032
6358
|
voice_id:
|
|
6033
6359
|
type: optional<string>
|
|
6360
|
+
docs: The voice ID to use for TTS
|
|
6034
6361
|
source:
|
|
6035
6362
|
openapi: openapi.json
|
|
6036
6363
|
TtsConversationalConfigOverrideConfig:
|
|
6037
6364
|
properties:
|
|
6038
6365
|
voice_id:
|
|
6039
6366
|
type: optional<boolean>
|
|
6040
|
-
docs: Whether to allow overriding the
|
|
6367
|
+
docs: Whether to allow overriding the voice_id field.
|
|
6041
6368
|
default: false
|
|
6042
6369
|
source:
|
|
6043
6370
|
openapi: openapi.json
|
|
@@ -6049,6 +6376,13 @@ types:
|
|
|
6049
6376
|
- eleven_flash_v2_5
|
|
6050
6377
|
source:
|
|
6051
6378
|
openapi: openapi.json
|
|
6379
|
+
TtsModelFamily:
|
|
6380
|
+
enum:
|
|
6381
|
+
- turbo
|
|
6382
|
+
- flash
|
|
6383
|
+
- multilingual
|
|
6384
|
+
source:
|
|
6385
|
+
openapi: openapi.json
|
|
6052
6386
|
TtsOptimizeStreamingLatency: integer
|
|
6053
6387
|
TtsOutputFormat:
|
|
6054
6388
|
enum:
|
|
@@ -6472,6 +6806,12 @@ types:
|
|
|
6472
6806
|
generation. Lower values introduce broader emotional range for the
|
|
6473
6807
|
voice. Higher values can result in a monotonous voice with limited
|
|
6474
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.
|
|
6475
6815
|
similarity_boost:
|
|
6476
6816
|
type: optional<double>
|
|
6477
6817
|
docs: >-
|
|
@@ -6484,12 +6824,6 @@ types:
|
|
|
6484
6824
|
to amplify the style of the original speaker. It does consume
|
|
6485
6825
|
additional computational resources and might increase latency if set
|
|
6486
6826
|
to anything other than 0.
|
|
6487
|
-
use_speaker_boost:
|
|
6488
|
-
type: optional<boolean>
|
|
6489
|
-
docs: >-
|
|
6490
|
-
This setting boosts the similarity to the original speaker. Using this
|
|
6491
|
-
setting requires a slightly higher computational load, which in turn
|
|
6492
|
-
increases latency.
|
|
6493
6827
|
speed:
|
|
6494
6828
|
type: optional<double>
|
|
6495
6829
|
docs: >-
|
|
@@ -6869,7 +7203,7 @@ types:
|
|
|
6869
7203
|
docs: Configuration for dynamic variables
|
|
6870
7204
|
source:
|
|
6871
7205
|
openapi: openapi.json
|
|
6872
|
-
|
|
7206
|
+
WidgetConfigInputAvatar:
|
|
6873
7207
|
discriminant: type
|
|
6874
7208
|
base-properties: {}
|
|
6875
7209
|
docs: The avatar of the widget
|
|
@@ -6887,11 +7221,14 @@ types:
|
|
|
6887
7221
|
variant:
|
|
6888
7222
|
type: optional<EmbedVariant>
|
|
6889
7223
|
docs: The variant of the widget
|
|
7224
|
+
placement:
|
|
7225
|
+
type: optional<WidgetPlacement>
|
|
7226
|
+
docs: The placement of the widget on the screen
|
|
6890
7227
|
expandable:
|
|
6891
7228
|
type: optional<WidgetExpandable>
|
|
6892
7229
|
docs: Whether the widget is expandable
|
|
6893
7230
|
avatar:
|
|
6894
|
-
type: optional<
|
|
7231
|
+
type: optional<WidgetConfigOutputAvatar>
|
|
6895
7232
|
docs: The avatar of the widget
|
|
6896
7233
|
feedback_mode:
|
|
6897
7234
|
type: optional<WidgetFeedbackMode>
|
|
@@ -6974,13 +7311,46 @@ types:
|
|
|
6974
7311
|
type: optional<boolean>
|
|
6975
7312
|
docs: Whether to enable mic muting
|
|
6976
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
|
|
6977
7327
|
language_selector:
|
|
6978
7328
|
type: optional<boolean>
|
|
6979
7329
|
docs: Whether to show the language selector
|
|
6980
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
|
|
6981
7335
|
custom_avatar_path:
|
|
6982
7336
|
type: optional<string>
|
|
6983
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
|
|
6984
7354
|
source:
|
|
6985
7355
|
openapi: openapi.json
|
|
6986
7356
|
WidgetConfigResponseModelAvatar:
|
|
@@ -6996,11 +7366,14 @@ types:
|
|
|
6996
7366
|
type: ImageAvatar
|
|
6997
7367
|
source:
|
|
6998
7368
|
openapi: openapi.json
|
|
6999
|
-
|
|
7369
|
+
WidgetConfigResponse:
|
|
7000
7370
|
properties:
|
|
7001
7371
|
variant:
|
|
7002
7372
|
type: optional<EmbedVariant>
|
|
7003
7373
|
docs: The variant of the widget
|
|
7374
|
+
placement:
|
|
7375
|
+
type: optional<WidgetPlacement>
|
|
7376
|
+
docs: The placement of the widget on the screen
|
|
7004
7377
|
expandable:
|
|
7005
7378
|
type: optional<WidgetExpandable>
|
|
7006
7379
|
docs: Whether the widget is expandable
|
|
@@ -7088,9 +7461,35 @@ types:
|
|
|
7088
7461
|
type: optional<boolean>
|
|
7089
7462
|
docs: Whether to enable mic muting
|
|
7090
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
|
|
7091
7477
|
language: string
|
|
7092
7478
|
supported_language_overrides:
|
|
7093
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>
|
|
7094
7493
|
source:
|
|
7095
7494
|
openapi: openapi.json
|
|
7096
7495
|
WidgetExpandable:
|
|
@@ -7108,6 +7507,105 @@ types:
|
|
|
7108
7507
|
- end
|
|
7109
7508
|
source:
|
|
7110
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
|
|
7111
7609
|
WorkspaceBatchCallsResponse:
|
|
7112
7610
|
properties:
|
|
7113
7611
|
batch_calls:
|
|
@@ -7532,7 +8030,7 @@ types:
|
|
|
7532
8030
|
PronunciationDictionaryLocator:
|
|
7533
8031
|
docs: Identifies a specific pronunciation dictionary to use
|
|
7534
8032
|
properties:
|
|
7535
|
-
|
|
8033
|
+
pronunciation_dictionary_id:
|
|
7536
8034
|
type: string
|
|
7537
8035
|
docs: The unique identifier of the pronunciation dictionary
|
|
7538
8036
|
version_id:
|
|
@@ -7546,14 +8044,14 @@ types:
|
|
|
7546
8044
|
text:
|
|
7547
8045
|
type: optional<string>
|
|
7548
8046
|
docs: >
|
|
7549
|
-
Text to be synthesized.
|
|
8047
|
+
Text to be synthesized.
|
|
7550
8048
|
|
|
7551
8049
|
For the first message establishing a new context (identified by
|
|
7552
8050
|
`context_id`, or a default context if `context_id` is absent), this
|
|
7553
|
-
should be a single space character (' ').
|
|
8051
|
+
should be a single space character (' ').
|
|
7554
8052
|
|
|
7555
8053
|
For subsequent messages to an active context, this is the text to
|
|
7556
|
-
synthesize.
|
|
8054
|
+
synthesize.
|
|
7557
8055
|
|
|
7558
8056
|
This field can be null or an empty string if the message is primarily
|
|
7559
8057
|
for control (e.g., using `flush`, `close_context`, or `close_socket`).
|