hume 0.9.15 → 0.9.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mock/definition/empathic-voice/__package__.yml +2347 -2345
- package/.mock/definition/empathic-voice/chat.yml +34 -34
- package/.mock/definition/empathic-voice/chatGroups.yml +9 -9
- package/.mock/definition/empathic-voice/chatWebhooks.yml +3 -3
- package/.mock/definition/empathic-voice/chats.yml +7 -7
- package/.mock/definition/empathic-voice/configs.yml +19 -19
- package/.mock/definition/empathic-voice/customVoices.yml +13 -13
- package/.mock/definition/empathic-voice/prompts.yml +19 -19
- package/.mock/definition/empathic-voice/tools.yml +19 -19
- package/.mock/definition/expression-measurement/stream/stream.yml +206 -206
- package/.mock/definition/tts/__package__.yml +60 -2
- package/.mock/definition/tts/voices.yml +76 -0
- package/.mock/fern.config.json +1 -1
- package/api/resources/empathicVoice/resources/chat/types/index.d.ts +1 -1
- package/api/resources/empathicVoice/resources/chat/types/index.js +1 -1
- package/api/resources/empathicVoice/resources/chatGroups/client/Client.js +4 -4
- package/api/resources/empathicVoice/resources/chats/client/Client.js +3 -3
- package/api/resources/empathicVoice/resources/configs/client/Client.js +9 -9
- package/api/resources/empathicVoice/resources/customVoices/client/Client.js +6 -6
- package/api/resources/empathicVoice/resources/prompts/client/Client.js +9 -9
- package/api/resources/empathicVoice/resources/tools/client/Client.js +9 -9
- package/api/resources/empathicVoice/types/AssistantEnd.d.ts +2 -2
- package/api/resources/empathicVoice/types/AssistantInput.d.ts +2 -2
- package/api/resources/empathicVoice/types/AssistantMessage.d.ts +8 -8
- package/api/resources/empathicVoice/types/AudioConfiguration.d.ts +2 -2
- package/api/resources/empathicVoice/types/AudioInput.d.ts +6 -6
- package/api/resources/empathicVoice/types/AudioOutput.d.ts +4 -4
- package/api/resources/empathicVoice/types/BuiltinToolConfig.d.ts +1 -1
- package/api/resources/empathicVoice/types/ChatMessage.d.ts +2 -2
- package/api/resources/empathicVoice/types/ChatMetadata.d.ts +8 -8
- package/api/resources/empathicVoice/types/Context.d.ts +6 -6
- package/api/resources/empathicVoice/types/ErrorResponse.d.ts +1 -0
- package/api/resources/empathicVoice/types/PauseAssistantMessage.d.ts +2 -2
- package/api/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +2 -2
- package/api/resources/empathicVoice/types/SessionSettings.d.ts +27 -27
- package/api/resources/empathicVoice/types/Tool.d.ts +6 -6
- package/api/resources/empathicVoice/types/ToolCallMessage.d.ts +6 -6
- package/api/resources/empathicVoice/types/ToolErrorMessage.d.ts +16 -16
- package/api/resources/empathicVoice/types/ToolResponseMessage.d.ts +8 -8
- package/api/resources/empathicVoice/types/UserInput.d.ts +2 -2
- package/api/resources/empathicVoice/types/UserInterruption.d.ts +4 -4
- package/api/resources/empathicVoice/types/UserMessage.d.ts +10 -10
- package/api/resources/empathicVoice/types/WebSocketError.d.ts +10 -8
- package/api/resources/empathicVoice/types/WebhookEventChatEnded.d.ts +8 -8
- package/api/resources/empathicVoice/types/WebhookEventChatStarted.d.ts +6 -6
- package/api/resources/empathicVoice/types/index.d.ts +84 -84
- package/api/resources/empathicVoice/types/index.js +84 -84
- package/api/resources/expressionMeasurement/resources/batch/client/Client.js +6 -6
- package/api/resources/expressionMeasurement/resources/stream/resources/stream/types/index.d.ts +4 -4
- package/api/resources/expressionMeasurement/resources/stream/resources/stream/types/index.js +4 -4
- package/api/resources/index.d.ts +1 -1
- package/api/resources/index.js +2 -2
- package/api/resources/tts/client/Client.d.ts +1 -1
- package/api/resources/tts/client/Client.js +5 -5
- package/api/resources/tts/errors/BadRequestError.d.ts +8 -0
- package/api/resources/tts/errors/BadRequestError.js +41 -0
- package/api/resources/tts/errors/index.d.ts +1 -0
- package/api/resources/tts/errors/index.js +1 -0
- package/api/resources/tts/resources/voices/client/Client.d.ts +28 -0
- package/api/resources/tts/resources/voices/client/Client.js +144 -2
- package/api/resources/tts/resources/voices/client/requests/VoicesDeleteRequest.d.ts +15 -0
- package/api/resources/tts/resources/voices/client/requests/VoicesDeleteRequest.js +5 -0
- package/api/resources/tts/resources/voices/client/requests/VoicesListRequest.d.ts +29 -0
- package/api/resources/tts/resources/voices/client/requests/VoicesListRequest.js +5 -0
- package/api/resources/tts/resources/voices/client/requests/index.d.ts +2 -0
- package/api/resources/tts/types/ErrorResponse.d.ts +8 -0
- package/api/resources/tts/types/ErrorResponse.js +5 -0
- package/api/resources/tts/types/ReturnPagedVoices.d.ts +13 -0
- package/api/resources/tts/types/ReturnPagedVoices.js +5 -0
- package/api/resources/tts/types/ReturnVoice.d.ts +17 -1
- package/api/resources/tts/types/SnippetAudioChunk.d.ts +15 -0
- package/api/resources/tts/types/SnippetAudioChunk.js +5 -0
- package/api/resources/tts/types/index.d.ts +3 -0
- package/api/resources/tts/types/index.js +3 -0
- package/dist/api/resources/empathicVoice/resources/chat/types/index.d.ts +1 -1
- package/dist/api/resources/empathicVoice/resources/chat/types/index.js +1 -1
- package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.js +4 -4
- package/dist/api/resources/empathicVoice/resources/chats/client/Client.js +3 -3
- package/dist/api/resources/empathicVoice/resources/configs/client/Client.js +9 -9
- package/dist/api/resources/empathicVoice/resources/customVoices/client/Client.js +6 -6
- package/dist/api/resources/empathicVoice/resources/prompts/client/Client.js +9 -9
- package/dist/api/resources/empathicVoice/resources/tools/client/Client.js +9 -9
- package/dist/api/resources/empathicVoice/types/AssistantEnd.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/AssistantInput.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/AssistantMessage.d.ts +8 -8
- package/dist/api/resources/empathicVoice/types/AudioConfiguration.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/AudioInput.d.ts +6 -6
- package/dist/api/resources/empathicVoice/types/AudioOutput.d.ts +4 -4
- package/dist/api/resources/empathicVoice/types/BuiltinToolConfig.d.ts +1 -1
- package/dist/api/resources/empathicVoice/types/ChatMessage.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/ChatMetadata.d.ts +8 -8
- package/dist/api/resources/empathicVoice/types/Context.d.ts +6 -6
- package/dist/api/resources/empathicVoice/types/ErrorResponse.d.ts +1 -0
- package/dist/api/resources/empathicVoice/types/PauseAssistantMessage.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/SessionSettings.d.ts +27 -27
- package/dist/api/resources/empathicVoice/types/Tool.d.ts +6 -6
- package/dist/api/resources/empathicVoice/types/ToolCallMessage.d.ts +6 -6
- package/dist/api/resources/empathicVoice/types/ToolErrorMessage.d.ts +16 -16
- package/dist/api/resources/empathicVoice/types/ToolResponseMessage.d.ts +8 -8
- package/dist/api/resources/empathicVoice/types/UserInput.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/UserInterruption.d.ts +4 -4
- package/dist/api/resources/empathicVoice/types/UserMessage.d.ts +10 -10
- package/dist/api/resources/empathicVoice/types/WebSocketError.d.ts +10 -8
- package/dist/api/resources/empathicVoice/types/WebhookEventChatEnded.d.ts +8 -8
- package/dist/api/resources/empathicVoice/types/WebhookEventChatStarted.d.ts +6 -6
- package/dist/api/resources/empathicVoice/types/index.d.ts +84 -84
- package/dist/api/resources/empathicVoice/types/index.js +84 -84
- package/dist/api/resources/expressionMeasurement/resources/batch/client/Client.js +6 -6
- package/dist/api/resources/expressionMeasurement/resources/stream/resources/stream/types/index.d.ts +4 -4
- package/dist/api/resources/expressionMeasurement/resources/stream/resources/stream/types/index.js +4 -4
- package/dist/api/resources/index.d.ts +1 -1
- package/dist/api/resources/index.js +2 -2
- package/dist/api/resources/tts/client/Client.d.ts +1 -1
- package/dist/api/resources/tts/client/Client.js +5 -5
- package/dist/api/resources/tts/errors/BadRequestError.d.ts +8 -0
- package/dist/api/resources/tts/errors/BadRequestError.js +41 -0
- package/dist/api/resources/tts/errors/index.d.ts +1 -0
- package/dist/api/resources/tts/errors/index.js +1 -0
- package/dist/api/resources/tts/resources/voices/client/Client.d.ts +28 -0
- package/dist/api/resources/tts/resources/voices/client/Client.js +144 -2
- package/dist/api/resources/tts/resources/voices/client/requests/VoicesDeleteRequest.d.ts +15 -0
- package/dist/api/resources/tts/resources/voices/client/requests/VoicesDeleteRequest.js +5 -0
- package/dist/api/resources/tts/resources/voices/client/requests/VoicesListRequest.d.ts +29 -0
- package/dist/api/resources/tts/resources/voices/client/requests/VoicesListRequest.js +5 -0
- package/dist/api/resources/tts/resources/voices/client/requests/index.d.ts +2 -0
- package/dist/api/resources/tts/types/ErrorResponse.d.ts +8 -0
- package/dist/api/resources/tts/types/ErrorResponse.js +5 -0
- package/dist/api/resources/tts/types/ReturnPagedVoices.d.ts +13 -0
- package/dist/api/resources/tts/types/ReturnPagedVoices.js +5 -0
- package/dist/api/resources/tts/types/ReturnVoice.d.ts +17 -1
- package/dist/api/resources/tts/types/SnippetAudioChunk.d.ts +15 -0
- package/dist/api/resources/tts/types/SnippetAudioChunk.js +5 -0
- package/dist/api/resources/tts/types/index.d.ts +3 -0
- package/dist/api/resources/tts/types/index.js +3 -0
- package/dist/serialization/resources/empathicVoice/resources/chat/types/index.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/resources/chat/types/index.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/AssistantEnd.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/AssistantEnd.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/AssistantInput.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/AssistantInput.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/AssistantMessage.d.ts +2 -2
- package/dist/serialization/resources/empathicVoice/types/AssistantMessage.js +2 -2
- package/dist/serialization/resources/empathicVoice/types/AudioConfiguration.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/AudioConfiguration.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/AudioInput.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/AudioInput.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/AudioOutput.d.ts +2 -2
- package/dist/serialization/resources/empathicVoice/types/AudioOutput.js +2 -2
- package/dist/serialization/resources/empathicVoice/types/BuiltinToolConfig.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/BuiltinToolConfig.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/ChatMessage.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/ChatMessage.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/ChatMetadata.d.ts +2 -2
- package/dist/serialization/resources/empathicVoice/types/ChatMetadata.js +2 -2
- package/dist/serialization/resources/empathicVoice/types/Context.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/Context.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/ErrorResponse.d.ts +1 -0
- package/dist/serialization/resources/empathicVoice/types/ErrorResponse.js +1 -0
- package/dist/serialization/resources/empathicVoice/types/PauseAssistantMessage.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/PauseAssistantMessage.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/ResumeAssistantMessage.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/SessionSettings.d.ts +8 -8
- package/dist/serialization/resources/empathicVoice/types/SessionSettings.js +8 -8
- package/dist/serialization/resources/empathicVoice/types/Tool.d.ts +3 -3
- package/dist/serialization/resources/empathicVoice/types/Tool.js +3 -3
- package/dist/serialization/resources/empathicVoice/types/ToolCallMessage.d.ts +3 -3
- package/dist/serialization/resources/empathicVoice/types/ToolCallMessage.js +3 -3
- package/dist/serialization/resources/empathicVoice/types/ToolErrorMessage.d.ts +6 -6
- package/dist/serialization/resources/empathicVoice/types/ToolErrorMessage.js +6 -6
- package/dist/serialization/resources/empathicVoice/types/ToolResponseMessage.d.ts +2 -2
- package/dist/serialization/resources/empathicVoice/types/ToolResponseMessage.js +2 -2
- package/dist/serialization/resources/empathicVoice/types/UserInput.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/UserInput.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/UserInterruption.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/UserInterruption.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/UserMessage.d.ts +3 -3
- package/dist/serialization/resources/empathicVoice/types/UserMessage.js +3 -3
- package/dist/serialization/resources/empathicVoice/types/WebSocketError.d.ts +4 -3
- package/dist/serialization/resources/empathicVoice/types/WebSocketError.js +4 -3
- package/dist/serialization/resources/empathicVoice/types/WebhookEventChatEnded.d.ts +4 -4
- package/dist/serialization/resources/empathicVoice/types/WebhookEventChatEnded.js +4 -4
- package/dist/serialization/resources/empathicVoice/types/WebhookEventChatStarted.d.ts +3 -3
- package/dist/serialization/resources/empathicVoice/types/WebhookEventChatStarted.js +3 -3
- package/dist/serialization/resources/empathicVoice/types/index.d.ts +84 -84
- package/dist/serialization/resources/empathicVoice/types/index.js +84 -84
- package/dist/serialization/resources/expressionMeasurement/resources/stream/resources/stream/types/index.d.ts +4 -4
- package/dist/serialization/resources/expressionMeasurement/resources/stream/resources/stream/types/index.js +4 -4
- package/dist/serialization/resources/index.d.ts +1 -1
- package/dist/serialization/resources/index.js +2 -2
- package/dist/serialization/resources/tts/types/ErrorResponse.d.ts +14 -0
- package/dist/serialization/resources/tts/types/ErrorResponse.js +35 -0
- package/dist/serialization/resources/tts/types/ReturnPagedVoices.d.ts +16 -0
- package/dist/serialization/resources/tts/types/ReturnPagedVoices.js +37 -0
- package/dist/serialization/resources/tts/types/ReturnVoice.d.ts +3 -1
- package/dist/serialization/resources/tts/types/ReturnVoice.js +3 -1
- package/dist/serialization/resources/tts/types/SnippetAudioChunk.d.ts +16 -0
- package/dist/serialization/resources/tts/types/SnippetAudioChunk.js +37 -0
- package/dist/serialization/resources/tts/types/index.d.ts +3 -0
- package/dist/serialization/resources/tts/types/index.js +3 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +351 -221
- package/serialization/resources/empathicVoice/resources/chat/types/index.d.ts +1 -1
- package/serialization/resources/empathicVoice/resources/chat/types/index.js +1 -1
- package/serialization/resources/empathicVoice/types/AssistantEnd.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/AssistantEnd.js +1 -1
- package/serialization/resources/empathicVoice/types/AssistantInput.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/AssistantInput.js +1 -1
- package/serialization/resources/empathicVoice/types/AssistantMessage.d.ts +2 -2
- package/serialization/resources/empathicVoice/types/AssistantMessage.js +2 -2
- package/serialization/resources/empathicVoice/types/AudioConfiguration.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/AudioConfiguration.js +1 -1
- package/serialization/resources/empathicVoice/types/AudioInput.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/AudioInput.js +1 -1
- package/serialization/resources/empathicVoice/types/AudioOutput.d.ts +2 -2
- package/serialization/resources/empathicVoice/types/AudioOutput.js +2 -2
- package/serialization/resources/empathicVoice/types/BuiltinToolConfig.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/BuiltinToolConfig.js +1 -1
- package/serialization/resources/empathicVoice/types/ChatMessage.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/ChatMessage.js +1 -1
- package/serialization/resources/empathicVoice/types/ChatMetadata.d.ts +2 -2
- package/serialization/resources/empathicVoice/types/ChatMetadata.js +2 -2
- package/serialization/resources/empathicVoice/types/Context.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/Context.js +1 -1
- package/serialization/resources/empathicVoice/types/ErrorResponse.d.ts +1 -0
- package/serialization/resources/empathicVoice/types/ErrorResponse.js +1 -0
- package/serialization/resources/empathicVoice/types/PauseAssistantMessage.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/PauseAssistantMessage.js +1 -1
- package/serialization/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/ResumeAssistantMessage.js +1 -1
- package/serialization/resources/empathicVoice/types/SessionSettings.d.ts +8 -8
- package/serialization/resources/empathicVoice/types/SessionSettings.js +8 -8
- package/serialization/resources/empathicVoice/types/Tool.d.ts +3 -3
- package/serialization/resources/empathicVoice/types/Tool.js +3 -3
- package/serialization/resources/empathicVoice/types/ToolCallMessage.d.ts +3 -3
- package/serialization/resources/empathicVoice/types/ToolCallMessage.js +3 -3
- package/serialization/resources/empathicVoice/types/ToolErrorMessage.d.ts +6 -6
- package/serialization/resources/empathicVoice/types/ToolErrorMessage.js +6 -6
- package/serialization/resources/empathicVoice/types/ToolResponseMessage.d.ts +2 -2
- package/serialization/resources/empathicVoice/types/ToolResponseMessage.js +2 -2
- package/serialization/resources/empathicVoice/types/UserInput.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/UserInput.js +1 -1
- package/serialization/resources/empathicVoice/types/UserInterruption.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/UserInterruption.js +1 -1
- package/serialization/resources/empathicVoice/types/UserMessage.d.ts +3 -3
- package/serialization/resources/empathicVoice/types/UserMessage.js +3 -3
- package/serialization/resources/empathicVoice/types/WebSocketError.d.ts +4 -3
- package/serialization/resources/empathicVoice/types/WebSocketError.js +4 -3
- package/serialization/resources/empathicVoice/types/WebhookEventChatEnded.d.ts +4 -4
- package/serialization/resources/empathicVoice/types/WebhookEventChatEnded.js +4 -4
- package/serialization/resources/empathicVoice/types/WebhookEventChatStarted.d.ts +3 -3
- package/serialization/resources/empathicVoice/types/WebhookEventChatStarted.js +3 -3
- package/serialization/resources/empathicVoice/types/index.d.ts +84 -84
- package/serialization/resources/empathicVoice/types/index.js +84 -84
- package/serialization/resources/expressionMeasurement/resources/stream/resources/stream/types/index.d.ts +4 -4
- package/serialization/resources/expressionMeasurement/resources/stream/resources/stream/types/index.js +4 -4
- package/serialization/resources/index.d.ts +1 -1
- package/serialization/resources/index.js +2 -2
- package/serialization/resources/tts/types/ErrorResponse.d.ts +14 -0
- package/serialization/resources/tts/types/ErrorResponse.js +35 -0
- package/serialization/resources/tts/types/ReturnPagedVoices.d.ts +16 -0
- package/serialization/resources/tts/types/ReturnPagedVoices.js +37 -0
- package/serialization/resources/tts/types/ReturnVoice.d.ts +3 -1
- package/serialization/resources/tts/types/ReturnVoice.js +3 -1
- package/serialization/resources/tts/types/SnippetAudioChunk.d.ts +16 -0
- package/serialization/resources/tts/types/SnippetAudioChunk.js +37 -0
- package/serialization/resources/tts/types/index.d.ts +3 -0
- package/serialization/resources/tts/types/index.js +3 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -32,10 +32,10 @@ const WebhookEventChatStartType_1 = require("./WebhookEventChatStartType");
|
|
|
32
32
|
const WebhookEventBase_1 = require("./WebhookEventBase");
|
|
33
33
|
exports.WebhookEventChatStarted = core.serialization
|
|
34
34
|
.object({
|
|
35
|
-
eventName: core.serialization.property("event_name", core.serialization.stringLiteral("chat_started").optional()),
|
|
36
|
-
startTime: core.serialization.property("start_time", core.serialization.number()),
|
|
37
|
-
chatStartType: core.serialization.property("chat_start_type", WebhookEventChatStartType_1.WebhookEventChatStartType),
|
|
38
35
|
callerNumber: core.serialization.property("caller_number", core.serialization.string().optional()),
|
|
36
|
+
chatStartType: core.serialization.property("chat_start_type", WebhookEventChatStartType_1.WebhookEventChatStartType),
|
|
39
37
|
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
38
|
+
eventName: core.serialization.property("event_name", core.serialization.stringLiteral("chat_started").optional()),
|
|
39
|
+
startTime: core.serialization.property("start_time", core.serialization.number()),
|
|
40
40
|
})
|
|
41
41
|
.extend(WebhookEventBase_1.WebhookEventBase);
|
|
@@ -1,118 +1,118 @@
|
|
|
1
|
+
export * from "./AssistantEnd";
|
|
2
|
+
export * from "./AssistantInput";
|
|
3
|
+
export * from "./AssistantMessage";
|
|
4
|
+
export * from "./AudioConfiguration";
|
|
5
|
+
export * from "./AudioInput";
|
|
6
|
+
export * from "./AudioOutput";
|
|
7
|
+
export * from "./BuiltInTool";
|
|
8
|
+
export * from "./BuiltinToolConfig";
|
|
9
|
+
export * from "./ChatMessageToolResult";
|
|
10
|
+
export * from "./ChatMessage";
|
|
11
|
+
export * from "./ChatMetadata";
|
|
12
|
+
export * from "./Context";
|
|
13
|
+
export * from "./ContextType";
|
|
14
|
+
export * from "./EmotionScores";
|
|
15
|
+
export * from "./Encoding";
|
|
16
|
+
export * from "./WebSocketError";
|
|
17
|
+
export * from "./ErrorLevel";
|
|
18
|
+
export * from "./Inference";
|
|
19
|
+
export * from "./MillisecondInterval";
|
|
20
|
+
export * from "./PauseAssistantMessage";
|
|
21
|
+
export * from "./ProsodyInference";
|
|
22
|
+
export * from "./ResumeAssistantMessage";
|
|
23
|
+
export * from "./Role";
|
|
24
|
+
export * from "./SessionSettingsVariablesValue";
|
|
25
|
+
export * from "./SessionSettings";
|
|
26
|
+
export * from "./Tool";
|
|
27
|
+
export * from "./ToolCallMessage";
|
|
28
|
+
export * from "./ToolErrorMessage";
|
|
29
|
+
export * from "./ToolResponseMessage";
|
|
30
|
+
export * from "./ToolType";
|
|
31
|
+
export * from "./UserInput";
|
|
32
|
+
export * from "./UserInterruption";
|
|
33
|
+
export * from "./UserMessage";
|
|
34
|
+
export * from "./JsonMessage";
|
|
35
|
+
export * from "./TtsInput";
|
|
36
|
+
export * from "./TextInput";
|
|
37
|
+
export * from "./FunctionCallResponseInput";
|
|
38
|
+
export * from "./HttpValidationError";
|
|
39
|
+
export * from "./ValidationErrorLocItem";
|
|
40
|
+
export * from "./ValidationError";
|
|
41
|
+
export * from "./WebhookEventBase";
|
|
42
|
+
export * from "./WebhookEvent";
|
|
43
|
+
export * from "./WebhookEventChatEnded";
|
|
44
|
+
export * from "./WebhookEventChatStartType";
|
|
45
|
+
export * from "./WebhookEventChatStarted";
|
|
46
|
+
export * from "./WebhookEventChatStatus";
|
|
1
47
|
export * from "./ErrorResponse";
|
|
48
|
+
export * from "./ReturnPagedUserDefinedTools";
|
|
2
49
|
export * from "./ReturnUserDefinedToolToolType";
|
|
3
50
|
export * from "./ReturnUserDefinedToolVersionType";
|
|
4
51
|
export * from "./ReturnUserDefinedTool";
|
|
52
|
+
export * from "./ReturnPagedPrompts";
|
|
5
53
|
export * from "./ReturnPromptVersionType";
|
|
6
54
|
export * from "./ReturnPrompt";
|
|
55
|
+
export * from "./ReturnPagedCustomVoices";
|
|
7
56
|
export * from "./PostedCustomVoiceBaseVoice";
|
|
8
57
|
export * from "./PostedCustomVoiceParameters";
|
|
9
58
|
export * from "./PostedCustomVoice";
|
|
10
59
|
export * from "./ReturnCustomVoiceBaseVoice";
|
|
11
60
|
export * from "./ReturnCustomVoiceParameters";
|
|
12
61
|
export * from "./ReturnCustomVoice";
|
|
13
|
-
export * from "./
|
|
14
|
-
export * from "./
|
|
62
|
+
export * from "./ReturnPagedConfigs";
|
|
63
|
+
export * from "./ReturnConfig";
|
|
64
|
+
export * from "./ReturnPagedChatsPaginationDirection";
|
|
65
|
+
export * from "./ReturnPagedChats";
|
|
66
|
+
export * from "./ReturnChatPagedEventsStatus";
|
|
67
|
+
export * from "./ReturnChatPagedEventsPaginationDirection";
|
|
68
|
+
export * from "./ReturnChatPagedEvents";
|
|
69
|
+
export * from "./ReturnChatAudioReconstructionStatus";
|
|
70
|
+
export * from "./ReturnChatAudioReconstruction";
|
|
71
|
+
export * from "./ReturnPagedChatGroupsPaginationDirection";
|
|
72
|
+
export * from "./ReturnPagedChatGroups";
|
|
73
|
+
export * from "./ReturnChatGroupPagedChatsPaginationDirection";
|
|
74
|
+
export * from "./ReturnChatGroupPagedChats";
|
|
75
|
+
export * from "./ReturnChatGroupPagedEventsPaginationDirection";
|
|
76
|
+
export * from "./ReturnChatGroupPagedEvents";
|
|
77
|
+
export * from "./ReturnChatGroupPagedAudioReconstructionsPaginationDirection";
|
|
78
|
+
export * from "./ReturnChatGroupPagedAudioReconstructions";
|
|
15
79
|
export * from "./PostedConfigPromptSpec";
|
|
16
|
-
export * from "./
|
|
17
|
-
export * from "./
|
|
18
|
-
export * from "./PostedEventMessageSpecs";
|
|
80
|
+
export * from "./PostedVoiceProvider";
|
|
81
|
+
export * from "./PostedVoice";
|
|
19
82
|
export * from "./PostedLanguageModelModelProvider";
|
|
20
83
|
export * from "./PostedLanguageModelModelResource";
|
|
21
84
|
export * from "./PostedLanguageModel";
|
|
22
|
-
export * from "./
|
|
85
|
+
export * from "./PostedEllmModel";
|
|
86
|
+
export * from "./PostedUserDefinedToolSpec";
|
|
87
|
+
export * from "./PostedBuiltinToolName";
|
|
88
|
+
export * from "./PostedBuiltinTool";
|
|
89
|
+
export * from "./PostedEventMessageSpecs";
|
|
23
90
|
export * from "./PostedTimeoutSpecsInactivity";
|
|
24
91
|
export * from "./PostedTimeoutSpecsMaxDuration";
|
|
25
92
|
export * from "./PostedTimeoutSpecs";
|
|
26
|
-
export * from "./PostedUserDefinedToolSpec";
|
|
27
|
-
export * from "./PostedVoiceProvider";
|
|
28
|
-
export * from "./PostedVoice";
|
|
29
93
|
export * from "./PostedWebhookEventType";
|
|
30
94
|
export * from "./PostedWebhookSpec";
|
|
31
|
-
export * from "./
|
|
32
|
-
export * from "./
|
|
33
|
-
export * from "./ReturnConfig";
|
|
34
|
-
export * from "./ReturnEllmModel";
|
|
35
|
-
export * from "./ReturnEventMessageSpec";
|
|
36
|
-
export * from "./ReturnEventMessageSpecs";
|
|
95
|
+
export * from "./ReturnVoiceProvider";
|
|
96
|
+
export * from "./ReturnVoice";
|
|
37
97
|
export * from "./ReturnLanguageModelModelProvider";
|
|
38
98
|
export * from "./ReturnLanguageModelModelResource";
|
|
39
99
|
export * from "./ReturnLanguageModel";
|
|
40
|
-
export * from "./
|
|
100
|
+
export * from "./ReturnEllmModel";
|
|
101
|
+
export * from "./ReturnBuiltinToolToolType";
|
|
102
|
+
export * from "./ReturnBuiltinTool";
|
|
103
|
+
export * from "./ReturnEventMessageSpecs";
|
|
41
104
|
export * from "./ReturnTimeoutSpecs";
|
|
42
|
-
export * from "./ReturnVoiceProvider";
|
|
43
|
-
export * from "./ReturnVoice";
|
|
44
105
|
export * from "./ReturnWebhookEventType";
|
|
45
106
|
export * from "./ReturnWebhookSpec";
|
|
46
|
-
export * from "./ReturnPagedUserDefinedTools";
|
|
47
|
-
export * from "./ReturnPagedPrompts";
|
|
48
|
-
export * from "./ReturnPagedCustomVoices";
|
|
49
|
-
export * from "./ReturnPagedConfigs";
|
|
50
107
|
export * from "./ReturnChatStatus";
|
|
51
108
|
export * from "./ReturnChat";
|
|
52
|
-
export * from "./ReturnConfigSpec";
|
|
53
|
-
export * from "./ReturnPagedChatsPaginationDirection";
|
|
54
|
-
export * from "./ReturnPagedChats";
|
|
55
109
|
export * from "./ReturnChatEventRole";
|
|
56
110
|
export * from "./ReturnChatEventType";
|
|
57
111
|
export * from "./ReturnChatEvent";
|
|
58
|
-
export * from "./
|
|
59
|
-
export * from "./ReturnChatPagedEventsPaginationDirection";
|
|
60
|
-
export * from "./ReturnChatPagedEvents";
|
|
61
|
-
export * from "./ReturnChatAudioReconstructionStatus";
|
|
62
|
-
export * from "./ReturnChatAudioReconstruction";
|
|
112
|
+
export * from "./ReturnConfigSpec";
|
|
63
113
|
export * from "./ReturnChatGroup";
|
|
64
|
-
export * from "./
|
|
65
|
-
export * from "./
|
|
66
|
-
export * from "./
|
|
67
|
-
export * from "./
|
|
68
|
-
export * from "./ReturnChatGroupPagedEventsPaginationDirection";
|
|
69
|
-
export * from "./ReturnChatGroupPagedEvents";
|
|
70
|
-
export * from "./ReturnChatGroupPagedAudioReconstructionsPaginationDirection";
|
|
71
|
-
export * from "./ReturnChatGroupPagedAudioReconstructions";
|
|
114
|
+
export * from "./PostedEventMessageSpec";
|
|
115
|
+
export * from "./PostedTimeoutSpec";
|
|
116
|
+
export * from "./ReturnEventMessageSpec";
|
|
117
|
+
export * from "./ReturnTimeoutSpec";
|
|
72
118
|
export * from "./PostedPromptSpec";
|
|
73
|
-
export * from "./AssistantInput";
|
|
74
|
-
export * from "./AudioConfiguration";
|
|
75
|
-
export * from "./AudioInput";
|
|
76
|
-
export * from "./BuiltInTool";
|
|
77
|
-
export * from "./BuiltinToolConfig";
|
|
78
|
-
export * from "./Context";
|
|
79
|
-
export * from "./ContextType";
|
|
80
|
-
export * from "./Encoding";
|
|
81
|
-
export * from "./ErrorLevel";
|
|
82
|
-
export * from "./PauseAssistantMessage";
|
|
83
|
-
export * from "./ResumeAssistantMessage";
|
|
84
|
-
export * from "./SessionSettingsVariablesValue";
|
|
85
|
-
export * from "./SessionSettings";
|
|
86
|
-
export * from "./Tool";
|
|
87
|
-
export * from "./ToolErrorMessage";
|
|
88
|
-
export * from "./ToolResponseMessage";
|
|
89
|
-
export * from "./ToolType";
|
|
90
|
-
export * from "./UserInput";
|
|
91
|
-
export * from "./AssistantEnd";
|
|
92
|
-
export * from "./AssistantMessage";
|
|
93
|
-
export * from "./AudioOutput";
|
|
94
|
-
export * from "./ChatMessageToolResult";
|
|
95
|
-
export * from "./ChatMessage";
|
|
96
|
-
export * from "./ChatMetadata";
|
|
97
|
-
export * from "./EmotionScores";
|
|
98
|
-
export * from "./WebSocketError";
|
|
99
|
-
export * from "./Inference";
|
|
100
|
-
export * from "./MillisecondInterval";
|
|
101
|
-
export * from "./ProsodyInference";
|
|
102
|
-
export * from "./Role";
|
|
103
|
-
export * from "./ToolCallMessage";
|
|
104
|
-
export * from "./UserInterruption";
|
|
105
|
-
export * from "./UserMessage";
|
|
106
|
-
export * from "./JsonMessage";
|
|
107
|
-
export * from "./TtsInput";
|
|
108
|
-
export * from "./TextInput";
|
|
109
|
-
export * from "./FunctionCallResponseInput";
|
|
110
|
-
export * from "./HttpValidationError";
|
|
111
|
-
export * from "./ValidationErrorLocItem";
|
|
112
|
-
export * from "./ValidationError";
|
|
113
|
-
export * from "./WebhookEventChatEnded";
|
|
114
|
-
export * from "./WebhookEventChatStartType";
|
|
115
|
-
export * from "./WebhookEventChatStarted";
|
|
116
|
-
export * from "./WebhookEventChatStatus";
|
|
117
|
-
export * from "./WebhookEvent";
|
|
118
|
-
export * from "./WebhookEventBase";
|
|
@@ -14,121 +14,121 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./AssistantEnd"), exports);
|
|
18
|
+
__exportStar(require("./AssistantInput"), exports);
|
|
19
|
+
__exportStar(require("./AssistantMessage"), exports);
|
|
20
|
+
__exportStar(require("./AudioConfiguration"), exports);
|
|
21
|
+
__exportStar(require("./AudioInput"), exports);
|
|
22
|
+
__exportStar(require("./AudioOutput"), exports);
|
|
23
|
+
__exportStar(require("./BuiltInTool"), exports);
|
|
24
|
+
__exportStar(require("./BuiltinToolConfig"), exports);
|
|
25
|
+
__exportStar(require("./ChatMessageToolResult"), exports);
|
|
26
|
+
__exportStar(require("./ChatMessage"), exports);
|
|
27
|
+
__exportStar(require("./ChatMetadata"), exports);
|
|
28
|
+
__exportStar(require("./Context"), exports);
|
|
29
|
+
__exportStar(require("./ContextType"), exports);
|
|
30
|
+
__exportStar(require("./EmotionScores"), exports);
|
|
31
|
+
__exportStar(require("./Encoding"), exports);
|
|
32
|
+
__exportStar(require("./WebSocketError"), exports);
|
|
33
|
+
__exportStar(require("./ErrorLevel"), exports);
|
|
34
|
+
__exportStar(require("./Inference"), exports);
|
|
35
|
+
__exportStar(require("./MillisecondInterval"), exports);
|
|
36
|
+
__exportStar(require("./PauseAssistantMessage"), exports);
|
|
37
|
+
__exportStar(require("./ProsodyInference"), exports);
|
|
38
|
+
__exportStar(require("./ResumeAssistantMessage"), exports);
|
|
39
|
+
__exportStar(require("./Role"), exports);
|
|
40
|
+
__exportStar(require("./SessionSettingsVariablesValue"), exports);
|
|
41
|
+
__exportStar(require("./SessionSettings"), exports);
|
|
42
|
+
__exportStar(require("./Tool"), exports);
|
|
43
|
+
__exportStar(require("./ToolCallMessage"), exports);
|
|
44
|
+
__exportStar(require("./ToolErrorMessage"), exports);
|
|
45
|
+
__exportStar(require("./ToolResponseMessage"), exports);
|
|
46
|
+
__exportStar(require("./ToolType"), exports);
|
|
47
|
+
__exportStar(require("./UserInput"), exports);
|
|
48
|
+
__exportStar(require("./UserInterruption"), exports);
|
|
49
|
+
__exportStar(require("./UserMessage"), exports);
|
|
50
|
+
__exportStar(require("./JsonMessage"), exports);
|
|
51
|
+
__exportStar(require("./TtsInput"), exports);
|
|
52
|
+
__exportStar(require("./TextInput"), exports);
|
|
53
|
+
__exportStar(require("./FunctionCallResponseInput"), exports);
|
|
54
|
+
__exportStar(require("./HttpValidationError"), exports);
|
|
55
|
+
__exportStar(require("./ValidationErrorLocItem"), exports);
|
|
56
|
+
__exportStar(require("./ValidationError"), exports);
|
|
57
|
+
__exportStar(require("./WebhookEventBase"), exports);
|
|
58
|
+
__exportStar(require("./WebhookEvent"), exports);
|
|
59
|
+
__exportStar(require("./WebhookEventChatEnded"), exports);
|
|
60
|
+
__exportStar(require("./WebhookEventChatStartType"), exports);
|
|
61
|
+
__exportStar(require("./WebhookEventChatStarted"), exports);
|
|
62
|
+
__exportStar(require("./WebhookEventChatStatus"), exports);
|
|
17
63
|
__exportStar(require("./ErrorResponse"), exports);
|
|
64
|
+
__exportStar(require("./ReturnPagedUserDefinedTools"), exports);
|
|
18
65
|
__exportStar(require("./ReturnUserDefinedToolToolType"), exports);
|
|
19
66
|
__exportStar(require("./ReturnUserDefinedToolVersionType"), exports);
|
|
20
67
|
__exportStar(require("./ReturnUserDefinedTool"), exports);
|
|
68
|
+
__exportStar(require("./ReturnPagedPrompts"), exports);
|
|
21
69
|
__exportStar(require("./ReturnPromptVersionType"), exports);
|
|
22
70
|
__exportStar(require("./ReturnPrompt"), exports);
|
|
71
|
+
__exportStar(require("./ReturnPagedCustomVoices"), exports);
|
|
23
72
|
__exportStar(require("./PostedCustomVoiceBaseVoice"), exports);
|
|
24
73
|
__exportStar(require("./PostedCustomVoiceParameters"), exports);
|
|
25
74
|
__exportStar(require("./PostedCustomVoice"), exports);
|
|
26
75
|
__exportStar(require("./ReturnCustomVoiceBaseVoice"), exports);
|
|
27
76
|
__exportStar(require("./ReturnCustomVoiceParameters"), exports);
|
|
28
77
|
__exportStar(require("./ReturnCustomVoice"), exports);
|
|
29
|
-
__exportStar(require("./
|
|
30
|
-
__exportStar(require("./
|
|
78
|
+
__exportStar(require("./ReturnPagedConfigs"), exports);
|
|
79
|
+
__exportStar(require("./ReturnConfig"), exports);
|
|
80
|
+
__exportStar(require("./ReturnPagedChatsPaginationDirection"), exports);
|
|
81
|
+
__exportStar(require("./ReturnPagedChats"), exports);
|
|
82
|
+
__exportStar(require("./ReturnChatPagedEventsStatus"), exports);
|
|
83
|
+
__exportStar(require("./ReturnChatPagedEventsPaginationDirection"), exports);
|
|
84
|
+
__exportStar(require("./ReturnChatPagedEvents"), exports);
|
|
85
|
+
__exportStar(require("./ReturnChatAudioReconstructionStatus"), exports);
|
|
86
|
+
__exportStar(require("./ReturnChatAudioReconstruction"), exports);
|
|
87
|
+
__exportStar(require("./ReturnPagedChatGroupsPaginationDirection"), exports);
|
|
88
|
+
__exportStar(require("./ReturnPagedChatGroups"), exports);
|
|
89
|
+
__exportStar(require("./ReturnChatGroupPagedChatsPaginationDirection"), exports);
|
|
90
|
+
__exportStar(require("./ReturnChatGroupPagedChats"), exports);
|
|
91
|
+
__exportStar(require("./ReturnChatGroupPagedEventsPaginationDirection"), exports);
|
|
92
|
+
__exportStar(require("./ReturnChatGroupPagedEvents"), exports);
|
|
93
|
+
__exportStar(require("./ReturnChatGroupPagedAudioReconstructionsPaginationDirection"), exports);
|
|
94
|
+
__exportStar(require("./ReturnChatGroupPagedAudioReconstructions"), exports);
|
|
31
95
|
__exportStar(require("./PostedConfigPromptSpec"), exports);
|
|
32
|
-
__exportStar(require("./
|
|
33
|
-
__exportStar(require("./
|
|
34
|
-
__exportStar(require("./PostedEventMessageSpecs"), exports);
|
|
96
|
+
__exportStar(require("./PostedVoiceProvider"), exports);
|
|
97
|
+
__exportStar(require("./PostedVoice"), exports);
|
|
35
98
|
__exportStar(require("./PostedLanguageModelModelProvider"), exports);
|
|
36
99
|
__exportStar(require("./PostedLanguageModelModelResource"), exports);
|
|
37
100
|
__exportStar(require("./PostedLanguageModel"), exports);
|
|
38
|
-
__exportStar(require("./
|
|
101
|
+
__exportStar(require("./PostedEllmModel"), exports);
|
|
102
|
+
__exportStar(require("./PostedUserDefinedToolSpec"), exports);
|
|
103
|
+
__exportStar(require("./PostedBuiltinToolName"), exports);
|
|
104
|
+
__exportStar(require("./PostedBuiltinTool"), exports);
|
|
105
|
+
__exportStar(require("./PostedEventMessageSpecs"), exports);
|
|
39
106
|
__exportStar(require("./PostedTimeoutSpecsInactivity"), exports);
|
|
40
107
|
__exportStar(require("./PostedTimeoutSpecsMaxDuration"), exports);
|
|
41
108
|
__exportStar(require("./PostedTimeoutSpecs"), exports);
|
|
42
|
-
__exportStar(require("./PostedUserDefinedToolSpec"), exports);
|
|
43
|
-
__exportStar(require("./PostedVoiceProvider"), exports);
|
|
44
|
-
__exportStar(require("./PostedVoice"), exports);
|
|
45
109
|
__exportStar(require("./PostedWebhookEventType"), exports);
|
|
46
110
|
__exportStar(require("./PostedWebhookSpec"), exports);
|
|
47
|
-
__exportStar(require("./
|
|
48
|
-
__exportStar(require("./
|
|
49
|
-
__exportStar(require("./ReturnConfig"), exports);
|
|
50
|
-
__exportStar(require("./ReturnEllmModel"), exports);
|
|
51
|
-
__exportStar(require("./ReturnEventMessageSpec"), exports);
|
|
52
|
-
__exportStar(require("./ReturnEventMessageSpecs"), exports);
|
|
111
|
+
__exportStar(require("./ReturnVoiceProvider"), exports);
|
|
112
|
+
__exportStar(require("./ReturnVoice"), exports);
|
|
53
113
|
__exportStar(require("./ReturnLanguageModelModelProvider"), exports);
|
|
54
114
|
__exportStar(require("./ReturnLanguageModelModelResource"), exports);
|
|
55
115
|
__exportStar(require("./ReturnLanguageModel"), exports);
|
|
56
|
-
__exportStar(require("./
|
|
116
|
+
__exportStar(require("./ReturnEllmModel"), exports);
|
|
117
|
+
__exportStar(require("./ReturnBuiltinToolToolType"), exports);
|
|
118
|
+
__exportStar(require("./ReturnBuiltinTool"), exports);
|
|
119
|
+
__exportStar(require("./ReturnEventMessageSpecs"), exports);
|
|
57
120
|
__exportStar(require("./ReturnTimeoutSpecs"), exports);
|
|
58
|
-
__exportStar(require("./ReturnVoiceProvider"), exports);
|
|
59
|
-
__exportStar(require("./ReturnVoice"), exports);
|
|
60
121
|
__exportStar(require("./ReturnWebhookEventType"), exports);
|
|
61
122
|
__exportStar(require("./ReturnWebhookSpec"), exports);
|
|
62
|
-
__exportStar(require("./ReturnPagedUserDefinedTools"), exports);
|
|
63
|
-
__exportStar(require("./ReturnPagedPrompts"), exports);
|
|
64
|
-
__exportStar(require("./ReturnPagedCustomVoices"), exports);
|
|
65
|
-
__exportStar(require("./ReturnPagedConfigs"), exports);
|
|
66
123
|
__exportStar(require("./ReturnChatStatus"), exports);
|
|
67
124
|
__exportStar(require("./ReturnChat"), exports);
|
|
68
|
-
__exportStar(require("./ReturnConfigSpec"), exports);
|
|
69
|
-
__exportStar(require("./ReturnPagedChatsPaginationDirection"), exports);
|
|
70
|
-
__exportStar(require("./ReturnPagedChats"), exports);
|
|
71
125
|
__exportStar(require("./ReturnChatEventRole"), exports);
|
|
72
126
|
__exportStar(require("./ReturnChatEventType"), exports);
|
|
73
127
|
__exportStar(require("./ReturnChatEvent"), exports);
|
|
74
|
-
__exportStar(require("./
|
|
75
|
-
__exportStar(require("./ReturnChatPagedEventsPaginationDirection"), exports);
|
|
76
|
-
__exportStar(require("./ReturnChatPagedEvents"), exports);
|
|
77
|
-
__exportStar(require("./ReturnChatAudioReconstructionStatus"), exports);
|
|
78
|
-
__exportStar(require("./ReturnChatAudioReconstruction"), exports);
|
|
128
|
+
__exportStar(require("./ReturnConfigSpec"), exports);
|
|
79
129
|
__exportStar(require("./ReturnChatGroup"), exports);
|
|
80
|
-
__exportStar(require("./
|
|
81
|
-
__exportStar(require("./
|
|
82
|
-
__exportStar(require("./
|
|
83
|
-
__exportStar(require("./
|
|
84
|
-
__exportStar(require("./ReturnChatGroupPagedEventsPaginationDirection"), exports);
|
|
85
|
-
__exportStar(require("./ReturnChatGroupPagedEvents"), exports);
|
|
86
|
-
__exportStar(require("./ReturnChatGroupPagedAudioReconstructionsPaginationDirection"), exports);
|
|
87
|
-
__exportStar(require("./ReturnChatGroupPagedAudioReconstructions"), exports);
|
|
130
|
+
__exportStar(require("./PostedEventMessageSpec"), exports);
|
|
131
|
+
__exportStar(require("./PostedTimeoutSpec"), exports);
|
|
132
|
+
__exportStar(require("./ReturnEventMessageSpec"), exports);
|
|
133
|
+
__exportStar(require("./ReturnTimeoutSpec"), exports);
|
|
88
134
|
__exportStar(require("./PostedPromptSpec"), exports);
|
|
89
|
-
__exportStar(require("./AssistantInput"), exports);
|
|
90
|
-
__exportStar(require("./AudioConfiguration"), exports);
|
|
91
|
-
__exportStar(require("./AudioInput"), exports);
|
|
92
|
-
__exportStar(require("./BuiltInTool"), exports);
|
|
93
|
-
__exportStar(require("./BuiltinToolConfig"), exports);
|
|
94
|
-
__exportStar(require("./Context"), exports);
|
|
95
|
-
__exportStar(require("./ContextType"), exports);
|
|
96
|
-
__exportStar(require("./Encoding"), exports);
|
|
97
|
-
__exportStar(require("./ErrorLevel"), exports);
|
|
98
|
-
__exportStar(require("./PauseAssistantMessage"), exports);
|
|
99
|
-
__exportStar(require("./ResumeAssistantMessage"), exports);
|
|
100
|
-
__exportStar(require("./SessionSettingsVariablesValue"), exports);
|
|
101
|
-
__exportStar(require("./SessionSettings"), exports);
|
|
102
|
-
__exportStar(require("./Tool"), exports);
|
|
103
|
-
__exportStar(require("./ToolErrorMessage"), exports);
|
|
104
|
-
__exportStar(require("./ToolResponseMessage"), exports);
|
|
105
|
-
__exportStar(require("./ToolType"), exports);
|
|
106
|
-
__exportStar(require("./UserInput"), exports);
|
|
107
|
-
__exportStar(require("./AssistantEnd"), exports);
|
|
108
|
-
__exportStar(require("./AssistantMessage"), exports);
|
|
109
|
-
__exportStar(require("./AudioOutput"), exports);
|
|
110
|
-
__exportStar(require("./ChatMessageToolResult"), exports);
|
|
111
|
-
__exportStar(require("./ChatMessage"), exports);
|
|
112
|
-
__exportStar(require("./ChatMetadata"), exports);
|
|
113
|
-
__exportStar(require("./EmotionScores"), exports);
|
|
114
|
-
__exportStar(require("./WebSocketError"), exports);
|
|
115
|
-
__exportStar(require("./Inference"), exports);
|
|
116
|
-
__exportStar(require("./MillisecondInterval"), exports);
|
|
117
|
-
__exportStar(require("./ProsodyInference"), exports);
|
|
118
|
-
__exportStar(require("./Role"), exports);
|
|
119
|
-
__exportStar(require("./ToolCallMessage"), exports);
|
|
120
|
-
__exportStar(require("./UserInterruption"), exports);
|
|
121
|
-
__exportStar(require("./UserMessage"), exports);
|
|
122
|
-
__exportStar(require("./JsonMessage"), exports);
|
|
123
|
-
__exportStar(require("./TtsInput"), exports);
|
|
124
|
-
__exportStar(require("./TextInput"), exports);
|
|
125
|
-
__exportStar(require("./FunctionCallResponseInput"), exports);
|
|
126
|
-
__exportStar(require("./HttpValidationError"), exports);
|
|
127
|
-
__exportStar(require("./ValidationErrorLocItem"), exports);
|
|
128
|
-
__exportStar(require("./ValidationError"), exports);
|
|
129
|
-
__exportStar(require("./WebhookEventChatEnded"), exports);
|
|
130
|
-
__exportStar(require("./WebhookEventChatStartType"), exports);
|
|
131
|
-
__exportStar(require("./WebhookEventChatStarted"), exports);
|
|
132
|
-
__exportStar(require("./WebhookEventChatStatus"), exports);
|
|
133
|
-
__exportStar(require("./WebhookEvent"), exports);
|
|
134
|
-
__exportStar(require("./WebhookEventBase"), exports);
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export * from "./StreamFace";
|
|
2
|
+
export * from "./StreamLanguage";
|
|
3
|
+
export * from "./Config";
|
|
4
|
+
export * from "./StreamModelsEndpointPayload";
|
|
1
5
|
export * from "./StreamModelPredictionsJobDetails";
|
|
2
6
|
export * from "./StreamModelPredictionsBurstPredictionsItem";
|
|
3
7
|
export * from "./StreamModelPredictionsBurst";
|
|
@@ -15,7 +19,3 @@ export * from "./StreamErrorMessage";
|
|
|
15
19
|
export * from "./StreamWarningMessageJobDetails";
|
|
16
20
|
export * from "./StreamWarningMessage";
|
|
17
21
|
export * from "./SubscribeEvent";
|
|
18
|
-
export * from "./StreamFace";
|
|
19
|
-
export * from "./StreamLanguage";
|
|
20
|
-
export * from "./Config";
|
|
21
|
-
export * from "./StreamModelsEndpointPayload";
|
|
@@ -14,6 +14,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./StreamFace"), exports);
|
|
18
|
+
__exportStar(require("./StreamLanguage"), exports);
|
|
19
|
+
__exportStar(require("./Config"), exports);
|
|
20
|
+
__exportStar(require("./StreamModelsEndpointPayload"), exports);
|
|
17
21
|
__exportStar(require("./StreamModelPredictionsJobDetails"), exports);
|
|
18
22
|
__exportStar(require("./StreamModelPredictionsBurstPredictionsItem"), exports);
|
|
19
23
|
__exportStar(require("./StreamModelPredictionsBurst"), exports);
|
|
@@ -31,7 +35,3 @@ __exportStar(require("./StreamErrorMessage"), exports);
|
|
|
31
35
|
__exportStar(require("./StreamWarningMessageJobDetails"), exports);
|
|
32
36
|
__exportStar(require("./StreamWarningMessage"), exports);
|
|
33
37
|
__exportStar(require("./SubscribeEvent"), exports);
|
|
34
|
-
__exportStar(require("./StreamFace"), exports);
|
|
35
|
-
__exportStar(require("./StreamLanguage"), exports);
|
|
36
|
-
__exportStar(require("./Config"), exports);
|
|
37
|
-
__exportStar(require("./StreamModelsEndpointPayload"), exports);
|
|
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
26
|
+
exports.expressionMeasurement = exports.empathicVoice = exports.tts = void 0;
|
|
27
27
|
exports.tts = __importStar(require("./tts"));
|
|
28
|
-
exports.expressionMeasurement = __importStar(require("./expressionMeasurement"));
|
|
29
28
|
exports.empathicVoice = __importStar(require("./empathicVoice"));
|
|
29
|
+
exports.expressionMeasurement = __importStar(require("./expressionMeasurement"));
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as Hume from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
export declare const ErrorResponse: core.serialization.ObjectSchema<serializers.tts.ErrorResponse.Raw, Hume.tts.ErrorResponse>;
|
|
8
|
+
export declare namespace ErrorResponse {
|
|
9
|
+
interface Raw {
|
|
10
|
+
error?: string | null;
|
|
11
|
+
message?: string | null;
|
|
12
|
+
code?: string | null;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.ErrorResponse = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
exports.ErrorResponse = core.serialization.object({
|
|
32
|
+
error: core.serialization.string().optional(),
|
|
33
|
+
message: core.serialization.string().optional(),
|
|
34
|
+
code: core.serialization.string().optional(),
|
|
35
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as Hume from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { ReturnVoice } from "./ReturnVoice";
|
|
8
|
+
export declare const ReturnPagedVoices: core.serialization.ObjectSchema<serializers.tts.ReturnPagedVoices.Raw, Hume.tts.ReturnPagedVoices>;
|
|
9
|
+
export declare namespace ReturnPagedVoices {
|
|
10
|
+
interface Raw {
|
|
11
|
+
page_number?: number | null;
|
|
12
|
+
page_size?: number | null;
|
|
13
|
+
total_pages?: number | null;
|
|
14
|
+
voices_page?: ReturnVoice.Raw[] | null;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.ReturnPagedVoices = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
const ReturnVoice_1 = require("./ReturnVoice");
|
|
32
|
+
exports.ReturnPagedVoices = core.serialization.object({
|
|
33
|
+
pageNumber: core.serialization.property("page_number", core.serialization.number().optional()),
|
|
34
|
+
pageSize: core.serialization.property("page_size", core.serialization.number().optional()),
|
|
35
|
+
totalPages: core.serialization.property("total_pages", core.serialization.number().optional()),
|
|
36
|
+
voicesPage: core.serialization.property("voices_page", core.serialization.list(ReturnVoice_1.ReturnVoice).optional()),
|
|
37
|
+
});
|
|
@@ -4,10 +4,12 @@
|
|
|
4
4
|
import * as serializers from "../../../index";
|
|
5
5
|
import * as Hume from "../../../../api/index";
|
|
6
6
|
import * as core from "../../../../core";
|
|
7
|
+
import { VoiceProvider } from "./VoiceProvider";
|
|
7
8
|
export declare const ReturnVoice: core.serialization.ObjectSchema<serializers.tts.ReturnVoice.Raw, Hume.tts.ReturnVoice>;
|
|
8
9
|
export declare namespace ReturnVoice {
|
|
9
10
|
interface Raw {
|
|
10
11
|
id?: string | null;
|
|
11
|
-
name
|
|
12
|
+
name?: string | null;
|
|
13
|
+
provider?: VoiceProvider.Raw | null;
|
|
12
14
|
}
|
|
13
15
|
}
|
|
@@ -28,7 +28,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
exports.ReturnVoice = void 0;
|
|
30
30
|
const core = __importStar(require("../../../../core"));
|
|
31
|
+
const VoiceProvider_1 = require("./VoiceProvider");
|
|
31
32
|
exports.ReturnVoice = core.serialization.object({
|
|
32
33
|
id: core.serialization.string().optional(),
|
|
33
|
-
name: core.serialization.string(),
|
|
34
|
+
name: core.serialization.string().optional(),
|
|
35
|
+
provider: VoiceProvider_1.VoiceProvider.optional(),
|
|
34
36
|
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as Hume from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
export declare const SnippetAudioChunk: core.serialization.ObjectSchema<serializers.tts.SnippetAudioChunk.Raw, Hume.tts.SnippetAudioChunk>;
|
|
8
|
+
export declare namespace SnippetAudioChunk {
|
|
9
|
+
interface Raw {
|
|
10
|
+
audio: string;
|
|
11
|
+
chunk_index: number;
|
|
12
|
+
generation_id: string;
|
|
13
|
+
is_last_chunk: boolean;
|
|
14
|
+
utterance_index?: number | null;
|
|
15
|
+
}
|
|
16
|
+
}
|