@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/api/types/index.d.ts
CHANGED
|
@@ -15,6 +15,8 @@ export * from "./AddWorkspaceGroupMemberResponseModel";
|
|
|
15
15
|
export * from "./AddWorkspaceInviteResponseModel";
|
|
16
16
|
export * from "./AdhocAgentConfigOverrideForTestRequestModel";
|
|
17
17
|
export * from "./Age";
|
|
18
|
+
export * from "./AgentAlertingMonitorConfig";
|
|
19
|
+
export * from "./AgentAlertingSettings";
|
|
18
20
|
export * from "./AgentBranchBasicInfo";
|
|
19
21
|
export * from "./AgentBranchResponse";
|
|
20
22
|
export * from "./AgentBranchSummary";
|
|
@@ -32,6 +34,7 @@ export * from "./AgentDeploymentRequestItem";
|
|
|
32
34
|
export * from "./AgentDeploymentResponse";
|
|
33
35
|
export * from "./AgentFailureResponseExample";
|
|
34
36
|
export * from "./AgentMetadata";
|
|
37
|
+
export * from "./AgentMetadataDbModel";
|
|
35
38
|
export * from "./AgentMetadataResponseModel";
|
|
36
39
|
export * from "./AgentPlatformSettingsRequestModel";
|
|
37
40
|
export * from "./AgentPlatformSettingsResponseModel";
|
|
@@ -161,6 +164,7 @@ export * from "./BackupLlmDefault";
|
|
|
161
164
|
export * from "./BackupLlmDisabled";
|
|
162
165
|
export * from "./BackupLlmOverride";
|
|
163
166
|
export * from "./BadRequestErrorBody";
|
|
167
|
+
export * from "./BaseTurnConfig";
|
|
164
168
|
export * from "./BasicAuthResponse";
|
|
165
169
|
export * from "./BatchCallDetailedResponse";
|
|
166
170
|
export * from "./BatchCallRecipientStatus";
|
|
@@ -234,6 +238,7 @@ export * from "./CloseContext";
|
|
|
234
238
|
export * from "./CloseSocket";
|
|
235
239
|
export * from "./CoachedAgentSettings";
|
|
236
240
|
export * from "./CoachingAgentSettings";
|
|
241
|
+
export * from "./CodeToolAllowedDomain";
|
|
237
242
|
export * from "./ColumnFilter";
|
|
238
243
|
export * from "./ColumnFilterOperation";
|
|
239
244
|
export * from "./ColumnFilterValuesItem";
|
|
@@ -338,8 +343,8 @@ export * from "./ConversationSource";
|
|
|
338
343
|
export * from "./ConversationSummaryResponseModel";
|
|
339
344
|
export * from "./ConversationSummaryResponseModelStatus";
|
|
340
345
|
export * from "./ConversationTagResponseModel";
|
|
341
|
-
export * from "./ConversationTokenDbModel";
|
|
342
346
|
export * from "./ConversationTokenPurpose";
|
|
347
|
+
export * from "./ConversationTokenResponseModel";
|
|
343
348
|
export * from "./ConversationTtsUsageModel";
|
|
344
349
|
export * from "./ConversationTurnMetrics";
|
|
345
350
|
export * from "./ConversationUserResponseModel";
|
|
@@ -356,6 +361,7 @@ export * from "./CreateAssetParams";
|
|
|
356
361
|
export * from "./CreateAudioNativeProjectRequest";
|
|
357
362
|
export * from "./CreateAuthConnectionEnvironmentVariableRequest";
|
|
358
363
|
export * from "./CreateBasicAuthRequest";
|
|
364
|
+
export * from "./CreateBearerAuthRequest";
|
|
359
365
|
export * from "./CreateClientAppointmentParams";
|
|
360
366
|
export * from "./CreateClientInteractionParams";
|
|
361
367
|
export * from "./CreateClientParams";
|
|
@@ -378,6 +384,7 @@ export * from "./CreateSecretEnvironmentVariableRequest";
|
|
|
378
384
|
export * from "./CreateServiceParams";
|
|
379
385
|
export * from "./CreateSimulationTestRequest";
|
|
380
386
|
export * from "./CreateSipTrunkPhoneNumberRequest";
|
|
387
|
+
export * from "./CreateSpeechEngineResponse";
|
|
381
388
|
export * from "./CreateStaffParams";
|
|
382
389
|
export * from "./CreateStringEnvironmentVariableRequest";
|
|
383
390
|
export * from "./CreateToolCallUnitTestRequest";
|
|
@@ -640,6 +647,7 @@ export * from "./KnowledgeBaseContentSearchResult";
|
|
|
640
647
|
export * from "./KnowledgeBaseContentSearchResultDocument";
|
|
641
648
|
export * from "./KnowledgeBaseDependentType";
|
|
642
649
|
export * from "./KnowledgeBaseDocumentChunkResponseModel";
|
|
650
|
+
export * from "./KnowledgeBaseDocumentChunksResponseModel";
|
|
643
651
|
export * from "./KnowledgeBaseDocumentMetadataResponseModel";
|
|
644
652
|
export * from "./KnowledgeBaseDocumentType";
|
|
645
653
|
export * from "./KnowledgeBaseFolderPathSegmentResponseModel";
|
|
@@ -669,6 +677,7 @@ export * from "./ListAuthConnectionsResponseAuthConnectionsItem";
|
|
|
669
677
|
export * from "./ListCalendarEventsParams";
|
|
670
678
|
export * from "./ListClientInteractionsParams";
|
|
671
679
|
export * from "./ListClientsParams";
|
|
680
|
+
export * from "./ListCustomerFacingAgentsParams";
|
|
672
681
|
export * from "./ListGroupSessionsParams";
|
|
673
682
|
export * from "./ListHolidaysParams";
|
|
674
683
|
export * from "./ListLocationsParams";
|
|
@@ -678,6 +687,7 @@ export * from "./ListResponseAgentBranchSummary";
|
|
|
678
687
|
export * from "./ListResponseApiIntegrationDocResponse";
|
|
679
688
|
export * from "./ListResponseMeta";
|
|
680
689
|
export * from "./ListServicesParams";
|
|
690
|
+
export * from "./ListSpeechEnginesResponse";
|
|
681
691
|
export * from "./ListStaffParams";
|
|
682
692
|
export * from "./ListWhatsAppAccountsResponse";
|
|
683
693
|
export * from "./LiteralJsonSchemaProperty";
|
|
@@ -703,6 +713,8 @@ export * from "./LlmUsageCalculatorLlmResponseModel";
|
|
|
703
713
|
export * from "./LlmUsageCalculatorResponseModel";
|
|
704
714
|
export * from "./LlmUsageInput";
|
|
705
715
|
export * from "./LlmUsageOutput";
|
|
716
|
+
export * from "./LoadProcedureToolConfig";
|
|
717
|
+
export * from "./LoadProcedureToolErrorStatus";
|
|
706
718
|
export * from "./ManualSource";
|
|
707
719
|
export * from "./ManualVerificationFileResponse";
|
|
708
720
|
export * from "./ManualVerificationResponse";
|
|
@@ -744,6 +756,7 @@ export * from "./ModelSettingsResponseModel";
|
|
|
744
756
|
export * from "./ModerationConfig";
|
|
745
757
|
export * from "./ModerationGuardrailInput";
|
|
746
758
|
export * from "./ModerationGuardrailOutput";
|
|
759
|
+
export * from "./Monitor";
|
|
747
760
|
export * from "./MtlsAuthResponse";
|
|
748
761
|
export * from "./MultichannelSpeechToTextResponseModel";
|
|
749
762
|
export * from "./MultipartMusicResponse";
|
|
@@ -809,6 +822,7 @@ export * from "./PrivacyConfigInput";
|
|
|
809
822
|
export * from "./PrivacyConfigOutput";
|
|
810
823
|
export * from "./PrivateKeyJwtResponse";
|
|
811
824
|
export * from "./PrivateKeyJwtResponseAlgorithm";
|
|
825
|
+
export * from "./ProcedureAtVersion";
|
|
812
826
|
export * from "./ProcedureCompilerMode";
|
|
813
827
|
export * from "./ProcedureRefResponseModel";
|
|
814
828
|
export * from "./ProcedureSettings";
|
|
@@ -893,12 +907,14 @@ export * from "./ReferencedToolCommonModel";
|
|
|
893
907
|
export * from "./ReferencedToolCommonModelType";
|
|
894
908
|
export * from "./ReferenceVideo";
|
|
895
909
|
export * from "./RegexParameterEvaluationStrategy";
|
|
910
|
+
export * from "./RegionalProcessingSurchargeInfo";
|
|
896
911
|
export * from "./RegionConfigRequest";
|
|
897
912
|
export * from "./RegisterForGroupSessionParams";
|
|
898
913
|
export * from "./RemoveMemberFromGroupRequest";
|
|
899
914
|
export * from "./Render";
|
|
900
915
|
export * from "./RenderStatus";
|
|
901
916
|
export * from "./RenderType";
|
|
917
|
+
export * from "./ReportKnowledgeGapParams";
|
|
902
918
|
export * from "./RequestPvcManualVerificationResponseModel";
|
|
903
919
|
export * from "./RequiredConstraint";
|
|
904
920
|
export * from "./RequiredConstraints";
|
|
@@ -983,6 +999,7 @@ export * from "./SipUriDynamicVariableTransferDestination";
|
|
|
983
999
|
export * from "./SipUriTransferDestination";
|
|
984
1000
|
export * from "./SkipTurnToolConfig";
|
|
985
1001
|
export * from "./SkipTurnToolResponseModel";
|
|
1002
|
+
export * from "./SlackBotAuthResponse";
|
|
986
1003
|
export * from "./SmsConversationInfo";
|
|
987
1004
|
export * from "./SmsConversationInfoDirection";
|
|
988
1005
|
export * from "./SoftTimeoutConfig";
|
|
@@ -1003,6 +1020,8 @@ export * from "./SpeakerTrack";
|
|
|
1003
1020
|
export * from "./SpeakerUpdatedResponse";
|
|
1004
1021
|
export * from "./SpeechEngineConfig";
|
|
1005
1022
|
export * from "./SpeechEngineConfigRequestHeadersValue";
|
|
1023
|
+
export * from "./SpeechEngineResponse";
|
|
1024
|
+
export * from "./SpeechEngineSummaryResponse";
|
|
1006
1025
|
export * from "./SpeechHistoryItemResponse";
|
|
1007
1026
|
export * from "./SpeechHistoryItemResponseModelSource";
|
|
1008
1027
|
export * from "./SpeechHistoryItemResponseModelVoiceCategory";
|
|
@@ -1136,6 +1155,7 @@ export * from "./UnitTestWorkflowNodeTransitionEvaluationNodeId";
|
|
|
1136
1155
|
export * from "./UpdateAgentRuleParams";
|
|
1137
1156
|
export * from "./UpdateAssetParams";
|
|
1138
1157
|
export * from "./UpdateAudioNativeProjectRequest";
|
|
1158
|
+
export * from "./UpdateBasicAuthRequest";
|
|
1139
1159
|
export * from "./UpdateBookingPageSettingsParams";
|
|
1140
1160
|
export * from "./UpdateBusinessInfoParams";
|
|
1141
1161
|
export * from "./UpdateCalendarEventParams";
|
|
@@ -1145,6 +1165,10 @@ export * from "./UpdateCustomerFacingConfigParams";
|
|
|
1145
1165
|
export * from "./UpdateGroupSessionSeatsParams";
|
|
1146
1166
|
export * from "./UpdateHolidayParams";
|
|
1147
1167
|
export * from "./UpdateLocationParams";
|
|
1168
|
+
export * from "./UpdateOAuth2ClientCredsRequest";
|
|
1169
|
+
export * from "./UpdateOAuth2JwtRequest";
|
|
1170
|
+
export * from "./UpdateOAuth2JwtRequestAlgorithm";
|
|
1171
|
+
export * from "./UpdateOAuth2JwtRequestTokenResponseField";
|
|
1148
1172
|
export * from "./UpdateProductParams";
|
|
1149
1173
|
export * from "./UpdateProjectRequest";
|
|
1150
1174
|
export * from "./UpdatePronunciationDictionariesRequest";
|
package/api/types/index.js
CHANGED
|
@@ -31,6 +31,8 @@ __exportStar(require("./AddWorkspaceGroupMemberResponseModel"), exports);
|
|
|
31
31
|
__exportStar(require("./AddWorkspaceInviteResponseModel"), exports);
|
|
32
32
|
__exportStar(require("./AdhocAgentConfigOverrideForTestRequestModel"), exports);
|
|
33
33
|
__exportStar(require("./Age"), exports);
|
|
34
|
+
__exportStar(require("./AgentAlertingMonitorConfig"), exports);
|
|
35
|
+
__exportStar(require("./AgentAlertingSettings"), exports);
|
|
34
36
|
__exportStar(require("./AgentBranchBasicInfo"), exports);
|
|
35
37
|
__exportStar(require("./AgentBranchResponse"), exports);
|
|
36
38
|
__exportStar(require("./AgentBranchSummary"), exports);
|
|
@@ -48,6 +50,7 @@ __exportStar(require("./AgentDeploymentRequestItem"), exports);
|
|
|
48
50
|
__exportStar(require("./AgentDeploymentResponse"), exports);
|
|
49
51
|
__exportStar(require("./AgentFailureResponseExample"), exports);
|
|
50
52
|
__exportStar(require("./AgentMetadata"), exports);
|
|
53
|
+
__exportStar(require("./AgentMetadataDbModel"), exports);
|
|
51
54
|
__exportStar(require("./AgentMetadataResponseModel"), exports);
|
|
52
55
|
__exportStar(require("./AgentPlatformSettingsRequestModel"), exports);
|
|
53
56
|
__exportStar(require("./AgentPlatformSettingsResponseModel"), exports);
|
|
@@ -177,6 +180,7 @@ __exportStar(require("./BackupLlmDefault"), exports);
|
|
|
177
180
|
__exportStar(require("./BackupLlmDisabled"), exports);
|
|
178
181
|
__exportStar(require("./BackupLlmOverride"), exports);
|
|
179
182
|
__exportStar(require("./BadRequestErrorBody"), exports);
|
|
183
|
+
__exportStar(require("./BaseTurnConfig"), exports);
|
|
180
184
|
__exportStar(require("./BasicAuthResponse"), exports);
|
|
181
185
|
__exportStar(require("./BatchCallDetailedResponse"), exports);
|
|
182
186
|
__exportStar(require("./BatchCallRecipientStatus"), exports);
|
|
@@ -250,6 +254,7 @@ __exportStar(require("./CloseContext"), exports);
|
|
|
250
254
|
__exportStar(require("./CloseSocket"), exports);
|
|
251
255
|
__exportStar(require("./CoachedAgentSettings"), exports);
|
|
252
256
|
__exportStar(require("./CoachingAgentSettings"), exports);
|
|
257
|
+
__exportStar(require("./CodeToolAllowedDomain"), exports);
|
|
253
258
|
__exportStar(require("./ColumnFilter"), exports);
|
|
254
259
|
__exportStar(require("./ColumnFilterOperation"), exports);
|
|
255
260
|
__exportStar(require("./ColumnFilterValuesItem"), exports);
|
|
@@ -354,8 +359,8 @@ __exportStar(require("./ConversationSource"), exports);
|
|
|
354
359
|
__exportStar(require("./ConversationSummaryResponseModel"), exports);
|
|
355
360
|
__exportStar(require("./ConversationSummaryResponseModelStatus"), exports);
|
|
356
361
|
__exportStar(require("./ConversationTagResponseModel"), exports);
|
|
357
|
-
__exportStar(require("./ConversationTokenDbModel"), exports);
|
|
358
362
|
__exportStar(require("./ConversationTokenPurpose"), exports);
|
|
363
|
+
__exportStar(require("./ConversationTokenResponseModel"), exports);
|
|
359
364
|
__exportStar(require("./ConversationTtsUsageModel"), exports);
|
|
360
365
|
__exportStar(require("./ConversationTurnMetrics"), exports);
|
|
361
366
|
__exportStar(require("./ConversationUserResponseModel"), exports);
|
|
@@ -372,6 +377,7 @@ __exportStar(require("./CreateAssetParams"), exports);
|
|
|
372
377
|
__exportStar(require("./CreateAudioNativeProjectRequest"), exports);
|
|
373
378
|
__exportStar(require("./CreateAuthConnectionEnvironmentVariableRequest"), exports);
|
|
374
379
|
__exportStar(require("./CreateBasicAuthRequest"), exports);
|
|
380
|
+
__exportStar(require("./CreateBearerAuthRequest"), exports);
|
|
375
381
|
__exportStar(require("./CreateClientAppointmentParams"), exports);
|
|
376
382
|
__exportStar(require("./CreateClientInteractionParams"), exports);
|
|
377
383
|
__exportStar(require("./CreateClientParams"), exports);
|
|
@@ -394,6 +400,7 @@ __exportStar(require("./CreateSecretEnvironmentVariableRequest"), exports);
|
|
|
394
400
|
__exportStar(require("./CreateServiceParams"), exports);
|
|
395
401
|
__exportStar(require("./CreateSimulationTestRequest"), exports);
|
|
396
402
|
__exportStar(require("./CreateSipTrunkPhoneNumberRequest"), exports);
|
|
403
|
+
__exportStar(require("./CreateSpeechEngineResponse"), exports);
|
|
397
404
|
__exportStar(require("./CreateStaffParams"), exports);
|
|
398
405
|
__exportStar(require("./CreateStringEnvironmentVariableRequest"), exports);
|
|
399
406
|
__exportStar(require("./CreateToolCallUnitTestRequest"), exports);
|
|
@@ -656,6 +663,7 @@ __exportStar(require("./KnowledgeBaseContentSearchResult"), exports);
|
|
|
656
663
|
__exportStar(require("./KnowledgeBaseContentSearchResultDocument"), exports);
|
|
657
664
|
__exportStar(require("./KnowledgeBaseDependentType"), exports);
|
|
658
665
|
__exportStar(require("./KnowledgeBaseDocumentChunkResponseModel"), exports);
|
|
666
|
+
__exportStar(require("./KnowledgeBaseDocumentChunksResponseModel"), exports);
|
|
659
667
|
__exportStar(require("./KnowledgeBaseDocumentMetadataResponseModel"), exports);
|
|
660
668
|
__exportStar(require("./KnowledgeBaseDocumentType"), exports);
|
|
661
669
|
__exportStar(require("./KnowledgeBaseFolderPathSegmentResponseModel"), exports);
|
|
@@ -685,6 +693,7 @@ __exportStar(require("./ListAuthConnectionsResponseAuthConnectionsItem"), export
|
|
|
685
693
|
__exportStar(require("./ListCalendarEventsParams"), exports);
|
|
686
694
|
__exportStar(require("./ListClientInteractionsParams"), exports);
|
|
687
695
|
__exportStar(require("./ListClientsParams"), exports);
|
|
696
|
+
__exportStar(require("./ListCustomerFacingAgentsParams"), exports);
|
|
688
697
|
__exportStar(require("./ListGroupSessionsParams"), exports);
|
|
689
698
|
__exportStar(require("./ListHolidaysParams"), exports);
|
|
690
699
|
__exportStar(require("./ListLocationsParams"), exports);
|
|
@@ -694,6 +703,7 @@ __exportStar(require("./ListResponseAgentBranchSummary"), exports);
|
|
|
694
703
|
__exportStar(require("./ListResponseApiIntegrationDocResponse"), exports);
|
|
695
704
|
__exportStar(require("./ListResponseMeta"), exports);
|
|
696
705
|
__exportStar(require("./ListServicesParams"), exports);
|
|
706
|
+
__exportStar(require("./ListSpeechEnginesResponse"), exports);
|
|
697
707
|
__exportStar(require("./ListStaffParams"), exports);
|
|
698
708
|
__exportStar(require("./ListWhatsAppAccountsResponse"), exports);
|
|
699
709
|
__exportStar(require("./LiteralJsonSchemaProperty"), exports);
|
|
@@ -719,6 +729,8 @@ __exportStar(require("./LlmUsageCalculatorLlmResponseModel"), exports);
|
|
|
719
729
|
__exportStar(require("./LlmUsageCalculatorResponseModel"), exports);
|
|
720
730
|
__exportStar(require("./LlmUsageInput"), exports);
|
|
721
731
|
__exportStar(require("./LlmUsageOutput"), exports);
|
|
732
|
+
__exportStar(require("./LoadProcedureToolConfig"), exports);
|
|
733
|
+
__exportStar(require("./LoadProcedureToolErrorStatus"), exports);
|
|
722
734
|
__exportStar(require("./ManualSource"), exports);
|
|
723
735
|
__exportStar(require("./ManualVerificationFileResponse"), exports);
|
|
724
736
|
__exportStar(require("./ManualVerificationResponse"), exports);
|
|
@@ -760,6 +772,7 @@ __exportStar(require("./ModelSettingsResponseModel"), exports);
|
|
|
760
772
|
__exportStar(require("./ModerationConfig"), exports);
|
|
761
773
|
__exportStar(require("./ModerationGuardrailInput"), exports);
|
|
762
774
|
__exportStar(require("./ModerationGuardrailOutput"), exports);
|
|
775
|
+
__exportStar(require("./Monitor"), exports);
|
|
763
776
|
__exportStar(require("./MtlsAuthResponse"), exports);
|
|
764
777
|
__exportStar(require("./MultichannelSpeechToTextResponseModel"), exports);
|
|
765
778
|
__exportStar(require("./MultipartMusicResponse"), exports);
|
|
@@ -825,6 +838,7 @@ __exportStar(require("./PrivacyConfigInput"), exports);
|
|
|
825
838
|
__exportStar(require("./PrivacyConfigOutput"), exports);
|
|
826
839
|
__exportStar(require("./PrivateKeyJwtResponse"), exports);
|
|
827
840
|
__exportStar(require("./PrivateKeyJwtResponseAlgorithm"), exports);
|
|
841
|
+
__exportStar(require("./ProcedureAtVersion"), exports);
|
|
828
842
|
__exportStar(require("./ProcedureCompilerMode"), exports);
|
|
829
843
|
__exportStar(require("./ProcedureRefResponseModel"), exports);
|
|
830
844
|
__exportStar(require("./ProcedureSettings"), exports);
|
|
@@ -909,12 +923,14 @@ __exportStar(require("./ReferencedToolCommonModel"), exports);
|
|
|
909
923
|
__exportStar(require("./ReferencedToolCommonModelType"), exports);
|
|
910
924
|
__exportStar(require("./ReferenceVideo"), exports);
|
|
911
925
|
__exportStar(require("./RegexParameterEvaluationStrategy"), exports);
|
|
926
|
+
__exportStar(require("./RegionalProcessingSurchargeInfo"), exports);
|
|
912
927
|
__exportStar(require("./RegionConfigRequest"), exports);
|
|
913
928
|
__exportStar(require("./RegisterForGroupSessionParams"), exports);
|
|
914
929
|
__exportStar(require("./RemoveMemberFromGroupRequest"), exports);
|
|
915
930
|
__exportStar(require("./Render"), exports);
|
|
916
931
|
__exportStar(require("./RenderStatus"), exports);
|
|
917
932
|
__exportStar(require("./RenderType"), exports);
|
|
933
|
+
__exportStar(require("./ReportKnowledgeGapParams"), exports);
|
|
918
934
|
__exportStar(require("./RequestPvcManualVerificationResponseModel"), exports);
|
|
919
935
|
__exportStar(require("./RequiredConstraint"), exports);
|
|
920
936
|
__exportStar(require("./RequiredConstraints"), exports);
|
|
@@ -999,6 +1015,7 @@ __exportStar(require("./SipUriDynamicVariableTransferDestination"), exports);
|
|
|
999
1015
|
__exportStar(require("./SipUriTransferDestination"), exports);
|
|
1000
1016
|
__exportStar(require("./SkipTurnToolConfig"), exports);
|
|
1001
1017
|
__exportStar(require("./SkipTurnToolResponseModel"), exports);
|
|
1018
|
+
__exportStar(require("./SlackBotAuthResponse"), exports);
|
|
1002
1019
|
__exportStar(require("./SmsConversationInfo"), exports);
|
|
1003
1020
|
__exportStar(require("./SmsConversationInfoDirection"), exports);
|
|
1004
1021
|
__exportStar(require("./SoftTimeoutConfig"), exports);
|
|
@@ -1019,6 +1036,8 @@ __exportStar(require("./SpeakerTrack"), exports);
|
|
|
1019
1036
|
__exportStar(require("./SpeakerUpdatedResponse"), exports);
|
|
1020
1037
|
__exportStar(require("./SpeechEngineConfig"), exports);
|
|
1021
1038
|
__exportStar(require("./SpeechEngineConfigRequestHeadersValue"), exports);
|
|
1039
|
+
__exportStar(require("./SpeechEngineResponse"), exports);
|
|
1040
|
+
__exportStar(require("./SpeechEngineSummaryResponse"), exports);
|
|
1022
1041
|
__exportStar(require("./SpeechHistoryItemResponse"), exports);
|
|
1023
1042
|
__exportStar(require("./SpeechHistoryItemResponseModelSource"), exports);
|
|
1024
1043
|
__exportStar(require("./SpeechHistoryItemResponseModelVoiceCategory"), exports);
|
|
@@ -1152,6 +1171,7 @@ __exportStar(require("./UnitTestWorkflowNodeTransitionEvaluationNodeId"), export
|
|
|
1152
1171
|
__exportStar(require("./UpdateAgentRuleParams"), exports);
|
|
1153
1172
|
__exportStar(require("./UpdateAssetParams"), exports);
|
|
1154
1173
|
__exportStar(require("./UpdateAudioNativeProjectRequest"), exports);
|
|
1174
|
+
__exportStar(require("./UpdateBasicAuthRequest"), exports);
|
|
1155
1175
|
__exportStar(require("./UpdateBookingPageSettingsParams"), exports);
|
|
1156
1176
|
__exportStar(require("./UpdateBusinessInfoParams"), exports);
|
|
1157
1177
|
__exportStar(require("./UpdateCalendarEventParams"), exports);
|
|
@@ -1161,6 +1181,10 @@ __exportStar(require("./UpdateCustomerFacingConfigParams"), exports);
|
|
|
1161
1181
|
__exportStar(require("./UpdateGroupSessionSeatsParams"), exports);
|
|
1162
1182
|
__exportStar(require("./UpdateHolidayParams"), exports);
|
|
1163
1183
|
__exportStar(require("./UpdateLocationParams"), exports);
|
|
1184
|
+
__exportStar(require("./UpdateOAuth2ClientCredsRequest"), exports);
|
|
1185
|
+
__exportStar(require("./UpdateOAuth2JwtRequest"), exports);
|
|
1186
|
+
__exportStar(require("./UpdateOAuth2JwtRequestAlgorithm"), exports);
|
|
1187
|
+
__exportStar(require("./UpdateOAuth2JwtRequestTokenResponseField"), exports);
|
|
1164
1188
|
__exportStar(require("./UpdateProductParams"), exports);
|
|
1165
1189
|
__exportStar(require("./UpdateProjectRequest"), exports);
|
|
1166
1190
|
__exportStar(require("./UpdatePronunciationDictionariesRequest"), exports);
|
package/dist/BaseClient.js
CHANGED
|
@@ -41,8 +41,8 @@ function normalizeClientOptions(options) {
|
|
|
41
41
|
const headers = (0, headers_1.mergeHeaders)({
|
|
42
42
|
"X-Fern-Language": "JavaScript",
|
|
43
43
|
"X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js",
|
|
44
|
-
"X-Fern-SDK-Version": "2.
|
|
45
|
-
"User-Agent": "@elevenlabs/elevenlabs-js/2.
|
|
44
|
+
"X-Fern-SDK-Version": "2.48.0",
|
|
45
|
+
"User-Agent": "@elevenlabs/elevenlabs-js/2.48.0",
|
|
46
46
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
47
47
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
48
48
|
"xi-api-key": options === null || options === void 0 ? void 0 : options.apiKey,
|
package/dist/Client.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { MusicClient } from "./api/resources/music/client/Client";
|
|
|
10
10
|
import { PronunciationDictionariesClient } from "./api/resources/pronunciationDictionaries/client/Client";
|
|
11
11
|
import { SamplesClient } from "./api/resources/samples/client/Client";
|
|
12
12
|
import { ServiceAccountsClient } from "./api/resources/serviceAccounts/client/Client";
|
|
13
|
+
import { SpeechEngineClient } from "./api/resources/speechEngine/client/Client";
|
|
13
14
|
import { SpeechToSpeechClient } from "./api/resources/speechToSpeech/client/Client";
|
|
14
15
|
import { SpeechToTextClient } from "./api/resources/speechToText/client/Client";
|
|
15
16
|
import { StudioClient } from "./api/resources/studio/client/Client";
|
|
@@ -55,6 +56,7 @@ export declare class ElevenLabsClient {
|
|
|
55
56
|
protected _speechToText: SpeechToTextClient | undefined;
|
|
56
57
|
protected _forcedAlignment: ForcedAlignmentClient | undefined;
|
|
57
58
|
protected _conversationalAi: ConversationalAiClient | undefined;
|
|
59
|
+
protected _speechEngine: SpeechEngineClient | undefined;
|
|
58
60
|
protected _environmentVariables: EnvironmentVariablesClient | undefined;
|
|
59
61
|
protected _tokens: TokensClient | undefined;
|
|
60
62
|
protected _workspace: WorkspaceClient | undefined;
|
|
@@ -81,6 +83,7 @@ export declare class ElevenLabsClient {
|
|
|
81
83
|
get speechToText(): SpeechToTextClient;
|
|
82
84
|
get forcedAlignment(): ForcedAlignmentClient;
|
|
83
85
|
get conversationalAi(): ConversationalAiClient;
|
|
86
|
+
get speechEngine(): SpeechEngineClient;
|
|
84
87
|
get environmentVariables(): EnvironmentVariablesClient;
|
|
85
88
|
get tokens(): TokensClient;
|
|
86
89
|
get workspace(): WorkspaceClient;
|
package/dist/Client.js
CHANGED
|
@@ -56,19 +56,20 @@ const Client_9 = require("./api/resources/music/client/Client");
|
|
|
56
56
|
const Client_10 = require("./api/resources/pronunciationDictionaries/client/Client");
|
|
57
57
|
const Client_11 = require("./api/resources/samples/client/Client");
|
|
58
58
|
const Client_12 = require("./api/resources/serviceAccounts/client/Client");
|
|
59
|
-
const Client_13 = require("./api/resources/
|
|
60
|
-
const Client_14 = require("./api/resources/
|
|
61
|
-
const Client_15 = require("./api/resources/
|
|
62
|
-
const Client_16 = require("./api/resources/
|
|
63
|
-
const Client_17 = require("./api/resources/
|
|
64
|
-
const Client_18 = require("./api/resources/
|
|
65
|
-
const Client_19 = require("./api/resources/
|
|
66
|
-
const Client_20 = require("./api/resources/
|
|
67
|
-
const Client_21 = require("./api/resources/
|
|
68
|
-
const Client_22 = require("./api/resources/
|
|
69
|
-
const Client_23 = require("./api/resources/
|
|
70
|
-
const Client_24 = require("./api/resources/
|
|
71
|
-
const Client_25 = require("./api/resources/
|
|
59
|
+
const Client_13 = require("./api/resources/speechEngine/client/Client");
|
|
60
|
+
const Client_14 = require("./api/resources/speechToSpeech/client/Client");
|
|
61
|
+
const Client_15 = require("./api/resources/speechToText/client/Client");
|
|
62
|
+
const Client_16 = require("./api/resources/studio/client/Client");
|
|
63
|
+
const Client_17 = require("./api/resources/textToDialogue/client/Client");
|
|
64
|
+
const Client_18 = require("./api/resources/textToSoundEffects/client/Client");
|
|
65
|
+
const Client_19 = require("./api/resources/textToSpeech/client/Client");
|
|
66
|
+
const Client_20 = require("./api/resources/textToVoice/client/Client");
|
|
67
|
+
const Client_21 = require("./api/resources/tokens/client/Client");
|
|
68
|
+
const Client_22 = require("./api/resources/usage/client/Client");
|
|
69
|
+
const Client_23 = require("./api/resources/user/client/Client");
|
|
70
|
+
const Client_24 = require("./api/resources/voices/client/Client");
|
|
71
|
+
const Client_25 = require("./api/resources/webhooks/client/Client");
|
|
72
|
+
const Client_26 = require("./api/resources/workspace/client/Client");
|
|
72
73
|
const BaseClient_1 = require("./BaseClient");
|
|
73
74
|
const core = __importStar(require("./core"));
|
|
74
75
|
const headers_1 = require("./core/headers");
|
|
@@ -85,7 +86,7 @@ class ElevenLabsClient {
|
|
|
85
86
|
}
|
|
86
87
|
get textToSoundEffects() {
|
|
87
88
|
var _a;
|
|
88
|
-
return ((_a = this._textToSoundEffects) !== null && _a !== void 0 ? _a : (this._textToSoundEffects = new
|
|
89
|
+
return ((_a = this._textToSoundEffects) !== null && _a !== void 0 ? _a : (this._textToSoundEffects = new Client_18.TextToSoundEffectsClient(this._options)));
|
|
89
90
|
}
|
|
90
91
|
get audioIsolation() {
|
|
91
92
|
var _a;
|
|
@@ -97,31 +98,31 @@ class ElevenLabsClient {
|
|
|
97
98
|
}
|
|
98
99
|
get textToSpeech() {
|
|
99
100
|
var _a;
|
|
100
|
-
return ((_a = this._textToSpeech) !== null && _a !== void 0 ? _a : (this._textToSpeech = new
|
|
101
|
+
return ((_a = this._textToSpeech) !== null && _a !== void 0 ? _a : (this._textToSpeech = new Client_19.TextToSpeechClient(this._options)));
|
|
101
102
|
}
|
|
102
103
|
get textToDialogue() {
|
|
103
104
|
var _a;
|
|
104
|
-
return ((_a = this._textToDialogue) !== null && _a !== void 0 ? _a : (this._textToDialogue = new
|
|
105
|
+
return ((_a = this._textToDialogue) !== null && _a !== void 0 ? _a : (this._textToDialogue = new Client_17.TextToDialogueClient(this._options)));
|
|
105
106
|
}
|
|
106
107
|
get speechToSpeech() {
|
|
107
108
|
var _a;
|
|
108
|
-
return ((_a = this._speechToSpeech) !== null && _a !== void 0 ? _a : (this._speechToSpeech = new
|
|
109
|
+
return ((_a = this._speechToSpeech) !== null && _a !== void 0 ? _a : (this._speechToSpeech = new Client_14.SpeechToSpeechClient(this._options)));
|
|
109
110
|
}
|
|
110
111
|
get textToVoice() {
|
|
111
112
|
var _a;
|
|
112
|
-
return ((_a = this._textToVoice) !== null && _a !== void 0 ? _a : (this._textToVoice = new
|
|
113
|
+
return ((_a = this._textToVoice) !== null && _a !== void 0 ? _a : (this._textToVoice = new Client_20.TextToVoiceClient(this._options)));
|
|
113
114
|
}
|
|
114
115
|
get user() {
|
|
115
116
|
var _a;
|
|
116
|
-
return ((_a = this._user) !== null && _a !== void 0 ? _a : (this._user = new
|
|
117
|
+
return ((_a = this._user) !== null && _a !== void 0 ? _a : (this._user = new Client_23.UserClient(this._options)));
|
|
117
118
|
}
|
|
118
119
|
get voices() {
|
|
119
120
|
var _a;
|
|
120
|
-
return ((_a = this._voices) !== null && _a !== void 0 ? _a : (this._voices = new
|
|
121
|
+
return ((_a = this._voices) !== null && _a !== void 0 ? _a : (this._voices = new Client_24.VoicesClient(this._options)));
|
|
121
122
|
}
|
|
122
123
|
get studio() {
|
|
123
124
|
var _a;
|
|
124
|
-
return ((_a = this._studio) !== null && _a !== void 0 ? _a : (this._studio = new
|
|
125
|
+
return ((_a = this._studio) !== null && _a !== void 0 ? _a : (this._studio = new Client_16.StudioClient(this._options)));
|
|
125
126
|
}
|
|
126
127
|
get music() {
|
|
127
128
|
var _a;
|
|
@@ -141,7 +142,7 @@ class ElevenLabsClient {
|
|
|
141
142
|
}
|
|
142
143
|
get usage() {
|
|
143
144
|
var _a;
|
|
144
|
-
return ((_a = this._usage) !== null && _a !== void 0 ? _a : (this._usage = new
|
|
145
|
+
return ((_a = this._usage) !== null && _a !== void 0 ? _a : (this._usage = new Client_22.UsageClient(this._options)));
|
|
145
146
|
}
|
|
146
147
|
get pronunciationDictionaries() {
|
|
147
148
|
var _a;
|
|
@@ -153,11 +154,11 @@ class ElevenLabsClient {
|
|
|
153
154
|
}
|
|
154
155
|
get webhooks() {
|
|
155
156
|
var _a;
|
|
156
|
-
return ((_a = this._webhooks) !== null && _a !== void 0 ? _a : (this._webhooks = new
|
|
157
|
+
return ((_a = this._webhooks) !== null && _a !== void 0 ? _a : (this._webhooks = new Client_25.WebhooksClient(this._options)));
|
|
157
158
|
}
|
|
158
159
|
get speechToText() {
|
|
159
160
|
var _a;
|
|
160
|
-
return ((_a = this._speechToText) !== null && _a !== void 0 ? _a : (this._speechToText = new
|
|
161
|
+
return ((_a = this._speechToText) !== null && _a !== void 0 ? _a : (this._speechToText = new Client_15.SpeechToTextClient(this._options)));
|
|
161
162
|
}
|
|
162
163
|
get forcedAlignment() {
|
|
163
164
|
var _a;
|
|
@@ -167,17 +168,21 @@ class ElevenLabsClient {
|
|
|
167
168
|
var _a;
|
|
168
169
|
return ((_a = this._conversationalAi) !== null && _a !== void 0 ? _a : (this._conversationalAi = new Client_3.ConversationalAiClient(this._options)));
|
|
169
170
|
}
|
|
171
|
+
get speechEngine() {
|
|
172
|
+
var _a;
|
|
173
|
+
return ((_a = this._speechEngine) !== null && _a !== void 0 ? _a : (this._speechEngine = new Client_13.SpeechEngineClient(this._options)));
|
|
174
|
+
}
|
|
170
175
|
get environmentVariables() {
|
|
171
176
|
var _a;
|
|
172
177
|
return ((_a = this._environmentVariables) !== null && _a !== void 0 ? _a : (this._environmentVariables = new Client_5.EnvironmentVariablesClient(this._options)));
|
|
173
178
|
}
|
|
174
179
|
get tokens() {
|
|
175
180
|
var _a;
|
|
176
|
-
return ((_a = this._tokens) !== null && _a !== void 0 ? _a : (this._tokens = new
|
|
181
|
+
return ((_a = this._tokens) !== null && _a !== void 0 ? _a : (this._tokens = new Client_21.TokensClient(this._options)));
|
|
177
182
|
}
|
|
178
183
|
get workspace() {
|
|
179
184
|
var _a;
|
|
180
|
-
return ((_a = this._workspace) !== null && _a !== void 0 ? _a : (this._workspace = new
|
|
185
|
+
return ((_a = this._workspace) !== null && _a !== void 0 ? _a : (this._workspace = new Client_26.WorkspaceClient(this._options)));
|
|
181
186
|
}
|
|
182
187
|
/**
|
|
183
188
|
* Add a generated voice to the voice library.
|
|
@@ -179,6 +179,7 @@ class Conversation extends events_1.EventEmitter {
|
|
|
179
179
|
custom_llm_extra_body: this.config.extraBody,
|
|
180
180
|
conversation_config_override: this.config.conversationConfigOverride,
|
|
181
181
|
dynamic_variables: this.config.dynamicVariables,
|
|
182
|
+
environment: this.config.environment,
|
|
182
183
|
};
|
|
183
184
|
this.ws.send(JSON.stringify(initEvent));
|
|
184
185
|
// Set up audio input callback
|
|
@@ -8,6 +8,8 @@ export interface ConversationInitiationData {
|
|
|
8
8
|
conversationConfigOverride?: Record<string, any>;
|
|
9
9
|
/** Dynamic variables to use in the conversation */
|
|
10
10
|
dynamicVariables?: Record<string, any>;
|
|
11
|
+
/** The environment to use for the conversation */
|
|
12
|
+
environment?: string;
|
|
11
13
|
}
|
|
12
14
|
/**
|
|
13
15
|
* Creates a default conversation initiation data object.
|
|
@@ -49,6 +49,7 @@ export interface ConversationInitiationClientDataEvent extends BaseClientToOrche
|
|
|
49
49
|
custom_llm_extra_body?: Record<string, any>;
|
|
50
50
|
conversation_config_override?: Record<string, any>;
|
|
51
51
|
dynamic_variables?: Record<string, any>;
|
|
52
|
+
environment?: string;
|
|
52
53
|
}
|
|
53
54
|
/**
|
|
54
55
|
* Event for client tool results.
|
|
@@ -9,6 +9,7 @@ import { KnowledgeBaseClient } from "../resources/knowledgeBase/client/Client";
|
|
|
9
9
|
import { LinkClient } from "../resources/link/client/Client";
|
|
10
10
|
import { LlmUsageClient } from "../resources/llmUsage/client/Client";
|
|
11
11
|
import { SummariesClient } from "../resources/summaries/client/Client";
|
|
12
|
+
import { VersionsClient } from "../resources/versions/client/Client";
|
|
12
13
|
import { WidgetClient } from "../resources/widget/client/Client";
|
|
13
14
|
export declare namespace AgentsClient {
|
|
14
15
|
type Options = BaseClientOptions;
|
|
@@ -23,6 +24,7 @@ export declare class AgentsClient {
|
|
|
23
24
|
protected _knowledgeBase: KnowledgeBaseClient | undefined;
|
|
24
25
|
protected _llmUsage: LlmUsageClient | undefined;
|
|
25
26
|
protected _branches: BranchesClient | undefined;
|
|
27
|
+
protected _versions: VersionsClient | undefined;
|
|
26
28
|
protected _deployments: DeploymentsClient | undefined;
|
|
27
29
|
protected _drafts: DraftsClient | undefined;
|
|
28
30
|
constructor(options?: AgentsClient.Options);
|
|
@@ -32,6 +34,7 @@ export declare class AgentsClient {
|
|
|
32
34
|
get knowledgeBase(): KnowledgeBaseClient;
|
|
33
35
|
get llmUsage(): LlmUsageClient;
|
|
34
36
|
get branches(): BranchesClient;
|
|
37
|
+
get versions(): VersionsClient;
|
|
35
38
|
get deployments(): DeploymentsClient;
|
|
36
39
|
get drafts(): DraftsClient;
|
|
37
40
|
/**
|
|
@@ -70,7 +70,8 @@ const Client_4 = require("../resources/knowledgeBase/client/Client");
|
|
|
70
70
|
const Client_5 = require("../resources/link/client/Client");
|
|
71
71
|
const Client_6 = require("../resources/llmUsage/client/Client");
|
|
72
72
|
const Client_7 = require("../resources/summaries/client/Client");
|
|
73
|
-
const Client_8 = require("../resources/
|
|
73
|
+
const Client_8 = require("../resources/versions/client/Client");
|
|
74
|
+
const Client_9 = require("../resources/widget/client/Client");
|
|
74
75
|
class AgentsClient {
|
|
75
76
|
constructor(options = {}) {
|
|
76
77
|
this._options = (0, BaseClient_1.normalizeClientOptions)(options);
|
|
@@ -81,7 +82,7 @@ class AgentsClient {
|
|
|
81
82
|
}
|
|
82
83
|
get widget() {
|
|
83
84
|
var _a;
|
|
84
|
-
return ((_a = this._widget) !== null && _a !== void 0 ? _a : (this._widget = new
|
|
85
|
+
return ((_a = this._widget) !== null && _a !== void 0 ? _a : (this._widget = new Client_9.WidgetClient(this._options)));
|
|
85
86
|
}
|
|
86
87
|
get link() {
|
|
87
88
|
var _a;
|
|
@@ -99,6 +100,10 @@ class AgentsClient {
|
|
|
99
100
|
var _a;
|
|
100
101
|
return ((_a = this._branches) !== null && _a !== void 0 ? _a : (this._branches = new Client_1.BranchesClient(this._options)));
|
|
101
102
|
}
|
|
103
|
+
get versions() {
|
|
104
|
+
var _a;
|
|
105
|
+
return ((_a = this._versions) !== null && _a !== void 0 ? _a : (this._versions = new Client_8.VersionsClient(this._options)));
|
|
106
|
+
}
|
|
102
107
|
get deployments() {
|
|
103
108
|
var _a;
|
|
104
109
|
return ((_a = this._deployments) !== null && _a !== void 0 ? _a : (this._deployments = new Client_2.DeploymentsClient(this._options)));
|
|
@@ -11,5 +11,6 @@ export * from "./llmUsage/client/requests";
|
|
|
11
11
|
export * as summaries from "./summaries";
|
|
12
12
|
export * from "./summaries/client/requests";
|
|
13
13
|
export * from "./summaries/types";
|
|
14
|
+
export * as versions from "./versions";
|
|
14
15
|
export * as widget from "./widget";
|
|
15
16
|
export * from "./widget/client/requests";
|
|
@@ -36,7 +36,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
36
36
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
37
37
|
};
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.widget = exports.summaries = exports.llmUsage = exports.link = exports.knowledgeBase = exports.drafts = exports.deployments = exports.branches = void 0;
|
|
39
|
+
exports.widget = exports.versions = exports.summaries = exports.llmUsage = exports.link = exports.knowledgeBase = exports.drafts = exports.deployments = exports.branches = void 0;
|
|
40
40
|
exports.branches = __importStar(require("./branches"));
|
|
41
41
|
__exportStar(require("./branches/client/requests"), exports);
|
|
42
42
|
exports.deployments = __importStar(require("./deployments"));
|
|
@@ -50,5 +50,6 @@ __exportStar(require("./llmUsage/client/requests"), exports);
|
|
|
50
50
|
exports.summaries = __importStar(require("./summaries"));
|
|
51
51
|
__exportStar(require("./summaries/client/requests"), exports);
|
|
52
52
|
__exportStar(require("./summaries/types"), exports);
|
|
53
|
+
exports.versions = __importStar(require("./versions"));
|
|
53
54
|
exports.widget = __importStar(require("./widget"));
|
|
54
55
|
__exportStar(require("./widget/client/requests"), exports);
|
package/dist/api/resources/conversationalAi/resources/agents/resources/versions/client/Client.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../../../BaseClient";
|
|
2
|
+
import { type NormalizedClientOptions } from "../../../../../../../../BaseClient";
|
|
3
|
+
import * as core from "../../../../../../../../core";
|
|
4
|
+
import * as ElevenLabs from "../../../../../../../index";
|
|
5
|
+
export declare namespace VersionsClient {
|
|
6
|
+
type Options = BaseClientOptions;
|
|
7
|
+
interface RequestOptions extends BaseRequestOptions {
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
export declare class VersionsClient {
|
|
11
|
+
protected readonly _options: NormalizedClientOptions<VersionsClient.Options>;
|
|
12
|
+
constructor(options?: VersionsClient.Options);
|
|
13
|
+
/**
|
|
14
|
+
* Get metadata for a specific agent version
|
|
15
|
+
*
|
|
16
|
+
* @param {string} agent_id - The id of an agent. This is returned on agent creation.
|
|
17
|
+
* @param {string} version_id - Unique identifier for the version.
|
|
18
|
+
* @param {VersionsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
19
|
+
*
|
|
20
|
+
* @throws {@link ElevenLabs.UnprocessableEntityError}
|
|
21
|
+
*
|
|
22
|
+
* @example
|
|
23
|
+
* await client.conversationalAi.agents.versions.get("agent_3701k3ttaq12ewp8b7qv5rfyszkz", "agtvrsn_0901k4aafjxxfxt93gd841r7tv5t")
|
|
24
|
+
*/
|
|
25
|
+
get(agent_id: string, version_id: string, requestOptions?: VersionsClient.RequestOptions): core.HttpResponsePromise<ElevenLabs.AgentVersionMetadata>;
|
|
26
|
+
private __get;
|
|
27
|
+
}
|