@deepgram/sdk 4.11.3 → 5.0.0-alpha.2
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/LICENSE +2 -2
- package/README.md +907 -343
- package/dist/browser/index.global.js +8674 -0
- package/dist/cjs/BaseClient.d.ts +40 -0
- package/dist/cjs/BaseClient.js +62 -0
- package/dist/cjs/Client.d.ts +33 -0
- package/dist/cjs/Client.js +46 -0
- package/dist/cjs/CustomClient.d.ts +29 -0
- package/dist/cjs/CustomClient.js +618 -0
- package/dist/cjs/api/errors/BadRequestError.d.ts +5 -0
- package/dist/cjs/api/errors/BadRequestError.js +54 -0
- package/dist/cjs/api/errors/index.d.ts +1 -0
- package/dist/cjs/api/errors/index.js +17 -0
- package/dist/cjs/api/index.d.ts +3 -0
- package/dist/cjs/api/index.js +19 -0
- package/dist/cjs/api/resources/agent/client/Client.d.ts +13 -0
- package/dist/cjs/api/resources/agent/client/Client.js +16 -0
- package/dist/cjs/api/resources/agent/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/agent/client/index.js +2 -0
- package/dist/cjs/api/resources/agent/index.d.ts +2 -0
- package/dist/cjs/api/resources/agent/index.js +18 -0
- package/dist/cjs/api/resources/agent/resources/index.d.ts +2 -0
- package/dist/cjs/api/resources/agent/resources/index.js +41 -0
- package/dist/cjs/api/resources/agent/resources/v1/client/Client.d.ts +24 -0
- package/dist/cjs/api/resources/agent/resources/v1/client/Client.js +77 -0
- package/dist/cjs/api/resources/agent/resources/v1/client/Socket.d.ts +56 -0
- package/dist/cjs/api/resources/agent/resources/v1/client/Socket.js +178 -0
- package/dist/cjs/api/resources/agent/resources/v1/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/agent/resources/v1/client/index.js +2 -0
- package/dist/cjs/api/resources/agent/resources/v1/index.d.ts +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/index.js +19 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/index.d.ts +1 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/index.js +37 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/client/Client.d.ts +13 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/client/Client.js +16 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/client/index.js +2 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/index.d.ts +2 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/index.js +18 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/index.d.ts +1 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/index.js +37 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/client/Client.d.ts +13 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/client/Client.js +16 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/client/index.js +2 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/index.d.ts +2 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/index.js +18 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/resources/index.d.ts +1 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/resources/index.js +37 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/resources/models/client/Client.d.ts +26 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/resources/models/client/Client.js +105 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/resources/models/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/resources/models/client/index.js +2 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/resources/models/index.d.ts +1 -0
- package/dist/cjs/api/resources/agent/resources/v1/resources/settings/resources/think/resources/models/index.js +17 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1AgentAudioDone.d.ts +4 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1AgentAudioDone.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1AgentStartedSpeaking.d.ts +10 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1AgentStartedSpeaking.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1AgentThinking.d.ts +6 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1AgentThinking.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1ConversationText.d.ts +16 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1ConversationText.js +12 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1Error.d.ts +8 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1Error.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1FunctionCallRequest.d.ts +21 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1FunctionCallRequest.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1InjectAgentMessage.d.ts +6 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1InjectAgentMessage.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1InjectUserMessage.d.ts +6 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1InjectUserMessage.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1InjectionRefused.d.ts +6 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1InjectionRefused.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1KeepAlive.d.ts +7 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1KeepAlive.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1PromptUpdated.d.ts +4 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1PromptUpdated.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1ReceiveFunctionCallResponse.d.ts +28 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1ReceiveFunctionCallResponse.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1SendFunctionCallResponse.d.ts +28 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1SendFunctionCallResponse.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1Settings.d.ts +228 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1Settings.js +36 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1SettingsAgentSpeakEndpointProvider.d.ts +186 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1SettingsAgentSpeakEndpointProvider.js +137 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1SettingsAgentSpeakOneItemProvider.d.ts +186 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1SettingsAgentSpeakOneItemProvider.js +137 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1SettingsApplied.d.ts +4 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1SettingsApplied.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1SpeakUpdated.d.ts +4 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1SpeakUpdated.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1UpdatePrompt.d.ts +6 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1UpdatePrompt.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1UpdateSpeak.d.ts +34 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1UpdateSpeak.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1UpdateSpeakSpeakProvider.d.ts +186 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1UpdateSpeakSpeakProvider.js +137 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1UserStartedSpeaking.d.ts +4 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1UserStartedSpeaking.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1Warning.d.ts +11 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1Warning.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1Welcome.d.ts +6 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/AgentV1Welcome.js +3 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/index.d.ts +24 -0
- package/dist/cjs/api/resources/agent/resources/v1/types/index.js +40 -0
- package/dist/cjs/api/resources/auth/client/Client.d.ts +13 -0
- package/dist/cjs/api/resources/auth/client/Client.js +16 -0
- package/dist/cjs/api/resources/auth/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/auth/client/index.js +2 -0
- package/dist/cjs/api/resources/auth/index.d.ts +2 -0
- package/dist/cjs/api/resources/auth/index.js +18 -0
- package/dist/cjs/api/resources/auth/resources/index.d.ts +1 -0
- package/dist/cjs/api/resources/auth/resources/index.js +37 -0
- package/dist/cjs/api/resources/auth/resources/v1/client/Client.d.ts +13 -0
- package/dist/cjs/api/resources/auth/resources/v1/client/Client.js +16 -0
- package/dist/cjs/api/resources/auth/resources/v1/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/auth/resources/v1/client/index.js +2 -0
- package/dist/cjs/api/resources/auth/resources/v1/index.d.ts +2 -0
- package/dist/cjs/api/resources/auth/resources/v1/index.js +18 -0
- package/dist/cjs/api/resources/auth/resources/v1/resources/index.d.ts +2 -0
- package/dist/cjs/api/resources/auth/resources/v1/resources/index.js +41 -0
- package/dist/cjs/api/resources/auth/resources/v1/resources/tokens/client/Client.d.ts +27 -0
- package/dist/cjs/api/resources/auth/resources/v1/resources/tokens/client/Client.js +110 -0
- package/dist/cjs/api/resources/auth/resources/v1/resources/tokens/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/auth/resources/v1/resources/tokens/client/index.js +17 -0
- package/dist/cjs/api/resources/auth/resources/v1/resources/tokens/client/requests/GrantV1Request.d.ts +8 -0
- package/dist/cjs/api/resources/auth/resources/v1/resources/tokens/client/requests/GrantV1Request.js +3 -0
- package/dist/cjs/api/resources/auth/resources/v1/resources/tokens/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/auth/resources/v1/resources/tokens/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/auth/resources/v1/resources/tokens/index.d.ts +1 -0
- package/dist/cjs/api/resources/auth/resources/v1/resources/tokens/index.js +17 -0
- package/dist/cjs/api/resources/index.d.ts +7 -0
- package/dist/cjs/api/resources/index.js +43 -0
- package/dist/cjs/api/resources/listen/client/Client.d.ts +16 -0
- package/dist/cjs/api/resources/listen/client/Client.js +21 -0
- package/dist/cjs/api/resources/listen/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/listen/client/index.js +2 -0
- package/dist/cjs/api/resources/listen/index.d.ts +2 -0
- package/dist/cjs/api/resources/listen/index.js +18 -0
- package/dist/cjs/api/resources/listen/resources/index.d.ts +4 -0
- package/dist/cjs/api/resources/listen/resources/index.js +43 -0
- package/dist/cjs/api/resources/listen/resources/v1/client/Client.d.ts +51 -0
- package/dist/cjs/api/resources/listen/resources/v1/client/Client.js +157 -0
- package/dist/cjs/api/resources/listen/resources/v1/client/Socket.d.ts +52 -0
- package/dist/cjs/api/resources/listen/resources/v1/client/Socket.js +162 -0
- package/dist/cjs/api/resources/listen/resources/v1/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/listen/resources/v1/client/index.js +2 -0
- package/dist/cjs/api/resources/listen/resources/v1/index.d.ts +3 -0
- package/dist/cjs/api/resources/listen/resources/v1/index.js +19 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/index.d.ts +3 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/index.js +42 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/client/Client.d.ts +79 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/client/Client.js +518 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/client/index.js +17 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/client/requests/ListenV1RequestUrl.d.ts +117 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/client/requests/ListenV1RequestUrl.js +3 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/client/requests/MediaTranscribeRequestOctetStream.d.ts +82 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/client/requests/MediaTranscribeRequestOctetStream.js +3 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/index.d.ts +2 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/index.js +18 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestCallbackMethod.d.ts +5 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestCallbackMethod.js +8 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestCustomIntentMode.d.ts +5 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestCustomIntentMode.js +8 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestCustomTopicMode.d.ts +5 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestCustomTopicMode.js +8 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestEncoding.d.ts +11 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestEncoding.js +14 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestModel.d.ts +32 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestModel.js +35 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestSummarize.d.ts +4 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestSummarize.js +7 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestVersion.d.ts +4 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestVersion.js +7 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeResponse.d.ts +2 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeResponse.js +3 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/index.d.ts +8 -0
- package/dist/cjs/api/resources/listen/resources/v1/resources/media/types/index.js +24 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1CloseStream.d.ts +13 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1CloseStream.js +13 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1Finalize.d.ts +13 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1Finalize.js +13 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1KeepAlive.d.ts +13 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1KeepAlive.js +13 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1Metadata.d.ts +16 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1Metadata.js +3 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1Results.d.ts +74 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1Results.js +3 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1SpeechStarted.d.ts +8 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1SpeechStarted.js +3 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1UtteranceEnd.d.ts +8 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/ListenV1UtteranceEnd.js +3 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/index.d.ts +7 -0
- package/dist/cjs/api/resources/listen/resources/v1/types/index.js +23 -0
- package/dist/cjs/api/resources/listen/resources/v2/client/Client.d.ts +30 -0
- package/dist/cjs/api/resources/listen/resources/v2/client/Client.js +98 -0
- package/dist/cjs/api/resources/listen/resources/v2/client/Socket.d.ts +50 -0
- package/dist/cjs/api/resources/listen/resources/v2/client/Socket.js +154 -0
- package/dist/cjs/api/resources/listen/resources/v2/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/listen/resources/v2/client/index.js +2 -0
- package/dist/cjs/api/resources/listen/resources/v2/index.d.ts +2 -0
- package/dist/cjs/api/resources/listen/resources/v2/index.js +18 -0
- package/dist/cjs/api/resources/listen/resources/v2/types/ListenV2CloseStream.d.ts +13 -0
- package/dist/cjs/api/resources/listen/resources/v2/types/ListenV2CloseStream.js +13 -0
- package/dist/cjs/api/resources/listen/resources/v2/types/ListenV2Connected.d.ts +12 -0
- package/dist/cjs/api/resources/listen/resources/v2/types/ListenV2Connected.js +3 -0
- package/dist/cjs/api/resources/listen/resources/v2/types/ListenV2FatalError.d.ts +14 -0
- package/dist/cjs/api/resources/listen/resources/v2/types/ListenV2FatalError.js +3 -0
- package/dist/cjs/api/resources/listen/resources/v2/types/ListenV2TurnInfo.d.ts +60 -0
- package/dist/cjs/api/resources/listen/resources/v2/types/ListenV2TurnInfo.js +23 -0
- package/dist/cjs/api/resources/listen/resources/v2/types/index.d.ts +4 -0
- package/dist/cjs/api/resources/listen/resources/v2/types/index.js +20 -0
- package/dist/cjs/api/resources/manage/client/Client.d.ts +13 -0
- package/dist/cjs/api/resources/manage/client/Client.js +16 -0
- package/dist/cjs/api/resources/manage/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/client/index.js +2 -0
- package/dist/cjs/api/resources/manage/index.d.ts +2 -0
- package/dist/cjs/api/resources/manage/index.js +18 -0
- package/dist/cjs/api/resources/manage/resources/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/index.js +37 -0
- package/dist/cjs/api/resources/manage/resources/v1/client/Client.d.ts +16 -0
- package/dist/cjs/api/resources/manage/resources/v1/client/Client.js +21 -0
- package/dist/cjs/api/resources/manage/resources/v1/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/client/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/index.d.ts +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/index.js +18 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/index.d.ts +4 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/index.js +43 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/models/client/Client.d.ts +42 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/models/client/Client.js +162 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/models/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/models/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/models/client/requests/ModelsListRequest.d.ts +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/models/client/requests/ModelsListRequest.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/models/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/models/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/models/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/models/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/client/Client.d.ts +101 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/client/Client.js +344 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/client/requests/ProjectsGetRequest.d.ts +13 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/client/requests/ProjectsGetRequest.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/client/requests/UpdateProjectV1Request.d.ts +8 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/client/requests/UpdateProjectV1Request.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/index.d.ts +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/index.js +18 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/client/Client.d.ts +22 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/client/Client.js +31 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/client/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/index.d.ts +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/index.js +18 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/balances/client/Client.d.ts +41 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/balances/client/Client.js +159 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/balances/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/balances/client/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/balances/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/balances/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/Client.d.ts +35 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/Client.js +143 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/requests/BreakdownListRequest.d.ts +28 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/requests/BreakdownListRequest.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/index.d.ts +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/index.js +18 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/types/BreakdownListRequestDeployment.d.ts +7 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/types/BreakdownListRequestDeployment.js +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/types/BreakdownListRequestGroupingItem.d.ts +7 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/types/BreakdownListRequestGroupingItem.js +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/types/index.js +18 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/Client.d.ts +31 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/Client.js +119 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/requests/FieldsListRequest.d.ts +13 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/requests/FieldsListRequest.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/index.d.ts +8 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/index.js +47 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/Client.d.ts +30 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/Client.js +118 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/requests/PurchasesListRequest.d.ts +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/requests/PurchasesListRequest.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/index.d.ts +13 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/index.js +52 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/client/Client.d.ts +74 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/client/Client.js +267 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/client/requests/KeysListRequest.d.ts +11 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/client/requests/KeysListRequest.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/index.d.ts +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/index.js +18 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/types/KeysListRequestStatus.d.ts +5 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/types/KeysListRequestStatus.js +8 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/keys/types/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/client/Client.d.ts +47 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/client/Client.js +172 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/client/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/index.d.ts +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/index.js +18 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/index.d.ts +4 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/index.js +43 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/Client.d.ts +58 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/Client.js +220 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/requests/CreateProjectInviteV1Request.d.ts +13 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/requests/CreateProjectInviteV1Request.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/Client.d.ts +45 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/Client.js +169 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/requests/UpdateProjectMemberScopesV1Request.d.ts +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/requests/UpdateProjectMemberScopesV1Request.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/models/client/Client.d.ts +44 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/models/client/Client.js +164 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/models/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/models/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/models/client/requests/ModelsListRequest.d.ts +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/models/client/requests/ModelsListRequest.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/models/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/models/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/models/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/models/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/client/Client.d.ts +53 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/client/Client.js +203 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/client/requests/RequestsListRequest.d.ts +38 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/client/requests/RequestsListRequest.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/index.js +18 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestDeployment.d.ts +7 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestDeployment.js +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestEndpoint.d.ts +7 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestEndpoint.js +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestMethod.d.ts +7 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestMethod.js +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestStatus.d.ts +5 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestStatus.js +8 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/types/index.d.ts +4 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/requests/types/index.js +20 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/client/Client.d.ts +79 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/client/Client.js +297 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/client/requests/UsageGetRequest.d.ts +140 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/client/requests/UsageGetRequest.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/index.d.ts +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/index.js +19 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/Client.d.ts +74 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/Client.js +291 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/requests/BreakdownGetRequest.d.ts +143 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/requests/BreakdownGetRequest.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/index.d.ts +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/index.js +18 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestDeployment.d.ts +7 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestDeployment.js +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestEndpoint.d.ts +7 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestEndpoint.js +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestGrouping.d.ts +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestGrouping.js +13 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestMethod.d.ts +7 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestMethod.js +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/index.d.ts +4 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/index.js +20 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/Client.d.ts +31 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/Client.js +119 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/requests/FieldsListRequest.d.ts +13 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/requests/FieldsListRequest.js +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/index.d.ts +1 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/index.js +17 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/index.d.ts +5 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/index.js +44 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/types/UsageGetRequestDeployment.d.ts +7 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/types/UsageGetRequestDeployment.js +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/types/UsageGetRequestEndpoint.d.ts +7 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/types/UsageGetRequestEndpoint.js +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/types/UsageGetRequestMethod.d.ts +7 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/types/UsageGetRequestMethod.js +10 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/types/index.d.ts +3 -0
- package/dist/cjs/api/resources/manage/resources/v1/resources/projects/resources/usage/types/index.js +19 -0
- package/dist/cjs/api/resources/read/client/Client.d.ts +13 -0
- package/dist/cjs/api/resources/read/client/Client.js +16 -0
- package/dist/cjs/api/resources/read/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/read/client/index.js +2 -0
- package/dist/cjs/api/resources/read/index.d.ts +2 -0
- package/dist/cjs/api/resources/read/index.js +18 -0
- package/dist/cjs/api/resources/read/resources/index.d.ts +1 -0
- package/dist/cjs/api/resources/read/resources/index.js +37 -0
- package/dist/cjs/api/resources/read/resources/v1/client/Client.d.ts +13 -0
- package/dist/cjs/api/resources/read/resources/v1/client/Client.js +16 -0
- package/dist/cjs/api/resources/read/resources/v1/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/read/resources/v1/client/index.js +2 -0
- package/dist/cjs/api/resources/read/resources/v1/index.d.ts +2 -0
- package/dist/cjs/api/resources/read/resources/v1/index.js +18 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/index.d.ts +3 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/index.js +42 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/client/Client.d.ts +43 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/client/Client.js +179 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/client/index.js +17 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/client/requests/TextAnalyzeRequest.d.ts +48 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/client/requests/TextAnalyzeRequest.js +3 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/index.d.ts +2 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/index.js +18 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestCallbackMethod.d.ts +5 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestCallbackMethod.js +8 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestCustomIntentMode.d.ts +5 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestCustomIntentMode.js +8 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestCustomTopicMode.d.ts +5 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestCustomTopicMode.js +8 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestSummarize.d.ts +4 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestSummarize.js +7 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/types/index.d.ts +4 -0
- package/dist/cjs/api/resources/read/resources/v1/resources/text/types/index.js +20 -0
- package/dist/cjs/api/resources/selfHosted/client/Client.d.ts +13 -0
- package/dist/cjs/api/resources/selfHosted/client/Client.js +16 -0
- package/dist/cjs/api/resources/selfHosted/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/selfHosted/client/index.js +2 -0
- package/dist/cjs/api/resources/selfHosted/index.d.ts +2 -0
- package/dist/cjs/api/resources/selfHosted/index.js +18 -0
- package/dist/cjs/api/resources/selfHosted/resources/index.d.ts +1 -0
- package/dist/cjs/api/resources/selfHosted/resources/index.js +37 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/client/Client.d.ts +13 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/client/Client.js +16 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/client/index.js +2 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/index.d.ts +2 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/index.js +18 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/Client.d.ts +71 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/Client.js +295 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/index.js +17 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/requests/CreateProjectDistributionCredentialsV1Request.d.ts +15 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/requests/CreateProjectDistributionCredentialsV1Request.js +3 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/index.d.ts +2 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/index.js +18 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/types/DistributionCredentialsCreateRequestScopesItem.d.ts +11 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/types/DistributionCredentialsCreateRequestScopesItem.js +14 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/distributionCredentials/types/index.js +17 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/index.d.ts +3 -0
- package/dist/cjs/api/resources/selfHosted/resources/v1/resources/index.js +42 -0
- package/dist/cjs/api/resources/speak/client/Client.d.ts +13 -0
- package/dist/cjs/api/resources/speak/client/Client.js +16 -0
- package/dist/cjs/api/resources/speak/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/speak/client/index.js +2 -0
- package/dist/cjs/api/resources/speak/index.d.ts +2 -0
- package/dist/cjs/api/resources/speak/index.js +18 -0
- package/dist/cjs/api/resources/speak/resources/index.d.ts +2 -0
- package/dist/cjs/api/resources/speak/resources/index.js +41 -0
- package/dist/cjs/api/resources/speak/resources/v1/client/Client.d.ts +28 -0
- package/dist/cjs/api/resources/speak/resources/v1/client/Client.js +90 -0
- package/dist/cjs/api/resources/speak/resources/v1/client/Socket.d.ts +52 -0
- package/dist/cjs/api/resources/speak/resources/v1/client/Socket.js +162 -0
- package/dist/cjs/api/resources/speak/resources/v1/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/speak/resources/v1/client/index.js +2 -0
- package/dist/cjs/api/resources/speak/resources/v1/index.d.ts +3 -0
- package/dist/cjs/api/resources/speak/resources/v1/index.js +19 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/client/Client.d.ts +20 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/client/Client.js +149 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/client/index.js +17 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/client/requests/SpeakV1Request.d.ts +29 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/client/requests/SpeakV1Request.js +3 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/index.d.ts +2 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/index.js +18 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestCallbackMethod.d.ts +5 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestCallbackMethod.js +8 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestContainer.d.ts +6 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestContainer.js +9 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestEncoding.d.ts +10 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestEncoding.js +13 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestModel.d.ts +66 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestModel.js +69 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/types/index.d.ts +4 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/audio/types/index.js +20 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/index.d.ts +3 -0
- package/dist/cjs/api/resources/speak/resources/v1/resources/index.js +42 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Clear.d.ts +13 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Clear.js +13 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Cleared.d.ts +14 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Cleared.js +12 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Close.d.ts +13 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Close.js +13 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Flush.d.ts +13 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Flush.js +13 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Flushed.d.ts +14 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Flushed.js +12 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Metadata.d.ts +12 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Metadata.js +3 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Text.d.ts +6 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Text.js +3 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Warning.d.ts +8 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/SpeakV1Warning.js +3 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/index.d.ts +8 -0
- package/dist/cjs/api/resources/speak/resources/v1/types/index.js +24 -0
- package/dist/cjs/api/types/AgentThinkModelsV1Response.d.ts +44 -0
- package/dist/cjs/api/types/AgentThinkModelsV1Response.js +3 -0
- package/dist/cjs/api/types/BillingBreakdownV1Response.d.ts +40 -0
- package/dist/cjs/api/types/BillingBreakdownV1Response.js +3 -0
- package/dist/cjs/api/types/CreateKeyV1RequestOne.d.ts +1 -0
- package/dist/cjs/api/types/CreateKeyV1RequestOne.js +3 -0
- package/dist/cjs/api/types/CreateKeyV1Response.d.ts +17 -0
- package/dist/cjs/api/types/CreateKeyV1Response.js +3 -0
- package/dist/cjs/api/types/CreateProjectDistributionCredentialsV1Response.d.ts +24 -0
- package/dist/cjs/api/types/CreateProjectDistributionCredentialsV1Response.js +3 -0
- package/dist/cjs/api/types/CreateProjectInviteV1Response.d.ts +4 -0
- package/dist/cjs/api/types/CreateProjectInviteV1Response.js +3 -0
- package/dist/cjs/api/types/DeleteProjectInviteV1Response.d.ts +4 -0
- package/dist/cjs/api/types/DeleteProjectInviteV1Response.js +3 -0
- package/dist/cjs/api/types/DeleteProjectKeyV1Response.d.ts +3 -0
- package/dist/cjs/api/types/DeleteProjectKeyV1Response.js +3 -0
- package/dist/cjs/api/types/DeleteProjectMemberV1Response.d.ts +4 -0
- package/dist/cjs/api/types/DeleteProjectMemberV1Response.js +3 -0
- package/dist/cjs/api/types/DeleteProjectV1Response.d.ts +4 -0
- package/dist/cjs/api/types/DeleteProjectV1Response.js +3 -0
- package/dist/cjs/api/types/ErrorResponse.d.ts +2 -0
- package/dist/cjs/api/types/ErrorResponse.js +3 -0
- package/dist/cjs/api/types/ErrorResponseLegacyError.d.ts +8 -0
- package/dist/cjs/api/types/ErrorResponseLegacyError.js +3 -0
- package/dist/cjs/api/types/ErrorResponseModernError.d.ts +10 -0
- package/dist/cjs/api/types/ErrorResponseModernError.js +3 -0
- package/dist/cjs/api/types/ErrorResponseTextError.d.ts +1 -0
- package/dist/cjs/api/types/ErrorResponseTextError.js +3 -0
- package/dist/cjs/api/types/GetModelV1Response.d.ts +27 -0
- package/dist/cjs/api/types/GetModelV1Response.js +3 -0
- package/dist/cjs/api/types/GetProjectBalanceV1Response.d.ts +10 -0
- package/dist/cjs/api/types/GetProjectBalanceV1Response.js +3 -0
- package/dist/cjs/api/types/GetProjectDistributionCredentialsV1Response.d.ts +24 -0
- package/dist/cjs/api/types/GetProjectDistributionCredentialsV1Response.js +3 -0
- package/dist/cjs/api/types/GetProjectKeyV1Response.d.ts +27 -0
- package/dist/cjs/api/types/GetProjectKeyV1Response.js +3 -0
- package/dist/cjs/api/types/GetProjectRequestV1Response.d.ts +4 -0
- package/dist/cjs/api/types/GetProjectRequestV1Response.js +3 -0
- package/dist/cjs/api/types/GetProjectV1Response.d.ts +8 -0
- package/dist/cjs/api/types/GetProjectV1Response.js +3 -0
- package/dist/cjs/api/types/GrantV1Response.d.ts +6 -0
- package/dist/cjs/api/types/GrantV1Response.js +3 -0
- package/dist/cjs/api/types/LeaveProjectV1Response.d.ts +4 -0
- package/dist/cjs/api/types/LeaveProjectV1Response.js +3 -0
- package/dist/cjs/api/types/ListBillingFieldsV1Response.d.ts +22 -0
- package/dist/cjs/api/types/ListBillingFieldsV1Response.js +16 -0
- package/dist/cjs/api/types/ListModelsV1Response.d.ts +5 -0
- package/dist/cjs/api/types/ListModelsV1Response.js +3 -0
- package/dist/cjs/api/types/ListModelsV1ResponseSttModels.d.ts +11 -0
- package/dist/cjs/api/types/ListModelsV1ResponseSttModels.js +3 -0
- package/dist/cjs/api/types/ListModelsV1ResponseTtsModels.d.ts +20 -0
- package/dist/cjs/api/types/ListModelsV1ResponseTtsModels.js +3 -0
- package/dist/cjs/api/types/ListProjectBalancesV1Response.d.ts +18 -0
- package/dist/cjs/api/types/ListProjectBalancesV1Response.js +3 -0
- package/dist/cjs/api/types/ListProjectDistributionCredentialsV1Response.d.ts +33 -0
- package/dist/cjs/api/types/ListProjectDistributionCredentialsV1Response.js +3 -0
- package/dist/cjs/api/types/ListProjectInvitesV1Response.d.ts +14 -0
- package/dist/cjs/api/types/ListProjectInvitesV1Response.js +3 -0
- package/dist/cjs/api/types/ListProjectKeysV1Response.d.ts +24 -0
- package/dist/cjs/api/types/ListProjectKeysV1Response.js +3 -0
- package/dist/cjs/api/types/ListProjectMemberScopesV1Response.d.ts +4 -0
- package/dist/cjs/api/types/ListProjectMemberScopesV1Response.js +3 -0
- package/dist/cjs/api/types/ListProjectMembersV1Response.d.ts +13 -0
- package/dist/cjs/api/types/ListProjectMembersV1Response.js +3 -0
- package/dist/cjs/api/types/ListProjectPurchasesV1Response.d.ts +16 -0
- package/dist/cjs/api/types/ListProjectPurchasesV1Response.js +3 -0
- package/dist/cjs/api/types/ListProjectRequestsV1Response.d.ts +8 -0
- package/dist/cjs/api/types/ListProjectRequestsV1Response.js +3 -0
- package/dist/cjs/api/types/ListProjectsV1Response.d.ts +14 -0
- package/dist/cjs/api/types/ListProjectsV1Response.js +3 -0
- package/dist/cjs/api/types/ListenV1AcceptedResponse.d.ts +7 -0
- package/dist/cjs/api/types/ListenV1AcceptedResponse.js +3 -0
- package/dist/cjs/api/types/ListenV1Callback.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1Callback.js +3 -0
- package/dist/cjs/api/types/ListenV1CallbackMethod.d.ts +8 -0
- package/dist/cjs/api/types/ListenV1CallbackMethod.js +11 -0
- package/dist/cjs/api/types/ListenV1Channels.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1Channels.js +3 -0
- package/dist/cjs/api/types/ListenV1Diarize.d.ts +6 -0
- package/dist/cjs/api/types/ListenV1Diarize.js +9 -0
- package/dist/cjs/api/types/ListenV1Dictation.d.ts +6 -0
- package/dist/cjs/api/types/ListenV1Dictation.js +9 -0
- package/dist/cjs/api/types/ListenV1Encoding.d.ts +15 -0
- package/dist/cjs/api/types/ListenV1Encoding.js +18 -0
- package/dist/cjs/api/types/ListenV1Endpointing.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1Endpointing.js +3 -0
- package/dist/cjs/api/types/ListenV1Extra.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1Extra.js +3 -0
- package/dist/cjs/api/types/ListenV1InterimResults.d.ts +6 -0
- package/dist/cjs/api/types/ListenV1InterimResults.js +9 -0
- package/dist/cjs/api/types/ListenV1Keyterm.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1Keyterm.js +3 -0
- package/dist/cjs/api/types/ListenV1Keywords.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1Keywords.js +3 -0
- package/dist/cjs/api/types/ListenV1Language.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1Language.js +3 -0
- package/dist/cjs/api/types/ListenV1MipOptOut.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1MipOptOut.js +3 -0
- package/dist/cjs/api/types/ListenV1Model.d.ts +34 -0
- package/dist/cjs/api/types/ListenV1Model.js +37 -0
- package/dist/cjs/api/types/ListenV1Multichannel.d.ts +6 -0
- package/dist/cjs/api/types/ListenV1Multichannel.js +9 -0
- package/dist/cjs/api/types/ListenV1Numerals.d.ts +6 -0
- package/dist/cjs/api/types/ListenV1Numerals.js +9 -0
- package/dist/cjs/api/types/ListenV1ProfanityFilter.d.ts +6 -0
- package/dist/cjs/api/types/ListenV1ProfanityFilter.js +9 -0
- package/dist/cjs/api/types/ListenV1Punctuate.d.ts +6 -0
- package/dist/cjs/api/types/ListenV1Punctuate.js +9 -0
- package/dist/cjs/api/types/ListenV1Redact.d.ts +10 -0
- package/dist/cjs/api/types/ListenV1Redact.js +13 -0
- package/dist/cjs/api/types/ListenV1Replace.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1Replace.js +3 -0
- package/dist/cjs/api/types/ListenV1RequestFile.d.ts +4 -0
- package/dist/cjs/api/types/ListenV1RequestFile.js +3 -0
- package/dist/cjs/api/types/ListenV1Response.d.ts +8 -0
- package/dist/cjs/api/types/ListenV1Response.js +3 -0
- package/dist/cjs/api/types/ListenV1ResponseMetadata.d.ts +37 -0
- package/dist/cjs/api/types/ListenV1ResponseMetadata.js +3 -0
- package/dist/cjs/api/types/ListenV1ResponseResults.d.ts +9 -0
- package/dist/cjs/api/types/ListenV1ResponseResults.js +3 -0
- package/dist/cjs/api/types/ListenV1ResponseResultsChannels.d.ts +2 -0
- package/dist/cjs/api/types/ListenV1ResponseResultsChannels.js +3 -0
- package/dist/cjs/api/types/ListenV1ResponseResultsChannelsItem.d.ts +90 -0
- package/dist/cjs/api/types/ListenV1ResponseResultsChannelsItem.js +3 -0
- package/dist/cjs/api/types/ListenV1ResponseResultsSummary.d.ts +4 -0
- package/dist/cjs/api/types/ListenV1ResponseResultsSummary.js +3 -0
- package/dist/cjs/api/types/ListenV1ResponseResultsUtterances.d.ts +2 -0
- package/dist/cjs/api/types/ListenV1ResponseResultsUtterances.js +3 -0
- package/dist/cjs/api/types/ListenV1ResponseResultsUtterancesItem.d.ts +24 -0
- package/dist/cjs/api/types/ListenV1ResponseResultsUtterancesItem.js +3 -0
- package/dist/cjs/api/types/ListenV1SampleRate.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1SampleRate.js +3 -0
- package/dist/cjs/api/types/ListenV1Search.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1Search.js +3 -0
- package/dist/cjs/api/types/ListenV1SmartFormat.d.ts +6 -0
- package/dist/cjs/api/types/ListenV1SmartFormat.js +9 -0
- package/dist/cjs/api/types/ListenV1Tag.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1Tag.js +3 -0
- package/dist/cjs/api/types/ListenV1UtteranceEndMs.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1UtteranceEndMs.js +3 -0
- package/dist/cjs/api/types/ListenV1VadEvents.d.ts +6 -0
- package/dist/cjs/api/types/ListenV1VadEvents.js +9 -0
- package/dist/cjs/api/types/ListenV1Version.d.ts +1 -0
- package/dist/cjs/api/types/ListenV1Version.js +3 -0
- package/dist/cjs/api/types/ListenV2EagerEotThreshold.d.ts +1 -0
- package/dist/cjs/api/types/ListenV2EagerEotThreshold.js +3 -0
- package/dist/cjs/api/types/ListenV2Encoding.d.ts +10 -0
- package/dist/cjs/api/types/ListenV2Encoding.js +13 -0
- package/dist/cjs/api/types/ListenV2EotThreshold.d.ts +1 -0
- package/dist/cjs/api/types/ListenV2EotThreshold.js +3 -0
- package/dist/cjs/api/types/ListenV2EotTimeoutMs.d.ts +1 -0
- package/dist/cjs/api/types/ListenV2EotTimeoutMs.js +3 -0
- package/dist/cjs/api/types/ListenV2Keyterm.d.ts +5 -0
- package/dist/cjs/api/types/ListenV2Keyterm.js +3 -0
- package/dist/cjs/api/types/ListenV2MipOptOut.d.ts +1 -0
- package/dist/cjs/api/types/ListenV2MipOptOut.js +3 -0
- package/dist/cjs/api/types/ListenV2Model.d.ts +4 -0
- package/dist/cjs/api/types/ListenV2Model.js +3 -0
- package/dist/cjs/api/types/ListenV2SampleRate.d.ts +1 -0
- package/dist/cjs/api/types/ListenV2SampleRate.js +3 -0
- package/dist/cjs/api/types/ListenV2Tag.d.ts +1 -0
- package/dist/cjs/api/types/ListenV2Tag.js +3 -0
- package/dist/cjs/api/types/ProjectRequestResponse.d.ts +23 -0
- package/dist/cjs/api/types/ProjectRequestResponse.js +3 -0
- package/dist/cjs/api/types/ReadV1Request.d.ts +2 -0
- package/dist/cjs/api/types/ReadV1Request.js +3 -0
- package/dist/cjs/api/types/ReadV1RequestText.d.ts +4 -0
- package/dist/cjs/api/types/ReadV1RequestText.js +3 -0
- package/dist/cjs/api/types/ReadV1RequestUrl.d.ts +4 -0
- package/dist/cjs/api/types/ReadV1RequestUrl.js +3 -0
- package/dist/cjs/api/types/ReadV1Response.d.ts +8 -0
- package/dist/cjs/api/types/ReadV1Response.js +3 -0
- package/dist/cjs/api/types/ReadV1ResponseMetadata.d.ts +36 -0
- package/dist/cjs/api/types/ReadV1ResponseMetadata.js +3 -0
- package/dist/cjs/api/types/ReadV1ResponseResults.d.ts +7 -0
- package/dist/cjs/api/types/ReadV1ResponseResults.js +3 -0
- package/dist/cjs/api/types/ReadV1ResponseResultsSummary.d.ts +16 -0
- package/dist/cjs/api/types/ReadV1ResponseResultsSummary.js +3 -0
- package/dist/cjs/api/types/SharedIntents.d.ts +36 -0
- package/dist/cjs/api/types/SharedIntents.js +3 -0
- package/dist/cjs/api/types/SharedSentiments.d.ts +23 -0
- package/dist/cjs/api/types/SharedSentiments.js +3 -0
- package/dist/cjs/api/types/SharedTopics.d.ts +36 -0
- package/dist/cjs/api/types/SharedTopics.js +3 -0
- package/dist/cjs/api/types/SpeakV1Encoding.d.ts +7 -0
- package/dist/cjs/api/types/SpeakV1Encoding.js +10 -0
- package/dist/cjs/api/types/SpeakV1MipOptOut.d.ts +1 -0
- package/dist/cjs/api/types/SpeakV1MipOptOut.js +3 -0
- package/dist/cjs/api/types/SpeakV1Model.d.ts +67 -0
- package/dist/cjs/api/types/SpeakV1Model.js +70 -0
- package/dist/cjs/api/types/SpeakV1Response.d.ts +1 -0
- package/dist/cjs/api/types/SpeakV1Response.js +3 -0
- package/dist/cjs/api/types/SpeakV1SampleRate.d.ts +9 -0
- package/dist/cjs/api/types/SpeakV1SampleRate.js +12 -0
- package/dist/cjs/api/types/UpdateProjectMemberScopesV1Response.d.ts +4 -0
- package/dist/cjs/api/types/UpdateProjectMemberScopesV1Response.js +3 -0
- package/dist/cjs/api/types/UpdateProjectV1Response.d.ts +4 -0
- package/dist/cjs/api/types/UpdateProjectV1Response.js +3 -0
- package/dist/cjs/api/types/UsageBreakdownV1Response.d.ts +58 -0
- package/dist/cjs/api/types/UsageBreakdownV1Response.js +3 -0
- package/dist/cjs/api/types/UsageFieldsV1Response.d.ts +25 -0
- package/dist/cjs/api/types/UsageFieldsV1Response.js +3 -0
- package/dist/cjs/api/types/UsageV1Response.d.ts +11 -0
- package/dist/cjs/api/types/UsageV1Response.js +3 -0
- package/dist/cjs/api/types/index.d.ts +102 -0
- package/dist/cjs/api/types/index.js +118 -0
- package/dist/cjs/auth/HeaderAuthProvider.d.ts +14 -0
- package/dist/cjs/auth/HeaderAuthProvider.js +73 -0
- package/dist/cjs/auth/index.d.ts +1 -0
- package/dist/cjs/auth/index.js +5 -0
- package/dist/cjs/core/auth/AuthProvider.d.ts +7 -0
- package/dist/cjs/core/auth/AuthProvider.js +2 -0
- package/dist/cjs/core/auth/AuthRequest.d.ts +9 -0
- package/dist/cjs/core/auth/AuthRequest.js +2 -0
- package/dist/cjs/core/auth/BasicAuth.d.ts +8 -0
- package/dist/cjs/core/auth/BasicAuth.js +27 -0
- package/dist/cjs/core/auth/BearerToken.d.ts +7 -0
- package/dist/cjs/core/auth/BearerToken.js +16 -0
- package/dist/cjs/core/auth/NoOpAuthProvider.d.ts +5 -0
- package/dist/cjs/core/auth/NoOpAuthProvider.js +9 -0
- package/dist/cjs/core/auth/index.d.ts +5 -0
- package/dist/cjs/core/auth/index.js +9 -0
- package/dist/cjs/core/base64.d.ts +2 -0
- package/dist/cjs/core/base64.js +26 -0
- package/dist/cjs/core/exports.d.ts +3 -0
- package/dist/cjs/core/exports.js +19 -0
- package/dist/cjs/core/fetcher/APIResponse.d.ts +20 -0
- package/dist/cjs/core/fetcher/APIResponse.js +2 -0
- package/dist/cjs/core/fetcher/BinaryResponse.d.ts +19 -0
- package/dist/cjs/core/fetcher/BinaryResponse.js +17 -0
- package/dist/cjs/core/fetcher/EndpointMetadata.d.ts +13 -0
- package/dist/cjs/core/fetcher/EndpointMetadata.js +2 -0
- package/dist/cjs/core/fetcher/EndpointSupplier.d.ts +12 -0
- package/dist/cjs/core/fetcher/EndpointSupplier.js +22 -0
- package/dist/cjs/core/fetcher/Fetcher.d.ts +49 -0
- package/dist/cjs/core/fetcher/Fetcher.js +316 -0
- package/dist/cjs/core/fetcher/Headers.d.ts +2 -0
- package/dist/cjs/core/fetcher/Headers.js +84 -0
- package/dist/cjs/core/fetcher/HttpResponsePromise.d.ts +58 -0
- package/dist/cjs/core/fetcher/HttpResponsePromise.js +103 -0
- package/dist/cjs/core/fetcher/RawResponse.d.ts +29 -0
- package/dist/cjs/core/fetcher/RawResponse.js +44 -0
- package/dist/cjs/core/fetcher/Supplier.d.ts +4 -0
- package/dist/cjs/core/fetcher/Supplier.js +22 -0
- package/dist/cjs/core/fetcher/createRequestUrl.d.ts +1 -0
- package/dist/cjs/core/fetcher/createRequestUrl.js +8 -0
- package/dist/cjs/core/fetcher/getErrorResponseBody.d.ts +1 -0
- package/dist/cjs/core/fetcher/getErrorResponseBody.js +45 -0
- package/dist/cjs/core/fetcher/getFetchFn.d.ts +1 -0
- package/dist/cjs/core/fetcher/getFetchFn.js +17 -0
- package/dist/cjs/core/fetcher/getHeader.d.ts +1 -0
- package/dist/cjs/core/fetcher/getHeader.js +11 -0
- package/dist/cjs/core/fetcher/getRequestBody.d.ts +7 -0
- package/dist/cjs/core/fetcher/getRequestBody.js +27 -0
- package/dist/cjs/core/fetcher/getResponseBody.d.ts +1 -0
- package/dist/cjs/core/fetcher/getResponseBody.js +69 -0
- package/dist/cjs/core/fetcher/index.d.ts +11 -0
- package/dist/cjs/core/fetcher/index.js +17 -0
- package/dist/cjs/core/fetcher/makeRequest.d.ts +1 -0
- package/dist/cjs/core/fetcher/makeRequest.js +40 -0
- package/dist/cjs/core/fetcher/requestWithRetries.d.ts +1 -0
- package/dist/cjs/core/fetcher/requestWithRetries.js +67 -0
- package/dist/cjs/core/fetcher/signals.d.ts +5 -0
- package/dist/cjs/core/fetcher/signals.js +24 -0
- package/dist/cjs/core/file/exports.d.ts +1 -0
- package/dist/cjs/core/file/exports.js +2 -0
- package/dist/cjs/core/file/file.d.ts +10 -0
- package/dist/cjs/core/file/file.js +221 -0
- package/dist/cjs/core/file/index.d.ts +2 -0
- package/dist/cjs/core/file/index.js +18 -0
- package/dist/cjs/core/file/types.d.ts +66 -0
- package/dist/cjs/core/file/types.js +2 -0
- package/dist/cjs/core/headers.d.ts +2 -0
- package/dist/cjs/core/headers.js +31 -0
- package/dist/cjs/core/index.d.ts +8 -0
- package/dist/cjs/core/index.js +47 -0
- package/dist/cjs/core/json.d.ts +15 -0
- package/dist/cjs/core/json.js +24 -0
- package/dist/cjs/core/logging/exports.d.ts +18 -0
- package/dist/cjs/core/logging/exports.js +45 -0
- package/dist/cjs/core/logging/index.d.ts +1 -0
- package/dist/cjs/core/logging/index.js +17 -0
- package/dist/cjs/core/logging/logger.d.ts +126 -0
- package/dist/cjs/core/logging/logger.js +144 -0
- package/dist/cjs/core/runtime/index.d.ts +1 -0
- package/dist/cjs/core/runtime/index.js +5 -0
- package/dist/cjs/core/runtime/runtime.d.ts +9 -0
- package/dist/cjs/core/runtime/runtime.js +103 -0
- package/dist/cjs/core/url/encodePathParam.d.ts +1 -0
- package/dist/cjs/core/url/encodePathParam.js +21 -0
- package/dist/cjs/core/url/index.d.ts +3 -0
- package/dist/cjs/core/url/index.js +9 -0
- package/dist/cjs/core/url/join.d.ts +1 -0
- package/dist/cjs/core/url/join.js +68 -0
- package/dist/cjs/core/url/qs.d.ts +6 -0
- package/dist/cjs/core/url/qs.js +64 -0
- package/dist/cjs/core/websocket/events.d.ts +36 -0
- package/dist/cjs/core/websocket/events.js +27 -0
- package/dist/cjs/core/websocket/exports.d.ts +8 -0
- package/dist/cjs/core/websocket/exports.js +2 -0
- package/dist/cjs/core/websocket/index.d.ts +1 -0
- package/dist/cjs/core/websocket/index.js +17 -0
- package/dist/cjs/core/websocket/ws.d.ts +147 -0
- package/dist/cjs/core/websocket/ws.js +444 -0
- package/dist/cjs/environments.d.ts +18 -0
- package/dist/cjs/environments.js +16 -0
- package/dist/cjs/errors/DeepgramError.d.ts +12 -0
- package/dist/cjs/errors/DeepgramError.js +32 -0
- package/dist/cjs/errors/DeepgramTimeoutError.d.ts +3 -0
- package/dist/cjs/errors/DeepgramTimeoutError.js +15 -0
- package/dist/cjs/errors/handleNonStatusCodeError.d.ts +2 -0
- package/dist/cjs/errors/handleNonStatusCodeError.js +65 -0
- package/dist/cjs/errors/index.d.ts +2 -0
- package/dist/cjs/errors/index.js +7 -0
- package/dist/cjs/exports.d.ts +1 -0
- package/dist/cjs/exports.js +17 -0
- package/dist/cjs/index.d.ts +7 -0
- package/dist/cjs/index.js +50 -0
- package/dist/cjs/version.d.ts +1 -0
- package/dist/cjs/version.js +4 -0
- package/dist/esm/BaseClient.d.mts +40 -0
- package/dist/esm/BaseClient.mjs +25 -0
- package/dist/esm/Client.d.mts +33 -0
- package/dist/esm/Client.mjs +42 -0
- package/dist/esm/CustomClient.d.mts +29 -0
- package/dist/esm/CustomClient.mjs +581 -0
- package/dist/esm/api/errors/BadRequestError.d.mts +5 -0
- package/dist/esm/api/errors/BadRequestError.mjs +17 -0
- package/dist/esm/api/errors/index.d.mts +1 -0
- package/dist/esm/api/errors/index.mjs +1 -0
- package/dist/esm/api/index.d.mts +3 -0
- package/dist/esm/api/index.mjs +3 -0
- package/dist/esm/api/resources/agent/client/Client.d.mts +13 -0
- package/dist/esm/api/resources/agent/client/Client.mjs +12 -0
- package/dist/esm/api/resources/agent/client/index.d.mts +1 -0
- package/dist/esm/api/resources/agent/client/index.mjs +1 -0
- package/dist/esm/api/resources/agent/index.d.mts +2 -0
- package/dist/esm/api/resources/agent/index.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/index.d.mts +2 -0
- package/dist/esm/api/resources/agent/resources/index.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/client/Client.d.mts +24 -0
- package/dist/esm/api/resources/agent/resources/v1/client/Client.mjs +40 -0
- package/dist/esm/api/resources/agent/resources/v1/client/Socket.d.mts +56 -0
- package/dist/esm/api/resources/agent/resources/v1/client/Socket.mjs +141 -0
- package/dist/esm/api/resources/agent/resources/v1/client/index.d.mts +1 -0
- package/dist/esm/api/resources/agent/resources/v1/client/index.mjs +1 -0
- package/dist/esm/api/resources/agent/resources/v1/index.d.mts +3 -0
- package/dist/esm/api/resources/agent/resources/v1/index.mjs +3 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/index.d.mts +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/index.mjs +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/client/Client.d.mts +13 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/client/Client.mjs +12 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/client/index.d.mts +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/client/index.mjs +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/index.d.mts +2 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/index.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/index.d.mts +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/index.mjs +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/client/Client.d.mts +13 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/client/Client.mjs +12 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/client/index.d.mts +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/client/index.mjs +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/index.d.mts +2 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/index.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/resources/index.d.mts +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/resources/index.mjs +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/resources/models/client/Client.d.mts +26 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/resources/models/client/Client.mjs +68 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/resources/models/client/index.d.mts +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/resources/models/client/index.mjs +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/resources/models/index.d.mts +1 -0
- package/dist/esm/api/resources/agent/resources/v1/resources/settings/resources/think/resources/models/index.mjs +1 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1AgentAudioDone.d.mts +4 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1AgentAudioDone.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1AgentStartedSpeaking.d.mts +10 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1AgentStartedSpeaking.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1AgentThinking.d.mts +6 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1AgentThinking.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1ConversationText.d.mts +16 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1ConversationText.mjs +9 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1Error.d.mts +8 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1Error.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1FunctionCallRequest.d.mts +21 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1FunctionCallRequest.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1InjectAgentMessage.d.mts +6 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1InjectAgentMessage.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1InjectUserMessage.d.mts +6 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1InjectUserMessage.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1InjectionRefused.d.mts +6 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1InjectionRefused.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1KeepAlive.d.mts +7 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1KeepAlive.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1PromptUpdated.d.mts +4 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1PromptUpdated.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1ReceiveFunctionCallResponse.d.mts +28 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1ReceiveFunctionCallResponse.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1SendFunctionCallResponse.d.mts +28 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1SendFunctionCallResponse.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1Settings.d.mts +228 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1Settings.mjs +33 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1SettingsAgentSpeakEndpointProvider.d.mts +186 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1SettingsAgentSpeakEndpointProvider.mjs +134 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1SettingsAgentSpeakOneItemProvider.d.mts +186 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1SettingsAgentSpeakOneItemProvider.mjs +134 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1SettingsApplied.d.mts +4 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1SettingsApplied.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1SpeakUpdated.d.mts +4 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1SpeakUpdated.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1UpdatePrompt.d.mts +6 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1UpdatePrompt.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1UpdateSpeak.d.mts +34 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1UpdateSpeak.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1UpdateSpeakSpeakProvider.d.mts +186 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1UpdateSpeakSpeakProvider.mjs +134 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1UserStartedSpeaking.d.mts +4 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1UserStartedSpeaking.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1Warning.d.mts +11 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1Warning.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1Welcome.d.mts +6 -0
- package/dist/esm/api/resources/agent/resources/v1/types/AgentV1Welcome.mjs +2 -0
- package/dist/esm/api/resources/agent/resources/v1/types/index.d.mts +24 -0
- package/dist/esm/api/resources/agent/resources/v1/types/index.mjs +24 -0
- package/dist/esm/api/resources/auth/client/Client.d.mts +13 -0
- package/dist/esm/api/resources/auth/client/Client.mjs +12 -0
- package/dist/esm/api/resources/auth/client/index.d.mts +1 -0
- package/dist/esm/api/resources/auth/client/index.mjs +1 -0
- package/dist/esm/api/resources/auth/index.d.mts +2 -0
- package/dist/esm/api/resources/auth/index.mjs +2 -0
- package/dist/esm/api/resources/auth/resources/index.d.mts +1 -0
- package/dist/esm/api/resources/auth/resources/index.mjs +1 -0
- package/dist/esm/api/resources/auth/resources/v1/client/Client.d.mts +13 -0
- package/dist/esm/api/resources/auth/resources/v1/client/Client.mjs +12 -0
- package/dist/esm/api/resources/auth/resources/v1/client/index.d.mts +1 -0
- package/dist/esm/api/resources/auth/resources/v1/client/index.mjs +1 -0
- package/dist/esm/api/resources/auth/resources/v1/index.d.mts +2 -0
- package/dist/esm/api/resources/auth/resources/v1/index.mjs +2 -0
- package/dist/esm/api/resources/auth/resources/v1/resources/index.d.mts +2 -0
- package/dist/esm/api/resources/auth/resources/v1/resources/index.mjs +2 -0
- package/dist/esm/api/resources/auth/resources/v1/resources/tokens/client/Client.d.mts +27 -0
- package/dist/esm/api/resources/auth/resources/v1/resources/tokens/client/Client.mjs +73 -0
- package/dist/esm/api/resources/auth/resources/v1/resources/tokens/client/index.d.mts +1 -0
- package/dist/esm/api/resources/auth/resources/v1/resources/tokens/client/index.mjs +1 -0
- package/dist/esm/api/resources/auth/resources/v1/resources/tokens/client/requests/GrantV1Request.d.mts +8 -0
- package/dist/esm/api/resources/auth/resources/v1/resources/tokens/client/requests/GrantV1Request.mjs +2 -0
- package/dist/esm/api/resources/auth/resources/v1/resources/tokens/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/auth/resources/v1/resources/tokens/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/auth/resources/v1/resources/tokens/index.d.mts +1 -0
- package/dist/esm/api/resources/auth/resources/v1/resources/tokens/index.mjs +1 -0
- package/dist/esm/api/resources/index.d.mts +7 -0
- package/dist/esm/api/resources/index.mjs +7 -0
- package/dist/esm/api/resources/listen/client/Client.d.mts +16 -0
- package/dist/esm/api/resources/listen/client/Client.mjs +17 -0
- package/dist/esm/api/resources/listen/client/index.d.mts +1 -0
- package/dist/esm/api/resources/listen/client/index.mjs +1 -0
- package/dist/esm/api/resources/listen/index.d.mts +2 -0
- package/dist/esm/api/resources/listen/index.mjs +2 -0
- package/dist/esm/api/resources/listen/resources/index.d.mts +4 -0
- package/dist/esm/api/resources/listen/resources/index.mjs +4 -0
- package/dist/esm/api/resources/listen/resources/v1/client/Client.d.mts +51 -0
- package/dist/esm/api/resources/listen/resources/v1/client/Client.mjs +120 -0
- package/dist/esm/api/resources/listen/resources/v1/client/Socket.d.mts +52 -0
- package/dist/esm/api/resources/listen/resources/v1/client/Socket.mjs +125 -0
- package/dist/esm/api/resources/listen/resources/v1/client/index.d.mts +1 -0
- package/dist/esm/api/resources/listen/resources/v1/client/index.mjs +1 -0
- package/dist/esm/api/resources/listen/resources/v1/index.d.mts +3 -0
- package/dist/esm/api/resources/listen/resources/v1/index.mjs +3 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/index.d.mts +3 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/index.mjs +3 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/client/Client.d.mts +79 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/client/Client.mjs +481 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/client/index.d.mts +1 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/client/index.mjs +1 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/client/requests/ListenV1RequestUrl.d.mts +117 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/client/requests/ListenV1RequestUrl.mjs +2 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/client/requests/MediaTranscribeRequestOctetStream.d.mts +82 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/client/requests/MediaTranscribeRequestOctetStream.mjs +2 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/index.d.mts +2 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/index.mjs +2 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestCallbackMethod.d.mts +5 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestCallbackMethod.mjs +5 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestCustomIntentMode.d.mts +5 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestCustomIntentMode.mjs +5 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestCustomTopicMode.d.mts +5 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestCustomTopicMode.mjs +5 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestEncoding.d.mts +11 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestEncoding.mjs +11 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestModel.d.mts +32 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestModel.mjs +32 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestSummarize.d.mts +4 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestSummarize.mjs +4 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestVersion.d.mts +4 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeRequestVersion.mjs +4 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeResponse.d.mts +2 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/MediaTranscribeResponse.mjs +2 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/index.d.mts +8 -0
- package/dist/esm/api/resources/listen/resources/v1/resources/media/types/index.mjs +8 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1CloseStream.d.mts +13 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1CloseStream.mjs +10 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1Finalize.d.mts +13 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1Finalize.mjs +10 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1KeepAlive.d.mts +13 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1KeepAlive.mjs +10 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1Metadata.d.mts +16 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1Metadata.mjs +2 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1Results.d.mts +74 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1Results.mjs +2 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1SpeechStarted.d.mts +8 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1SpeechStarted.mjs +2 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1UtteranceEnd.d.mts +8 -0
- package/dist/esm/api/resources/listen/resources/v1/types/ListenV1UtteranceEnd.mjs +2 -0
- package/dist/esm/api/resources/listen/resources/v1/types/index.d.mts +7 -0
- package/dist/esm/api/resources/listen/resources/v1/types/index.mjs +7 -0
- package/dist/esm/api/resources/listen/resources/v2/client/Client.d.mts +30 -0
- package/dist/esm/api/resources/listen/resources/v2/client/Client.mjs +61 -0
- package/dist/esm/api/resources/listen/resources/v2/client/Socket.d.mts +50 -0
- package/dist/esm/api/resources/listen/resources/v2/client/Socket.mjs +117 -0
- package/dist/esm/api/resources/listen/resources/v2/client/index.d.mts +1 -0
- package/dist/esm/api/resources/listen/resources/v2/client/index.mjs +1 -0
- package/dist/esm/api/resources/listen/resources/v2/index.d.mts +2 -0
- package/dist/esm/api/resources/listen/resources/v2/index.mjs +2 -0
- package/dist/esm/api/resources/listen/resources/v2/types/ListenV2CloseStream.d.mts +13 -0
- package/dist/esm/api/resources/listen/resources/v2/types/ListenV2CloseStream.mjs +10 -0
- package/dist/esm/api/resources/listen/resources/v2/types/ListenV2Connected.d.mts +12 -0
- package/dist/esm/api/resources/listen/resources/v2/types/ListenV2Connected.mjs +2 -0
- package/dist/esm/api/resources/listen/resources/v2/types/ListenV2FatalError.d.mts +14 -0
- package/dist/esm/api/resources/listen/resources/v2/types/ListenV2FatalError.mjs +2 -0
- package/dist/esm/api/resources/listen/resources/v2/types/ListenV2TurnInfo.d.mts +60 -0
- package/dist/esm/api/resources/listen/resources/v2/types/ListenV2TurnInfo.mjs +20 -0
- package/dist/esm/api/resources/listen/resources/v2/types/index.d.mts +4 -0
- package/dist/esm/api/resources/listen/resources/v2/types/index.mjs +4 -0
- package/dist/esm/api/resources/manage/client/Client.d.mts +13 -0
- package/dist/esm/api/resources/manage/client/Client.mjs +12 -0
- package/dist/esm/api/resources/manage/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/index.d.mts +2 -0
- package/dist/esm/api/resources/manage/index.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/client/Client.d.mts +16 -0
- package/dist/esm/api/resources/manage/resources/v1/client/Client.mjs +17 -0
- package/dist/esm/api/resources/manage/resources/v1/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/index.d.mts +2 -0
- package/dist/esm/api/resources/manage/resources/v1/index.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/index.d.mts +4 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/index.mjs +4 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/models/client/Client.d.mts +42 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/models/client/Client.mjs +125 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/models/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/models/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/models/client/requests/ModelsListRequest.d.mts +10 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/models/client/requests/ModelsListRequest.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/models/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/models/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/models/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/models/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/client/Client.d.mts +101 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/client/Client.mjs +307 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/client/requests/ProjectsGetRequest.d.mts +13 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/client/requests/ProjectsGetRequest.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/client/requests/UpdateProjectV1Request.d.mts +8 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/client/requests/UpdateProjectV1Request.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/index.d.mts +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/index.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/client/Client.d.mts +22 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/client/Client.mjs +27 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/index.d.mts +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/index.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/balances/client/Client.d.mts +41 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/balances/client/Client.mjs +122 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/balances/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/balances/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/balances/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/balances/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/Client.d.mts +35 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/Client.mjs +106 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/requests/BreakdownListRequest.d.mts +28 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/requests/BreakdownListRequest.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/index.d.mts +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/index.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/types/BreakdownListRequestDeployment.d.mts +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/types/BreakdownListRequestDeployment.mjs +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/types/BreakdownListRequestGroupingItem.d.mts +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/types/BreakdownListRequestGroupingItem.mjs +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/types/index.d.mts +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/breakdown/types/index.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/Client.d.mts +31 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/Client.mjs +82 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/requests/FieldsListRequest.d.mts +13 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/requests/FieldsListRequest.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/fields/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/index.d.mts +8 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/index.mjs +8 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/Client.d.mts +30 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/Client.mjs +81 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/requests/PurchasesListRequest.d.mts +10 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/requests/PurchasesListRequest.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/billing/resources/purchases/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/index.d.mts +13 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/index.mjs +13 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/client/Client.d.mts +74 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/client/Client.mjs +230 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/client/requests/KeysListRequest.d.mts +11 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/client/requests/KeysListRequest.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/index.d.mts +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/index.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/types/KeysListRequestStatus.d.mts +5 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/types/KeysListRequestStatus.mjs +5 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/types/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/keys/types/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/client/Client.d.mts +47 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/client/Client.mjs +135 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/index.d.mts +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/index.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/index.d.mts +4 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/index.mjs +4 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/Client.d.mts +58 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/Client.mjs +183 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/requests/CreateProjectInviteV1Request.d.mts +13 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/requests/CreateProjectInviteV1Request.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/invites/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/Client.d.mts +45 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/Client.mjs +132 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/requests/UpdateProjectMemberScopesV1Request.d.mts +10 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/requests/UpdateProjectMemberScopesV1Request.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/members/resources/scopes/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/models/client/Client.d.mts +44 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/models/client/Client.mjs +127 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/models/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/models/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/models/client/requests/ModelsListRequest.d.mts +10 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/models/client/requests/ModelsListRequest.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/models/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/models/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/models/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/models/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/client/Client.d.mts +53 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/client/Client.mjs +166 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/client/requests/RequestsListRequest.d.mts +38 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/client/requests/RequestsListRequest.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/index.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestDeployment.d.mts +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestDeployment.mjs +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestEndpoint.d.mts +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestEndpoint.mjs +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestMethod.d.mts +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestMethod.mjs +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestStatus.d.mts +5 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/types/RequestsListRequestStatus.mjs +5 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/types/index.d.mts +4 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/requests/types/index.mjs +4 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/client/Client.d.mts +79 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/client/Client.mjs +260 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/client/requests/UsageGetRequest.d.mts +140 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/client/requests/UsageGetRequest.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/index.d.mts +3 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/index.mjs +3 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/Client.d.mts +74 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/Client.mjs +254 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/requests/BreakdownGetRequest.d.mts +143 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/requests/BreakdownGetRequest.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/index.d.mts +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/index.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestDeployment.d.mts +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestDeployment.mjs +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestEndpoint.d.mts +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestEndpoint.mjs +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestGrouping.d.mts +10 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestGrouping.mjs +10 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestMethod.d.mts +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/BreakdownGetRequestMethod.mjs +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/index.d.mts +4 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/breakdown/types/index.mjs +4 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/Client.d.mts +31 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/Client.mjs +82 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/requests/FieldsListRequest.d.mts +13 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/requests/FieldsListRequest.mjs +2 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/index.d.mts +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/fields/index.mjs +1 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/index.d.mts +5 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/resources/index.mjs +5 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/types/UsageGetRequestDeployment.d.mts +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/types/UsageGetRequestDeployment.mjs +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/types/UsageGetRequestEndpoint.d.mts +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/types/UsageGetRequestEndpoint.mjs +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/types/UsageGetRequestMethod.d.mts +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/types/UsageGetRequestMethod.mjs +7 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/types/index.d.mts +3 -0
- package/dist/esm/api/resources/manage/resources/v1/resources/projects/resources/usage/types/index.mjs +3 -0
- package/dist/esm/api/resources/read/client/Client.d.mts +13 -0
- package/dist/esm/api/resources/read/client/Client.mjs +12 -0
- package/dist/esm/api/resources/read/client/index.d.mts +1 -0
- package/dist/esm/api/resources/read/client/index.mjs +1 -0
- package/dist/esm/api/resources/read/index.d.mts +2 -0
- package/dist/esm/api/resources/read/index.mjs +2 -0
- package/dist/esm/api/resources/read/resources/index.d.mts +1 -0
- package/dist/esm/api/resources/read/resources/index.mjs +1 -0
- package/dist/esm/api/resources/read/resources/v1/client/Client.d.mts +13 -0
- package/dist/esm/api/resources/read/resources/v1/client/Client.mjs +12 -0
- package/dist/esm/api/resources/read/resources/v1/client/index.d.mts +1 -0
- package/dist/esm/api/resources/read/resources/v1/client/index.mjs +1 -0
- package/dist/esm/api/resources/read/resources/v1/index.d.mts +2 -0
- package/dist/esm/api/resources/read/resources/v1/index.mjs +2 -0
- package/dist/esm/api/resources/read/resources/v1/resources/index.d.mts +3 -0
- package/dist/esm/api/resources/read/resources/v1/resources/index.mjs +3 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/client/Client.d.mts +43 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/client/Client.mjs +142 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/client/index.d.mts +1 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/client/index.mjs +1 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/client/requests/TextAnalyzeRequest.d.mts +48 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/client/requests/TextAnalyzeRequest.mjs +2 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/index.d.mts +2 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/index.mjs +2 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestCallbackMethod.d.mts +5 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestCallbackMethod.mjs +5 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestCustomIntentMode.d.mts +5 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestCustomIntentMode.mjs +5 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestCustomTopicMode.d.mts +5 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestCustomTopicMode.mjs +5 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestSummarize.d.mts +4 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/types/TextAnalyzeRequestSummarize.mjs +4 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/types/index.d.mts +4 -0
- package/dist/esm/api/resources/read/resources/v1/resources/text/types/index.mjs +4 -0
- package/dist/esm/api/resources/selfHosted/client/Client.d.mts +13 -0
- package/dist/esm/api/resources/selfHosted/client/Client.mjs +12 -0
- package/dist/esm/api/resources/selfHosted/client/index.d.mts +1 -0
- package/dist/esm/api/resources/selfHosted/client/index.mjs +1 -0
- package/dist/esm/api/resources/selfHosted/index.d.mts +2 -0
- package/dist/esm/api/resources/selfHosted/index.mjs +2 -0
- package/dist/esm/api/resources/selfHosted/resources/index.d.mts +1 -0
- package/dist/esm/api/resources/selfHosted/resources/index.mjs +1 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/client/Client.d.mts +13 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/client/Client.mjs +12 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/client/index.d.mts +1 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/client/index.mjs +1 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/index.d.mts +2 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/index.mjs +2 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/Client.d.mts +71 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/Client.mjs +258 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/index.d.mts +1 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/index.mjs +1 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/requests/CreateProjectDistributionCredentialsV1Request.d.mts +15 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/requests/CreateProjectDistributionCredentialsV1Request.mjs +2 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/index.d.mts +2 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/index.mjs +2 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/types/DistributionCredentialsCreateRequestScopesItem.d.mts +11 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/types/DistributionCredentialsCreateRequestScopesItem.mjs +11 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/types/index.d.mts +1 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/distributionCredentials/types/index.mjs +1 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/index.d.mts +3 -0
- package/dist/esm/api/resources/selfHosted/resources/v1/resources/index.mjs +3 -0
- package/dist/esm/api/resources/speak/client/Client.d.mts +13 -0
- package/dist/esm/api/resources/speak/client/Client.mjs +12 -0
- package/dist/esm/api/resources/speak/client/index.d.mts +1 -0
- package/dist/esm/api/resources/speak/client/index.mjs +1 -0
- package/dist/esm/api/resources/speak/index.d.mts +2 -0
- package/dist/esm/api/resources/speak/index.mjs +2 -0
- package/dist/esm/api/resources/speak/resources/index.d.mts +2 -0
- package/dist/esm/api/resources/speak/resources/index.mjs +2 -0
- package/dist/esm/api/resources/speak/resources/v1/client/Client.d.mts +28 -0
- package/dist/esm/api/resources/speak/resources/v1/client/Client.mjs +53 -0
- package/dist/esm/api/resources/speak/resources/v1/client/Socket.d.mts +52 -0
- package/dist/esm/api/resources/speak/resources/v1/client/Socket.mjs +125 -0
- package/dist/esm/api/resources/speak/resources/v1/client/index.d.mts +1 -0
- package/dist/esm/api/resources/speak/resources/v1/client/index.mjs +1 -0
- package/dist/esm/api/resources/speak/resources/v1/index.d.mts +3 -0
- package/dist/esm/api/resources/speak/resources/v1/index.mjs +3 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/client/Client.d.mts +20 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/client/Client.mjs +112 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/client/index.d.mts +1 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/client/index.mjs +1 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/client/requests/SpeakV1Request.d.mts +29 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/client/requests/SpeakV1Request.mjs +2 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/index.d.mts +2 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/index.mjs +2 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestCallbackMethod.d.mts +5 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestCallbackMethod.mjs +5 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestContainer.d.mts +6 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestContainer.mjs +6 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestEncoding.d.mts +10 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestEncoding.mjs +10 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestModel.d.mts +66 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/types/AudioGenerateRequestModel.mjs +66 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/types/index.d.mts +4 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/audio/types/index.mjs +4 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/index.d.mts +3 -0
- package/dist/esm/api/resources/speak/resources/v1/resources/index.mjs +3 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Clear.d.mts +13 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Clear.mjs +10 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Cleared.d.mts +14 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Cleared.mjs +9 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Close.d.mts +13 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Close.mjs +10 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Flush.d.mts +13 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Flush.mjs +10 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Flushed.d.mts +14 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Flushed.mjs +9 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Metadata.d.mts +12 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Metadata.mjs +2 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Text.d.mts +6 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Text.mjs +2 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Warning.d.mts +8 -0
- package/dist/esm/api/resources/speak/resources/v1/types/SpeakV1Warning.mjs +2 -0
- package/dist/esm/api/resources/speak/resources/v1/types/index.d.mts +8 -0
- package/dist/esm/api/resources/speak/resources/v1/types/index.mjs +8 -0
- package/dist/esm/api/types/AgentThinkModelsV1Response.d.mts +44 -0
- package/dist/esm/api/types/AgentThinkModelsV1Response.mjs +2 -0
- package/dist/esm/api/types/BillingBreakdownV1Response.d.mts +40 -0
- package/dist/esm/api/types/BillingBreakdownV1Response.mjs +2 -0
- package/dist/esm/api/types/CreateKeyV1RequestOne.d.mts +1 -0
- package/dist/esm/api/types/CreateKeyV1RequestOne.mjs +2 -0
- package/dist/esm/api/types/CreateKeyV1Response.d.mts +17 -0
- package/dist/esm/api/types/CreateKeyV1Response.mjs +2 -0
- package/dist/esm/api/types/CreateProjectDistributionCredentialsV1Response.d.mts +24 -0
- package/dist/esm/api/types/CreateProjectDistributionCredentialsV1Response.mjs +2 -0
- package/dist/esm/api/types/CreateProjectInviteV1Response.d.mts +4 -0
- package/dist/esm/api/types/CreateProjectInviteV1Response.mjs +2 -0
- package/dist/esm/api/types/DeleteProjectInviteV1Response.d.mts +4 -0
- package/dist/esm/api/types/DeleteProjectInviteV1Response.mjs +2 -0
- package/dist/esm/api/types/DeleteProjectKeyV1Response.d.mts +3 -0
- package/dist/esm/api/types/DeleteProjectKeyV1Response.mjs +2 -0
- package/dist/esm/api/types/DeleteProjectMemberV1Response.d.mts +4 -0
- package/dist/esm/api/types/DeleteProjectMemberV1Response.mjs +2 -0
- package/dist/esm/api/types/DeleteProjectV1Response.d.mts +4 -0
- package/dist/esm/api/types/DeleteProjectV1Response.mjs +2 -0
- package/dist/esm/api/types/ErrorResponse.d.mts +2 -0
- package/dist/esm/api/types/ErrorResponse.mjs +2 -0
- package/dist/esm/api/types/ErrorResponseLegacyError.d.mts +8 -0
- package/dist/esm/api/types/ErrorResponseLegacyError.mjs +2 -0
- package/dist/esm/api/types/ErrorResponseModernError.d.mts +10 -0
- package/dist/esm/api/types/ErrorResponseModernError.mjs +2 -0
- package/dist/esm/api/types/ErrorResponseTextError.d.mts +1 -0
- package/dist/esm/api/types/ErrorResponseTextError.mjs +2 -0
- package/dist/esm/api/types/GetModelV1Response.d.mts +27 -0
- package/dist/esm/api/types/GetModelV1Response.mjs +2 -0
- package/dist/esm/api/types/GetProjectBalanceV1Response.d.mts +10 -0
- package/dist/esm/api/types/GetProjectBalanceV1Response.mjs +2 -0
- package/dist/esm/api/types/GetProjectDistributionCredentialsV1Response.d.mts +24 -0
- package/dist/esm/api/types/GetProjectDistributionCredentialsV1Response.mjs +2 -0
- package/dist/esm/api/types/GetProjectKeyV1Response.d.mts +27 -0
- package/dist/esm/api/types/GetProjectKeyV1Response.mjs +2 -0
- package/dist/esm/api/types/GetProjectRequestV1Response.d.mts +4 -0
- package/dist/esm/api/types/GetProjectRequestV1Response.mjs +2 -0
- package/dist/esm/api/types/GetProjectV1Response.d.mts +8 -0
- package/dist/esm/api/types/GetProjectV1Response.mjs +2 -0
- package/dist/esm/api/types/GrantV1Response.d.mts +6 -0
- package/dist/esm/api/types/GrantV1Response.mjs +2 -0
- package/dist/esm/api/types/LeaveProjectV1Response.d.mts +4 -0
- package/dist/esm/api/types/LeaveProjectV1Response.mjs +2 -0
- package/dist/esm/api/types/ListBillingFieldsV1Response.d.mts +22 -0
- package/dist/esm/api/types/ListBillingFieldsV1Response.mjs +13 -0
- package/dist/esm/api/types/ListModelsV1Response.d.mts +5 -0
- package/dist/esm/api/types/ListModelsV1Response.mjs +2 -0
- package/dist/esm/api/types/ListModelsV1ResponseSttModels.d.mts +11 -0
- package/dist/esm/api/types/ListModelsV1ResponseSttModels.mjs +2 -0
- package/dist/esm/api/types/ListModelsV1ResponseTtsModels.d.mts +20 -0
- package/dist/esm/api/types/ListModelsV1ResponseTtsModels.mjs +2 -0
- package/dist/esm/api/types/ListProjectBalancesV1Response.d.mts +18 -0
- package/dist/esm/api/types/ListProjectBalancesV1Response.mjs +2 -0
- package/dist/esm/api/types/ListProjectDistributionCredentialsV1Response.d.mts +33 -0
- package/dist/esm/api/types/ListProjectDistributionCredentialsV1Response.mjs +2 -0
- package/dist/esm/api/types/ListProjectInvitesV1Response.d.mts +14 -0
- package/dist/esm/api/types/ListProjectInvitesV1Response.mjs +2 -0
- package/dist/esm/api/types/ListProjectKeysV1Response.d.mts +24 -0
- package/dist/esm/api/types/ListProjectKeysV1Response.mjs +2 -0
- package/dist/esm/api/types/ListProjectMemberScopesV1Response.d.mts +4 -0
- package/dist/esm/api/types/ListProjectMemberScopesV1Response.mjs +2 -0
- package/dist/esm/api/types/ListProjectMembersV1Response.d.mts +13 -0
- package/dist/esm/api/types/ListProjectMembersV1Response.mjs +2 -0
- package/dist/esm/api/types/ListProjectPurchasesV1Response.d.mts +16 -0
- package/dist/esm/api/types/ListProjectPurchasesV1Response.mjs +2 -0
- package/dist/esm/api/types/ListProjectRequestsV1Response.d.mts +8 -0
- package/dist/esm/api/types/ListProjectRequestsV1Response.mjs +2 -0
- package/dist/esm/api/types/ListProjectsV1Response.d.mts +14 -0
- package/dist/esm/api/types/ListProjectsV1Response.mjs +2 -0
- package/dist/esm/api/types/ListenV1AcceptedResponse.d.mts +7 -0
- package/dist/esm/api/types/ListenV1AcceptedResponse.mjs +2 -0
- package/dist/esm/api/types/ListenV1Callback.d.mts +1 -0
- package/dist/esm/api/types/ListenV1Callback.mjs +2 -0
- package/dist/esm/api/types/ListenV1CallbackMethod.d.mts +8 -0
- package/dist/esm/api/types/ListenV1CallbackMethod.mjs +8 -0
- package/dist/esm/api/types/ListenV1Channels.d.mts +1 -0
- package/dist/esm/api/types/ListenV1Channels.mjs +2 -0
- package/dist/esm/api/types/ListenV1Diarize.d.mts +6 -0
- package/dist/esm/api/types/ListenV1Diarize.mjs +6 -0
- package/dist/esm/api/types/ListenV1Dictation.d.mts +6 -0
- package/dist/esm/api/types/ListenV1Dictation.mjs +6 -0
- package/dist/esm/api/types/ListenV1Encoding.d.mts +15 -0
- package/dist/esm/api/types/ListenV1Encoding.mjs +15 -0
- package/dist/esm/api/types/ListenV1Endpointing.d.mts +1 -0
- package/dist/esm/api/types/ListenV1Endpointing.mjs +2 -0
- package/dist/esm/api/types/ListenV1Extra.d.mts +1 -0
- package/dist/esm/api/types/ListenV1Extra.mjs +2 -0
- package/dist/esm/api/types/ListenV1InterimResults.d.mts +6 -0
- package/dist/esm/api/types/ListenV1InterimResults.mjs +6 -0
- package/dist/esm/api/types/ListenV1Keyterm.d.mts +1 -0
- package/dist/esm/api/types/ListenV1Keyterm.mjs +2 -0
- package/dist/esm/api/types/ListenV1Keywords.d.mts +1 -0
- package/dist/esm/api/types/ListenV1Keywords.mjs +2 -0
- package/dist/esm/api/types/ListenV1Language.d.mts +1 -0
- package/dist/esm/api/types/ListenV1Language.mjs +2 -0
- package/dist/esm/api/types/ListenV1MipOptOut.d.mts +1 -0
- package/dist/esm/api/types/ListenV1MipOptOut.mjs +2 -0
- package/dist/esm/api/types/ListenV1Model.d.mts +34 -0
- package/dist/esm/api/types/ListenV1Model.mjs +34 -0
- package/dist/esm/api/types/ListenV1Multichannel.d.mts +6 -0
- package/dist/esm/api/types/ListenV1Multichannel.mjs +6 -0
- package/dist/esm/api/types/ListenV1Numerals.d.mts +6 -0
- package/dist/esm/api/types/ListenV1Numerals.mjs +6 -0
- package/dist/esm/api/types/ListenV1ProfanityFilter.d.mts +6 -0
- package/dist/esm/api/types/ListenV1ProfanityFilter.mjs +6 -0
- package/dist/esm/api/types/ListenV1Punctuate.d.mts +6 -0
- package/dist/esm/api/types/ListenV1Punctuate.mjs +6 -0
- package/dist/esm/api/types/ListenV1Redact.d.mts +10 -0
- package/dist/esm/api/types/ListenV1Redact.mjs +10 -0
- package/dist/esm/api/types/ListenV1Replace.d.mts +1 -0
- package/dist/esm/api/types/ListenV1Replace.mjs +2 -0
- package/dist/esm/api/types/ListenV1RequestFile.d.mts +4 -0
- package/dist/esm/api/types/ListenV1RequestFile.mjs +2 -0
- package/dist/esm/api/types/ListenV1Response.d.mts +8 -0
- package/dist/esm/api/types/ListenV1Response.mjs +2 -0
- package/dist/esm/api/types/ListenV1ResponseMetadata.d.mts +37 -0
- package/dist/esm/api/types/ListenV1ResponseMetadata.mjs +2 -0
- package/dist/esm/api/types/ListenV1ResponseResults.d.mts +9 -0
- package/dist/esm/api/types/ListenV1ResponseResults.mjs +2 -0
- package/dist/esm/api/types/ListenV1ResponseResultsChannels.d.mts +2 -0
- package/dist/esm/api/types/ListenV1ResponseResultsChannels.mjs +2 -0
- package/dist/esm/api/types/ListenV1ResponseResultsChannelsItem.d.mts +90 -0
- package/dist/esm/api/types/ListenV1ResponseResultsChannelsItem.mjs +2 -0
- package/dist/esm/api/types/ListenV1ResponseResultsSummary.d.mts +4 -0
- package/dist/esm/api/types/ListenV1ResponseResultsSummary.mjs +2 -0
- package/dist/esm/api/types/ListenV1ResponseResultsUtterances.d.mts +2 -0
- package/dist/esm/api/types/ListenV1ResponseResultsUtterances.mjs +2 -0
- package/dist/esm/api/types/ListenV1ResponseResultsUtterancesItem.d.mts +24 -0
- package/dist/esm/api/types/ListenV1ResponseResultsUtterancesItem.mjs +2 -0
- package/dist/esm/api/types/ListenV1SampleRate.d.mts +1 -0
- package/dist/esm/api/types/ListenV1SampleRate.mjs +2 -0
- package/dist/esm/api/types/ListenV1Search.d.mts +1 -0
- package/dist/esm/api/types/ListenV1Search.mjs +2 -0
- package/dist/esm/api/types/ListenV1SmartFormat.d.mts +6 -0
- package/dist/esm/api/types/ListenV1SmartFormat.mjs +6 -0
- package/dist/esm/api/types/ListenV1Tag.d.mts +1 -0
- package/dist/esm/api/types/ListenV1Tag.mjs +2 -0
- package/dist/esm/api/types/ListenV1UtteranceEndMs.d.mts +1 -0
- package/dist/esm/api/types/ListenV1UtteranceEndMs.mjs +2 -0
- package/dist/esm/api/types/ListenV1VadEvents.d.mts +6 -0
- package/dist/esm/api/types/ListenV1VadEvents.mjs +6 -0
- package/dist/esm/api/types/ListenV1Version.d.mts +1 -0
- package/dist/esm/api/types/ListenV1Version.mjs +2 -0
- package/dist/esm/api/types/ListenV2EagerEotThreshold.d.mts +1 -0
- package/dist/esm/api/types/ListenV2EagerEotThreshold.mjs +2 -0
- package/dist/esm/api/types/ListenV2Encoding.d.mts +10 -0
- package/dist/esm/api/types/ListenV2Encoding.mjs +10 -0
- package/dist/esm/api/types/ListenV2EotThreshold.d.mts +1 -0
- package/dist/esm/api/types/ListenV2EotThreshold.mjs +2 -0
- package/dist/esm/api/types/ListenV2EotTimeoutMs.d.mts +1 -0
- package/dist/esm/api/types/ListenV2EotTimeoutMs.mjs +2 -0
- package/dist/esm/api/types/ListenV2Keyterm.d.mts +5 -0
- package/dist/esm/api/types/ListenV2Keyterm.mjs +2 -0
- package/dist/esm/api/types/ListenV2MipOptOut.d.mts +1 -0
- package/dist/esm/api/types/ListenV2MipOptOut.mjs +2 -0
- package/dist/esm/api/types/ListenV2Model.d.mts +4 -0
- package/dist/esm/api/types/ListenV2Model.mjs +2 -0
- package/dist/esm/api/types/ListenV2SampleRate.d.mts +1 -0
- package/dist/esm/api/types/ListenV2SampleRate.mjs +2 -0
- package/dist/esm/api/types/ListenV2Tag.d.mts +1 -0
- package/dist/esm/api/types/ListenV2Tag.mjs +2 -0
- package/dist/esm/api/types/ProjectRequestResponse.d.mts +23 -0
- package/dist/esm/api/types/ProjectRequestResponse.mjs +2 -0
- package/dist/esm/api/types/ReadV1Request.d.mts +2 -0
- package/dist/esm/api/types/ReadV1Request.mjs +2 -0
- package/dist/esm/api/types/ReadV1RequestText.d.mts +4 -0
- package/dist/esm/api/types/ReadV1RequestText.mjs +2 -0
- package/dist/esm/api/types/ReadV1RequestUrl.d.mts +4 -0
- package/dist/esm/api/types/ReadV1RequestUrl.mjs +2 -0
- package/dist/esm/api/types/ReadV1Response.d.mts +8 -0
- package/dist/esm/api/types/ReadV1Response.mjs +2 -0
- package/dist/esm/api/types/ReadV1ResponseMetadata.d.mts +36 -0
- package/dist/esm/api/types/ReadV1ResponseMetadata.mjs +2 -0
- package/dist/esm/api/types/ReadV1ResponseResults.d.mts +7 -0
- package/dist/esm/api/types/ReadV1ResponseResults.mjs +2 -0
- package/dist/esm/api/types/ReadV1ResponseResultsSummary.d.mts +16 -0
- package/dist/esm/api/types/ReadV1ResponseResultsSummary.mjs +2 -0
- package/dist/esm/api/types/SharedIntents.d.mts +36 -0
- package/dist/esm/api/types/SharedIntents.mjs +2 -0
- package/dist/esm/api/types/SharedSentiments.d.mts +23 -0
- package/dist/esm/api/types/SharedSentiments.mjs +2 -0
- package/dist/esm/api/types/SharedTopics.d.mts +36 -0
- package/dist/esm/api/types/SharedTopics.mjs +2 -0
- package/dist/esm/api/types/SpeakV1Encoding.d.mts +7 -0
- package/dist/esm/api/types/SpeakV1Encoding.mjs +7 -0
- package/dist/esm/api/types/SpeakV1MipOptOut.d.mts +1 -0
- package/dist/esm/api/types/SpeakV1MipOptOut.mjs +2 -0
- package/dist/esm/api/types/SpeakV1Model.d.mts +67 -0
- package/dist/esm/api/types/SpeakV1Model.mjs +67 -0
- package/dist/esm/api/types/SpeakV1Response.d.mts +1 -0
- package/dist/esm/api/types/SpeakV1Response.mjs +2 -0
- package/dist/esm/api/types/SpeakV1SampleRate.d.mts +9 -0
- package/dist/esm/api/types/SpeakV1SampleRate.mjs +9 -0
- package/dist/esm/api/types/UpdateProjectMemberScopesV1Response.d.mts +4 -0
- package/dist/esm/api/types/UpdateProjectMemberScopesV1Response.mjs +2 -0
- package/dist/esm/api/types/UpdateProjectV1Response.d.mts +4 -0
- package/dist/esm/api/types/UpdateProjectV1Response.mjs +2 -0
- package/dist/esm/api/types/UsageBreakdownV1Response.d.mts +58 -0
- package/dist/esm/api/types/UsageBreakdownV1Response.mjs +2 -0
- package/dist/esm/api/types/UsageFieldsV1Response.d.mts +25 -0
- package/dist/esm/api/types/UsageFieldsV1Response.mjs +2 -0
- package/dist/esm/api/types/UsageV1Response.d.mts +11 -0
- package/dist/esm/api/types/UsageV1Response.mjs +2 -0
- package/dist/esm/api/types/index.d.mts +102 -0
- package/dist/esm/api/types/index.mjs +102 -0
- package/dist/esm/auth/HeaderAuthProvider.d.mts +14 -0
- package/dist/esm/auth/HeaderAuthProvider.mjs +36 -0
- package/dist/esm/auth/index.d.mts +1 -0
- package/dist/esm/auth/index.mjs +1 -0
- package/dist/esm/core/auth/AuthProvider.d.mts +7 -0
- package/dist/esm/core/auth/AuthProvider.mjs +1 -0
- package/dist/esm/core/auth/AuthRequest.d.mts +9 -0
- package/dist/esm/core/auth/AuthRequest.mjs +1 -0
- package/dist/esm/core/auth/BasicAuth.d.mts +8 -0
- package/dist/esm/core/auth/BasicAuth.mjs +24 -0
- package/dist/esm/core/auth/BearerToken.d.mts +7 -0
- package/dist/esm/core/auth/BearerToken.mjs +13 -0
- package/dist/esm/core/auth/NoOpAuthProvider.d.mts +5 -0
- package/dist/esm/core/auth/NoOpAuthProvider.mjs +5 -0
- package/dist/esm/core/auth/index.d.mts +5 -0
- package/dist/esm/core/auth/index.mjs +3 -0
- package/dist/esm/core/base64.d.mts +2 -0
- package/dist/esm/core/base64.mjs +22 -0
- package/dist/esm/core/exports.d.mts +3 -0
- package/dist/esm/core/exports.mjs +3 -0
- package/dist/esm/core/fetcher/APIResponse.d.mts +20 -0
- package/dist/esm/core/fetcher/APIResponse.mjs +1 -0
- package/dist/esm/core/fetcher/BinaryResponse.d.mts +19 -0
- package/dist/esm/core/fetcher/BinaryResponse.mjs +14 -0
- package/dist/esm/core/fetcher/EndpointMetadata.d.mts +13 -0
- package/dist/esm/core/fetcher/EndpointMetadata.mjs +1 -0
- package/dist/esm/core/fetcher/EndpointSupplier.d.mts +12 -0
- package/dist/esm/core/fetcher/EndpointSupplier.mjs +19 -0
- package/dist/esm/core/fetcher/Fetcher.d.mts +49 -0
- package/dist/esm/core/fetcher/Fetcher.mjs +312 -0
- package/dist/esm/core/fetcher/Headers.d.mts +2 -0
- package/dist/esm/core/fetcher/Headers.mjs +82 -0
- package/dist/esm/core/fetcher/HttpResponsePromise.d.mts +58 -0
- package/dist/esm/core/fetcher/HttpResponsePromise.mjs +99 -0
- package/dist/esm/core/fetcher/RawResponse.d.mts +29 -0
- package/dist/esm/core/fetcher/RawResponse.mjs +40 -0
- package/dist/esm/core/fetcher/Supplier.d.mts +4 -0
- package/dist/esm/core/fetcher/Supplier.mjs +19 -0
- package/dist/esm/core/fetcher/createRequestUrl.d.mts +1 -0
- package/dist/esm/core/fetcher/createRequestUrl.mjs +5 -0
- package/dist/esm/core/fetcher/getErrorResponseBody.d.mts +1 -0
- package/dist/esm/core/fetcher/getErrorResponseBody.mjs +42 -0
- package/dist/esm/core/fetcher/getFetchFn.d.mts +1 -0
- package/dist/esm/core/fetcher/getFetchFn.mjs +14 -0
- package/dist/esm/core/fetcher/getHeader.d.mts +1 -0
- package/dist/esm/core/fetcher/getHeader.mjs +8 -0
- package/dist/esm/core/fetcher/getRequestBody.d.mts +7 -0
- package/dist/esm/core/fetcher/getRequestBody.mjs +24 -0
- package/dist/esm/core/fetcher/getResponseBody.d.mts +1 -0
- package/dist/esm/core/fetcher/getResponseBody.mjs +66 -0
- package/dist/esm/core/fetcher/index.d.mts +11 -0
- package/dist/esm/core/fetcher/index.mjs +6 -0
- package/dist/esm/core/fetcher/makeRequest.d.mts +1 -0
- package/dist/esm/core/fetcher/makeRequest.mjs +36 -0
- package/dist/esm/core/fetcher/requestWithRetries.d.mts +1 -0
- package/dist/esm/core/fetcher/requestWithRetries.mjs +64 -0
- package/dist/esm/core/fetcher/signals.d.mts +5 -0
- package/dist/esm/core/fetcher/signals.mjs +20 -0
- package/dist/esm/core/file/exports.d.mts +1 -0
- package/dist/esm/core/file/exports.mjs +1 -0
- package/dist/esm/core/file/file.d.mts +10 -0
- package/dist/esm/core/file/file.mjs +184 -0
- package/dist/esm/core/file/index.d.mts +2 -0
- package/dist/esm/core/file/index.mjs +2 -0
- package/dist/esm/core/file/types.d.mts +66 -0
- package/dist/esm/core/file/types.mjs +1 -0
- package/dist/esm/core/headers.d.mts +2 -0
- package/dist/esm/core/headers.mjs +27 -0
- package/dist/esm/core/index.d.mts +8 -0
- package/dist/esm/core/index.mjs +8 -0
- package/dist/esm/core/json.d.mts +15 -0
- package/dist/esm/core/json.mjs +19 -0
- package/dist/esm/core/logging/exports.d.mts +18 -0
- package/dist/esm/core/logging/exports.mjs +9 -0
- package/dist/esm/core/logging/index.d.mts +1 -0
- package/dist/esm/core/logging/index.mjs +1 -0
- package/dist/esm/core/logging/logger.d.mts +126 -0
- package/dist/esm/core/logging/logger.mjs +138 -0
- package/dist/esm/core/runtime/index.d.mts +1 -0
- package/dist/esm/core/runtime/index.mjs +1 -0
- package/dist/esm/core/runtime/runtime.d.mts +9 -0
- package/dist/esm/core/runtime/runtime.mjs +100 -0
- package/dist/esm/core/url/encodePathParam.d.mts +1 -0
- package/dist/esm/core/url/encodePathParam.mjs +18 -0
- package/dist/esm/core/url/index.d.mts +3 -0
- package/dist/esm/core/url/index.mjs +3 -0
- package/dist/esm/core/url/join.d.mts +1 -0
- package/dist/esm/core/url/join.mjs +65 -0
- package/dist/esm/core/url/qs.d.mts +6 -0
- package/dist/esm/core/url/qs.mjs +61 -0
- package/dist/esm/core/websocket/events.d.mts +36 -0
- package/dist/esm/core/websocket/events.mjs +21 -0
- package/dist/esm/core/websocket/exports.d.mts +8 -0
- package/dist/esm/core/websocket/exports.mjs +1 -0
- package/dist/esm/core/websocket/index.d.mts +1 -0
- package/dist/esm/core/websocket/index.mjs +1 -0
- package/dist/esm/core/websocket/ws.d.mts +147 -0
- package/dist/esm/core/websocket/ws.mjs +407 -0
- package/dist/esm/environments.d.mts +18 -0
- package/dist/esm/environments.mjs +13 -0
- package/dist/esm/errors/DeepgramError.d.mts +12 -0
- package/dist/esm/errors/DeepgramError.mjs +28 -0
- package/dist/esm/errors/DeepgramTimeoutError.d.mts +3 -0
- package/dist/esm/errors/DeepgramTimeoutError.mjs +11 -0
- package/dist/esm/errors/handleNonStatusCodeError.d.mts +2 -0
- package/dist/esm/errors/handleNonStatusCodeError.mjs +29 -0
- package/dist/esm/errors/index.d.mts +2 -0
- package/dist/esm/errors/index.mjs +2 -0
- package/dist/esm/exports.d.mts +1 -0
- package/dist/esm/exports.mjs +1 -0
- package/dist/esm/index.d.mts +7 -0
- package/dist/esm/index.mjs +6 -0
- package/dist/esm/version.d.mts +1 -0
- package/dist/esm/version.mjs +1 -0
- package/package.json +57 -103
- package/reference.md +2931 -0
- package/dist/main/DeepgramClient.d.ts +0 -106
- package/dist/main/DeepgramClient.d.ts.map +0 -1
- package/dist/main/DeepgramClient.js +0 -144
- package/dist/main/DeepgramClient.js.map +0 -1
- package/dist/main/index.d.ts +0 -46
- package/dist/main/index.d.ts.map +0 -1
- package/dist/main/index.js +0 -75
- package/dist/main/index.js.map +0 -1
- package/dist/main/lib/constants.d.ts +0 -24
- package/dist/main/lib/constants.d.ts.map +0 -1
- package/dist/main/lib/constants.js +0 -58
- package/dist/main/lib/constants.js.map +0 -1
- package/dist/main/lib/enums/AgentEvents.d.ts +0 -74
- package/dist/main/lib/enums/AgentEvents.d.ts.map +0 -1
- package/dist/main/lib/enums/AgentEvents.js +0 -78
- package/dist/main/lib/enums/AgentEvents.js.map +0 -1
- package/dist/main/lib/enums/LiveConnectionState.d.ts +0 -12
- package/dist/main/lib/enums/LiveConnectionState.d.ts.map +0 -1
- package/dist/main/lib/enums/LiveConnectionState.js +0 -16
- package/dist/main/lib/enums/LiveConnectionState.js.map +0 -1
- package/dist/main/lib/enums/LiveTTSEvents.d.ts +0 -34
- package/dist/main/lib/enums/LiveTTSEvents.d.ts.map +0 -1
- package/dist/main/lib/enums/LiveTTSEvents.js +0 -38
- package/dist/main/lib/enums/LiveTTSEvents.js.map +0 -1
- package/dist/main/lib/enums/LiveTranscriptionEvents.d.ts +0 -32
- package/dist/main/lib/enums/LiveTranscriptionEvents.d.ts.map +0 -1
- package/dist/main/lib/enums/LiveTranscriptionEvents.js +0 -36
- package/dist/main/lib/enums/LiveTranscriptionEvents.js.map +0 -1
- package/dist/main/lib/enums/index.d.ts +0 -5
- package/dist/main/lib/enums/index.d.ts.map +0 -1
- package/dist/main/lib/enums/index.js +0 -21
- package/dist/main/lib/enums/index.js.map +0 -1
- package/dist/main/lib/errors.d.ts +0 -55
- package/dist/main/lib/errors.d.ts.map +0 -1
- package/dist/main/lib/errors.js +0 -80
- package/dist/main/lib/errors.js.map +0 -1
- package/dist/main/lib/fetch.d.ts +0 -34
- package/dist/main/lib/fetch.d.ts.map +0 -1
- package/dist/main/lib/fetch.js +0 -92
- package/dist/main/lib/fetch.js.map +0 -1
- package/dist/main/lib/helpers.d.ts +0 -20
- package/dist/main/lib/helpers.d.ts.map +0 -1
- package/dist/main/lib/helpers.js +0 -154
- package/dist/main/lib/helpers.js.map +0 -1
- package/dist/main/lib/runtime.d.ts +0 -7
- package/dist/main/lib/runtime.d.ts.map +0 -1
- package/dist/main/lib/runtime.js +0 -19
- package/dist/main/lib/runtime.js.map +0 -1
- package/dist/main/lib/types/AgentLiveSchema.d.ts +0 -92
- package/dist/main/lib/types/AgentLiveSchema.d.ts.map +0 -1
- package/dist/main/lib/types/AgentLiveSchema.js +0 -3
- package/dist/main/lib/types/AgentLiveSchema.js.map +0 -1
- package/dist/main/lib/types/AnalyzeSchema.d.ts +0 -28
- package/dist/main/lib/types/AnalyzeSchema.d.ts.map +0 -1
- package/dist/main/lib/types/AnalyzeSchema.js +0 -3
- package/dist/main/lib/types/AnalyzeSchema.js.map +0 -1
- package/dist/main/lib/types/AsyncAnalyzeResponse.d.ts +0 -4
- package/dist/main/lib/types/AsyncAnalyzeResponse.d.ts.map +0 -1
- package/dist/main/lib/types/AsyncAnalyzeResponse.js +0 -3
- package/dist/main/lib/types/AsyncAnalyzeResponse.js.map +0 -1
- package/dist/main/lib/types/AsyncPrerecordedResponse.d.ts +0 -4
- package/dist/main/lib/types/AsyncPrerecordedResponse.d.ts.map +0 -1
- package/dist/main/lib/types/AsyncPrerecordedResponse.js +0 -3
- package/dist/main/lib/types/AsyncPrerecordedResponse.js.map +0 -1
- package/dist/main/lib/types/CreateOnPremCredentialsSchema.d.ts +0 -6
- package/dist/main/lib/types/CreateOnPremCredentialsSchema.d.ts.map +0 -1
- package/dist/main/lib/types/CreateOnPremCredentialsSchema.js +0 -3
- package/dist/main/lib/types/CreateOnPremCredentialsSchema.js.map +0 -1
- package/dist/main/lib/types/CreateProjectKeyResponse.d.ts +0 -10
- package/dist/main/lib/types/CreateProjectKeyResponse.d.ts.map +0 -1
- package/dist/main/lib/types/CreateProjectKeyResponse.js +0 -3
- package/dist/main/lib/types/CreateProjectKeyResponse.js.map +0 -1
- package/dist/main/lib/types/CreateProjectKeySchema.d.ts +0 -14
- package/dist/main/lib/types/CreateProjectKeySchema.d.ts.map +0 -1
- package/dist/main/lib/types/CreateProjectKeySchema.js +0 -3
- package/dist/main/lib/types/CreateProjectKeySchema.js.map +0 -1
- package/dist/main/lib/types/DeepgramClientOptions.d.ts +0 -90
- package/dist/main/lib/types/DeepgramClientOptions.d.ts.map +0 -1
- package/dist/main/lib/types/DeepgramClientOptions.js +0 -3
- package/dist/main/lib/types/DeepgramClientOptions.js.map +0 -1
- package/dist/main/lib/types/DeepgramResponse.d.ts +0 -12
- package/dist/main/lib/types/DeepgramResponse.d.ts.map +0 -1
- package/dist/main/lib/types/DeepgramResponse.js +0 -3
- package/dist/main/lib/types/DeepgramResponse.js.map +0 -1
- package/dist/main/lib/types/DeepgramSource.d.ts +0 -14
- package/dist/main/lib/types/DeepgramSource.d.ts.map +0 -1
- package/dist/main/lib/types/DeepgramSource.js +0 -3
- package/dist/main/lib/types/DeepgramSource.js.map +0 -1
- package/dist/main/lib/types/Fetch.d.ts +0 -7
- package/dist/main/lib/types/Fetch.d.ts.map +0 -1
- package/dist/main/lib/types/Fetch.js +0 -3
- package/dist/main/lib/types/Fetch.js.map +0 -1
- package/dist/main/lib/types/FunctionCallResponse.d.ts +0 -18
- package/dist/main/lib/types/FunctionCallResponse.d.ts.map +0 -1
- package/dist/main/lib/types/FunctionCallResponse.js +0 -3
- package/dist/main/lib/types/FunctionCallResponse.js.map +0 -1
- package/dist/main/lib/types/GetModelsResponse.d.ts +0 -24
- package/dist/main/lib/types/GetModelsResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GetModelsResponse.js +0 -3
- package/dist/main/lib/types/GetModelsResponse.js.map +0 -1
- package/dist/main/lib/types/GetModelsSchema.d.ts +0 -4
- package/dist/main/lib/types/GetModelsSchema.d.ts.map +0 -1
- package/dist/main/lib/types/GetModelsSchema.js +0 -3
- package/dist/main/lib/types/GetModelsSchema.js.map +0 -1
- package/dist/main/lib/types/GetProjectBalancesResponse.d.ts +0 -10
- package/dist/main/lib/types/GetProjectBalancesResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectBalancesResponse.js +0 -3
- package/dist/main/lib/types/GetProjectBalancesResponse.js.map +0 -1
- package/dist/main/lib/types/GetProjectInvitesResponse.d.ts +0 -9
- package/dist/main/lib/types/GetProjectInvitesResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectInvitesResponse.js +0 -3
- package/dist/main/lib/types/GetProjectInvitesResponse.js.map +0 -1
- package/dist/main/lib/types/GetProjectKeysResponse.d.ts +0 -22
- package/dist/main/lib/types/GetProjectKeysResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectKeysResponse.js +0 -3
- package/dist/main/lib/types/GetProjectKeysResponse.js.map +0 -1
- package/dist/main/lib/types/GetProjectMemberScopesResponse.d.ts +0 -4
- package/dist/main/lib/types/GetProjectMemberScopesResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectMemberScopesResponse.js +0 -3
- package/dist/main/lib/types/GetProjectMemberScopesResponse.js.map +0 -1
- package/dist/main/lib/types/GetProjectMembersResponse.d.ts +0 -12
- package/dist/main/lib/types/GetProjectMembersResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectMembersResponse.js +0 -3
- package/dist/main/lib/types/GetProjectMembersResponse.js.map +0 -1
- package/dist/main/lib/types/GetProjectResponse.d.ts +0 -6
- package/dist/main/lib/types/GetProjectResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectResponse.js +0 -3
- package/dist/main/lib/types/GetProjectResponse.js.map +0 -1
- package/dist/main/lib/types/GetProjectUsageFieldsResponse.d.ts +0 -15
- package/dist/main/lib/types/GetProjectUsageFieldsResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectUsageFieldsResponse.js +0 -3
- package/dist/main/lib/types/GetProjectUsageFieldsResponse.js.map +0 -1
- package/dist/main/lib/types/GetProjectUsageFieldsSchema.d.ts +0 -5
- package/dist/main/lib/types/GetProjectUsageFieldsSchema.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectUsageFieldsSchema.js +0 -3
- package/dist/main/lib/types/GetProjectUsageFieldsSchema.js.map +0 -1
- package/dist/main/lib/types/GetProjectUsageRequestsResponse.d.ts +0 -49
- package/dist/main/lib/types/GetProjectUsageRequestsResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectUsageRequestsResponse.js +0 -3
- package/dist/main/lib/types/GetProjectUsageRequestsResponse.js.map +0 -1
- package/dist/main/lib/types/GetProjectUsageRequestsSchema.d.ts +0 -7
- package/dist/main/lib/types/GetProjectUsageRequestsSchema.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectUsageRequestsSchema.js +0 -3
- package/dist/main/lib/types/GetProjectUsageRequestsSchema.js.map +0 -1
- package/dist/main/lib/types/GetProjectUsageSummaryResponse.d.ts +0 -18
- package/dist/main/lib/types/GetProjectUsageSummaryResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectUsageSummaryResponse.js +0 -3
- package/dist/main/lib/types/GetProjectUsageSummaryResponse.js.map +0 -1
- package/dist/main/lib/types/GetProjectUsageSummarySchema.d.ts +0 -24
- package/dist/main/lib/types/GetProjectUsageSummarySchema.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectUsageSummarySchema.js +0 -3
- package/dist/main/lib/types/GetProjectUsageSummarySchema.js.map +0 -1
- package/dist/main/lib/types/GetProjectsResponse.d.ts +0 -9
- package/dist/main/lib/types/GetProjectsResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GetProjectsResponse.js +0 -3
- package/dist/main/lib/types/GetProjectsResponse.js.map +0 -1
- package/dist/main/lib/types/GetTokenDetailsResponse.d.ts +0 -4
- package/dist/main/lib/types/GetTokenDetailsResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GetTokenDetailsResponse.js +0 -3
- package/dist/main/lib/types/GetTokenDetailsResponse.js.map +0 -1
- package/dist/main/lib/types/GrantTokenResponse.d.ts +0 -5
- package/dist/main/lib/types/GrantTokenResponse.d.ts.map +0 -1
- package/dist/main/lib/types/GrantTokenResponse.js +0 -3
- package/dist/main/lib/types/GrantTokenResponse.js.map +0 -1
- package/dist/main/lib/types/GrantTokenSchema.d.ts +0 -10
- package/dist/main/lib/types/GrantTokenSchema.d.ts.map +0 -1
- package/dist/main/lib/types/GrantTokenSchema.js +0 -3
- package/dist/main/lib/types/GrantTokenSchema.js.map +0 -1
- package/dist/main/lib/types/ListOnPremCredentialsResponse.d.ts +0 -17
- package/dist/main/lib/types/ListOnPremCredentialsResponse.d.ts.map +0 -1
- package/dist/main/lib/types/ListOnPremCredentialsResponse.js +0 -3
- package/dist/main/lib/types/ListOnPremCredentialsResponse.js.map +0 -1
- package/dist/main/lib/types/LiveConfigOptions.d.ts +0 -7
- package/dist/main/lib/types/LiveConfigOptions.d.ts.map +0 -1
- package/dist/main/lib/types/LiveConfigOptions.js +0 -3
- package/dist/main/lib/types/LiveConfigOptions.js.map +0 -1
- package/dist/main/lib/types/LiveMetadataEvent.d.ts +0 -10
- package/dist/main/lib/types/LiveMetadataEvent.d.ts.map +0 -1
- package/dist/main/lib/types/LiveMetadataEvent.js +0 -3
- package/dist/main/lib/types/LiveMetadataEvent.js.map +0 -1
- package/dist/main/lib/types/LiveTranscriptionEvent.d.ts +0 -35
- package/dist/main/lib/types/LiveTranscriptionEvent.d.ts.map +0 -1
- package/dist/main/lib/types/LiveTranscriptionEvent.js +0 -3
- package/dist/main/lib/types/LiveTranscriptionEvent.js.map +0 -1
- package/dist/main/lib/types/MessageResponse.d.ts +0 -4
- package/dist/main/lib/types/MessageResponse.d.ts.map +0 -1
- package/dist/main/lib/types/MessageResponse.js +0 -3
- package/dist/main/lib/types/MessageResponse.js.map +0 -1
- package/dist/main/lib/types/SendProjectInviteSchema.d.ts +0 -5
- package/dist/main/lib/types/SendProjectInviteSchema.d.ts.map +0 -1
- package/dist/main/lib/types/SendProjectInviteSchema.js +0 -3
- package/dist/main/lib/types/SendProjectInviteSchema.js.map +0 -1
- package/dist/main/lib/types/SpeakSchema.d.ts +0 -25
- package/dist/main/lib/types/SpeakSchema.d.ts.map +0 -1
- package/dist/main/lib/types/SpeakSchema.js +0 -3
- package/dist/main/lib/types/SpeakSchema.js.map +0 -1
- package/dist/main/lib/types/SpeechStartedEvent.d.ts +0 -6
- package/dist/main/lib/types/SpeechStartedEvent.d.ts.map +0 -1
- package/dist/main/lib/types/SpeechStartedEvent.js +0 -3
- package/dist/main/lib/types/SpeechStartedEvent.js.map +0 -1
- package/dist/main/lib/types/SyncAnalyzeResponse.d.ts +0 -79
- package/dist/main/lib/types/SyncAnalyzeResponse.d.ts.map +0 -1
- package/dist/main/lib/types/SyncAnalyzeResponse.js +0 -3
- package/dist/main/lib/types/SyncAnalyzeResponse.js.map +0 -1
- package/dist/main/lib/types/SyncPrerecordedResponse.d.ts +0 -186
- package/dist/main/lib/types/SyncPrerecordedResponse.d.ts.map +0 -1
- package/dist/main/lib/types/SyncPrerecordedResponse.js +0 -3
- package/dist/main/lib/types/SyncPrerecordedResponse.js.map +0 -1
- package/dist/main/lib/types/TranscriptionSchema.d.ts +0 -201
- package/dist/main/lib/types/TranscriptionSchema.d.ts.map +0 -1
- package/dist/main/lib/types/TranscriptionSchema.js +0 -3
- package/dist/main/lib/types/TranscriptionSchema.js.map +0 -1
- package/dist/main/lib/types/UpdateProjectMemberScopeSchema.d.ts +0 -4
- package/dist/main/lib/types/UpdateProjectMemberScopeSchema.d.ts.map +0 -1
- package/dist/main/lib/types/UpdateProjectMemberScopeSchema.js +0 -3
- package/dist/main/lib/types/UpdateProjectMemberScopeSchema.js.map +0 -1
- package/dist/main/lib/types/UpdateProjectSchema.d.ts +0 -5
- package/dist/main/lib/types/UpdateProjectSchema.d.ts.map +0 -1
- package/dist/main/lib/types/UpdateProjectSchema.js +0 -3
- package/dist/main/lib/types/UpdateProjectSchema.js.map +0 -1
- package/dist/main/lib/types/UtteranceEndEvent.d.ts +0 -6
- package/dist/main/lib/types/UtteranceEndEvent.d.ts.map +0 -1
- package/dist/main/lib/types/UtteranceEndEvent.js +0 -3
- package/dist/main/lib/types/UtteranceEndEvent.js.map +0 -1
- package/dist/main/lib/types/VoidResponse.d.ts +0 -10
- package/dist/main/lib/types/VoidResponse.d.ts.map +0 -1
- package/dist/main/lib/types/VoidResponse.js +0 -3
- package/dist/main/lib/types/VoidResponse.js.map +0 -1
- package/dist/main/lib/types/index.d.ts +0 -46
- package/dist/main/lib/types/index.d.ts.map +0 -1
- package/dist/main/lib/types/index.js +0 -62
- package/dist/main/lib/types/index.js.map +0 -1
- package/dist/main/lib/version.d.ts +0 -2
- package/dist/main/lib/version.d.ts.map +0 -1
- package/dist/main/lib/version.js +0 -5
- package/dist/main/lib/version.js.map +0 -1
- package/dist/main/packages/AbstractClient.d.ts +0 -71
- package/dist/main/packages/AbstractClient.d.ts.map +0 -1
- package/dist/main/packages/AbstractClient.js +0 -138
- package/dist/main/packages/AbstractClient.js.map +0 -1
- package/dist/main/packages/AbstractLiveClient.d.ts +0 -277
- package/dist/main/packages/AbstractLiveClient.d.ts.map +0 -1
- package/dist/main/packages/AbstractLiveClient.js +0 -439
- package/dist/main/packages/AbstractLiveClient.js.map +0 -1
- package/dist/main/packages/AbstractRestClient.d.ts +0 -106
- package/dist/main/packages/AbstractRestClient.d.ts.map +0 -1
- package/dist/main/packages/AbstractRestClient.js +0 -186
- package/dist/main/packages/AbstractRestClient.js.map +0 -1
- package/dist/main/packages/AgentLiveClient.d.ts +0 -78
- package/dist/main/packages/AgentLiveClient.d.ts.map +0 -1
- package/dist/main/packages/AgentLiveClient.js +0 -163
- package/dist/main/packages/AgentLiveClient.js.map +0 -1
- package/dist/main/packages/AuthRestClient.d.ts +0 -15
- package/dist/main/packages/AuthRestClient.d.ts.map +0 -1
- package/dist/main/packages/AuthRestClient.js +0 -46
- package/dist/main/packages/AuthRestClient.js.map +0 -1
- package/dist/main/packages/ListenClient.d.ts +0 -26
- package/dist/main/packages/ListenClient.d.ts.map +0 -1
- package/dist/main/packages/ListenClient.js +0 -36
- package/dist/main/packages/ListenClient.js.map +0 -1
- package/dist/main/packages/ListenLiveClient.d.ts +0 -62
- package/dist/main/packages/ListenLiveClient.d.ts.map +0 -1
- package/dist/main/packages/ListenLiveClient.js +0 -130
- package/dist/main/packages/ListenLiveClient.js.map +0 -1
- package/dist/main/packages/ListenRestClient.d.ts +0 -57
- package/dist/main/packages/ListenRestClient.d.ts.map +0 -1
- package/dist/main/packages/ListenRestClient.js +0 -171
- package/dist/main/packages/ListenRestClient.js.map +0 -1
- package/dist/main/packages/ManageRestClient.d.ts +0 -301
- package/dist/main/packages/ManageRestClient.d.ts.map +0 -1
- package/dist/main/packages/ManageRestClient.js +0 -671
- package/dist/main/packages/ManageRestClient.js.map +0 -1
- package/dist/main/packages/ModelsRestClient.d.ts +0 -53
- package/dist/main/packages/ModelsRestClient.d.ts.map +0 -1
- package/dist/main/packages/ModelsRestClient.js +0 -97
- package/dist/main/packages/ModelsRestClient.js.map +0 -1
- package/dist/main/packages/ReadRestClient.d.ts +0 -57
- package/dist/main/packages/ReadRestClient.d.ts.map +0 -1
- package/dist/main/packages/ReadRestClient.js +0 -165
- package/dist/main/packages/ReadRestClient.js.map +0 -1
- package/dist/main/packages/SelfHostedRestClient.d.ts +0 -47
- package/dist/main/packages/SelfHostedRestClient.d.ts.map +0 -1
- package/dist/main/packages/SelfHostedRestClient.js +0 -120
- package/dist/main/packages/SelfHostedRestClient.js.map +0 -1
- package/dist/main/packages/SpeakClient.d.ts +0 -27
- package/dist/main/packages/SpeakClient.d.ts.map +0 -1
- package/dist/main/packages/SpeakClient.js +0 -37
- package/dist/main/packages/SpeakClient.js.map +0 -1
- package/dist/main/packages/SpeakLiveClient.d.ts +0 -69
- package/dist/main/packages/SpeakLiveClient.d.ts.map +0 -1
- package/dist/main/packages/SpeakLiveClient.js +0 -159
- package/dist/main/packages/SpeakLiveClient.js.map +0 -1
- package/dist/main/packages/SpeakRestClient.d.ts +0 -35
- package/dist/main/packages/SpeakRestClient.d.ts.map +0 -1
- package/dist/main/packages/SpeakRestClient.js +0 -78
- package/dist/main/packages/SpeakRestClient.js.map +0 -1
- package/dist/main/packages/index.d.ts +0 -16
- package/dist/main/packages/index.d.ts.map +0 -1
- package/dist/main/packages/index.js +0 -32
- package/dist/main/packages/index.js.map +0 -1
- package/dist/module/DeepgramClient.d.ts +0 -106
- package/dist/module/DeepgramClient.d.ts.map +0 -1
- package/dist/module/DeepgramClient.js +0 -141
- package/dist/module/DeepgramClient.js.map +0 -1
- package/dist/module/index.d.ts +0 -46
- package/dist/module/index.d.ts.map +0 -1
- package/dist/module/index.js +0 -51
- package/dist/module/index.js.map +0 -1
- package/dist/module/lib/constants.d.ts +0 -24
- package/dist/module/lib/constants.d.ts.map +0 -1
- package/dist/module/lib/constants.js +0 -55
- package/dist/module/lib/constants.js.map +0 -1
- package/dist/module/lib/enums/AgentEvents.d.ts +0 -74
- package/dist/module/lib/enums/AgentEvents.d.ts.map +0 -1
- package/dist/module/lib/enums/AgentEvents.js +0 -75
- package/dist/module/lib/enums/AgentEvents.js.map +0 -1
- package/dist/module/lib/enums/LiveConnectionState.d.ts +0 -12
- package/dist/module/lib/enums/LiveConnectionState.d.ts.map +0 -1
- package/dist/module/lib/enums/LiveConnectionState.js +0 -13
- package/dist/module/lib/enums/LiveConnectionState.js.map +0 -1
- package/dist/module/lib/enums/LiveTTSEvents.d.ts +0 -34
- package/dist/module/lib/enums/LiveTTSEvents.d.ts.map +0 -1
- package/dist/module/lib/enums/LiveTTSEvents.js +0 -35
- package/dist/module/lib/enums/LiveTTSEvents.js.map +0 -1
- package/dist/module/lib/enums/LiveTranscriptionEvents.d.ts +0 -32
- package/dist/module/lib/enums/LiveTranscriptionEvents.d.ts.map +0 -1
- package/dist/module/lib/enums/LiveTranscriptionEvents.js +0 -33
- package/dist/module/lib/enums/LiveTranscriptionEvents.js.map +0 -1
- package/dist/module/lib/enums/index.d.ts +0 -5
- package/dist/module/lib/enums/index.d.ts.map +0 -1
- package/dist/module/lib/enums/index.js +0 -5
- package/dist/module/lib/enums/index.js.map +0 -1
- package/dist/module/lib/errors.d.ts +0 -55
- package/dist/module/lib/errors.d.ts.map +0 -1
- package/dist/module/lib/errors.js +0 -71
- package/dist/module/lib/errors.js.map +0 -1
- package/dist/module/lib/fetch.d.ts +0 -34
- package/dist/module/lib/fetch.d.ts.map +0 -1
- package/dist/module/lib/fetch.js +0 -60
- package/dist/module/lib/fetch.js.map +0 -1
- package/dist/module/lib/helpers.d.ts +0 -20
- package/dist/module/lib/helpers.d.ts.map +0 -1
- package/dist/module/lib/helpers.js +0 -135
- package/dist/module/lib/helpers.js.map +0 -1
- package/dist/module/lib/runtime.d.ts +0 -7
- package/dist/module/lib/runtime.d.ts.map +0 -1
- package/dist/module/lib/runtime.js +0 -13
- package/dist/module/lib/runtime.js.map +0 -1
- package/dist/module/lib/types/AgentLiveSchema.d.ts +0 -92
- package/dist/module/lib/types/AgentLiveSchema.d.ts.map +0 -1
- package/dist/module/lib/types/AgentLiveSchema.js +0 -2
- package/dist/module/lib/types/AgentLiveSchema.js.map +0 -1
- package/dist/module/lib/types/AnalyzeSchema.d.ts +0 -28
- package/dist/module/lib/types/AnalyzeSchema.d.ts.map +0 -1
- package/dist/module/lib/types/AnalyzeSchema.js +0 -2
- package/dist/module/lib/types/AnalyzeSchema.js.map +0 -1
- package/dist/module/lib/types/AsyncAnalyzeResponse.d.ts +0 -4
- package/dist/module/lib/types/AsyncAnalyzeResponse.d.ts.map +0 -1
- package/dist/module/lib/types/AsyncAnalyzeResponse.js +0 -2
- package/dist/module/lib/types/AsyncAnalyzeResponse.js.map +0 -1
- package/dist/module/lib/types/AsyncPrerecordedResponse.d.ts +0 -4
- package/dist/module/lib/types/AsyncPrerecordedResponse.d.ts.map +0 -1
- package/dist/module/lib/types/AsyncPrerecordedResponse.js +0 -2
- package/dist/module/lib/types/AsyncPrerecordedResponse.js.map +0 -1
- package/dist/module/lib/types/CreateOnPremCredentialsSchema.d.ts +0 -6
- package/dist/module/lib/types/CreateOnPremCredentialsSchema.d.ts.map +0 -1
- package/dist/module/lib/types/CreateOnPremCredentialsSchema.js +0 -2
- package/dist/module/lib/types/CreateOnPremCredentialsSchema.js.map +0 -1
- package/dist/module/lib/types/CreateProjectKeyResponse.d.ts +0 -10
- package/dist/module/lib/types/CreateProjectKeyResponse.d.ts.map +0 -1
- package/dist/module/lib/types/CreateProjectKeyResponse.js +0 -2
- package/dist/module/lib/types/CreateProjectKeyResponse.js.map +0 -1
- package/dist/module/lib/types/CreateProjectKeySchema.d.ts +0 -14
- package/dist/module/lib/types/CreateProjectKeySchema.d.ts.map +0 -1
- package/dist/module/lib/types/CreateProjectKeySchema.js +0 -2
- package/dist/module/lib/types/CreateProjectKeySchema.js.map +0 -1
- package/dist/module/lib/types/DeepgramClientOptions.d.ts +0 -90
- package/dist/module/lib/types/DeepgramClientOptions.d.ts.map +0 -1
- package/dist/module/lib/types/DeepgramClientOptions.js +0 -2
- package/dist/module/lib/types/DeepgramClientOptions.js.map +0 -1
- package/dist/module/lib/types/DeepgramResponse.d.ts +0 -12
- package/dist/module/lib/types/DeepgramResponse.d.ts.map +0 -1
- package/dist/module/lib/types/DeepgramResponse.js +0 -2
- package/dist/module/lib/types/DeepgramResponse.js.map +0 -1
- package/dist/module/lib/types/DeepgramSource.d.ts +0 -14
- package/dist/module/lib/types/DeepgramSource.d.ts.map +0 -1
- package/dist/module/lib/types/DeepgramSource.js +0 -2
- package/dist/module/lib/types/DeepgramSource.js.map +0 -1
- package/dist/module/lib/types/Fetch.d.ts +0 -7
- package/dist/module/lib/types/Fetch.d.ts.map +0 -1
- package/dist/module/lib/types/Fetch.js +0 -2
- package/dist/module/lib/types/Fetch.js.map +0 -1
- package/dist/module/lib/types/FunctionCallResponse.d.ts +0 -18
- package/dist/module/lib/types/FunctionCallResponse.d.ts.map +0 -1
- package/dist/module/lib/types/FunctionCallResponse.js +0 -2
- package/dist/module/lib/types/FunctionCallResponse.js.map +0 -1
- package/dist/module/lib/types/GetModelsResponse.d.ts +0 -24
- package/dist/module/lib/types/GetModelsResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GetModelsResponse.js +0 -2
- package/dist/module/lib/types/GetModelsResponse.js.map +0 -1
- package/dist/module/lib/types/GetModelsSchema.d.ts +0 -4
- package/dist/module/lib/types/GetModelsSchema.d.ts.map +0 -1
- package/dist/module/lib/types/GetModelsSchema.js +0 -2
- package/dist/module/lib/types/GetModelsSchema.js.map +0 -1
- package/dist/module/lib/types/GetProjectBalancesResponse.d.ts +0 -10
- package/dist/module/lib/types/GetProjectBalancesResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectBalancesResponse.js +0 -2
- package/dist/module/lib/types/GetProjectBalancesResponse.js.map +0 -1
- package/dist/module/lib/types/GetProjectInvitesResponse.d.ts +0 -9
- package/dist/module/lib/types/GetProjectInvitesResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectInvitesResponse.js +0 -2
- package/dist/module/lib/types/GetProjectInvitesResponse.js.map +0 -1
- package/dist/module/lib/types/GetProjectKeysResponse.d.ts +0 -22
- package/dist/module/lib/types/GetProjectKeysResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectKeysResponse.js +0 -2
- package/dist/module/lib/types/GetProjectKeysResponse.js.map +0 -1
- package/dist/module/lib/types/GetProjectMemberScopesResponse.d.ts +0 -4
- package/dist/module/lib/types/GetProjectMemberScopesResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectMemberScopesResponse.js +0 -2
- package/dist/module/lib/types/GetProjectMemberScopesResponse.js.map +0 -1
- package/dist/module/lib/types/GetProjectMembersResponse.d.ts +0 -12
- package/dist/module/lib/types/GetProjectMembersResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectMembersResponse.js +0 -2
- package/dist/module/lib/types/GetProjectMembersResponse.js.map +0 -1
- package/dist/module/lib/types/GetProjectResponse.d.ts +0 -6
- package/dist/module/lib/types/GetProjectResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectResponse.js +0 -2
- package/dist/module/lib/types/GetProjectResponse.js.map +0 -1
- package/dist/module/lib/types/GetProjectUsageFieldsResponse.d.ts +0 -15
- package/dist/module/lib/types/GetProjectUsageFieldsResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectUsageFieldsResponse.js +0 -2
- package/dist/module/lib/types/GetProjectUsageFieldsResponse.js.map +0 -1
- package/dist/module/lib/types/GetProjectUsageFieldsSchema.d.ts +0 -5
- package/dist/module/lib/types/GetProjectUsageFieldsSchema.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectUsageFieldsSchema.js +0 -2
- package/dist/module/lib/types/GetProjectUsageFieldsSchema.js.map +0 -1
- package/dist/module/lib/types/GetProjectUsageRequestsResponse.d.ts +0 -49
- package/dist/module/lib/types/GetProjectUsageRequestsResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectUsageRequestsResponse.js +0 -2
- package/dist/module/lib/types/GetProjectUsageRequestsResponse.js.map +0 -1
- package/dist/module/lib/types/GetProjectUsageRequestsSchema.d.ts +0 -7
- package/dist/module/lib/types/GetProjectUsageRequestsSchema.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectUsageRequestsSchema.js +0 -2
- package/dist/module/lib/types/GetProjectUsageRequestsSchema.js.map +0 -1
- package/dist/module/lib/types/GetProjectUsageSummaryResponse.d.ts +0 -18
- package/dist/module/lib/types/GetProjectUsageSummaryResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectUsageSummaryResponse.js +0 -2
- package/dist/module/lib/types/GetProjectUsageSummaryResponse.js.map +0 -1
- package/dist/module/lib/types/GetProjectUsageSummarySchema.d.ts +0 -24
- package/dist/module/lib/types/GetProjectUsageSummarySchema.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectUsageSummarySchema.js +0 -2
- package/dist/module/lib/types/GetProjectUsageSummarySchema.js.map +0 -1
- package/dist/module/lib/types/GetProjectsResponse.d.ts +0 -9
- package/dist/module/lib/types/GetProjectsResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GetProjectsResponse.js +0 -2
- package/dist/module/lib/types/GetProjectsResponse.js.map +0 -1
- package/dist/module/lib/types/GetTokenDetailsResponse.d.ts +0 -4
- package/dist/module/lib/types/GetTokenDetailsResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GetTokenDetailsResponse.js +0 -2
- package/dist/module/lib/types/GetTokenDetailsResponse.js.map +0 -1
- package/dist/module/lib/types/GrantTokenResponse.d.ts +0 -5
- package/dist/module/lib/types/GrantTokenResponse.d.ts.map +0 -1
- package/dist/module/lib/types/GrantTokenResponse.js +0 -2
- package/dist/module/lib/types/GrantTokenResponse.js.map +0 -1
- package/dist/module/lib/types/GrantTokenSchema.d.ts +0 -10
- package/dist/module/lib/types/GrantTokenSchema.d.ts.map +0 -1
- package/dist/module/lib/types/GrantTokenSchema.js +0 -2
- package/dist/module/lib/types/GrantTokenSchema.js.map +0 -1
- package/dist/module/lib/types/ListOnPremCredentialsResponse.d.ts +0 -17
- package/dist/module/lib/types/ListOnPremCredentialsResponse.d.ts.map +0 -1
- package/dist/module/lib/types/ListOnPremCredentialsResponse.js +0 -2
- package/dist/module/lib/types/ListOnPremCredentialsResponse.js.map +0 -1
- package/dist/module/lib/types/LiveConfigOptions.d.ts +0 -7
- package/dist/module/lib/types/LiveConfigOptions.d.ts.map +0 -1
- package/dist/module/lib/types/LiveConfigOptions.js +0 -2
- package/dist/module/lib/types/LiveConfigOptions.js.map +0 -1
- package/dist/module/lib/types/LiveMetadataEvent.d.ts +0 -10
- package/dist/module/lib/types/LiveMetadataEvent.d.ts.map +0 -1
- package/dist/module/lib/types/LiveMetadataEvent.js +0 -2
- package/dist/module/lib/types/LiveMetadataEvent.js.map +0 -1
- package/dist/module/lib/types/LiveTranscriptionEvent.d.ts +0 -35
- package/dist/module/lib/types/LiveTranscriptionEvent.d.ts.map +0 -1
- package/dist/module/lib/types/LiveTranscriptionEvent.js +0 -2
- package/dist/module/lib/types/LiveTranscriptionEvent.js.map +0 -1
- package/dist/module/lib/types/MessageResponse.d.ts +0 -4
- package/dist/module/lib/types/MessageResponse.d.ts.map +0 -1
- package/dist/module/lib/types/MessageResponse.js +0 -2
- package/dist/module/lib/types/MessageResponse.js.map +0 -1
- package/dist/module/lib/types/SendProjectInviteSchema.d.ts +0 -5
- package/dist/module/lib/types/SendProjectInviteSchema.d.ts.map +0 -1
- package/dist/module/lib/types/SendProjectInviteSchema.js +0 -2
- package/dist/module/lib/types/SendProjectInviteSchema.js.map +0 -1
- package/dist/module/lib/types/SpeakSchema.d.ts +0 -25
- package/dist/module/lib/types/SpeakSchema.d.ts.map +0 -1
- package/dist/module/lib/types/SpeakSchema.js +0 -2
- package/dist/module/lib/types/SpeakSchema.js.map +0 -1
- package/dist/module/lib/types/SpeechStartedEvent.d.ts +0 -6
- package/dist/module/lib/types/SpeechStartedEvent.d.ts.map +0 -1
- package/dist/module/lib/types/SpeechStartedEvent.js +0 -2
- package/dist/module/lib/types/SpeechStartedEvent.js.map +0 -1
- package/dist/module/lib/types/SyncAnalyzeResponse.d.ts +0 -79
- package/dist/module/lib/types/SyncAnalyzeResponse.d.ts.map +0 -1
- package/dist/module/lib/types/SyncAnalyzeResponse.js +0 -2
- package/dist/module/lib/types/SyncAnalyzeResponse.js.map +0 -1
- package/dist/module/lib/types/SyncPrerecordedResponse.d.ts +0 -186
- package/dist/module/lib/types/SyncPrerecordedResponse.d.ts.map +0 -1
- package/dist/module/lib/types/SyncPrerecordedResponse.js +0 -2
- package/dist/module/lib/types/SyncPrerecordedResponse.js.map +0 -1
- package/dist/module/lib/types/TranscriptionSchema.d.ts +0 -201
- package/dist/module/lib/types/TranscriptionSchema.d.ts.map +0 -1
- package/dist/module/lib/types/TranscriptionSchema.js +0 -2
- package/dist/module/lib/types/TranscriptionSchema.js.map +0 -1
- package/dist/module/lib/types/UpdateProjectMemberScopeSchema.d.ts +0 -4
- package/dist/module/lib/types/UpdateProjectMemberScopeSchema.d.ts.map +0 -1
- package/dist/module/lib/types/UpdateProjectMemberScopeSchema.js +0 -2
- package/dist/module/lib/types/UpdateProjectMemberScopeSchema.js.map +0 -1
- package/dist/module/lib/types/UpdateProjectSchema.d.ts +0 -5
- package/dist/module/lib/types/UpdateProjectSchema.d.ts.map +0 -1
- package/dist/module/lib/types/UpdateProjectSchema.js +0 -2
- package/dist/module/lib/types/UpdateProjectSchema.js.map +0 -1
- package/dist/module/lib/types/UtteranceEndEvent.d.ts +0 -6
- package/dist/module/lib/types/UtteranceEndEvent.d.ts.map +0 -1
- package/dist/module/lib/types/UtteranceEndEvent.js +0 -2
- package/dist/module/lib/types/UtteranceEndEvent.js.map +0 -1
- package/dist/module/lib/types/VoidResponse.d.ts +0 -10
- package/dist/module/lib/types/VoidResponse.d.ts.map +0 -1
- package/dist/module/lib/types/VoidResponse.js +0 -2
- package/dist/module/lib/types/VoidResponse.js.map +0 -1
- package/dist/module/lib/types/index.d.ts +0 -46
- package/dist/module/lib/types/index.d.ts.map +0 -1
- package/dist/module/lib/types/index.js +0 -46
- package/dist/module/lib/types/index.js.map +0 -1
- package/dist/module/lib/version.d.ts +0 -2
- package/dist/module/lib/version.d.ts.map +0 -1
- package/dist/module/lib/version.js +0 -2
- package/dist/module/lib/version.js.map +0 -1
- package/dist/module/packages/AbstractClient.d.ts +0 -71
- package/dist/module/packages/AbstractClient.d.ts.map +0 -1
- package/dist/module/packages/AbstractClient.js +0 -133
- package/dist/module/packages/AbstractClient.js.map +0 -1
- package/dist/module/packages/AbstractLiveClient.d.ts +0 -277
- package/dist/module/packages/AbstractLiveClient.d.ts.map +0 -1
- package/dist/module/packages/AbstractLiveClient.js +0 -412
- package/dist/module/packages/AbstractLiveClient.js.map +0 -1
- package/dist/module/packages/AbstractRestClient.d.ts +0 -106
- package/dist/module/packages/AbstractRestClient.d.ts.map +0 -1
- package/dist/module/packages/AbstractRestClient.js +0 -179
- package/dist/module/packages/AbstractRestClient.js.map +0 -1
- package/dist/module/packages/AgentLiveClient.d.ts +0 -78
- package/dist/module/packages/AgentLiveClient.d.ts.map +0 -1
- package/dist/module/packages/AgentLiveClient.js +0 -159
- package/dist/module/packages/AgentLiveClient.js.map +0 -1
- package/dist/module/packages/AuthRestClient.d.ts +0 -15
- package/dist/module/packages/AuthRestClient.d.ts.map +0 -1
- package/dist/module/packages/AuthRestClient.js +0 -42
- package/dist/module/packages/AuthRestClient.js.map +0 -1
- package/dist/module/packages/ListenClient.d.ts +0 -26
- package/dist/module/packages/ListenClient.d.ts.map +0 -1
- package/dist/module/packages/ListenClient.js +0 -32
- package/dist/module/packages/ListenClient.js.map +0 -1
- package/dist/module/packages/ListenLiveClient.d.ts +0 -62
- package/dist/module/packages/ListenLiveClient.d.ts.map +0 -1
- package/dist/module/packages/ListenLiveClient.js +0 -126
- package/dist/module/packages/ListenLiveClient.js.map +0 -1
- package/dist/module/packages/ListenRestClient.d.ts +0 -57
- package/dist/module/packages/ListenRestClient.d.ts.map +0 -1
- package/dist/module/packages/ListenRestClient.js +0 -167
- package/dist/module/packages/ListenRestClient.js.map +0 -1
- package/dist/module/packages/ManageRestClient.d.ts +0 -301
- package/dist/module/packages/ManageRestClient.d.ts.map +0 -1
- package/dist/module/packages/ManageRestClient.js +0 -667
- package/dist/module/packages/ManageRestClient.js.map +0 -1
- package/dist/module/packages/ModelsRestClient.d.ts +0 -53
- package/dist/module/packages/ModelsRestClient.d.ts.map +0 -1
- package/dist/module/packages/ModelsRestClient.js +0 -93
- package/dist/module/packages/ModelsRestClient.js.map +0 -1
- package/dist/module/packages/ReadRestClient.d.ts +0 -57
- package/dist/module/packages/ReadRestClient.d.ts.map +0 -1
- package/dist/module/packages/ReadRestClient.js +0 -161
- package/dist/module/packages/ReadRestClient.js.map +0 -1
- package/dist/module/packages/SelfHostedRestClient.d.ts +0 -47
- package/dist/module/packages/SelfHostedRestClient.d.ts.map +0 -1
- package/dist/module/packages/SelfHostedRestClient.js +0 -116
- package/dist/module/packages/SelfHostedRestClient.js.map +0 -1
- package/dist/module/packages/SpeakClient.d.ts +0 -27
- package/dist/module/packages/SpeakClient.d.ts.map +0 -1
- package/dist/module/packages/SpeakClient.js +0 -33
- package/dist/module/packages/SpeakClient.js.map +0 -1
- package/dist/module/packages/SpeakLiveClient.d.ts +0 -69
- package/dist/module/packages/SpeakLiveClient.d.ts.map +0 -1
- package/dist/module/packages/SpeakLiveClient.js +0 -155
- package/dist/module/packages/SpeakLiveClient.js.map +0 -1
- package/dist/module/packages/SpeakRestClient.d.ts +0 -35
- package/dist/module/packages/SpeakRestClient.d.ts.map +0 -1
- package/dist/module/packages/SpeakRestClient.js +0 -74
- package/dist/module/packages/SpeakRestClient.js.map +0 -1
- package/dist/module/packages/index.d.ts +0 -16
- package/dist/module/packages/index.d.ts.map +0 -1
- package/dist/module/packages/index.js +0 -16
- package/dist/module/packages/index.js.map +0 -1
- package/dist/umd/deepgram.js +0 -1
- package/src/DeepgramClient.ts +0 -167
- package/src/index.ts +0 -68
- package/src/lib/constants.ts +0 -58
- package/src/lib/enums/AgentEvents.ts +0 -74
- package/src/lib/enums/LiveConnectionState.ts +0 -13
- package/src/lib/enums/LiveTTSEvents.ts +0 -36
- package/src/lib/enums/LiveTranscriptionEvents.ts +0 -33
- package/src/lib/enums/index.ts +0 -4
- package/src/lib/errors.ts +0 -102
- package/src/lib/fetch.ts +0 -68
- package/src/lib/helpers.ts +0 -180
- package/src/lib/runtime.ts +0 -20
- package/src/lib/types/AgentLiveSchema.ts +0 -92
- package/src/lib/types/AnalyzeSchema.ts +0 -39
- package/src/lib/types/AsyncAnalyzeResponse.ts +0 -3
- package/src/lib/types/AsyncPrerecordedResponse.ts +0 -3
- package/src/lib/types/CreateOnPremCredentialsSchema.ts +0 -5
- package/src/lib/types/CreateProjectKeyResponse.ts +0 -9
- package/src/lib/types/CreateProjectKeySchema.ts +0 -15
- package/src/lib/types/DeepgramClientOptions.ts +0 -88
- package/src/lib/types/DeepgramResponse.ts +0 -13
- package/src/lib/types/DeepgramSource.ts +0 -15
- package/src/lib/types/Fetch.ts +0 -5
- package/src/lib/types/FunctionCallResponse.ts +0 -17
- package/src/lib/types/GetModelsResponse.ts +0 -24
- package/src/lib/types/GetModelsSchema.ts +0 -3
- package/src/lib/types/GetProjectBalancesResponse.ts +0 -10
- package/src/lib/types/GetProjectInvitesResponse.ts +0 -8
- package/src/lib/types/GetProjectKeysResponse.ts +0 -23
- package/src/lib/types/GetProjectMemberScopesResponse.ts +0 -3
- package/src/lib/types/GetProjectMembersResponse.ts +0 -11
- package/src/lib/types/GetProjectResponse.ts +0 -5
- package/src/lib/types/GetProjectUsageFieldsResponse.ts +0 -14
- package/src/lib/types/GetProjectUsageFieldsSchema.ts +0 -4
- package/src/lib/types/GetProjectUsageRequestsResponse.ts +0 -49
- package/src/lib/types/GetProjectUsageRequestsSchema.ts +0 -6
- package/src/lib/types/GetProjectUsageSummaryResponse.ts +0 -17
- package/src/lib/types/GetProjectUsageSummarySchema.ts +0 -23
- package/src/lib/types/GetProjectsResponse.ts +0 -8
- package/src/lib/types/GetTokenDetailsResponse.ts +0 -3
- package/src/lib/types/GrantTokenResponse.ts +0 -4
- package/src/lib/types/GrantTokenSchema.ts +0 -9
- package/src/lib/types/ListOnPremCredentialsResponse.ts +0 -17
- package/src/lib/types/LiveConfigOptions.ts +0 -7
- package/src/lib/types/LiveMetadataEvent.ts +0 -9
- package/src/lib/types/LiveTranscriptionEvent.ts +0 -34
- package/src/lib/types/MessageResponse.ts +0 -3
- package/src/lib/types/SendProjectInviteSchema.ts +0 -4
- package/src/lib/types/SpeakSchema.ts +0 -29
- package/src/lib/types/SpeechStartedEvent.ts +0 -5
- package/src/lib/types/SyncAnalyzeResponse.ts +0 -91
- package/src/lib/types/SyncPrerecordedResponse.ts +0 -213
- package/src/lib/types/TranscriptionSchema.ts +0 -246
- package/src/lib/types/UpdateProjectMemberScopeSchema.ts +0 -3
- package/src/lib/types/UpdateProjectSchema.ts +0 -4
- package/src/lib/types/UtteranceEndEvent.ts +0 -5
- package/src/lib/types/VoidResponse.ts +0 -11
- package/src/lib/types/index.ts +0 -45
- package/src/lib/version.ts +0 -1
- package/src/packages/AbstractClient.ts +0 -172
- package/src/packages/AbstractLiveClient.ts +0 -542
- package/src/packages/AbstractRestClient.ts +0 -223
- package/src/packages/AgentLiveClient.ts +0 -170
- package/src/packages/AuthRestClient.ts +0 -36
- package/src/packages/ListenClient.ts +0 -35
- package/src/packages/ListenLiveClient.ts +0 -145
- package/src/packages/ListenRestClient.ts +0 -204
- package/src/packages/ManageRestClient.ts +0 -814
- package/src/packages/ModelsRestClient.ts +0 -93
- package/src/packages/ReadRestClient.ts +0 -200
- package/src/packages/SelfHostedRestClient.ts +0 -134
- package/src/packages/SpeakClient.ts +0 -35
- package/src/packages/SpeakLiveClient.ts +0 -171
- package/src/packages/SpeakRestClient.ts +0 -73
- package/src/packages/index.ts +0 -15
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SpeakClient = void 0;
|
|
4
|
-
const AbstractClient_1 = require("./AbstractClient");
|
|
5
|
-
const SpeakLiveClient_1 = require("./SpeakLiveClient");
|
|
6
|
-
const SpeakRestClient_1 = require("./SpeakRestClient");
|
|
7
|
-
/**
|
|
8
|
-
* The `SpeakClient` class extends the `AbstractClient` class and provides access to the "speak" namespace.
|
|
9
|
-
* It exposes two methods:
|
|
10
|
-
*
|
|
11
|
-
* 1. `request()`: Returns a `SpeakRestClient` instance for interacting with the rest speak API.
|
|
12
|
-
* 2. `live(ttsOptions: SpeakSchema = {}, endpoint = ":version/speak")`: Returns a `SpeakLiveClient` instance for interacting with the live speak API, with the provided TTS options and endpoint.
|
|
13
|
-
*/
|
|
14
|
-
class SpeakClient extends AbstractClient_1.AbstractClient {
|
|
15
|
-
constructor() {
|
|
16
|
-
super(...arguments);
|
|
17
|
-
this.namespace = "speak";
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Returns a `SpeakRestClient` instance for interacting with the rest speak API.
|
|
21
|
-
*/
|
|
22
|
-
request(source, options, endpoint = ":version/speak") {
|
|
23
|
-
const client = new SpeakRestClient_1.SpeakRestClient(this.options);
|
|
24
|
-
return client.request(source, options, endpoint);
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* Returns a `SpeakLiveClient` instance for interacting with the live speak API, with the provided TTS options and endpoint.
|
|
28
|
-
* @param {SpeakSchema} [ttsOptions={}] - The TTS options to use for the live speak API.
|
|
29
|
-
* @param {string} [endpoint=":version/speak"] - The endpoint to use for the live speak API.
|
|
30
|
-
* @returns {SpeakLiveClient} - A `SpeakLiveClient` instance for interacting with the live speak API.
|
|
31
|
-
*/
|
|
32
|
-
live(ttsOptions = {}, endpoint = ":version/speak") {
|
|
33
|
-
return new SpeakLiveClient_1.SpeakLiveClient(this.options, ttsOptions, endpoint);
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
exports.SpeakClient = SpeakClient;
|
|
37
|
-
//# sourceMappingURL=SpeakClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SpeakClient.js","sourceRoot":"","sources":["../../../src/packages/SpeakClient.ts"],"names":[],"mappings":";;;AAAA,qDAAkD;AAClD,uDAAoD;AACpD,uDAAoD;AAIpD;;;;;;GAMG;AACH,MAAa,WAAY,SAAQ,+BAAc;IAA/C;;QACS,cAAS,GAAW,OAAO,CAAC;IAoBrC,CAAC;IAlBC;;OAEG;IACI,OAAO,CAAC,MAAkB,EAAE,OAAqB,EAAE,QAAQ,GAAG,gBAAgB;QACnF,MAAM,MAAM,GAAG,IAAI,iCAAe,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAEjD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;IACnD,CAAC;IAED;;;;;OAKG;IACI,IAAI,CAAC,aAA0B,EAAE,EAAE,WAAmB,gBAAgB;QAC3E,OAAO,IAAI,iCAAe,CAAC,IAAI,CAAC,OAAO,EAAE,UAAU,EAAE,QAAQ,CAAC,CAAC;IACjE,CAAC;CACF;AArBD,kCAqBC"}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
/// <reference types="node" />
|
|
3
|
-
import { AbstractLiveClient } from "./AbstractLiveClient";
|
|
4
|
-
import type { SpeakSchema, DeepgramClientOptions } from "../lib/types";
|
|
5
|
-
/**
|
|
6
|
-
* The `SpeakLiveClient` class extends the `AbstractLiveClient` class and provides functionality for setting up and managing a WebSocket connection for live text-to-speech synthesis.
|
|
7
|
-
*
|
|
8
|
-
* The constructor takes in `DeepgramClientOptions` and an optional `SpeakSchema` object, as well as an optional `endpoint` string. It then calls the `connect` method of the parent `AbstractLiveClient` class to establish the WebSocket connection.
|
|
9
|
-
*
|
|
10
|
-
* The `setupConnection` method is responsible for handling the various events that can occur on the WebSocket connection, such as opening, closing, and receiving messages. It sets up event handlers for these events and emits the appropriate events based on the message type.
|
|
11
|
-
*
|
|
12
|
-
* The `configure` method allows you to send additional configuration options to the connected session.
|
|
13
|
-
*
|
|
14
|
-
* The `requestClose` method requests the server to close the connection.
|
|
15
|
-
*/
|
|
16
|
-
export declare class SpeakLiveClient extends AbstractLiveClient {
|
|
17
|
-
namespace: string;
|
|
18
|
-
/**
|
|
19
|
-
* Constructs a new `SpeakLiveClient` instance with the provided options.
|
|
20
|
-
*
|
|
21
|
-
* @param options - The `DeepgramClientOptions` to use for the client connection.
|
|
22
|
-
* @param speakOptions - An optional `SpeakSchema` object containing additional configuration options for the text-to-speech.
|
|
23
|
-
* @param endpoint - An optional string representing the WebSocket endpoint to connect to. Defaults to `:version/speak`.
|
|
24
|
-
*/
|
|
25
|
-
constructor(options: DeepgramClientOptions, speakOptions?: Omit<SpeakSchema, "container">, endpoint?: string);
|
|
26
|
-
/**
|
|
27
|
-
* Sets up the connection event handlers.
|
|
28
|
-
* This method is responsible for handling the various events that can occur on the WebSocket connection, such as opening, closing, and receiving data.
|
|
29
|
-
* - When the connection is opened, it emits the `LiveTTSEvents.Open` event.
|
|
30
|
-
* - When the connection is closed, it emits the `LiveTTSEvents.Close` event.
|
|
31
|
-
* - When an error occurs on the connection, it emits the `LiveTTSEvents.Error` event.
|
|
32
|
-
* - When a message is received, it parses the message and emits the appropriate event based on the message type, such as `LiveTTSEvents.Metadata`, `LiveTTSEvents.Flushed`, and `LiveTTSEvents.Warning`.
|
|
33
|
-
*/
|
|
34
|
-
setupConnection(): void;
|
|
35
|
-
/**
|
|
36
|
-
* Handles text messages received from the WebSocket connection.
|
|
37
|
-
* @param data - The parsed JSON data.
|
|
38
|
-
*/
|
|
39
|
-
protected handleTextMessage(data: any): void;
|
|
40
|
-
/**
|
|
41
|
-
* Handles binary messages received from the WebSocket connection.
|
|
42
|
-
* @param data - The binary data.
|
|
43
|
-
*/
|
|
44
|
-
protected handleBinaryMessage(data: Buffer): void;
|
|
45
|
-
/**
|
|
46
|
-
* Sends a text input message to the server.
|
|
47
|
-
*
|
|
48
|
-
* @param {string} text - The text to convert to speech.
|
|
49
|
-
*/
|
|
50
|
-
sendText(text: string): void;
|
|
51
|
-
/**
|
|
52
|
-
* Requests the server flush the current buffer and return generated audio.
|
|
53
|
-
*/
|
|
54
|
-
flush(): void;
|
|
55
|
-
/**
|
|
56
|
-
* Requests the server clear the current buffer.
|
|
57
|
-
*/
|
|
58
|
-
clear(): void;
|
|
59
|
-
/**
|
|
60
|
-
* Requests the server close the connection.
|
|
61
|
-
*/
|
|
62
|
-
requestClose(): void;
|
|
63
|
-
/**
|
|
64
|
-
* Handles incoming messages from the WebSocket connection.
|
|
65
|
-
* @param event - The MessageEvent object representing the received message.
|
|
66
|
-
*/
|
|
67
|
-
protected handleMessage(event: MessageEvent): void;
|
|
68
|
-
}
|
|
69
|
-
//# sourceMappingURL=SpeakLiveClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SpeakLiveClient.d.ts","sourceRoot":"","sources":["../../../src/packages/SpeakLiveClient.ts"],"names":[],"mappings":";;AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAEvE;;;;;;;;;;GAUG;AACH,qBAAa,eAAgB,SAAQ,kBAAkB;IAC9C,SAAS,EAAE,MAAM,CAAW;IAEnC;;;;;;OAMG;gBAED,OAAO,EAAE,qBAAqB,EAC9B,YAAY,GAAE,IAAI,CAAC,WAAW,EAAE,WAAW,CAAM,EACjD,QAAQ,GAAE,MAAyB;IAOrC;;;;;;;OAOG;IACI,eAAe,IAAI,IAAI;IAgB9B;;;OAGG;IACH,SAAS,CAAC,iBAAiB,CAAC,IAAI,EAAE,GAAG,GAAG,IAAI;IAY5C;;;OAGG;IACH,SAAS,CAAC,mBAAmB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAIjD;;;;OAIG;IACI,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IASnC;;OAEG;IACI,KAAK,IAAI,IAAI;IAQpB;;OAEG;IACI,KAAK,IAAI,IAAI;IAQpB;;OAEG;IACI,YAAY,IAAI,IAAI;IAQ3B;;;OAGG;IACH,SAAS,CAAC,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;CAoCnD"}
|
|
@@ -1,159 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SpeakLiveClient = void 0;
|
|
4
|
-
const AbstractLiveClient_1 = require("./AbstractLiveClient");
|
|
5
|
-
const enums_1 = require("../lib/enums");
|
|
6
|
-
/**
|
|
7
|
-
* The `SpeakLiveClient` class extends the `AbstractLiveClient` class and provides functionality for setting up and managing a WebSocket connection for live text-to-speech synthesis.
|
|
8
|
-
*
|
|
9
|
-
* The constructor takes in `DeepgramClientOptions` and an optional `SpeakSchema` object, as well as an optional `endpoint` string. It then calls the `connect` method of the parent `AbstractLiveClient` class to establish the WebSocket connection.
|
|
10
|
-
*
|
|
11
|
-
* The `setupConnection` method is responsible for handling the various events that can occur on the WebSocket connection, such as opening, closing, and receiving messages. It sets up event handlers for these events and emits the appropriate events based on the message type.
|
|
12
|
-
*
|
|
13
|
-
* The `configure` method allows you to send additional configuration options to the connected session.
|
|
14
|
-
*
|
|
15
|
-
* The `requestClose` method requests the server to close the connection.
|
|
16
|
-
*/
|
|
17
|
-
class SpeakLiveClient extends AbstractLiveClient_1.AbstractLiveClient {
|
|
18
|
-
/**
|
|
19
|
-
* Constructs a new `SpeakLiveClient` instance with the provided options.
|
|
20
|
-
*
|
|
21
|
-
* @param options - The `DeepgramClientOptions` to use for the client connection.
|
|
22
|
-
* @param speakOptions - An optional `SpeakSchema` object containing additional configuration options for the text-to-speech.
|
|
23
|
-
* @param endpoint - An optional string representing the WebSocket endpoint to connect to. Defaults to `:version/speak`.
|
|
24
|
-
*/
|
|
25
|
-
constructor(options, speakOptions = {}, endpoint = ":version/speak") {
|
|
26
|
-
super(options);
|
|
27
|
-
this.namespace = "speak";
|
|
28
|
-
this.connect(speakOptions, endpoint);
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* Sets up the connection event handlers.
|
|
32
|
-
* This method is responsible for handling the various events that can occur on the WebSocket connection, such as opening, closing, and receiving data.
|
|
33
|
-
* - When the connection is opened, it emits the `LiveTTSEvents.Open` event.
|
|
34
|
-
* - When the connection is closed, it emits the `LiveTTSEvents.Close` event.
|
|
35
|
-
* - When an error occurs on the connection, it emits the `LiveTTSEvents.Error` event.
|
|
36
|
-
* - When a message is received, it parses the message and emits the appropriate event based on the message type, such as `LiveTTSEvents.Metadata`, `LiveTTSEvents.Flushed`, and `LiveTTSEvents.Warning`.
|
|
37
|
-
*/
|
|
38
|
-
setupConnection() {
|
|
39
|
-
// Set up standard connection events (open, close, error) using abstracted method
|
|
40
|
-
this.setupConnectionEvents({
|
|
41
|
-
Open: enums_1.LiveTTSEvents.Open,
|
|
42
|
-
Close: enums_1.LiveTTSEvents.Close,
|
|
43
|
-
Error: enums_1.LiveTTSEvents.Error,
|
|
44
|
-
});
|
|
45
|
-
// Set up message handling specific to text-to-speech
|
|
46
|
-
if (this.conn) {
|
|
47
|
-
this.conn.onmessage = (event) => {
|
|
48
|
-
this.handleMessage(event);
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
/**
|
|
53
|
-
* Handles text messages received from the WebSocket connection.
|
|
54
|
-
* @param data - The parsed JSON data.
|
|
55
|
-
*/
|
|
56
|
-
handleTextMessage(data) {
|
|
57
|
-
if (data.type === enums_1.LiveTTSEvents.Metadata) {
|
|
58
|
-
this.emit(enums_1.LiveTTSEvents.Metadata, data);
|
|
59
|
-
}
|
|
60
|
-
else if (data.type === enums_1.LiveTTSEvents.Flushed) {
|
|
61
|
-
this.emit(enums_1.LiveTTSEvents.Flushed, data);
|
|
62
|
-
}
|
|
63
|
-
else if (data.type === enums_1.LiveTTSEvents.Warning) {
|
|
64
|
-
this.emit(enums_1.LiveTTSEvents.Warning, data);
|
|
65
|
-
}
|
|
66
|
-
else {
|
|
67
|
-
this.emit(enums_1.LiveTTSEvents.Unhandled, data);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
/**
|
|
71
|
-
* Handles binary messages received from the WebSocket connection.
|
|
72
|
-
* @param data - The binary data.
|
|
73
|
-
*/
|
|
74
|
-
handleBinaryMessage(data) {
|
|
75
|
-
this.emit(enums_1.LiveTTSEvents.Audio, data);
|
|
76
|
-
}
|
|
77
|
-
/**
|
|
78
|
-
* Sends a text input message to the server.
|
|
79
|
-
*
|
|
80
|
-
* @param {string} text - The text to convert to speech.
|
|
81
|
-
*/
|
|
82
|
-
sendText(text) {
|
|
83
|
-
this.send(JSON.stringify({
|
|
84
|
-
type: "Speak",
|
|
85
|
-
text,
|
|
86
|
-
}));
|
|
87
|
-
}
|
|
88
|
-
/**
|
|
89
|
-
* Requests the server flush the current buffer and return generated audio.
|
|
90
|
-
*/
|
|
91
|
-
flush() {
|
|
92
|
-
this.send(JSON.stringify({
|
|
93
|
-
type: "Flush",
|
|
94
|
-
}));
|
|
95
|
-
}
|
|
96
|
-
/**
|
|
97
|
-
* Requests the server clear the current buffer.
|
|
98
|
-
*/
|
|
99
|
-
clear() {
|
|
100
|
-
this.send(JSON.stringify({
|
|
101
|
-
type: "Clear",
|
|
102
|
-
}));
|
|
103
|
-
}
|
|
104
|
-
/**
|
|
105
|
-
* Requests the server close the connection.
|
|
106
|
-
*/
|
|
107
|
-
requestClose() {
|
|
108
|
-
this.send(JSON.stringify({
|
|
109
|
-
type: "Close",
|
|
110
|
-
}));
|
|
111
|
-
}
|
|
112
|
-
/**
|
|
113
|
-
* Handles incoming messages from the WebSocket connection.
|
|
114
|
-
* @param event - The MessageEvent object representing the received message.
|
|
115
|
-
*/
|
|
116
|
-
handleMessage(event) {
|
|
117
|
-
var _a, _b, _c, _d, _e, _f;
|
|
118
|
-
if (typeof event.data === "string") {
|
|
119
|
-
try {
|
|
120
|
-
const data = JSON.parse(event.data);
|
|
121
|
-
this.handleTextMessage(data);
|
|
122
|
-
}
|
|
123
|
-
catch (error) {
|
|
124
|
-
this.emit(enums_1.LiveTTSEvents.Error, {
|
|
125
|
-
event,
|
|
126
|
-
message: "Unable to parse `data` as JSON.",
|
|
127
|
-
error,
|
|
128
|
-
url: (_a = this.conn) === null || _a === void 0 ? void 0 : _a.url,
|
|
129
|
-
readyState: (_b = this.conn) === null || _b === void 0 ? void 0 : _b.readyState,
|
|
130
|
-
data: ((_c = event.data) === null || _c === void 0 ? void 0 : _c.toString().substring(0, 200)) +
|
|
131
|
-
(((_d = event.data) === null || _d === void 0 ? void 0 : _d.toString().length) > 200 ? "..." : ""),
|
|
132
|
-
});
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
else if (event.data instanceof Blob) {
|
|
136
|
-
event.data.arrayBuffer().then((buffer) => {
|
|
137
|
-
this.handleBinaryMessage(Buffer.from(buffer));
|
|
138
|
-
});
|
|
139
|
-
}
|
|
140
|
-
else if (event.data instanceof ArrayBuffer) {
|
|
141
|
-
this.handleBinaryMessage(Buffer.from(event.data));
|
|
142
|
-
}
|
|
143
|
-
else if (Buffer.isBuffer(event.data)) {
|
|
144
|
-
this.handleBinaryMessage(event.data);
|
|
145
|
-
}
|
|
146
|
-
else {
|
|
147
|
-
console.log("Received unknown data type", event.data);
|
|
148
|
-
this.emit(enums_1.LiveTTSEvents.Error, {
|
|
149
|
-
event,
|
|
150
|
-
message: "Received unknown data type.",
|
|
151
|
-
url: (_e = this.conn) === null || _e === void 0 ? void 0 : _e.url,
|
|
152
|
-
readyState: (_f = this.conn) === null || _f === void 0 ? void 0 : _f.readyState,
|
|
153
|
-
dataType: typeof event.data,
|
|
154
|
-
});
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
exports.SpeakLiveClient = SpeakLiveClient;
|
|
159
|
-
//# sourceMappingURL=SpeakLiveClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SpeakLiveClient.js","sourceRoot":"","sources":["../../../src/packages/SpeakLiveClient.ts"],"names":[],"mappings":";;;AAAA,6DAA0D;AAC1D,wCAA6C;AAG7C;;;;;;;;;;GAUG;AACH,MAAa,eAAgB,SAAQ,uCAAkB;IAGrD;;;;;;OAMG;IACH,YACE,OAA8B,EAC9B,eAA+C,EAAE,EACjD,WAAmB,gBAAgB;QAEnC,KAAK,CAAC,OAAO,CAAC,CAAC;QAdV,cAAS,GAAW,OAAO,CAAC;QAgBjC,IAAI,CAAC,OAAO,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;IACvC,CAAC;IAED;;;;;;;OAOG;IACI,eAAe;QACpB,iFAAiF;QACjF,IAAI,CAAC,qBAAqB,CAAC;YACzB,IAAI,EAAE,qBAAa,CAAC,IAAI;YACxB,KAAK,EAAE,qBAAa,CAAC,KAAK;YAC1B,KAAK,EAAE,qBAAa,CAAC,KAAK;SAC3B,CAAC,CAAC;QAEH,qDAAqD;QACrD,IAAI,IAAI,CAAC,IAAI,EAAE;YACb,IAAI,CAAC,IAAI,CAAC,SAAS,GAAG,CAAC,KAAmB,EAAE,EAAE;gBAC5C,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;YAC5B,CAAC,CAAC;SACH;IACH,CAAC;IAED;;;OAGG;IACO,iBAAiB,CAAC,IAAS;QACnC,IAAI,IAAI,CAAC,IAAI,KAAK,qBAAa,CAAC,QAAQ,EAAE;YACxC,IAAI,CAAC,IAAI,CAAC,qBAAa,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;SACzC;aAAM,IAAI,IAAI,CAAC,IAAI,KAAK,qBAAa,CAAC,OAAO,EAAE;YAC9C,IAAI,CAAC,IAAI,CAAC,qBAAa,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;SACxC;aAAM,IAAI,IAAI,CAAC,IAAI,KAAK,qBAAa,CAAC,OAAO,EAAE;YAC9C,IAAI,CAAC,IAAI,CAAC,qBAAa,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;SACxC;aAAM;YACL,IAAI,CAAC,IAAI,CAAC,qBAAa,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;SAC1C;IACH,CAAC;IAED;;;OAGG;IACO,mBAAmB,CAAC,IAAY;QACxC,IAAI,CAAC,IAAI,CAAC,qBAAa,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;IACvC,CAAC;IAED;;;;OAIG;IACI,QAAQ,CAAC,IAAY;QAC1B,IAAI,CAAC,IAAI,CACP,IAAI,CAAC,SAAS,CAAC;YACb,IAAI,EAAE,OAAO;YACb,IAAI;SACL,CAAC,CACH,CAAC;IACJ,CAAC;IAED;;OAEG;IACI,KAAK;QACV,IAAI,CAAC,IAAI,CACP,IAAI,CAAC,SAAS,CAAC;YACb,IAAI,EAAE,OAAO;SACd,CAAC,CACH,CAAC;IACJ,CAAC;IAED;;OAEG;IACI,KAAK;QACV,IAAI,CAAC,IAAI,CACP,IAAI,CAAC,SAAS,CAAC;YACb,IAAI,EAAE,OAAO;SACd,CAAC,CACH,CAAC;IACJ,CAAC;IAED;;OAEG;IACI,YAAY;QACjB,IAAI,CAAC,IAAI,CACP,IAAI,CAAC,SAAS,CAAC;YACb,IAAI,EAAE,OAAO;SACd,CAAC,CACH,CAAC;IACJ,CAAC;IAED;;;OAGG;IACO,aAAa,CAAC,KAAmB;;QACzC,IAAI,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ,EAAE;YAClC,IAAI;gBACF,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;gBACpC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;aAC9B;YAAC,OAAO,KAAK,EAAE;gBACd,IAAI,CAAC,IAAI,CAAC,qBAAa,CAAC,KAAK,EAAE;oBAC7B,KAAK;oBACL,OAAO,EAAE,iCAAiC;oBAC1C,KAAK;oBACL,GAAG,EAAE,MAAA,IAAI,CAAC,IAAI,0CAAE,GAAG;oBACnB,UAAU,EAAE,MAAA,IAAI,CAAC,IAAI,0CAAE,UAAU;oBACjC,IAAI,EACF,CAAA,MAAA,KAAK,CAAC,IAAI,0CAAE,QAAQ,GAAG,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC;wBACxC,CAAC,CAAA,MAAA,KAAK,CAAC,IAAI,0CAAE,QAAQ,GAAG,MAAM,IAAG,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC;iBACrD,CAAC,CAAC;aACJ;SACF;aAAM,IAAI,KAAK,CAAC,IAAI,YAAY,IAAI,EAAE;YACrC,KAAK,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,EAAE;gBACvC,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YAChD,CAAC,CAAC,CAAC;SACJ;aAAM,IAAI,KAAK,CAAC,IAAI,YAAY,WAAW,EAAE;YAC5C,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC;SACnD;aAAM,IAAI,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE;YACtC,IAAI,CAAC,mBAAmB,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;SACtC;aAAM;YACL,OAAO,CAAC,GAAG,CAAC,4BAA4B,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;YACtD,IAAI,CAAC,IAAI,CAAC,qBAAa,CAAC,KAAK,EAAE;gBAC7B,KAAK;gBACL,OAAO,EAAE,6BAA6B;gBACtC,GAAG,EAAE,MAAA,IAAI,CAAC,IAAI,0CAAE,GAAG;gBACnB,UAAU,EAAE,MAAA,IAAI,CAAC,IAAI,0CAAE,UAAU;gBACjC,QAAQ,EAAE,OAAO,KAAK,CAAC,IAAI;aAC5B,CAAC,CAAC;SACJ;IACH,CAAC;CACF;AA3JD,0CA2JC"}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { SpeakSchema, TextSource } from "../lib/types";
|
|
2
|
-
import { AbstractRestClient } from "./AbstractRestClient";
|
|
3
|
-
/**
|
|
4
|
-
* Provides a client for interacting with the Deepgram Text-to-Speech API.
|
|
5
|
-
*/
|
|
6
|
-
export declare class SpeakRestClient extends AbstractRestClient {
|
|
7
|
-
namespace: string;
|
|
8
|
-
result: undefined | Response;
|
|
9
|
-
/**
|
|
10
|
-
* Sends a request to the Deepgram Text-to-Speech API to generate audio from the provided text source.
|
|
11
|
-
*
|
|
12
|
-
* @param source - The text source to be converted to audio.
|
|
13
|
-
* @param options - Optional configuration options for the text-to-speech request.
|
|
14
|
-
* @param endpoint - The API endpoint to use for the request. Defaults to ":version/speak".
|
|
15
|
-
* @returns A promise that resolves to the SpeakRestClient instance, which can be used to retrieve the response headers and body.
|
|
16
|
-
* @throws {DeepgramError} If the text source type is unknown.
|
|
17
|
-
* @throws {DeepgramUnknownError} If the request was made before a previous request completed.
|
|
18
|
-
* @see https://developers.deepgram.com/reference/text-to-speech-api
|
|
19
|
-
*/
|
|
20
|
-
request(source: TextSource, options?: SpeakSchema, endpoint?: string): Promise<SpeakRestClient>;
|
|
21
|
-
/**
|
|
22
|
-
* Retrieves the response body as a readable stream.
|
|
23
|
-
*
|
|
24
|
-
* @returns A promise that resolves to the response body as a readable stream, or `null` if no request has been made yet.
|
|
25
|
-
* @throws {DeepgramUnknownError} If a request has not been made yet.
|
|
26
|
-
*/
|
|
27
|
-
getStream(): Promise<ReadableStream<Uint8Array> | null>;
|
|
28
|
-
/**
|
|
29
|
-
* Retrieves the response headers from the previous request.
|
|
30
|
-
*
|
|
31
|
-
* @returns A promise that resolves to the response headers, or throws a `DeepgramUnknownError` if no request has been made yet.
|
|
32
|
-
*/
|
|
33
|
-
getHeaders(): Promise<Headers>;
|
|
34
|
-
}
|
|
35
|
-
//# sourceMappingURL=SpeakRestClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SpeakRestClient.d.ts","sourceRoot":"","sources":["../../../src/packages/SpeakRestClient.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AACvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D;;GAEG;AACH,qBAAa,eAAgB,SAAQ,kBAAkB;IAC9C,SAAS,EAAE,MAAM,CAAW;IAC5B,MAAM,EAAE,SAAS,GAAG,QAAQ,CAAC;IAEpC;;;;;;;;;;OAUG;IACG,OAAO,CACX,MAAM,EAAE,UAAU,EAClB,OAAO,CAAC,EAAE,WAAW,EACrB,QAAQ,SAAmB,GAC1B,OAAO,CAAC,eAAe,CAAC;IAqB3B;;;;;OAKG;IACG,SAAS,IAAI,OAAO,CAAC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;IAO7D;;;;OAIG;IACG,UAAU,IAAI,OAAO,CAAC,OAAO,CAAC;CAMrC"}
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.SpeakRestClient = void 0;
|
|
13
|
-
const errors_1 = require("../lib/errors");
|
|
14
|
-
const helpers_1 = require("../lib/helpers");
|
|
15
|
-
const AbstractRestClient_1 = require("./AbstractRestClient");
|
|
16
|
-
/**
|
|
17
|
-
* Provides a client for interacting with the Deepgram Text-to-Speech API.
|
|
18
|
-
*/
|
|
19
|
-
class SpeakRestClient extends AbstractRestClient_1.AbstractRestClient {
|
|
20
|
-
constructor() {
|
|
21
|
-
super(...arguments);
|
|
22
|
-
this.namespace = "speak";
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* Sends a request to the Deepgram Text-to-Speech API to generate audio from the provided text source.
|
|
26
|
-
*
|
|
27
|
-
* @param source - The text source to be converted to audio.
|
|
28
|
-
* @param options - Optional configuration options for the text-to-speech request.
|
|
29
|
-
* @param endpoint - The API endpoint to use for the request. Defaults to ":version/speak".
|
|
30
|
-
* @returns A promise that resolves to the SpeakRestClient instance, which can be used to retrieve the response headers and body.
|
|
31
|
-
* @throws {DeepgramError} If the text source type is unknown.
|
|
32
|
-
* @throws {DeepgramUnknownError} If the request was made before a previous request completed.
|
|
33
|
-
* @see https://developers.deepgram.com/reference/text-to-speech-api
|
|
34
|
-
*/
|
|
35
|
-
request(source, options, endpoint = ":version/speak") {
|
|
36
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
37
|
-
let body;
|
|
38
|
-
if ((0, helpers_1.isTextSource)(source)) {
|
|
39
|
-
body = JSON.stringify(source);
|
|
40
|
-
}
|
|
41
|
-
else {
|
|
42
|
-
throw new errors_1.DeepgramError("Unknown transcription source type");
|
|
43
|
-
}
|
|
44
|
-
const requestUrl = this.getRequestUrl(endpoint, {}, Object.assign({ model: "aura-2-thalia-en" }, options));
|
|
45
|
-
this.result = yield this.post(requestUrl, body, {
|
|
46
|
-
headers: { Accept: "audio/*", "Content-Type": "application/json" },
|
|
47
|
-
});
|
|
48
|
-
return this;
|
|
49
|
-
});
|
|
50
|
-
}
|
|
51
|
-
/**
|
|
52
|
-
* Retrieves the response body as a readable stream.
|
|
53
|
-
*
|
|
54
|
-
* @returns A promise that resolves to the response body as a readable stream, or `null` if no request has been made yet.
|
|
55
|
-
* @throws {DeepgramUnknownError} If a request has not been made yet.
|
|
56
|
-
*/
|
|
57
|
-
getStream() {
|
|
58
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
59
|
-
if (!this.result)
|
|
60
|
-
throw new errors_1.DeepgramUnknownError("Tried to get stream before making request", "");
|
|
61
|
-
return this.result.body;
|
|
62
|
-
});
|
|
63
|
-
}
|
|
64
|
-
/**
|
|
65
|
-
* Retrieves the response headers from the previous request.
|
|
66
|
-
*
|
|
67
|
-
* @returns A promise that resolves to the response headers, or throws a `DeepgramUnknownError` if no request has been made yet.
|
|
68
|
-
*/
|
|
69
|
-
getHeaders() {
|
|
70
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
71
|
-
if (!this.result)
|
|
72
|
-
throw new errors_1.DeepgramUnknownError("Tried to get headers before making request", "");
|
|
73
|
-
return this.result.headers;
|
|
74
|
-
});
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
exports.SpeakRestClient = SpeakRestClient;
|
|
78
|
-
//# sourceMappingURL=SpeakRestClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SpeakRestClient.js","sourceRoot":"","sources":["../../../src/packages/SpeakRestClient.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAAoE;AACpE,4CAA8C;AAE9C,6DAA0D;AAE1D;;GAEG;AACH,MAAa,eAAgB,SAAQ,uCAAkB;IAAvD;;QACS,cAAS,GAAW,OAAO,CAAC;IA+DrC,CAAC;IA5DC;;;;;;;;;;OAUG;IACG,OAAO,CACX,MAAkB,EAClB,OAAqB,EACrB,QAAQ,GAAG,gBAAgB;;YAE3B,IAAI,IAAI,CAAC;YAET,IAAI,IAAA,sBAAY,EAAC,MAAM,CAAC,EAAE;gBACxB,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;aAC/B;iBAAM;gBACL,MAAM,IAAI,sBAAa,CAAC,mCAAmC,CAAC,CAAC;aAC9D;YAED,MAAM,UAAU,GAAG,IAAI,CAAC,aAAa,CACnC,QAAQ,EACR,EAAE,gBACG,EAAE,KAAK,EAAE,kBAAkB,EAAE,EAAK,OAAO,EAC/C,CAAC;YACF,IAAI,CAAC,MAAM,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,EAAE;gBAC9C,OAAO,EAAE,EAAE,MAAM,EAAE,SAAS,EAAE,cAAc,EAAE,kBAAkB,EAAE;aACnE,CAAC,CAAC;YAEH,OAAO,IAAI,CAAC;QACd,CAAC;KAAA;IAED;;;;;OAKG;IACG,SAAS;;YACb,IAAI,CAAC,IAAI,CAAC,MAAM;gBACd,MAAM,IAAI,6BAAoB,CAAC,2CAA2C,EAAE,EAAE,CAAC,CAAC;YAElF,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC;QAC1B,CAAC;KAAA;IAED;;;;OAIG;IACG,UAAU;;YACd,IAAI,CAAC,IAAI,CAAC,MAAM;gBACd,MAAM,IAAI,6BAAoB,CAAC,4CAA4C,EAAE,EAAE,CAAC,CAAC;YAEnF,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;QAC7B,CAAC;KAAA;CACF;AAhED,0CAgEC"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export * from "./AbstractClient";
|
|
2
|
-
export * from "./AbstractLiveClient";
|
|
3
|
-
export * from "./AbstractRestClient";
|
|
4
|
-
export * from "./AgentLiveClient";
|
|
5
|
-
export * from "./AuthRestClient";
|
|
6
|
-
export * from "./ListenClient";
|
|
7
|
-
export * from "./ListenLiveClient";
|
|
8
|
-
export * from "./ListenRestClient";
|
|
9
|
-
export * from "./ManageRestClient";
|
|
10
|
-
export * from "./ModelsRestClient";
|
|
11
|
-
export * from "./ReadRestClient";
|
|
12
|
-
export * from "./SelfHostedRestClient";
|
|
13
|
-
export * from "./SpeakClient";
|
|
14
|
-
export * from "./SpeakLiveClient";
|
|
15
|
-
export * from "./SpeakRestClient";
|
|
16
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/packages/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC"}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./AbstractClient"), exports);
|
|
18
|
-
__exportStar(require("./AbstractLiveClient"), exports);
|
|
19
|
-
__exportStar(require("./AbstractRestClient"), exports);
|
|
20
|
-
__exportStar(require("./AgentLiveClient"), exports);
|
|
21
|
-
__exportStar(require("./AuthRestClient"), exports);
|
|
22
|
-
__exportStar(require("./ListenClient"), exports);
|
|
23
|
-
__exportStar(require("./ListenLiveClient"), exports);
|
|
24
|
-
__exportStar(require("./ListenRestClient"), exports);
|
|
25
|
-
__exportStar(require("./ManageRestClient"), exports);
|
|
26
|
-
__exportStar(require("./ModelsRestClient"), exports);
|
|
27
|
-
__exportStar(require("./ReadRestClient"), exports);
|
|
28
|
-
__exportStar(require("./SelfHostedRestClient"), exports);
|
|
29
|
-
__exportStar(require("./SpeakClient"), exports);
|
|
30
|
-
__exportStar(require("./SpeakLiveClient"), exports);
|
|
31
|
-
__exportStar(require("./SpeakRestClient"), exports);
|
|
32
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/packages/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,uDAAqC;AACrC,uDAAqC;AACrC,oDAAkC;AAClC,mDAAiC;AACjC,iDAA+B;AAC/B,qDAAmC;AACnC,qDAAmC;AACnC,qDAAmC;AACnC,qDAAmC;AACnC,mDAAiC;AACjC,yDAAuC;AACvC,gDAA8B;AAC9B,oDAAkC;AAClC,oDAAkC"}
|
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
import { AbstractClient, AgentLiveClient, AuthRestClient, ListenClient, ManageClient, ReadClient, OnPremClient, SelfHostedRestClient, SpeakClient, ModelsRestClient } from "./packages";
|
|
2
|
-
/**
|
|
3
|
-
* The DeepgramClient class provides access to various Deepgram API clients, including ListenClient, ManageClient, SelfHostedRestClient, ReadClient, and SpeakClient.
|
|
4
|
-
*
|
|
5
|
-
* @see https://github.com/deepgram/deepgram-js-sdk
|
|
6
|
-
*/
|
|
7
|
-
export default class DeepgramClient extends AbstractClient {
|
|
8
|
-
/**
|
|
9
|
-
* Returns a new instance of the AuthRestClient, which provides access to the Deepgram API's temporary token endpoints.
|
|
10
|
-
*
|
|
11
|
-
* @returns {AuthRestClient} A new instance of the AuthRestClient.
|
|
12
|
-
* @see https://developers.deepgram.com/reference/token-based-auth-api/grant-token
|
|
13
|
-
*/
|
|
14
|
-
get auth(): AuthRestClient;
|
|
15
|
-
/**
|
|
16
|
-
* Returns a new instance of the ListenClient, which provides access to the Deepgram API's listening functionality.
|
|
17
|
-
*
|
|
18
|
-
* @returns {ListenClient} A new instance of the ListenClient.
|
|
19
|
-
*/
|
|
20
|
-
get listen(): ListenClient;
|
|
21
|
-
/**
|
|
22
|
-
* Returns a new instance of the ManageClient, which provides access to the Deepgram API's management functionality.
|
|
23
|
-
*
|
|
24
|
-
* @returns {ManageClient} A new instance of the ManageClient.
|
|
25
|
-
*/
|
|
26
|
-
get manage(): ManageClient;
|
|
27
|
-
/**
|
|
28
|
-
* Returns a new instance of the ModelsRestClient, which provides access to the Deepgram API's model functionality.
|
|
29
|
-
*
|
|
30
|
-
* @returns {ModelsRestClient} A new instance of the ModelsRestClient.
|
|
31
|
-
*/
|
|
32
|
-
get models(): ModelsRestClient;
|
|
33
|
-
/**
|
|
34
|
-
* Returns a new instance of the SelfHostedRestClient, which provides access to the Deepgram API's self-hosted functionality.
|
|
35
|
-
*
|
|
36
|
-
* @returns {OnPremClient} A new instance of the SelfHostedRestClient named as OnPremClient.
|
|
37
|
-
* @deprecated use selfhosted() instead
|
|
38
|
-
*/
|
|
39
|
-
get onprem(): OnPremClient;
|
|
40
|
-
/**
|
|
41
|
-
* Returns a new instance of the SelfHostedRestClient, which provides access to the Deepgram API's self-hosted functionality.
|
|
42
|
-
*
|
|
43
|
-
* @returns {SelfHostedRestClient} A new instance of the SelfHostedRestClient.
|
|
44
|
-
*/
|
|
45
|
-
get selfhosted(): SelfHostedRestClient;
|
|
46
|
-
/**
|
|
47
|
-
* Returns a new instance of the ReadClient, which provides access to the Deepgram API's reading functionality.
|
|
48
|
-
*
|
|
49
|
-
* @returns {ReadClient} A new instance of the ReadClient.
|
|
50
|
-
*/
|
|
51
|
-
get read(): ReadClient;
|
|
52
|
-
/**
|
|
53
|
-
* Returns a new instance of the SpeakClient, which provides access to the Deepgram API's speaking functionality.
|
|
54
|
-
*
|
|
55
|
-
* @returns {SpeakClient} A new instance of the SpeakClient.
|
|
56
|
-
*/
|
|
57
|
-
get speak(): SpeakClient;
|
|
58
|
-
/**
|
|
59
|
-
* Returns a new instance of the AgentLiveClient, which provides access to Deepgram's Voice Agent API.
|
|
60
|
-
*
|
|
61
|
-
* @returns {AgentLiveClient} A new instance of the AgentLiveClient.
|
|
62
|
-
* @beta
|
|
63
|
-
*/
|
|
64
|
-
agent(endpoint?: string): AgentLiveClient;
|
|
65
|
-
/**
|
|
66
|
-
* @deprecated
|
|
67
|
-
* @see https://dpgr.am/js-v3
|
|
68
|
-
*/
|
|
69
|
-
get transcription(): any;
|
|
70
|
-
/**
|
|
71
|
-
* @deprecated
|
|
72
|
-
* @see https://dpgr.am/js-v3
|
|
73
|
-
*/
|
|
74
|
-
get projects(): any;
|
|
75
|
-
/**
|
|
76
|
-
* @deprecated
|
|
77
|
-
* @see https://dpgr.am/js-v3
|
|
78
|
-
*/
|
|
79
|
-
get keys(): any;
|
|
80
|
-
/**
|
|
81
|
-
* @deprecated
|
|
82
|
-
* @see https://dpgr.am/js-v3
|
|
83
|
-
*/
|
|
84
|
-
get members(): any;
|
|
85
|
-
/**
|
|
86
|
-
* @deprecated
|
|
87
|
-
* @see https://dpgr.am/js-v3
|
|
88
|
-
*/
|
|
89
|
-
get scopes(): any;
|
|
90
|
-
/**
|
|
91
|
-
* @deprecated
|
|
92
|
-
* @see https://dpgr.am/js-v3
|
|
93
|
-
*/
|
|
94
|
-
get invitation(): any;
|
|
95
|
-
/**
|
|
96
|
-
* @deprecated
|
|
97
|
-
* @see https://dpgr.am/js-v3
|
|
98
|
-
*/
|
|
99
|
-
get usage(): any;
|
|
100
|
-
/**
|
|
101
|
-
* @deprecated
|
|
102
|
-
* @see https://dpgr.am/js-v3
|
|
103
|
-
*/
|
|
104
|
-
get billing(): any;
|
|
105
|
-
}
|
|
106
|
-
//# sourceMappingURL=DeepgramClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DeepgramClient.d.ts","sourceRoot":"","sources":["../../src/DeepgramClient.ts"],"names":[],"mappings":"AACA,OAAO,EACL,cAAc,EACd,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,EACZ,UAAU,EACV,YAAY,EACZ,oBAAoB,EACpB,WAAW,EACX,gBAAgB,EACjB,MAAM,YAAY,CAAC;AAEpB;;;;GAIG;AACH,MAAM,CAAC,OAAO,OAAO,cAAe,SAAQ,cAAc;IACxD;;;;;OAKG;IACH,IAAI,IAAI,IAAI,cAAc,CAEzB;IACD;;;;OAIG;IACH,IAAI,MAAM,IAAI,YAAY,CAEzB;IAED;;;;OAIG;IACH,IAAI,MAAM,IAAI,YAAY,CAEzB;IAED;;;;OAIG;IACH,IAAI,MAAM,IAAI,gBAAgB,CAE7B;IAED;;;;;OAKG;IACH,IAAI,MAAM,IAAI,YAAY,CAEzB;IAED;;;;OAIG;IACH,IAAI,UAAU,IAAI,oBAAoB,CAErC;IAED;;;;OAIG;IACH,IAAI,IAAI,IAAI,UAAU,CAErB;IAED;;;;OAIG;IACH,IAAI,KAAK,IAAI,WAAW,CAEvB;IAED;;;;;OAKG;IACI,KAAK,CAAC,QAAQ,GAAE,MAAmC,GAAG,eAAe;IAI5E;;;OAGG;IACH,IAAI,aAAa,IAAI,GAAG,CAEvB;IAED;;;OAGG;IACH,IAAI,QAAQ,IAAI,GAAG,CAElB;IAED;;;OAGG;IACH,IAAI,IAAI,IAAI,GAAG,CAEd;IAED;;;OAGG;IACH,IAAI,OAAO,IAAI,GAAG,CAEjB;IAED;;;OAGG;IACH,IAAI,MAAM,IAAI,GAAG,CAEhB;IAED;;;OAGG;IACH,IAAI,UAAU,IAAI,GAAG,CAEpB;IAED;;;OAGG;IACH,IAAI,KAAK,IAAI,GAAG,CAEf;IAED;;;OAGG;IACH,IAAI,OAAO,IAAI,GAAG,CAEjB;CACF"}
|