@elevenlabs/elevenlabs-js 2.46.0 → 2.48.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/.fern/metadata.json +1 -1
- package/BaseClient.js +2 -2
- package/Client.d.ts +3 -0
- package/Client.js +31 -26
- package/README.md +92 -0
- package/api/resources/conversationalAi/conversation/Conversation.js +1 -0
- package/api/resources/conversationalAi/conversation/ConversationConfig.d.ts +2 -0
- package/api/resources/conversationalAi/conversation/events.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/client/Client.d.ts +3 -0
- package/api/resources/conversationalAi/resources/agents/client/Client.js +7 -2
- package/api/resources/conversationalAi/resources/agents/resources/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/index.js +2 -1
- package/api/resources/conversationalAi/resources/agents/resources/versions/client/Client.d.ts +27 -0
- package/api/resources/conversationalAi/resources/agents/resources/versions/client/Client.js +116 -0
- package/api/resources/conversationalAi/resources/agents/resources/versions/client/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/versions/client/index.js +2 -0
- package/api/resources/conversationalAi/resources/agents/resources/versions/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/agents/resources/versions/index.js +17 -0
- package/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +3 -2
- package/api/resources/conversationalAi/resources/conversations/client/Client.js +7 -3
- package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +2 -2
- package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetWebrtcTokenRequest.d.ts +2 -2
- package/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +3 -1
- package/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.d.ts +1 -0
- package/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.js +5 -1
- package/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesSearchRequest.d.ts +1 -1
- package/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesTextSearchRequest.d.ts +3 -1
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +17 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +65 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/BodyUpdateFileDocumentV1ConvaiKnowledgeBaseDocumentationIdUpdateFilePatch.d.ts +11 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.d.ts +16 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +6 -5
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +12 -9
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.d.ts +4 -4
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/Client.d.ts +31 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/Client.js +131 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/index.js +17 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/ChunksListRequest.d.ts +17 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/ChunksListRequest.js +3 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/index.js +2 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/index.d.ts +1 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/index.js +17 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +2 -0
- package/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +3 -1
- package/api/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +4 -0
- package/api/resources/conversationalAi/resources/users/client/requests/UsersListRequest.d.ts +1 -1
- package/api/resources/index.d.ts +2 -0
- package/api/resources/index.js +3 -1
- package/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.d.ts +2 -0
- package/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.d.ts +2 -0
- package/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.d.ts +4 -0
- package/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.js +3 -0
- package/api/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +1 -0
- package/api/resources/serviceAccounts/resources/apiKeys/types/index.js +1 -0
- package/api/resources/speechEngine/client/Client.d.ts +89 -0
- package/api/resources/speechEngine/client/Client.js +363 -0
- package/api/resources/speechEngine/client/index.d.ts +1 -0
- package/api/resources/speechEngine/client/index.js +17 -0
- package/api/resources/speechEngine/client/requests/CreateSpeechEngineRequest.d.ts +31 -0
- package/api/resources/speechEngine/client/requests/CreateSpeechEngineRequest.js +3 -0
- package/api/resources/speechEngine/client/requests/SpeechEngineListRequest.d.ts +23 -0
- package/api/resources/speechEngine/client/requests/SpeechEngineListRequest.js +3 -0
- package/api/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.d.ts +17 -0
- package/api/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.js +3 -0
- package/api/resources/speechEngine/client/requests/index.d.ts +3 -0
- package/api/resources/speechEngine/client/requests/index.js +2 -0
- package/api/resources/speechEngine/index.d.ts +1 -0
- package/api/resources/speechEngine/index.js +17 -0
- package/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost.d.ts +1 -1
- package/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.d.ts +17 -10
- package/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.js +17 -10
- package/api/resources/voices/client/Client.js +3 -0
- package/api/resources/voices/client/requests/BodyEditVoiceV1VoicesVoiceIdEditPost.d.ts +2 -0
- package/api/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.d.ts +2 -0
- package/api/resources/workspace/client/Client.d.ts +3 -0
- package/api/resources/workspace/client/Client.js +19 -14
- package/api/resources/workspace/resources/analytics/client/Client.d.ts +12 -0
- package/api/resources/workspace/resources/analytics/client/Client.js +16 -0
- package/api/resources/workspace/resources/analytics/client/index.d.ts +1 -0
- package/api/resources/workspace/resources/analytics/client/index.js +2 -0
- package/api/resources/workspace/resources/analytics/index.d.ts +2 -0
- package/api/resources/workspace/resources/analytics/index.js +18 -0
- package/api/resources/workspace/resources/analytics/resources/index.d.ts +3 -0
- package/api/resources/workspace/resources/analytics/resources/index.js +42 -0
- package/api/resources/workspace/resources/analytics/resources/requests/client/Client.d.ts +26 -0
- package/api/resources/workspace/resources/analytics/resources/requests/client/Client.js +118 -0
- package/api/resources/workspace/resources/analytics/resources/requests/client/index.d.ts +1 -0
- package/api/resources/workspace/resources/analytics/resources/requests/client/index.js +17 -0
- package/api/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.d.ts +16 -0
- package/api/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.js +3 -0
- package/api/resources/workspace/resources/analytics/resources/requests/client/requests/index.d.ts +1 -0
- package/api/resources/workspace/resources/analytics/resources/requests/client/requests/index.js +2 -0
- package/api/resources/workspace/resources/analytics/resources/requests/index.d.ts +2 -0
- package/api/resources/workspace/resources/analytics/resources/requests/index.js +18 -0
- package/api/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.d.ts +5 -0
- package/api/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.js +8 -0
- package/api/resources/workspace/resources/analytics/resources/requests/types/index.d.ts +1 -0
- package/api/resources/workspace/resources/analytics/resources/requests/types/index.js +17 -0
- package/api/resources/workspace/resources/authConnections/client/Client.d.ts +16 -0
- package/api/resources/workspace/resources/authConnections/client/Client.js +63 -0
- package/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +4 -1
- package/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +4 -1
- package/api/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateRequestBody.d.ts +16 -0
- package/api/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateRequestBody.js +3 -0
- package/api/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateResponse.d.ts +40 -0
- package/api/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateResponse.js +3 -0
- package/api/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
- package/api/resources/workspace/resources/authConnections/types/index.js +2 -0
- package/api/resources/workspace/resources/index.d.ts +1 -0
- package/api/resources/workspace/resources/index.js +2 -1
- package/api/types/AgentAlertingMonitorConfig.d.ts +6 -0
- package/api/types/AgentAlertingMonitorConfig.js +3 -0
- package/api/types/AgentAlertingSettings.d.ts +7 -0
- package/api/types/AgentAlertingSettings.js +3 -0
- package/api/types/AgentMetadataDbModel.d.ts +7 -0
- package/api/types/AgentMetadataDbModel.js +3 -0
- package/api/types/AgentPlatformSettingsRequestModel.d.ts +1 -0
- package/api/types/AgentPlatformSettingsResponseModel.d.ts +1 -0
- package/api/types/AgentTopicResponseModel.d.ts +3 -0
- package/api/types/AudioIsolationHistoryItemResponseModel.d.ts +1 -0
- package/api/types/BackgroundMusicPresetId.d.ts +4 -0
- package/api/types/BackgroundMusicPresetId.js +4 -0
- package/api/types/BaseTurnConfig.d.ts +17 -0
- package/api/types/BaseTurnConfig.js +3 -0
- package/api/types/ClientEvent.d.ts +1 -0
- package/api/types/ClientEvent.js +1 -0
- package/api/types/CodeToolAllowedDomain.d.ts +6 -0
- package/api/types/CodeToolAllowedDomain.js +3 -0
- package/api/types/ConversationInitiationSource.d.ts +1 -0
- package/api/types/ConversationInitiationSource.js +1 -0
- package/api/types/{ConversationTokenDbModel.d.ts → ConversationTokenResponseModel.d.ts} +2 -2
- package/api/types/ConversationTokenResponseModel.js +3 -0
- package/api/types/CreateBearerAuthRequest.d.ts +8 -0
- package/api/types/CreateBearerAuthRequest.js +3 -0
- package/api/types/CreateSpeechEngineResponse.d.ts +4 -0
- package/api/types/CreateSpeechEngineResponse.js +3 -0
- package/api/types/GetAgentLinkResponseModel.d.ts +1 -1
- package/api/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.d.ts +2 -0
- package/api/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.d.ts +2 -0
- package/api/types/InboundSipTrunkConfigRequestModel.d.ts +2 -0
- package/api/types/KnowledgeBaseDocumentChunksResponseModel.d.ts +5 -0
- package/api/types/KnowledgeBaseDocumentChunksResponseModel.js +3 -0
- package/api/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +4 -1
- package/api/types/ListCustomerFacingAgentsParams.d.ts +11 -0
- package/api/types/ListCustomerFacingAgentsParams.js +3 -0
- package/api/types/ListSpeechEnginesResponse.d.ts +9 -0
- package/api/types/ListSpeechEnginesResponse.js +3 -0
- package/api/types/Llm.d.ts +6 -0
- package/api/types/Llm.js +6 -0
- package/api/types/LlmInfoModelInput.d.ts +2 -0
- package/api/types/LlmInfoModelOutput.d.ts +2 -0
- package/api/types/LoadProcedureToolConfig.d.ts +4 -0
- package/api/types/LoadProcedureToolConfig.js +3 -0
- package/api/types/LoadProcedureToolErrorStatus.d.ts +5 -0
- package/api/types/LoadProcedureToolErrorStatus.js +8 -0
- package/api/types/Monitor.d.ts +5 -0
- package/api/types/Monitor.js +8 -0
- package/api/types/OAuth2ClientCredsResponse.d.ts +2 -0
- package/api/types/OutboundSipTrunkConfigRequestModel.d.ts +2 -0
- package/api/types/PhoneNumberAgentInfo.d.ts +4 -0
- package/api/types/ProcedureAtVersion.d.ts +12 -0
- package/api/types/ProcedureAtVersion.js +3 -0
- package/api/types/ProcedureCompilerMode.d.ts +1 -1
- package/api/types/ProcedureCompilerMode.js +1 -1
- package/api/types/PromptAgentApiModelInput.d.ts +2 -2
- package/api/types/PromptAgentApiModelOutput.d.ts +2 -2
- package/api/types/PromptAgentApiModelWorkflowOverrideInput.d.ts +2 -2
- package/api/types/PromptAgentApiModelWorkflowOverrideOutput.d.ts +2 -2
- package/api/types/ReadMetadataChapterDbModel.d.ts +1 -0
- package/api/types/RegionalProcessingSurchargeInfo.d.ts +4 -0
- package/api/types/RegionalProcessingSurchargeInfo.js +3 -0
- package/api/types/ReportKnowledgeGapParams.d.ts +3 -0
- package/api/types/ReportKnowledgeGapParams.js +3 -0
- package/api/types/SlackBotAuthResponse.d.ts +10 -0
- package/api/types/SlackBotAuthResponse.js +3 -0
- package/api/types/SpeechEngineResponse.d.ts +27 -0
- package/api/types/SpeechEngineResponse.js +3 -0
- package/api/types/SpeechEngineSummaryResponse.d.ts +10 -0
- package/api/types/SpeechEngineSummaryResponse.js +3 -0
- package/api/types/SystemToolConfigInputParams.d.ts +4 -1
- package/api/types/SystemToolConfigOutputParams.d.ts +4 -1
- package/api/types/TurnConfig.d.ts +2 -2
- package/api/types/TurnConfigWorkflowOverride.d.ts +2 -2
- package/api/types/UpdateBasicAuthRequest.d.ts +5 -0
- package/api/types/UpdateBasicAuthRequest.js +3 -0
- package/api/types/UpdateOAuth2ClientCredsRequest.d.ts +9 -0
- package/api/types/UpdateOAuth2ClientCredsRequest.js +3 -0
- package/api/types/UpdateOAuth2JwtRequest.d.ts +14 -0
- package/api/types/UpdateOAuth2JwtRequest.js +3 -0
- package/api/types/UpdateOAuth2JwtRequestAlgorithm.d.ts +9 -0
- package/api/types/UpdateOAuth2JwtRequestAlgorithm.js +12 -0
- package/api/types/UpdateOAuth2JwtRequestTokenResponseField.d.ts +5 -0
- package/api/types/UpdateOAuth2JwtRequestTokenResponseField.js +8 -0
- package/api/types/WebhookHmacSettings.d.ts +2 -0
- package/api/types/WorkspaceApiKeyResponseModel.d.ts +1 -0
- package/api/types/WorkspaceGroupPermission.d.ts +2 -0
- package/api/types/WorkspaceGroupPermission.js +2 -0
- package/api/types/WorkspaceResourceType.d.ts +2 -0
- package/api/types/WorkspaceResourceType.js +2 -0
- package/api/types/index.d.ts +25 -1
- package/api/types/index.js +25 -1
- package/dist/BaseClient.js +2 -2
- package/dist/Client.d.ts +3 -0
- package/dist/Client.js +31 -26
- package/dist/api/resources/conversationalAi/conversation/Conversation.js +1 -0
- package/dist/api/resources/conversationalAi/conversation/ConversationConfig.d.ts +2 -0
- package/dist/api/resources/conversationalAi/conversation/events.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/client/Client.d.ts +3 -0
- package/dist/api/resources/conversationalAi/resources/agents/client/Client.js +7 -2
- package/dist/api/resources/conversationalAi/resources/agents/resources/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/index.js +2 -1
- package/dist/api/resources/conversationalAi/resources/agents/resources/versions/client/Client.d.ts +27 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/versions/client/Client.js +116 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/versions/client/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/versions/client/index.js +2 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/versions/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/agents/resources/versions/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/conversations/client/Client.d.ts +3 -2
- package/dist/api/resources/conversationalAi/resources/conversations/client/Client.js +7 -3
- package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetSignedUrlRequest.d.ts +2 -2
- package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsGetWebrtcTokenRequest.d.ts +2 -2
- package/dist/api/resources/conversationalAi/resources/conversations/client/requests/ConversationsListRequest.d.ts +3 -1
- package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/Client.js +5 -1
- package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesSearchRequest.d.ts +1 -1
- package/dist/api/resources/conversationalAi/resources/conversations/resources/messages/client/requests/MessagesTextSearchRequest.d.ts +3 -1
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.d.ts +17 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.js +65 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/BodyUpdateFileDocumentV1ConvaiKnowledgeBaseDocumentationIdUpdateFilePatch.d.ts +11 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/BodyUpdateFileDocumentV1ConvaiKnowledgeBaseDocumentationIdUpdateFilePatch.js +3 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.d.ts +16 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.js +3 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.d.ts +6 -5
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.js +12 -9
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.d.ts +4 -4
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/Client.d.ts +31 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/Client.js +131 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/ChunksListRequest.d.ts +17 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/ChunksListRequest.js +3 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/requests/index.js +2 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/index.d.ts +1 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/index.js +17 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.d.ts +2 -0
- package/dist/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/index.js +3 -1
- package/dist/api/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +4 -0
- package/dist/api/resources/conversationalAi/resources/users/client/requests/UsersListRequest.d.ts +1 -1
- package/dist/api/resources/index.d.ts +2 -0
- package/dist/api/resources/index.js +3 -1
- package/dist/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.d.ts +2 -0
- package/dist/api/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.d.ts +2 -0
- package/dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.d.ts +4 -0
- package/dist/api/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.js +3 -0
- package/dist/api/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +1 -0
- package/dist/api/resources/serviceAccounts/resources/apiKeys/types/index.js +1 -0
- package/dist/api/resources/speechEngine/client/Client.d.ts +89 -0
- package/dist/api/resources/speechEngine/client/Client.js +363 -0
- package/dist/api/resources/speechEngine/client/index.d.ts +1 -0
- package/dist/api/resources/speechEngine/client/index.js +17 -0
- package/dist/api/resources/speechEngine/client/requests/CreateSpeechEngineRequest.d.ts +31 -0
- package/dist/api/resources/speechEngine/client/requests/CreateSpeechEngineRequest.js +3 -0
- package/dist/api/resources/speechEngine/client/requests/SpeechEngineListRequest.d.ts +23 -0
- package/dist/api/resources/speechEngine/client/requests/SpeechEngineListRequest.js +3 -0
- package/dist/api/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.d.ts +17 -0
- package/dist/api/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.js +3 -0
- package/dist/api/resources/speechEngine/client/requests/index.d.ts +3 -0
- package/dist/api/resources/speechEngine/client/requests/index.js +2 -0
- package/dist/api/resources/speechEngine/index.d.ts +1 -0
- package/dist/api/resources/speechEngine/index.js +17 -0
- package/dist/api/resources/speechToSpeech/client/requests/BodySpeechToSpeechV1SpeechToSpeechVoiceIdPost.d.ts +1 -1
- package/dist/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.d.ts +17 -10
- package/dist/api/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.js +17 -10
- package/dist/api/resources/voices/client/Client.js +3 -0
- package/dist/api/resources/voices/client/requests/BodyEditVoiceV1VoicesVoiceIdEditPost.d.ts +2 -0
- package/dist/api/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.d.ts +2 -0
- package/dist/api/resources/workspace/client/Client.d.ts +3 -0
- package/dist/api/resources/workspace/client/Client.js +19 -14
- package/dist/api/resources/workspace/resources/analytics/client/Client.d.ts +12 -0
- package/dist/api/resources/workspace/resources/analytics/client/Client.js +16 -0
- package/dist/api/resources/workspace/resources/analytics/client/index.d.ts +1 -0
- package/dist/api/resources/workspace/resources/analytics/client/index.js +2 -0
- package/dist/api/resources/workspace/resources/analytics/index.d.ts +2 -0
- package/dist/api/resources/workspace/resources/analytics/index.js +18 -0
- package/dist/api/resources/workspace/resources/analytics/resources/index.d.ts +3 -0
- package/dist/api/resources/workspace/resources/analytics/resources/index.js +42 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/client/Client.d.ts +26 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/client/Client.js +118 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/client/index.d.ts +1 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/client/index.js +17 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.d.ts +16 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.js +3 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/client/requests/index.d.ts +1 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/client/requests/index.js +2 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/index.d.ts +2 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/index.js +18 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.d.ts +5 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.js +8 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/types/index.d.ts +1 -0
- package/dist/api/resources/workspace/resources/analytics/resources/requests/types/index.js +17 -0
- package/dist/api/resources/workspace/resources/authConnections/client/Client.d.ts +16 -0
- package/dist/api/resources/workspace/resources/authConnections/client/Client.js +63 -0
- package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +4 -1
- package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +4 -1
- package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateRequestBody.d.ts +16 -0
- package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateRequestBody.js +3 -0
- package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateResponse.d.ts +40 -0
- package/dist/api/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateResponse.js +3 -0
- package/dist/api/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
- package/dist/api/resources/workspace/resources/authConnections/types/index.js +2 -0
- package/dist/api/resources/workspace/resources/index.d.ts +1 -0
- package/dist/api/resources/workspace/resources/index.js +2 -1
- package/dist/api/types/AgentAlertingMonitorConfig.d.ts +6 -0
- package/dist/api/types/AgentAlertingMonitorConfig.js +3 -0
- package/dist/api/types/AgentAlertingSettings.d.ts +7 -0
- package/dist/api/types/AgentAlertingSettings.js +3 -0
- package/dist/api/types/AgentMetadataDbModel.d.ts +7 -0
- package/dist/api/types/AgentMetadataDbModel.js +3 -0
- package/dist/api/types/AgentPlatformSettingsRequestModel.d.ts +1 -0
- package/dist/api/types/AgentPlatformSettingsResponseModel.d.ts +1 -0
- package/dist/api/types/AgentTopicResponseModel.d.ts +3 -0
- package/dist/api/types/AudioIsolationHistoryItemResponseModel.d.ts +1 -0
- package/dist/api/types/BackgroundMusicPresetId.d.ts +4 -0
- package/dist/api/types/BackgroundMusicPresetId.js +4 -0
- package/dist/api/types/BaseTurnConfig.d.ts +17 -0
- package/dist/api/types/BaseTurnConfig.js +3 -0
- package/dist/api/types/ClientEvent.d.ts +1 -0
- package/dist/api/types/ClientEvent.js +1 -0
- package/dist/api/types/CodeToolAllowedDomain.d.ts +6 -0
- package/dist/api/types/CodeToolAllowedDomain.js +3 -0
- package/dist/api/types/ConversationInitiationSource.d.ts +1 -0
- package/dist/api/types/ConversationInitiationSource.js +1 -0
- package/dist/api/types/{ConversationTokenDbModel.d.ts → ConversationTokenResponseModel.d.ts} +2 -2
- package/dist/api/types/ConversationTokenResponseModel.js +3 -0
- package/dist/api/types/CreateBearerAuthRequest.d.ts +8 -0
- package/dist/api/types/CreateBearerAuthRequest.js +3 -0
- package/dist/api/types/CreateSpeechEngineResponse.d.ts +4 -0
- package/dist/api/types/CreateSpeechEngineResponse.js +3 -0
- package/dist/api/types/GetAgentLinkResponseModel.d.ts +1 -1
- package/dist/api/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.d.ts +2 -0
- package/dist/api/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.d.ts +2 -0
- package/dist/api/types/InboundSipTrunkConfigRequestModel.d.ts +2 -0
- package/dist/api/types/KnowledgeBaseDocumentChunksResponseModel.d.ts +5 -0
- package/dist/api/types/KnowledgeBaseDocumentChunksResponseModel.js +3 -0
- package/dist/api/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +4 -1
- package/dist/api/types/ListCustomerFacingAgentsParams.d.ts +11 -0
- package/dist/api/types/ListCustomerFacingAgentsParams.js +3 -0
- package/dist/api/types/ListSpeechEnginesResponse.d.ts +9 -0
- package/dist/api/types/ListSpeechEnginesResponse.js +3 -0
- package/dist/api/types/Llm.d.ts +6 -0
- package/dist/api/types/Llm.js +6 -0
- package/dist/api/types/LlmInfoModelInput.d.ts +2 -0
- package/dist/api/types/LlmInfoModelOutput.d.ts +2 -0
- package/dist/api/types/LoadProcedureToolConfig.d.ts +4 -0
- package/dist/api/types/LoadProcedureToolConfig.js +3 -0
- package/dist/api/types/LoadProcedureToolErrorStatus.d.ts +5 -0
- package/dist/api/types/LoadProcedureToolErrorStatus.js +8 -0
- package/dist/api/types/Monitor.d.ts +5 -0
- package/dist/api/types/Monitor.js +8 -0
- package/dist/api/types/OAuth2ClientCredsResponse.d.ts +2 -0
- package/dist/api/types/OutboundSipTrunkConfigRequestModel.d.ts +2 -0
- package/dist/api/types/PhoneNumberAgentInfo.d.ts +4 -0
- package/dist/api/types/ProcedureAtVersion.d.ts +12 -0
- package/dist/api/types/ProcedureAtVersion.js +3 -0
- package/dist/api/types/ProcedureCompilerMode.d.ts +1 -1
- package/dist/api/types/ProcedureCompilerMode.js +1 -1
- package/dist/api/types/PromptAgentApiModelInput.d.ts +2 -2
- package/dist/api/types/PromptAgentApiModelOutput.d.ts +2 -2
- package/dist/api/types/PromptAgentApiModelWorkflowOverrideInput.d.ts +2 -2
- package/dist/api/types/PromptAgentApiModelWorkflowOverrideOutput.d.ts +2 -2
- package/dist/api/types/ReadMetadataChapterDbModel.d.ts +1 -0
- package/dist/api/types/RegionalProcessingSurchargeInfo.d.ts +4 -0
- package/dist/api/types/RegionalProcessingSurchargeInfo.js +3 -0
- package/dist/api/types/ReportKnowledgeGapParams.d.ts +3 -0
- package/dist/api/types/ReportKnowledgeGapParams.js +3 -0
- package/dist/api/types/SlackBotAuthResponse.d.ts +10 -0
- package/dist/api/types/SlackBotAuthResponse.js +3 -0
- package/dist/api/types/SpeechEngineResponse.d.ts +27 -0
- package/dist/api/types/SpeechEngineResponse.js +3 -0
- package/dist/api/types/SpeechEngineSummaryResponse.d.ts +10 -0
- package/dist/api/types/SpeechEngineSummaryResponse.js +3 -0
- package/dist/api/types/SystemToolConfigInputParams.d.ts +4 -1
- package/dist/api/types/SystemToolConfigOutputParams.d.ts +4 -1
- package/dist/api/types/TurnConfig.d.ts +2 -2
- package/dist/api/types/TurnConfigWorkflowOverride.d.ts +2 -2
- package/dist/api/types/UpdateBasicAuthRequest.d.ts +5 -0
- package/dist/api/types/UpdateBasicAuthRequest.js +3 -0
- package/dist/api/types/UpdateOAuth2ClientCredsRequest.d.ts +9 -0
- package/dist/api/types/UpdateOAuth2ClientCredsRequest.js +3 -0
- package/dist/api/types/UpdateOAuth2JwtRequest.d.ts +14 -0
- package/dist/api/types/UpdateOAuth2JwtRequest.js +3 -0
- package/dist/api/types/UpdateOAuth2JwtRequestAlgorithm.d.ts +9 -0
- package/dist/api/types/UpdateOAuth2JwtRequestAlgorithm.js +12 -0
- package/dist/api/types/UpdateOAuth2JwtRequestTokenResponseField.d.ts +5 -0
- package/dist/api/types/UpdateOAuth2JwtRequestTokenResponseField.js +8 -0
- package/dist/api/types/WebhookHmacSettings.d.ts +2 -0
- package/dist/api/types/WorkspaceApiKeyResponseModel.d.ts +1 -0
- package/dist/api/types/WorkspaceGroupPermission.d.ts +2 -0
- package/dist/api/types/WorkspaceGroupPermission.js +2 -0
- package/dist/api/types/WorkspaceResourceType.d.ts +2 -0
- package/dist/api/types/WorkspaceResourceType.js +2 -0
- package/dist/api/types/index.d.ts +25 -1
- package/dist/api/types/index.js +25 -1
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.d.ts +23 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.js +53 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +1 -0
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.d.ts +2 -1
- package/dist/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.js +2 -1
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +2 -0
- package/dist/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.js +2 -0
- package/dist/serialization/resources/index.d.ts +2 -0
- package/dist/serialization/resources/index.js +3 -1
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.d.ts +1 -0
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.js +1 -0
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.d.ts +2 -0
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.js +2 -0
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.d.ts +7 -0
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.js +43 -0
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +1 -0
- package/dist/serialization/resources/serviceAccounts/resources/apiKeys/types/index.js +1 -0
- package/dist/serialization/resources/speechEngine/client/index.d.ts +1 -0
- package/dist/serialization/resources/speechEngine/client/index.js +17 -0
- package/dist/serialization/resources/speechEngine/client/requests/CreateSpeechEngineRequest.d.ts +25 -0
- package/dist/serialization/resources/speechEngine/client/requests/CreateSpeechEngineRequest.js +57 -0
- package/dist/serialization/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.d.ts +25 -0
- package/dist/serialization/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.js +57 -0
- package/dist/serialization/resources/speechEngine/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/speechEngine/client/requests/index.js +7 -0
- package/dist/serialization/resources/speechEngine/index.d.ts +1 -0
- package/dist/serialization/resources/speechEngine/index.js +17 -0
- package/dist/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.d.ts +1 -1
- package/dist/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.js +16 -9
- package/dist/serialization/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.d.ts +1 -0
- package/dist/serialization/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.js +1 -0
- package/dist/serialization/resources/workspace/resources/analytics/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/analytics/index.js +17 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/index.d.ts +3 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/index.js +42 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/requests/client/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/requests/client/index.js +17 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.d.ts +16 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.js +48 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/index.js +5 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/requests/index.d.ts +2 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/requests/index.js +18 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.d.ts +7 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.js +39 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/requests/types/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/analytics/resources/requests/types/index.js +17 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +5 -1
- package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js +2 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +5 -1
- package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js +2 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateRequestBody.d.ts +19 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateRequestBody.js +51 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateResponse.d.ts +51 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateResponse.js +67 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
- package/dist/serialization/resources/workspace/resources/authConnections/types/index.js +2 -0
- package/dist/serialization/resources/workspace/resources/index.d.ts +1 -0
- package/dist/serialization/resources/workspace/resources/index.js +2 -1
- package/dist/serialization/types/AgentAlertingMonitorConfig.d.ts +10 -0
- package/dist/serialization/types/AgentAlertingMonitorConfig.js +42 -0
- package/dist/serialization/types/AgentAlertingSettings.d.ts +11 -0
- package/dist/serialization/types/AgentAlertingSettings.js +43 -0
- package/dist/serialization/types/AgentMetadataDbModel.d.ts +13 -0
- package/dist/serialization/types/AgentMetadataDbModel.js +45 -0
- package/dist/serialization/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
- package/dist/serialization/types/AgentPlatformSettingsRequestModel.js +2 -0
- package/dist/serialization/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
- package/dist/serialization/types/AgentPlatformSettingsResponseModel.js +2 -0
- package/dist/serialization/types/AgentTopicResponseModel.d.ts +3 -0
- package/dist/serialization/types/AgentTopicResponseModel.js +3 -0
- package/dist/serialization/types/AudioIsolationHistoryItemResponseModel.d.ts +1 -0
- package/dist/serialization/types/AudioIsolationHistoryItemResponseModel.js +1 -0
- package/dist/serialization/types/BackgroundMusicPresetId.d.ts +1 -1
- package/dist/serialization/types/BackgroundMusicPresetId.js +11 -1
- package/dist/serialization/types/BaseTurnConfig.d.ts +17 -0
- package/dist/serialization/types/BaseTurnConfig.js +49 -0
- package/dist/serialization/types/ClientEvent.d.ts +1 -1
- package/dist/serialization/types/ClientEvent.js +1 -0
- package/dist/serialization/types/CodeToolAllowedDomain.d.ts +10 -0
- package/dist/serialization/types/CodeToolAllowedDomain.js +42 -0
- package/dist/serialization/types/ConversationInitiationSource.d.ts +1 -1
- package/dist/serialization/types/ConversationInitiationSource.js +1 -0
- package/dist/serialization/types/{ConversationTokenDbModel.d.ts → ConversationTokenResponseModel.d.ts} +3 -3
- package/dist/serialization/types/{ConversationTokenDbModel.js → ConversationTokenResponseModel.js} +3 -3
- package/dist/serialization/types/CreateBearerAuthRequest.d.ts +11 -0
- package/dist/serialization/types/CreateBearerAuthRequest.js +43 -0
- package/dist/serialization/types/CreateSpeechEngineResponse.d.ts +9 -0
- package/dist/serialization/types/CreateSpeechEngineResponse.js +41 -0
- package/dist/serialization/types/GetAgentLinkResponseModel.d.ts +2 -2
- package/dist/serialization/types/GetAgentLinkResponseModel.js +2 -2
- package/dist/serialization/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.d.ts +1 -0
- package/dist/serialization/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.js +1 -0
- package/dist/serialization/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.d.ts +1 -0
- package/dist/serialization/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.js +1 -0
- package/dist/serialization/types/InboundSipTrunkConfigRequestModel.d.ts +1 -0
- package/dist/serialization/types/InboundSipTrunkConfigRequestModel.js +1 -0
- package/dist/serialization/types/KnowledgeBaseDocumentChunksResponseModel.d.ts +11 -0
- package/dist/serialization/types/KnowledgeBaseDocumentChunksResponseModel.js +43 -0
- package/dist/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +5 -1
- package/dist/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.js +2 -0
- package/dist/serialization/types/ListCustomerFacingAgentsParams.d.ts +9 -0
- package/dist/serialization/types/ListCustomerFacingAgentsParams.js +41 -0
- package/dist/serialization/types/ListSpeechEnginesResponse.d.ts +12 -0
- package/dist/serialization/types/ListSpeechEnginesResponse.js +44 -0
- package/dist/serialization/types/Llm.d.ts +1 -1
- package/dist/serialization/types/Llm.js +6 -0
- package/dist/serialization/types/LlmInfoModelInput.d.ts +2 -0
- package/dist/serialization/types/LlmInfoModelInput.js +2 -0
- package/dist/serialization/types/LlmInfoModelOutput.d.ts +2 -0
- package/dist/serialization/types/LlmInfoModelOutput.js +2 -0
- package/dist/serialization/types/LoadProcedureToolConfig.d.ts +10 -0
- package/dist/serialization/types/LoadProcedureToolConfig.js +42 -0
- package/dist/serialization/types/LoadProcedureToolErrorStatus.d.ts +7 -0
- package/dist/serialization/types/LoadProcedureToolErrorStatus.js +39 -0
- package/dist/serialization/types/Monitor.d.ts +7 -0
- package/dist/serialization/types/Monitor.js +39 -0
- package/dist/serialization/types/OAuth2ClientCredsResponse.d.ts +1 -0
- package/dist/serialization/types/OAuth2ClientCredsResponse.js +1 -0
- package/dist/serialization/types/OutboundSipTrunkConfigRequestModel.d.ts +1 -0
- package/dist/serialization/types/OutboundSipTrunkConfigRequestModel.js +1 -0
- package/dist/serialization/types/PhoneNumberAgentInfo.d.ts +2 -0
- package/dist/serialization/types/PhoneNumberAgentInfo.js +2 -0
- package/dist/serialization/types/ProcedureAtVersion.d.ts +13 -0
- package/dist/serialization/types/ProcedureAtVersion.js +45 -0
- package/dist/serialization/types/ProcedureCompilerMode.d.ts +1 -1
- package/dist/serialization/types/ProcedureCompilerMode.js +1 -1
- package/dist/serialization/types/ReadMetadataChapterDbModel.d.ts +1 -0
- package/dist/serialization/types/ReadMetadataChapterDbModel.js +1 -0
- package/dist/serialization/types/RegionalProcessingSurchargeInfo.d.ts +9 -0
- package/dist/serialization/types/RegionalProcessingSurchargeInfo.js +41 -0
- package/dist/serialization/types/ReportKnowledgeGapParams.d.ts +9 -0
- package/dist/serialization/types/ReportKnowledgeGapParams.js +41 -0
- package/dist/serialization/types/SlackBotAuthResponse.d.ts +13 -0
- package/dist/serialization/types/SlackBotAuthResponse.js +45 -0
- package/dist/serialization/types/SpeechEngineResponse.d.ts +28 -0
- package/dist/serialization/types/SpeechEngineResponse.js +60 -0
- package/dist/serialization/types/SpeechEngineSummaryResponse.d.ts +12 -0
- package/dist/serialization/types/SpeechEngineSummaryResponse.js +44 -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/TurnConfig.d.ts +1 -1
- package/dist/serialization/types/TurnConfig.js +1 -1
- package/dist/serialization/types/TurnConfigWorkflowOverride.d.ts +1 -1
- package/dist/serialization/types/TurnConfigWorkflowOverride.js +1 -1
- package/dist/serialization/types/UpdateBasicAuthRequest.d.ts +11 -0
- package/dist/serialization/types/UpdateBasicAuthRequest.js +43 -0
- package/dist/serialization/types/UpdateOAuth2ClientCredsRequest.d.ts +15 -0
- package/dist/serialization/types/UpdateOAuth2ClientCredsRequest.js +47 -0
- package/dist/serialization/types/UpdateOAuth2JwtRequest.d.ts +21 -0
- package/dist/serialization/types/UpdateOAuth2JwtRequest.js +53 -0
- package/dist/serialization/types/UpdateOAuth2JwtRequestAlgorithm.d.ts +7 -0
- package/dist/serialization/types/UpdateOAuth2JwtRequestAlgorithm.js +39 -0
- package/dist/serialization/types/UpdateOAuth2JwtRequestTokenResponseField.d.ts +7 -0
- package/dist/serialization/types/UpdateOAuth2JwtRequestTokenResponseField.js +39 -0
- package/dist/serialization/types/WebhookHmacSettings.d.ts +1 -0
- package/dist/serialization/types/WebhookHmacSettings.js +1 -0
- package/dist/serialization/types/WorkspaceApiKeyResponseModel.d.ts +1 -0
- package/dist/serialization/types/WorkspaceApiKeyResponseModel.js +1 -0
- package/dist/serialization/types/WorkspaceGroupPermission.d.ts +1 -1
- package/dist/serialization/types/WorkspaceGroupPermission.js +2 -0
- package/dist/serialization/types/WorkspaceResourceType.d.ts +1 -1
- package/dist/serialization/types/WorkspaceResourceType.js +2 -0
- package/dist/serialization/types/index.d.ts +25 -1
- package/dist/serialization/types/index.js +25 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/wrapper/ElevenLabsClient.d.ts +5 -2
- package/dist/wrapper/ElevenLabsClient.js +9 -1
- package/dist/wrapper/index.d.ts +1 -0
- package/dist/wrapper/index.js +8 -1
- package/dist/wrapper/speech-engine/SpeechEngineAttachment.d.ts +21 -0
- package/dist/wrapper/speech-engine/SpeechEngineAttachment.js +34 -0
- package/dist/wrapper/speech-engine/SpeechEngineClientWrapper.d.ts +103 -0
- package/dist/wrapper/speech-engine/SpeechEngineClientWrapper.js +140 -0
- package/dist/wrapper/speech-engine/SpeechEngineResource.d.ts +78 -0
- package/dist/wrapper/speech-engine/SpeechEngineResource.js +261 -0
- package/dist/wrapper/speech-engine/SpeechEngineServer.d.ts +54 -0
- package/dist/wrapper/speech-engine/SpeechEngineServer.js +135 -0
- package/dist/wrapper/speech-engine/SpeechEngineSession.d.ts +79 -0
- package/dist/wrapper/speech-engine/SpeechEngineSession.js +300 -0
- package/dist/wrapper/speech-engine/index.d.ts +7 -0
- package/dist/wrapper/speech-engine/index.js +47 -0
- package/dist/wrapper/speech-engine/namespace.d.ts +27 -0
- package/dist/wrapper/speech-engine/namespace.js +37 -0
- package/dist/wrapper/speech-engine/types.d.ts +67 -0
- package/dist/wrapper/speech-engine/types.js +15 -0
- package/package.json +1 -1
- package/reference.md +725 -33
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.d.ts +23 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.js +53 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.d.ts +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/document/types/index.js +1 -0
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.d.ts +2 -1
- package/serialization/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/requests/BodyUpdateDocumentV1ConvaiKnowledgeBaseDocumentationIdPatch.js +2 -1
- package/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.d.ts +2 -0
- package/serialization/resources/conversationalAi/resources/phoneNumbers/client/requests/UpdatePhoneNumberRequest.js +2 -0
- package/serialization/resources/index.d.ts +2 -0
- package/serialization/resources/index.js +3 -1
- package/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.d.ts +1 -0
- package/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyCreateServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysPost.js +1 -0
- package/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.d.ts +2 -0
- package/serialization/resources/serviceAccounts/resources/apiKeys/client/requests/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatch.js +2 -0
- package/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.d.ts +7 -0
- package/serialization/resources/serviceAccounts/resources/apiKeys/types/BodyEditServiceAccountApiKeyV1ServiceAccountsServiceAccountUserIdApiKeysApiKeyIdPatchAllowedIps.js +43 -0
- package/serialization/resources/serviceAccounts/resources/apiKeys/types/index.d.ts +1 -0
- package/serialization/resources/serviceAccounts/resources/apiKeys/types/index.js +1 -0
- package/serialization/resources/speechEngine/client/index.d.ts +1 -0
- package/serialization/resources/speechEngine/client/index.js +17 -0
- package/serialization/resources/speechEngine/client/requests/CreateSpeechEngineRequest.d.ts +25 -0
- package/serialization/resources/speechEngine/client/requests/CreateSpeechEngineRequest.js +57 -0
- package/serialization/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.d.ts +25 -0
- package/serialization/resources/speechEngine/client/requests/UpdateSpeechEngineRequest.js +57 -0
- package/serialization/resources/speechEngine/client/requests/index.d.ts +2 -0
- package/serialization/resources/speechEngine/client/requests/index.js +7 -0
- package/serialization/resources/speechEngine/index.d.ts +1 -0
- package/serialization/resources/speechEngine/index.js +17 -0
- package/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.d.ts +1 -1
- package/serialization/resources/speechToSpeech/types/SpeechToSpeechConvertRequestOutputFormat.js +16 -9
- package/serialization/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.d.ts +1 -0
- package/serialization/resources/webhooks/client/requests/BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch.js +1 -0
- package/serialization/resources/workspace/resources/analytics/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/analytics/index.js +17 -0
- package/serialization/resources/workspace/resources/analytics/resources/index.d.ts +3 -0
- package/serialization/resources/workspace/resources/analytics/resources/index.js +42 -0
- package/serialization/resources/workspace/resources/analytics/resources/requests/client/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/analytics/resources/requests/client/index.js +17 -0
- package/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.d.ts +16 -0
- package/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost.js +48 -0
- package/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/analytics/resources/requests/client/requests/index.js +5 -0
- package/serialization/resources/workspace/resources/analytics/resources/requests/index.d.ts +2 -0
- package/serialization/resources/workspace/resources/analytics/resources/requests/index.js +18 -0
- package/serialization/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.d.ts +7 -0
- package/serialization/resources/workspace/resources/analytics/resources/requests/types/BodyListApiRequestsV1WorkspaceAnalyticsRequestsPostSort.js +39 -0
- package/serialization/resources/workspace/resources/analytics/resources/requests/types/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/analytics/resources/requests/types/index.js +17 -0
- package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.d.ts +5 -1
- package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateRequestBody.js +2 -0
- package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.d.ts +5 -1
- package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsCreateResponse.js +2 -0
- package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateRequestBody.d.ts +19 -0
- package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateRequestBody.js +51 -0
- package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateResponse.d.ts +51 -0
- package/serialization/resources/workspace/resources/authConnections/types/AuthConnectionsUpdateResponse.js +67 -0
- package/serialization/resources/workspace/resources/authConnections/types/index.d.ts +2 -0
- package/serialization/resources/workspace/resources/authConnections/types/index.js +2 -0
- package/serialization/resources/workspace/resources/index.d.ts +1 -0
- package/serialization/resources/workspace/resources/index.js +2 -1
- package/serialization/types/AgentAlertingMonitorConfig.d.ts +10 -0
- package/serialization/types/AgentAlertingMonitorConfig.js +42 -0
- package/serialization/types/AgentAlertingSettings.d.ts +11 -0
- package/serialization/types/AgentAlertingSettings.js +43 -0
- package/serialization/types/AgentMetadataDbModel.d.ts +13 -0
- package/serialization/types/AgentMetadataDbModel.js +45 -0
- package/serialization/types/AgentPlatformSettingsRequestModel.d.ts +2 -0
- package/serialization/types/AgentPlatformSettingsRequestModel.js +2 -0
- package/serialization/types/AgentPlatformSettingsResponseModel.d.ts +2 -0
- package/serialization/types/AgentPlatformSettingsResponseModel.js +2 -0
- package/serialization/types/AgentTopicResponseModel.d.ts +3 -0
- package/serialization/types/AgentTopicResponseModel.js +3 -0
- package/serialization/types/AudioIsolationHistoryItemResponseModel.d.ts +1 -0
- package/serialization/types/AudioIsolationHistoryItemResponseModel.js +1 -0
- package/serialization/types/BackgroundMusicPresetId.d.ts +1 -1
- package/serialization/types/BackgroundMusicPresetId.js +11 -1
- package/serialization/types/BaseTurnConfig.d.ts +17 -0
- package/serialization/types/BaseTurnConfig.js +49 -0
- package/serialization/types/ClientEvent.d.ts +1 -1
- package/serialization/types/ClientEvent.js +1 -0
- package/serialization/types/CodeToolAllowedDomain.d.ts +10 -0
- package/serialization/types/CodeToolAllowedDomain.js +42 -0
- package/serialization/types/ConversationInitiationSource.d.ts +1 -1
- package/serialization/types/ConversationInitiationSource.js +1 -0
- package/serialization/types/{ConversationTokenDbModel.d.ts → ConversationTokenResponseModel.d.ts} +3 -3
- package/serialization/types/{ConversationTokenDbModel.js → ConversationTokenResponseModel.js} +3 -3
- package/serialization/types/CreateBearerAuthRequest.d.ts +11 -0
- package/serialization/types/CreateBearerAuthRequest.js +43 -0
- package/serialization/types/CreateSpeechEngineResponse.d.ts +9 -0
- package/serialization/types/CreateSpeechEngineResponse.js +41 -0
- package/serialization/types/GetAgentLinkResponseModel.d.ts +2 -2
- package/serialization/types/GetAgentLinkResponseModel.js +2 -2
- package/serialization/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.d.ts +1 -0
- package/serialization/types/GetPhoneNumberInboundSipTrunkConfigResponseModel.js +1 -0
- package/serialization/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.d.ts +1 -0
- package/serialization/types/GetPhoneNumberOutboundSipTrunkConfigResponseModel.js +1 -0
- package/serialization/types/InboundSipTrunkConfigRequestModel.d.ts +1 -0
- package/serialization/types/InboundSipTrunkConfigRequestModel.js +1 -0
- package/serialization/types/KnowledgeBaseDocumentChunksResponseModel.d.ts +11 -0
- package/serialization/types/KnowledgeBaseDocumentChunksResponseModel.js +43 -0
- package/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.d.ts +5 -1
- package/serialization/types/ListAuthConnectionsResponseAuthConnectionsItem.js +2 -0
- package/serialization/types/ListCustomerFacingAgentsParams.d.ts +9 -0
- package/serialization/types/ListCustomerFacingAgentsParams.js +41 -0
- package/serialization/types/ListSpeechEnginesResponse.d.ts +12 -0
- package/serialization/types/ListSpeechEnginesResponse.js +44 -0
- package/serialization/types/Llm.d.ts +1 -1
- package/serialization/types/Llm.js +6 -0
- package/serialization/types/LlmInfoModelInput.d.ts +2 -0
- package/serialization/types/LlmInfoModelInput.js +2 -0
- package/serialization/types/LlmInfoModelOutput.d.ts +2 -0
- package/serialization/types/LlmInfoModelOutput.js +2 -0
- package/serialization/types/LoadProcedureToolConfig.d.ts +10 -0
- package/serialization/types/LoadProcedureToolConfig.js +42 -0
- package/serialization/types/LoadProcedureToolErrorStatus.d.ts +7 -0
- package/serialization/types/LoadProcedureToolErrorStatus.js +39 -0
- package/serialization/types/Monitor.d.ts +7 -0
- package/serialization/types/Monitor.js +39 -0
- package/serialization/types/OAuth2ClientCredsResponse.d.ts +1 -0
- package/serialization/types/OAuth2ClientCredsResponse.js +1 -0
- package/serialization/types/OutboundSipTrunkConfigRequestModel.d.ts +1 -0
- package/serialization/types/OutboundSipTrunkConfigRequestModel.js +1 -0
- package/serialization/types/PhoneNumberAgentInfo.d.ts +2 -0
- package/serialization/types/PhoneNumberAgentInfo.js +2 -0
- package/serialization/types/ProcedureAtVersion.d.ts +13 -0
- package/serialization/types/ProcedureAtVersion.js +45 -0
- package/serialization/types/ProcedureCompilerMode.d.ts +1 -1
- package/serialization/types/ProcedureCompilerMode.js +1 -1
- package/serialization/types/ReadMetadataChapterDbModel.d.ts +1 -0
- package/serialization/types/ReadMetadataChapterDbModel.js +1 -0
- package/serialization/types/RegionalProcessingSurchargeInfo.d.ts +9 -0
- package/serialization/types/RegionalProcessingSurchargeInfo.js +41 -0
- package/serialization/types/ReportKnowledgeGapParams.d.ts +9 -0
- package/serialization/types/ReportKnowledgeGapParams.js +41 -0
- package/serialization/types/SlackBotAuthResponse.d.ts +13 -0
- package/serialization/types/SlackBotAuthResponse.js +45 -0
- package/serialization/types/SpeechEngineResponse.d.ts +28 -0
- package/serialization/types/SpeechEngineResponse.js +60 -0
- package/serialization/types/SpeechEngineSummaryResponse.d.ts +12 -0
- package/serialization/types/SpeechEngineSummaryResponse.js +44 -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/TurnConfig.d.ts +1 -1
- package/serialization/types/TurnConfig.js +1 -1
- package/serialization/types/TurnConfigWorkflowOverride.d.ts +1 -1
- package/serialization/types/TurnConfigWorkflowOverride.js +1 -1
- package/serialization/types/UpdateBasicAuthRequest.d.ts +11 -0
- package/serialization/types/UpdateBasicAuthRequest.js +43 -0
- package/serialization/types/UpdateOAuth2ClientCredsRequest.d.ts +15 -0
- package/serialization/types/UpdateOAuth2ClientCredsRequest.js +47 -0
- package/serialization/types/UpdateOAuth2JwtRequest.d.ts +21 -0
- package/serialization/types/UpdateOAuth2JwtRequest.js +53 -0
- package/serialization/types/UpdateOAuth2JwtRequestAlgorithm.d.ts +7 -0
- package/serialization/types/UpdateOAuth2JwtRequestAlgorithm.js +39 -0
- package/serialization/types/UpdateOAuth2JwtRequestTokenResponseField.d.ts +7 -0
- package/serialization/types/UpdateOAuth2JwtRequestTokenResponseField.js +39 -0
- package/serialization/types/WebhookHmacSettings.d.ts +1 -0
- package/serialization/types/WebhookHmacSettings.js +1 -0
- package/serialization/types/WorkspaceApiKeyResponseModel.d.ts +1 -0
- package/serialization/types/WorkspaceApiKeyResponseModel.js +1 -0
- package/serialization/types/WorkspaceGroupPermission.d.ts +1 -1
- package/serialization/types/WorkspaceGroupPermission.js +2 -0
- package/serialization/types/WorkspaceResourceType.d.ts +1 -1
- package/serialization/types/WorkspaceResourceType.js +2 -0
- package/serialization/types/index.d.ts +25 -1
- package/serialization/types/index.js +25 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/wrapper/ElevenLabsClient.d.ts +5 -2
- package/wrapper/ElevenLabsClient.js +9 -1
- package/wrapper/index.d.ts +1 -0
- package/wrapper/index.js +8 -1
- package/wrapper/speech-engine/SpeechEngineAttachment.d.ts +21 -0
- package/wrapper/speech-engine/SpeechEngineAttachment.js +34 -0
- package/wrapper/speech-engine/SpeechEngineClientWrapper.d.ts +103 -0
- package/wrapper/speech-engine/SpeechEngineClientWrapper.js +140 -0
- package/wrapper/speech-engine/SpeechEngineResource.d.ts +78 -0
- package/wrapper/speech-engine/SpeechEngineResource.js +261 -0
- package/wrapper/speech-engine/SpeechEngineServer.d.ts +54 -0
- package/wrapper/speech-engine/SpeechEngineServer.js +135 -0
- package/wrapper/speech-engine/SpeechEngineSession.d.ts +79 -0
- package/wrapper/speech-engine/SpeechEngineSession.js +300 -0
- package/wrapper/speech-engine/index.d.ts +7 -0
- package/wrapper/speech-engine/index.js +47 -0
- package/wrapper/speech-engine/namespace.d.ts +27 -0
- package/wrapper/speech-engine/namespace.js +37 -0
- package/wrapper/speech-engine/types.d.ts +67 -0
- package/wrapper/speech-engine/types.js +15 -0
- /package/api/{types/ConversationTokenDbModel.js → resources/conversationalAi/resources/knowledgeBase/resources/document/client/requests/BodyUpdateFileDocumentV1ConvaiKnowledgeBaseDocumentationIdUpdateFilePatch.js} +0 -0
- /package/{dist/api/types/ConversationTokenDbModel.js → api/resources/conversationalAi/resources/knowledgeBase/resources/document/types/DocumentUpdateFileResponse.js} +0 -0
package/reference.md
CHANGED
|
@@ -4413,6 +4413,340 @@ await client.conversationalAi.deleteDocumentRagIndex("21m00Tcm4TlvDq8ikWAM", "21
|
|
|
4413
4413
|
</dl>
|
|
4414
4414
|
|
|
4415
4415
|
|
|
4416
|
+
</dd>
|
|
4417
|
+
</dl>
|
|
4418
|
+
</details>
|
|
4419
|
+
|
|
4420
|
+
## SpeechEngine
|
|
4421
|
+
<details><summary><code>client.speechEngine.<a href="/src/api/resources/speechEngine/client/Client.ts">list</a>({ ...params }) -> ElevenLabs.ListSpeechEnginesResponse</code></summary>
|
|
4422
|
+
<dl>
|
|
4423
|
+
<dd>
|
|
4424
|
+
|
|
4425
|
+
#### 📝 Description
|
|
4426
|
+
|
|
4427
|
+
<dl>
|
|
4428
|
+
<dd>
|
|
4429
|
+
|
|
4430
|
+
<dl>
|
|
4431
|
+
<dd>
|
|
4432
|
+
|
|
4433
|
+
Returns a paginated list of Speech Engine resources.
|
|
4434
|
+
</dd>
|
|
4435
|
+
</dl>
|
|
4436
|
+
</dd>
|
|
4437
|
+
</dl>
|
|
4438
|
+
|
|
4439
|
+
#### 🔌 Usage
|
|
4440
|
+
|
|
4441
|
+
<dl>
|
|
4442
|
+
<dd>
|
|
4443
|
+
|
|
4444
|
+
<dl>
|
|
4445
|
+
<dd>
|
|
4446
|
+
|
|
4447
|
+
```typescript
|
|
4448
|
+
await client.speechEngine.list({
|
|
4449
|
+
pageSize: 1,
|
|
4450
|
+
search: "search",
|
|
4451
|
+
sortDirection: "asc",
|
|
4452
|
+
sortBy: "name",
|
|
4453
|
+
cursor: "cursor"
|
|
4454
|
+
});
|
|
4455
|
+
|
|
4456
|
+
```
|
|
4457
|
+
</dd>
|
|
4458
|
+
</dl>
|
|
4459
|
+
</dd>
|
|
4460
|
+
</dl>
|
|
4461
|
+
|
|
4462
|
+
#### ⚙️ Parameters
|
|
4463
|
+
|
|
4464
|
+
<dl>
|
|
4465
|
+
<dd>
|
|
4466
|
+
|
|
4467
|
+
<dl>
|
|
4468
|
+
<dd>
|
|
4469
|
+
|
|
4470
|
+
**request:** `ElevenLabs.SpeechEngineListRequest`
|
|
4471
|
+
|
|
4472
|
+
</dd>
|
|
4473
|
+
</dl>
|
|
4474
|
+
|
|
4475
|
+
<dl>
|
|
4476
|
+
<dd>
|
|
4477
|
+
|
|
4478
|
+
**requestOptions:** `SpeechEngineClient.RequestOptions`
|
|
4479
|
+
|
|
4480
|
+
</dd>
|
|
4481
|
+
</dl>
|
|
4482
|
+
</dd>
|
|
4483
|
+
</dl>
|
|
4484
|
+
|
|
4485
|
+
|
|
4486
|
+
</dd>
|
|
4487
|
+
</dl>
|
|
4488
|
+
</details>
|
|
4489
|
+
|
|
4490
|
+
<details><summary><code>client.speechEngine.<a href="/src/api/resources/speechEngine/client/Client.ts">create</a>({ ...params }) -> ElevenLabs.CreateSpeechEngineResponse</code></summary>
|
|
4491
|
+
<dl>
|
|
4492
|
+
<dd>
|
|
4493
|
+
|
|
4494
|
+
#### 📝 Description
|
|
4495
|
+
|
|
4496
|
+
<dl>
|
|
4497
|
+
<dd>
|
|
4498
|
+
|
|
4499
|
+
<dl>
|
|
4500
|
+
<dd>
|
|
4501
|
+
|
|
4502
|
+
Create a new Speech Engine resource
|
|
4503
|
+
</dd>
|
|
4504
|
+
</dl>
|
|
4505
|
+
</dd>
|
|
4506
|
+
</dl>
|
|
4507
|
+
|
|
4508
|
+
#### 🔌 Usage
|
|
4509
|
+
|
|
4510
|
+
<dl>
|
|
4511
|
+
<dd>
|
|
4512
|
+
|
|
4513
|
+
<dl>
|
|
4514
|
+
<dd>
|
|
4515
|
+
|
|
4516
|
+
```typescript
|
|
4517
|
+
await client.speechEngine.create({
|
|
4518
|
+
speechEngine: {
|
|
4519
|
+
wsUrl: "ws_url"
|
|
4520
|
+
}
|
|
4521
|
+
});
|
|
4522
|
+
|
|
4523
|
+
```
|
|
4524
|
+
</dd>
|
|
4525
|
+
</dl>
|
|
4526
|
+
</dd>
|
|
4527
|
+
</dl>
|
|
4528
|
+
|
|
4529
|
+
#### ⚙️ Parameters
|
|
4530
|
+
|
|
4531
|
+
<dl>
|
|
4532
|
+
<dd>
|
|
4533
|
+
|
|
4534
|
+
<dl>
|
|
4535
|
+
<dd>
|
|
4536
|
+
|
|
4537
|
+
**request:** `ElevenLabs.CreateSpeechEngineRequest`
|
|
4538
|
+
|
|
4539
|
+
</dd>
|
|
4540
|
+
</dl>
|
|
4541
|
+
|
|
4542
|
+
<dl>
|
|
4543
|
+
<dd>
|
|
4544
|
+
|
|
4545
|
+
**requestOptions:** `SpeechEngineClient.RequestOptions`
|
|
4546
|
+
|
|
4547
|
+
</dd>
|
|
4548
|
+
</dl>
|
|
4549
|
+
</dd>
|
|
4550
|
+
</dl>
|
|
4551
|
+
|
|
4552
|
+
|
|
4553
|
+
</dd>
|
|
4554
|
+
</dl>
|
|
4555
|
+
</details>
|
|
4556
|
+
|
|
4557
|
+
<details><summary><code>client.speechEngine.<a href="/src/api/resources/speechEngine/client/Client.ts">get</a>(speech_engine_id) -> ElevenLabs.SpeechEngineResponse</code></summary>
|
|
4558
|
+
<dl>
|
|
4559
|
+
<dd>
|
|
4560
|
+
|
|
4561
|
+
#### 📝 Description
|
|
4562
|
+
|
|
4563
|
+
<dl>
|
|
4564
|
+
<dd>
|
|
4565
|
+
|
|
4566
|
+
<dl>
|
|
4567
|
+
<dd>
|
|
4568
|
+
|
|
4569
|
+
Retrieve a Speech Engine resource
|
|
4570
|
+
</dd>
|
|
4571
|
+
</dl>
|
|
4572
|
+
</dd>
|
|
4573
|
+
</dl>
|
|
4574
|
+
|
|
4575
|
+
#### 🔌 Usage
|
|
4576
|
+
|
|
4577
|
+
<dl>
|
|
4578
|
+
<dd>
|
|
4579
|
+
|
|
4580
|
+
<dl>
|
|
4581
|
+
<dd>
|
|
4582
|
+
|
|
4583
|
+
```typescript
|
|
4584
|
+
await client.speechEngine.get("seng_3701k3ttaq12ewp8b7qv5rfyszkz");
|
|
4585
|
+
|
|
4586
|
+
```
|
|
4587
|
+
</dd>
|
|
4588
|
+
</dl>
|
|
4589
|
+
</dd>
|
|
4590
|
+
</dl>
|
|
4591
|
+
|
|
4592
|
+
#### ⚙️ Parameters
|
|
4593
|
+
|
|
4594
|
+
<dl>
|
|
4595
|
+
<dd>
|
|
4596
|
+
|
|
4597
|
+
<dl>
|
|
4598
|
+
<dd>
|
|
4599
|
+
|
|
4600
|
+
**speech_engine_id:** `string` — The speech engine ID (accepts seng_ or agent_ prefix)
|
|
4601
|
+
|
|
4602
|
+
</dd>
|
|
4603
|
+
</dl>
|
|
4604
|
+
|
|
4605
|
+
<dl>
|
|
4606
|
+
<dd>
|
|
4607
|
+
|
|
4608
|
+
**requestOptions:** `SpeechEngineClient.RequestOptions`
|
|
4609
|
+
|
|
4610
|
+
</dd>
|
|
4611
|
+
</dl>
|
|
4612
|
+
</dd>
|
|
4613
|
+
</dl>
|
|
4614
|
+
|
|
4615
|
+
|
|
4616
|
+
</dd>
|
|
4617
|
+
</dl>
|
|
4618
|
+
</details>
|
|
4619
|
+
|
|
4620
|
+
<details><summary><code>client.speechEngine.<a href="/src/api/resources/speechEngine/client/Client.ts">delete</a>(speech_engine_id) -> void</code></summary>
|
|
4621
|
+
<dl>
|
|
4622
|
+
<dd>
|
|
4623
|
+
|
|
4624
|
+
#### 📝 Description
|
|
4625
|
+
|
|
4626
|
+
<dl>
|
|
4627
|
+
<dd>
|
|
4628
|
+
|
|
4629
|
+
<dl>
|
|
4630
|
+
<dd>
|
|
4631
|
+
|
|
4632
|
+
Delete a Speech Engine resource
|
|
4633
|
+
</dd>
|
|
4634
|
+
</dl>
|
|
4635
|
+
</dd>
|
|
4636
|
+
</dl>
|
|
4637
|
+
|
|
4638
|
+
#### 🔌 Usage
|
|
4639
|
+
|
|
4640
|
+
<dl>
|
|
4641
|
+
<dd>
|
|
4642
|
+
|
|
4643
|
+
<dl>
|
|
4644
|
+
<dd>
|
|
4645
|
+
|
|
4646
|
+
```typescript
|
|
4647
|
+
await client.speechEngine.delete("seng_3701k3ttaq12ewp8b7qv5rfyszkz");
|
|
4648
|
+
|
|
4649
|
+
```
|
|
4650
|
+
</dd>
|
|
4651
|
+
</dl>
|
|
4652
|
+
</dd>
|
|
4653
|
+
</dl>
|
|
4654
|
+
|
|
4655
|
+
#### ⚙️ Parameters
|
|
4656
|
+
|
|
4657
|
+
<dl>
|
|
4658
|
+
<dd>
|
|
4659
|
+
|
|
4660
|
+
<dl>
|
|
4661
|
+
<dd>
|
|
4662
|
+
|
|
4663
|
+
**speech_engine_id:** `string` — The speech engine ID (accepts seng_ or agent_ prefix)
|
|
4664
|
+
|
|
4665
|
+
</dd>
|
|
4666
|
+
</dl>
|
|
4667
|
+
|
|
4668
|
+
<dl>
|
|
4669
|
+
<dd>
|
|
4670
|
+
|
|
4671
|
+
**requestOptions:** `SpeechEngineClient.RequestOptions`
|
|
4672
|
+
|
|
4673
|
+
</dd>
|
|
4674
|
+
</dl>
|
|
4675
|
+
</dd>
|
|
4676
|
+
</dl>
|
|
4677
|
+
|
|
4678
|
+
|
|
4679
|
+
</dd>
|
|
4680
|
+
</dl>
|
|
4681
|
+
</details>
|
|
4682
|
+
|
|
4683
|
+
<details><summary><code>client.speechEngine.<a href="/src/api/resources/speechEngine/client/Client.ts">update</a>(speech_engine_id, { ...params }) -> ElevenLabs.SpeechEngineResponse</code></summary>
|
|
4684
|
+
<dl>
|
|
4685
|
+
<dd>
|
|
4686
|
+
|
|
4687
|
+
#### 📝 Description
|
|
4688
|
+
|
|
4689
|
+
<dl>
|
|
4690
|
+
<dd>
|
|
4691
|
+
|
|
4692
|
+
<dl>
|
|
4693
|
+
<dd>
|
|
4694
|
+
|
|
4695
|
+
Update a Speech Engine resource (partial update)
|
|
4696
|
+
</dd>
|
|
4697
|
+
</dl>
|
|
4698
|
+
</dd>
|
|
4699
|
+
</dl>
|
|
4700
|
+
|
|
4701
|
+
#### 🔌 Usage
|
|
4702
|
+
|
|
4703
|
+
<dl>
|
|
4704
|
+
<dd>
|
|
4705
|
+
|
|
4706
|
+
<dl>
|
|
4707
|
+
<dd>
|
|
4708
|
+
|
|
4709
|
+
```typescript
|
|
4710
|
+
await client.speechEngine.update("seng_3701k3ttaq12ewp8b7qv5rfyszkz");
|
|
4711
|
+
|
|
4712
|
+
```
|
|
4713
|
+
</dd>
|
|
4714
|
+
</dl>
|
|
4715
|
+
</dd>
|
|
4716
|
+
</dl>
|
|
4717
|
+
|
|
4718
|
+
#### ⚙️ Parameters
|
|
4719
|
+
|
|
4720
|
+
<dl>
|
|
4721
|
+
<dd>
|
|
4722
|
+
|
|
4723
|
+
<dl>
|
|
4724
|
+
<dd>
|
|
4725
|
+
|
|
4726
|
+
**speech_engine_id:** `string` — The speech engine ID (accepts seng_ or agent_ prefix)
|
|
4727
|
+
|
|
4728
|
+
</dd>
|
|
4729
|
+
</dl>
|
|
4730
|
+
|
|
4731
|
+
<dl>
|
|
4732
|
+
<dd>
|
|
4733
|
+
|
|
4734
|
+
**request:** `ElevenLabs.UpdateSpeechEngineRequest`
|
|
4735
|
+
|
|
4736
|
+
</dd>
|
|
4737
|
+
</dl>
|
|
4738
|
+
|
|
4739
|
+
<dl>
|
|
4740
|
+
<dd>
|
|
4741
|
+
|
|
4742
|
+
**requestOptions:** `SpeechEngineClient.RequestOptions`
|
|
4743
|
+
|
|
4744
|
+
</dd>
|
|
4745
|
+
</dl>
|
|
4746
|
+
</dd>
|
|
4747
|
+
</dl>
|
|
4748
|
+
|
|
4749
|
+
|
|
4416
4750
|
</dd>
|
|
4417
4751
|
</dl>
|
|
4418
4752
|
</details>
|
|
@@ -4721,7 +5055,7 @@ Get a signed url to start a conversation with an agent with an agent that requir
|
|
|
4721
5055
|
|
|
4722
5056
|
```typescript
|
|
4723
5057
|
await client.conversationalAi.conversations.getSignedUrl({
|
|
4724
|
-
agentId: "
|
|
5058
|
+
agentId: "agent_3701k3ttaq12ewp8b7qv5rfyszkz",
|
|
4725
5059
|
includeConversationId: true,
|
|
4726
5060
|
branchId: "branch_id",
|
|
4727
5061
|
environment: "environment"
|
|
@@ -4789,7 +5123,7 @@ Get a WebRTC session token for real-time communication.
|
|
|
4789
5123
|
|
|
4790
5124
|
```typescript
|
|
4791
5125
|
await client.conversationalAi.conversations.getWebrtcToken({
|
|
4792
|
-
agentId: "
|
|
5126
|
+
agentId: "agent_3701k3ttaq12ewp8b7qv5rfyszkz",
|
|
4793
5127
|
participantName: "participant_name",
|
|
4794
5128
|
branchId: "branch_id",
|
|
4795
5129
|
environment: "environment"
|
|
@@ -4878,6 +5212,7 @@ await client.conversationalAi.conversations.list({
|
|
|
4878
5212
|
summaryMode: "exclude",
|
|
4879
5213
|
search: "search",
|
|
4880
5214
|
conversationInitiationSource: "unknown",
|
|
5215
|
+
textOnly: true,
|
|
4881
5216
|
branchId: "branch_id",
|
|
4882
5217
|
topicIds: ["topic_ids"],
|
|
4883
5218
|
excludeStatuses: ["initiated"],
|
|
@@ -10040,6 +10375,78 @@ await client.conversationalAi.agents.branches.merge("agent_3701k3ttaq12ewp8b7qv5
|
|
|
10040
10375
|
</dl>
|
|
10041
10376
|
|
|
10042
10377
|
|
|
10378
|
+
</dd>
|
|
10379
|
+
</dl>
|
|
10380
|
+
</details>
|
|
10381
|
+
|
|
10382
|
+
## ConversationalAi Agents Versions
|
|
10383
|
+
<details><summary><code>client.conversationalAi.agents.versions.<a href="/src/api/resources/conversationalAi/resources/agents/resources/versions/client/Client.ts">get</a>(agent_id, version_id) -> ElevenLabs.AgentVersionMetadata</code></summary>
|
|
10384
|
+
<dl>
|
|
10385
|
+
<dd>
|
|
10386
|
+
|
|
10387
|
+
#### 📝 Description
|
|
10388
|
+
|
|
10389
|
+
<dl>
|
|
10390
|
+
<dd>
|
|
10391
|
+
|
|
10392
|
+
<dl>
|
|
10393
|
+
<dd>
|
|
10394
|
+
|
|
10395
|
+
Get metadata for a specific agent version
|
|
10396
|
+
</dd>
|
|
10397
|
+
</dl>
|
|
10398
|
+
</dd>
|
|
10399
|
+
</dl>
|
|
10400
|
+
|
|
10401
|
+
#### 🔌 Usage
|
|
10402
|
+
|
|
10403
|
+
<dl>
|
|
10404
|
+
<dd>
|
|
10405
|
+
|
|
10406
|
+
<dl>
|
|
10407
|
+
<dd>
|
|
10408
|
+
|
|
10409
|
+
```typescript
|
|
10410
|
+
await client.conversationalAi.agents.versions.get("agent_3701k3ttaq12ewp8b7qv5rfyszkz", "agtvrsn_0901k4aafjxxfxt93gd841r7tv5t");
|
|
10411
|
+
|
|
10412
|
+
```
|
|
10413
|
+
</dd>
|
|
10414
|
+
</dl>
|
|
10415
|
+
</dd>
|
|
10416
|
+
</dl>
|
|
10417
|
+
|
|
10418
|
+
#### ⚙️ Parameters
|
|
10419
|
+
|
|
10420
|
+
<dl>
|
|
10421
|
+
<dd>
|
|
10422
|
+
|
|
10423
|
+
<dl>
|
|
10424
|
+
<dd>
|
|
10425
|
+
|
|
10426
|
+
**agent_id:** `string` — The id of an agent. This is returned on agent creation.
|
|
10427
|
+
|
|
10428
|
+
</dd>
|
|
10429
|
+
</dl>
|
|
10430
|
+
|
|
10431
|
+
<dl>
|
|
10432
|
+
<dd>
|
|
10433
|
+
|
|
10434
|
+
**version_id:** `string` — Unique identifier for the version.
|
|
10435
|
+
|
|
10436
|
+
</dd>
|
|
10437
|
+
</dl>
|
|
10438
|
+
|
|
10439
|
+
<dl>
|
|
10440
|
+
<dd>
|
|
10441
|
+
|
|
10442
|
+
**requestOptions:** `VersionsClient.RequestOptions`
|
|
10443
|
+
|
|
10444
|
+
</dd>
|
|
10445
|
+
</dl>
|
|
10446
|
+
</dd>
|
|
10447
|
+
</dl>
|
|
10448
|
+
|
|
10449
|
+
|
|
10043
10450
|
</dd>
|
|
10044
10451
|
</dl>
|
|
10045
10452
|
</details>
|
|
@@ -10728,6 +11135,7 @@ await client.conversationalAi.conversations.messages.textSearch({
|
|
|
10728
11135
|
pageSize: 1,
|
|
10729
11136
|
summaryMode: "exclude",
|
|
10730
11137
|
conversationInitiationSource: "unknown",
|
|
11138
|
+
textOnly: true,
|
|
10731
11139
|
branchId: "branch_id",
|
|
10732
11140
|
sortBy: "search_score",
|
|
10733
11141
|
cursor: "cursor"
|
|
@@ -12119,7 +12527,7 @@ await client.conversationalAi.knowledgeBase.documents.delete("21m00Tcm4TlvDq8ikW
|
|
|
12119
12527
|
<dl>
|
|
12120
12528
|
<dd>
|
|
12121
12529
|
|
|
12122
|
-
Update the name of a document
|
|
12530
|
+
Update the name and/or content of a document.
|
|
12123
12531
|
</dd>
|
|
12124
12532
|
</dl>
|
|
12125
12533
|
</dd>
|
|
@@ -12134,9 +12542,7 @@ Update the name of a document
|
|
|
12134
12542
|
<dd>
|
|
12135
12543
|
|
|
12136
12544
|
```typescript
|
|
12137
|
-
await client.conversationalAi.knowledgeBase.documents.update("21m00Tcm4TlvDq8ikWAM"
|
|
12138
|
-
name: "name"
|
|
12139
|
-
});
|
|
12545
|
+
await client.conversationalAi.knowledgeBase.documents.update("21m00Tcm4TlvDq8ikWAM");
|
|
12140
12546
|
|
|
12141
12547
|
```
|
|
12142
12548
|
</dd>
|
|
@@ -12235,7 +12641,70 @@ await client.conversationalAi.knowledgeBase.documents.getAgents("21m00Tcm4TlvDq8
|
|
|
12235
12641
|
<dl>
|
|
12236
12642
|
<dd>
|
|
12237
12643
|
|
|
12238
|
-
**request:** `ElevenLabs.conversationalAi.knowledgeBase.DocumentsGetAgentsRequest`
|
|
12644
|
+
**request:** `ElevenLabs.conversationalAi.knowledgeBase.DocumentsGetAgentsRequest`
|
|
12645
|
+
|
|
12646
|
+
</dd>
|
|
12647
|
+
</dl>
|
|
12648
|
+
|
|
12649
|
+
<dl>
|
|
12650
|
+
<dd>
|
|
12651
|
+
|
|
12652
|
+
**requestOptions:** `DocumentsClient.RequestOptions`
|
|
12653
|
+
|
|
12654
|
+
</dd>
|
|
12655
|
+
</dl>
|
|
12656
|
+
</dd>
|
|
12657
|
+
</dl>
|
|
12658
|
+
|
|
12659
|
+
|
|
12660
|
+
</dd>
|
|
12661
|
+
</dl>
|
|
12662
|
+
</details>
|
|
12663
|
+
|
|
12664
|
+
<details><summary><code>client.conversationalAi.knowledgeBase.documents.<a href="/src/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.ts">getContent</a>(documentation_id) -> string</code></summary>
|
|
12665
|
+
<dl>
|
|
12666
|
+
<dd>
|
|
12667
|
+
|
|
12668
|
+
#### 📝 Description
|
|
12669
|
+
|
|
12670
|
+
<dl>
|
|
12671
|
+
<dd>
|
|
12672
|
+
|
|
12673
|
+
<dl>
|
|
12674
|
+
<dd>
|
|
12675
|
+
|
|
12676
|
+
Get the entire content of a document from the knowledge base
|
|
12677
|
+
</dd>
|
|
12678
|
+
</dl>
|
|
12679
|
+
</dd>
|
|
12680
|
+
</dl>
|
|
12681
|
+
|
|
12682
|
+
#### 🔌 Usage
|
|
12683
|
+
|
|
12684
|
+
<dl>
|
|
12685
|
+
<dd>
|
|
12686
|
+
|
|
12687
|
+
<dl>
|
|
12688
|
+
<dd>
|
|
12689
|
+
|
|
12690
|
+
```typescript
|
|
12691
|
+
await client.conversationalAi.knowledgeBase.documents.getContent("documentation_id");
|
|
12692
|
+
|
|
12693
|
+
```
|
|
12694
|
+
</dd>
|
|
12695
|
+
</dl>
|
|
12696
|
+
</dd>
|
|
12697
|
+
</dl>
|
|
12698
|
+
|
|
12699
|
+
#### ⚙️ Parameters
|
|
12700
|
+
|
|
12701
|
+
<dl>
|
|
12702
|
+
<dd>
|
|
12703
|
+
|
|
12704
|
+
<dl>
|
|
12705
|
+
<dd>
|
|
12706
|
+
|
|
12707
|
+
**documentation_id:** `string` — The id of a document from the knowledge base. This is returned on document addition.
|
|
12239
12708
|
|
|
12240
12709
|
</dd>
|
|
12241
12710
|
</dl>
|
|
@@ -12255,7 +12724,7 @@ await client.conversationalAi.knowledgeBase.documents.getAgents("21m00Tcm4TlvDq8
|
|
|
12255
12724
|
</dl>
|
|
12256
12725
|
</details>
|
|
12257
12726
|
|
|
12258
|
-
<details><summary><code>client.conversationalAi.knowledgeBase.documents.<a href="/src/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.ts">
|
|
12727
|
+
<details><summary><code>client.conversationalAi.knowledgeBase.documents.<a href="/src/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.ts">getSourceFileUrl</a>(documentation_id) -> ElevenLabs.KnowledgeBaseSourceFileUrlResponseModel</code></summary>
|
|
12259
12728
|
<dl>
|
|
12260
12729
|
<dd>
|
|
12261
12730
|
|
|
@@ -12267,7 +12736,7 @@ await client.conversationalAi.knowledgeBase.documents.getAgents("21m00Tcm4TlvDq8
|
|
|
12267
12736
|
<dl>
|
|
12268
12737
|
<dd>
|
|
12269
12738
|
|
|
12270
|
-
Get the
|
|
12739
|
+
Get a signed URL to download the original source file of a file-type document from the knowledge base
|
|
12271
12740
|
</dd>
|
|
12272
12741
|
</dl>
|
|
12273
12742
|
</dd>
|
|
@@ -12282,7 +12751,7 @@ Get the entire content of a document from the knowledge base
|
|
|
12282
12751
|
<dd>
|
|
12283
12752
|
|
|
12284
12753
|
```typescript
|
|
12285
|
-
await client.conversationalAi.knowledgeBase.documents.
|
|
12754
|
+
await client.conversationalAi.knowledgeBase.documents.getSourceFileUrl("21m00Tcm4TlvDq8ikWAM");
|
|
12286
12755
|
|
|
12287
12756
|
```
|
|
12288
12757
|
</dd>
|
|
@@ -12318,7 +12787,7 @@ await client.conversationalAi.knowledgeBase.documents.getContent("documentation_
|
|
|
12318
12787
|
</dl>
|
|
12319
12788
|
</details>
|
|
12320
12789
|
|
|
12321
|
-
<details><summary><code>client.conversationalAi.knowledgeBase.documents.<a href="/src/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.ts">
|
|
12790
|
+
<details><summary><code>client.conversationalAi.knowledgeBase.documents.<a href="/src/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.ts">move</a>(document_id, { ...params }) -> void</code></summary>
|
|
12322
12791
|
<dl>
|
|
12323
12792
|
<dd>
|
|
12324
12793
|
|
|
@@ -12330,7 +12799,7 @@ await client.conversationalAi.knowledgeBase.documents.getContent("documentation_
|
|
|
12330
12799
|
<dl>
|
|
12331
12800
|
<dd>
|
|
12332
12801
|
|
|
12333
|
-
|
|
12802
|
+
Moves the entity from one folder to another.
|
|
12334
12803
|
</dd>
|
|
12335
12804
|
</dl>
|
|
12336
12805
|
</dd>
|
|
@@ -12345,7 +12814,7 @@ Get a signed URL to download the original source file of a file-type document fr
|
|
|
12345
12814
|
<dd>
|
|
12346
12815
|
|
|
12347
12816
|
```typescript
|
|
12348
|
-
await client.conversationalAi.knowledgeBase.documents.
|
|
12817
|
+
await client.conversationalAi.knowledgeBase.documents.move("21m00Tcm4TlvDq8ikWAM");
|
|
12349
12818
|
|
|
12350
12819
|
```
|
|
12351
12820
|
</dd>
|
|
@@ -12361,7 +12830,15 @@ await client.conversationalAi.knowledgeBase.documents.getSourceFileUrl("21m00Tcm
|
|
|
12361
12830
|
<dl>
|
|
12362
12831
|
<dd>
|
|
12363
12832
|
|
|
12364
|
-
**
|
|
12833
|
+
**document_id:** `string` — The id of a document from the knowledge base. This is returned on document addition.
|
|
12834
|
+
|
|
12835
|
+
</dd>
|
|
12836
|
+
</dl>
|
|
12837
|
+
|
|
12838
|
+
<dl>
|
|
12839
|
+
<dd>
|
|
12840
|
+
|
|
12841
|
+
**request:** `ElevenLabs.conversationalAi.knowledgeBase.BodyMoveEntityToFolderV1ConvaiKnowledgeBaseDocumentIdMovePost`
|
|
12365
12842
|
|
|
12366
12843
|
</dd>
|
|
12367
12844
|
</dl>
|
|
@@ -12381,7 +12858,7 @@ await client.conversationalAi.knowledgeBase.documents.getSourceFileUrl("21m00Tcm
|
|
|
12381
12858
|
</dl>
|
|
12382
12859
|
</details>
|
|
12383
12860
|
|
|
12384
|
-
<details><summary><code>client.conversationalAi.knowledgeBase.documents.<a href="/src/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.ts">
|
|
12861
|
+
<details><summary><code>client.conversationalAi.knowledgeBase.documents.<a href="/src/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/client/Client.ts">bulkMove</a>({ ...params }) -> void</code></summary>
|
|
12385
12862
|
<dl>
|
|
12386
12863
|
<dd>
|
|
12387
12864
|
|
|
@@ -12393,7 +12870,7 @@ await client.conversationalAi.knowledgeBase.documents.getSourceFileUrl("21m00Tcm
|
|
|
12393
12870
|
<dl>
|
|
12394
12871
|
<dd>
|
|
12395
12872
|
|
|
12396
|
-
Moves
|
|
12873
|
+
Moves multiple entities from one folder to another.
|
|
12397
12874
|
</dd>
|
|
12398
12875
|
</dl>
|
|
12399
12876
|
</dd>
|
|
@@ -12408,7 +12885,9 @@ Moves the entity from one folder to another.
|
|
|
12408
12885
|
<dd>
|
|
12409
12886
|
|
|
12410
12887
|
```typescript
|
|
12411
|
-
await client.conversationalAi.knowledgeBase.documents.
|
|
12888
|
+
await client.conversationalAi.knowledgeBase.documents.bulkMove({
|
|
12889
|
+
documentIds: ["21m00Tcm4TlvDq8ikWAM", "31m00Tcm4TlvDq8ikWBM"]
|
|
12890
|
+
});
|
|
12412
12891
|
|
|
12413
12892
|
```
|
|
12414
12893
|
</dd>
|
|
@@ -12424,15 +12903,7 @@ await client.conversationalAi.knowledgeBase.documents.move("21m00Tcm4TlvDq8ikWAM
|
|
|
12424
12903
|
<dl>
|
|
12425
12904
|
<dd>
|
|
12426
12905
|
|
|
12427
|
-
**
|
|
12428
|
-
|
|
12429
|
-
</dd>
|
|
12430
|
-
</dl>
|
|
12431
|
-
|
|
12432
|
-
<dl>
|
|
12433
|
-
<dd>
|
|
12434
|
-
|
|
12435
|
-
**request:** `ElevenLabs.conversationalAi.knowledgeBase.BodyMoveEntityToFolderV1ConvaiKnowledgeBaseDocumentIdMovePost`
|
|
12906
|
+
**request:** `ElevenLabs.conversationalAi.knowledgeBase.BodyBulkMoveEntitiesToFolderV1ConvaiKnowledgeBaseBulkMovePost`
|
|
12436
12907
|
|
|
12437
12908
|
</dd>
|
|
12438
12909
|
</dl>
|
|
@@ -12452,7 +12923,8 @@ await client.conversationalAi.knowledgeBase.documents.move("21m00Tcm4TlvDq8ikWAM
|
|
|
12452
12923
|
</dl>
|
|
12453
12924
|
</details>
|
|
12454
12925
|
|
|
12455
|
-
|
|
12926
|
+
## ConversationalAi KnowledgeBase Document
|
|
12927
|
+
<details><summary><code>client.conversationalAi.knowledgeBase.document.<a href="/src/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.ts">updateFile</a>(documentation_id, { ...params }) -> ElevenLabs.DocumentUpdateFileResponse</code></summary>
|
|
12456
12928
|
<dl>
|
|
12457
12929
|
<dd>
|
|
12458
12930
|
|
|
@@ -12464,7 +12936,7 @@ await client.conversationalAi.knowledgeBase.documents.move("21m00Tcm4TlvDq8ikWAM
|
|
|
12464
12936
|
<dl>
|
|
12465
12937
|
<dd>
|
|
12466
12938
|
|
|
12467
|
-
|
|
12939
|
+
Update the source file of a file document. The document name, content, and metadata are updated to reflect the new file. Any manual content edits will be overwritten.
|
|
12468
12940
|
</dd>
|
|
12469
12941
|
</dl>
|
|
12470
12942
|
</dd>
|
|
@@ -12479,8 +12951,8 @@ Moves multiple entities from one folder to another.
|
|
|
12479
12951
|
<dd>
|
|
12480
12952
|
|
|
12481
12953
|
```typescript
|
|
12482
|
-
await client.conversationalAi.knowledgeBase.
|
|
12483
|
-
|
|
12954
|
+
await client.conversationalAi.knowledgeBase.document.updateFile("21m00Tcm4TlvDq8ikWAM", {
|
|
12955
|
+
file: fs.createReadStream("/path/to/your/file")
|
|
12484
12956
|
});
|
|
12485
12957
|
|
|
12486
12958
|
```
|
|
@@ -12497,7 +12969,7 @@ await client.conversationalAi.knowledgeBase.documents.bulkMove({
|
|
|
12497
12969
|
<dl>
|
|
12498
12970
|
<dd>
|
|
12499
12971
|
|
|
12500
|
-
**
|
|
12972
|
+
**documentation_id:** `string`
|
|
12501
12973
|
|
|
12502
12974
|
</dd>
|
|
12503
12975
|
</dl>
|
|
@@ -12505,7 +12977,15 @@ await client.conversationalAi.knowledgeBase.documents.bulkMove({
|
|
|
12505
12977
|
<dl>
|
|
12506
12978
|
<dd>
|
|
12507
12979
|
|
|
12508
|
-
**
|
|
12980
|
+
**request:** `ElevenLabs.conversationalAi.knowledgeBase.BodyUpdateFileDocumentV1ConvaiKnowledgeBaseDocumentationIdUpdateFilePatch`
|
|
12981
|
+
|
|
12982
|
+
</dd>
|
|
12983
|
+
</dl>
|
|
12984
|
+
|
|
12985
|
+
<dl>
|
|
12986
|
+
<dd>
|
|
12987
|
+
|
|
12988
|
+
**requestOptions:** `DocumentClient.RequestOptions`
|
|
12509
12989
|
|
|
12510
12990
|
</dd>
|
|
12511
12991
|
</dl>
|
|
@@ -12517,7 +12997,6 @@ await client.conversationalAi.knowledgeBase.documents.bulkMove({
|
|
|
12517
12997
|
</dl>
|
|
12518
12998
|
</details>
|
|
12519
12999
|
|
|
12520
|
-
## ConversationalAi KnowledgeBase Document
|
|
12521
13000
|
<details><summary><code>client.conversationalAi.knowledgeBase.document.<a href="/src/api/resources/conversationalAi/resources/knowledgeBase/resources/document/client/Client.ts">refresh</a>(documentation_id) -> ElevenLabs.DocumentRefreshResponse</code></summary>
|
|
12522
13001
|
<dl>
|
|
12523
13002
|
<dd>
|
|
@@ -12798,6 +13277,82 @@ await client.conversationalAi.knowledgeBase.documents.chunk.get("21m00Tcm4TlvDq8
|
|
|
12798
13277
|
</dl>
|
|
12799
13278
|
|
|
12800
13279
|
|
|
13280
|
+
</dd>
|
|
13281
|
+
</dl>
|
|
13282
|
+
</details>
|
|
13283
|
+
|
|
13284
|
+
## ConversationalAi KnowledgeBase Documents Chunks
|
|
13285
|
+
<details><summary><code>client.conversationalAi.knowledgeBase.documents.chunks.<a href="/src/api/resources/conversationalAi/resources/knowledgeBase/resources/documents/resources/chunks/client/Client.ts">list</a>(documentation_id, { ...params }) -> ElevenLabs.KnowledgeBaseDocumentChunksResponseModel</code></summary>
|
|
13286
|
+
<dl>
|
|
13287
|
+
<dd>
|
|
13288
|
+
|
|
13289
|
+
#### 📝 Description
|
|
13290
|
+
|
|
13291
|
+
<dl>
|
|
13292
|
+
<dd>
|
|
13293
|
+
|
|
13294
|
+
<dl>
|
|
13295
|
+
<dd>
|
|
13296
|
+
|
|
13297
|
+
Get all RAG chunks for a specific knowledge base document.
|
|
13298
|
+
</dd>
|
|
13299
|
+
</dl>
|
|
13300
|
+
</dd>
|
|
13301
|
+
</dl>
|
|
13302
|
+
|
|
13303
|
+
#### 🔌 Usage
|
|
13304
|
+
|
|
13305
|
+
<dl>
|
|
13306
|
+
<dd>
|
|
13307
|
+
|
|
13308
|
+
<dl>
|
|
13309
|
+
<dd>
|
|
13310
|
+
|
|
13311
|
+
```typescript
|
|
13312
|
+
await client.conversationalAi.knowledgeBase.documents.chunks.list("21m00Tcm4TlvDq8ikWAM", {
|
|
13313
|
+
embeddingModel: "e5_mistral_7b_instruct",
|
|
13314
|
+
pageSize: 1,
|
|
13315
|
+
cursor: "cursor"
|
|
13316
|
+
});
|
|
13317
|
+
|
|
13318
|
+
```
|
|
13319
|
+
</dd>
|
|
13320
|
+
</dl>
|
|
13321
|
+
</dd>
|
|
13322
|
+
</dl>
|
|
13323
|
+
|
|
13324
|
+
#### ⚙️ Parameters
|
|
13325
|
+
|
|
13326
|
+
<dl>
|
|
13327
|
+
<dd>
|
|
13328
|
+
|
|
13329
|
+
<dl>
|
|
13330
|
+
<dd>
|
|
13331
|
+
|
|
13332
|
+
**documentation_id:** `string` — The id of a document from the knowledge base. This is returned on document addition.
|
|
13333
|
+
|
|
13334
|
+
</dd>
|
|
13335
|
+
</dl>
|
|
13336
|
+
|
|
13337
|
+
<dl>
|
|
13338
|
+
<dd>
|
|
13339
|
+
|
|
13340
|
+
**request:** `ElevenLabs.conversationalAi.knowledgeBase.documents.ChunksListRequest`
|
|
13341
|
+
|
|
13342
|
+
</dd>
|
|
13343
|
+
</dl>
|
|
13344
|
+
|
|
13345
|
+
<dl>
|
|
13346
|
+
<dd>
|
|
13347
|
+
|
|
13348
|
+
**requestOptions:** `ChunksClient.RequestOptions`
|
|
13349
|
+
|
|
13350
|
+
</dd>
|
|
13351
|
+
</dl>
|
|
13352
|
+
</dd>
|
|
13353
|
+
</dl>
|
|
13354
|
+
|
|
13355
|
+
|
|
12801
13356
|
</dd>
|
|
12802
13357
|
</dl>
|
|
12803
13358
|
</details>
|
|
@@ -19207,6 +19762,79 @@ await client.workspace.authConnections.delete("auth_connection_id");
|
|
|
19207
19762
|
</dl>
|
|
19208
19763
|
|
|
19209
19764
|
|
|
19765
|
+
</dd>
|
|
19766
|
+
</dl>
|
|
19767
|
+
</details>
|
|
19768
|
+
|
|
19769
|
+
<details><summary><code>client.workspace.authConnections.<a href="/src/api/resources/workspace/resources/authConnections/client/Client.ts">update</a>(auth_connection_id, { ...params }) -> ElevenLabs.AuthConnectionsUpdateResponse</code></summary>
|
|
19770
|
+
<dl>
|
|
19771
|
+
<dd>
|
|
19772
|
+
|
|
19773
|
+
#### 📝 Description
|
|
19774
|
+
|
|
19775
|
+
<dl>
|
|
19776
|
+
<dd>
|
|
19777
|
+
|
|
19778
|
+
<dl>
|
|
19779
|
+
<dd>
|
|
19780
|
+
|
|
19781
|
+
Update an auth connection
|
|
19782
|
+
</dd>
|
|
19783
|
+
</dl>
|
|
19784
|
+
</dd>
|
|
19785
|
+
</dl>
|
|
19786
|
+
|
|
19787
|
+
#### 🔌 Usage
|
|
19788
|
+
|
|
19789
|
+
<dl>
|
|
19790
|
+
<dd>
|
|
19791
|
+
|
|
19792
|
+
<dl>
|
|
19793
|
+
<dd>
|
|
19794
|
+
|
|
19795
|
+
```typescript
|
|
19796
|
+
await client.workspace.authConnections.update("auth_connection_id", {
|
|
19797
|
+
authType: "oauth2_client_credentials"
|
|
19798
|
+
});
|
|
19799
|
+
|
|
19800
|
+
```
|
|
19801
|
+
</dd>
|
|
19802
|
+
</dl>
|
|
19803
|
+
</dd>
|
|
19804
|
+
</dl>
|
|
19805
|
+
|
|
19806
|
+
#### ⚙️ Parameters
|
|
19807
|
+
|
|
19808
|
+
<dl>
|
|
19809
|
+
<dd>
|
|
19810
|
+
|
|
19811
|
+
<dl>
|
|
19812
|
+
<dd>
|
|
19813
|
+
|
|
19814
|
+
**auth_connection_id:** `string`
|
|
19815
|
+
|
|
19816
|
+
</dd>
|
|
19817
|
+
</dl>
|
|
19818
|
+
|
|
19819
|
+
<dl>
|
|
19820
|
+
<dd>
|
|
19821
|
+
|
|
19822
|
+
**request:** `ElevenLabs.AuthConnectionsUpdateRequestBody`
|
|
19823
|
+
|
|
19824
|
+
</dd>
|
|
19825
|
+
</dl>
|
|
19826
|
+
|
|
19827
|
+
<dl>
|
|
19828
|
+
<dd>
|
|
19829
|
+
|
|
19830
|
+
**requestOptions:** `AuthConnectionsClient.RequestOptions`
|
|
19831
|
+
|
|
19832
|
+
</dd>
|
|
19833
|
+
</dl>
|
|
19834
|
+
</dd>
|
|
19835
|
+
</dl>
|
|
19836
|
+
|
|
19837
|
+
|
|
19210
19838
|
</dd>
|
|
19211
19839
|
</dl>
|
|
19212
19840
|
</details>
|
|
@@ -19878,6 +20506,70 @@ await client.workspace.usage.getUsageByProductOverTime({
|
|
|
19878
20506
|
</dl>
|
|
19879
20507
|
|
|
19880
20508
|
|
|
20509
|
+
</dd>
|
|
20510
|
+
</dl>
|
|
20511
|
+
</details>
|
|
20512
|
+
|
|
20513
|
+
## Workspace Analytics Requests
|
|
20514
|
+
<details><summary><code>client.workspace.analytics.requests.<a href="/src/api/resources/workspace/resources/analytics/resources/requests/client/Client.ts">get</a>({ ...params }) -> ElevenLabs.WorkspaceAnalyticsQueryResponseModel</code></summary>
|
|
20515
|
+
<dl>
|
|
20516
|
+
<dd>
|
|
20517
|
+
|
|
20518
|
+
#### 📝 Description
|
|
20519
|
+
|
|
20520
|
+
<dl>
|
|
20521
|
+
<dd>
|
|
20522
|
+
|
|
20523
|
+
<dl>
|
|
20524
|
+
<dd>
|
|
20525
|
+
|
|
20526
|
+
Returns a list of API requests. Supports filtering by time range, column filters, and search terms. At least one of start_time or end_time must be provided. An optional sort parameter controls timestamp ordering. Results are ordered by timestamp. Descending if end_time is used, ascending if start_time is used. The response is a tabular structure with columns, column_types, column_units, and rows.
|
|
20527
|
+
</dd>
|
|
20528
|
+
</dl>
|
|
20529
|
+
</dd>
|
|
20530
|
+
</dl>
|
|
20531
|
+
|
|
20532
|
+
#### 🔌 Usage
|
|
20533
|
+
|
|
20534
|
+
<dl>
|
|
20535
|
+
<dd>
|
|
20536
|
+
|
|
20537
|
+
<dl>
|
|
20538
|
+
<dd>
|
|
20539
|
+
|
|
20540
|
+
```typescript
|
|
20541
|
+
await client.workspace.analytics.requests.get();
|
|
20542
|
+
|
|
20543
|
+
```
|
|
20544
|
+
</dd>
|
|
20545
|
+
</dl>
|
|
20546
|
+
</dd>
|
|
20547
|
+
</dl>
|
|
20548
|
+
|
|
20549
|
+
#### ⚙️ Parameters
|
|
20550
|
+
|
|
20551
|
+
<dl>
|
|
20552
|
+
<dd>
|
|
20553
|
+
|
|
20554
|
+
<dl>
|
|
20555
|
+
<dd>
|
|
20556
|
+
|
|
20557
|
+
**request:** `ElevenLabs.workspace.analytics.BodyListApiRequestsV1WorkspaceAnalyticsRequestsPost`
|
|
20558
|
+
|
|
20559
|
+
</dd>
|
|
20560
|
+
</dl>
|
|
20561
|
+
|
|
20562
|
+
<dl>
|
|
20563
|
+
<dd>
|
|
20564
|
+
|
|
20565
|
+
**requestOptions:** `RequestsClient.RequestOptions`
|
|
20566
|
+
|
|
20567
|
+
</dd>
|
|
20568
|
+
</dl>
|
|
20569
|
+
</dd>
|
|
20570
|
+
</dl>
|
|
20571
|
+
|
|
20572
|
+
|
|
19881
20573
|
</dd>
|
|
19882
20574
|
</dl>
|
|
19883
20575
|
</details>
|