@vellumai/plugin-api 0.10.12-dev.202607272036.39fd3b4 → 0.10.12-dev.202607272128.6a086ca
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/index.d.ts +14 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4393,7 +4393,7 @@ export declare function listConversations(limit?: number, conversationType?: Con
|
|
|
4393
4393
|
*/
|
|
4394
4394
|
export declare function listInstalledSkills(): Promise<ResolvedSkillEntry[]>;
|
|
4395
4395
|
|
|
4396
|
-
declare const _LIVE_VOICE_SERVER_FRAME_TYPES: readonly ["ready", "busy", "speech_started", "utterance_end", "utterance_discarded", "stt_partial", "stt_final", "thinking", "assistant_text_delta", "tts_audio", "tts_done", "turn_cancelled", "metrics", "archived", "error"];
|
|
4396
|
+
declare const _LIVE_VOICE_SERVER_FRAME_TYPES: readonly ["ready", "busy", "speech_started", "utterance_end", "utterance_discarded", "stt_partial", "stt_final", "thinking", "assistant_text_delta", "tts_audio", "tts_done", "turn_cancelled", "minimize_room", "metrics", "archived", "error"];
|
|
4397
4397
|
|
|
4398
4398
|
declare const LIVE_VOICE_TURN_DETECTION_MODES: readonly ["manual", "server_vad"];
|
|
4399
4399
|
|
|
@@ -4491,6 +4491,18 @@ declare interface LiveVoiceMetricsServerFrame extends LiveVoiceServerFrameBase {
|
|
|
4491
4491
|
readonly progressUpdatesSpoken?: number;
|
|
4492
4492
|
}
|
|
4493
4493
|
|
|
4494
|
+
/**
|
|
4495
|
+
* Assistant-requested room minimize: the just-completed turn asked (via the
|
|
4496
|
+
* inline [-1] control marker) for the client to dismiss the full-screen
|
|
4497
|
+
* voice room so the user can see the screen behind it. Sent only after the
|
|
4498
|
+
* turn's TTS has fully drained, at most once per turn. Advisory — clients
|
|
4499
|
+
* without a room (pop-outs, older clients) ignore it.
|
|
4500
|
+
*/
|
|
4501
|
+
declare interface LiveVoiceMinimizeRoomServerFrame extends LiveVoiceServerFrameBase {
|
|
4502
|
+
readonly type: "minimize_room";
|
|
4503
|
+
readonly turnId: string;
|
|
4504
|
+
}
|
|
4505
|
+
|
|
4494
4506
|
declare const LiveVoiceProtocolErrorCode: {
|
|
4495
4507
|
readonly InvalidJson: "invalid_json";
|
|
4496
4508
|
readonly InvalidFrame: "invalid_frame";
|
|
@@ -4520,7 +4532,7 @@ declare interface LiveVoiceReadyServerFrame extends LiveVoiceServerFrameBase {
|
|
|
4520
4532
|
readonly turnDetection?: LiveVoiceTurnDetectionMode;
|
|
4521
4533
|
}
|
|
4522
4534
|
|
|
4523
|
-
export declare type LiveVoiceServerFrame = LiveVoiceReadyServerFrame | LiveVoiceBusyServerFrame | LiveVoiceSpeechStartedServerFrame | LiveVoiceUtteranceEndServerFrame | LiveVoiceUtteranceDiscardedServerFrame | LiveVoiceSttPartialServerFrame | LiveVoiceSttFinalServerFrame | LiveVoiceThinkingServerFrame | LiveVoiceAssistantTextDeltaServerFrame | LiveVoiceTtsAudioServerFrame | LiveVoiceTtsDoneServerFrame | LiveVoiceTurnCancelledServerFrame | LiveVoiceMetricsServerFrame | LiveVoiceArchivedServerFrame | LiveVoiceErrorServerFrame;
|
|
4535
|
+
export declare type LiveVoiceServerFrame = LiveVoiceReadyServerFrame | LiveVoiceBusyServerFrame | LiveVoiceSpeechStartedServerFrame | LiveVoiceUtteranceEndServerFrame | LiveVoiceUtteranceDiscardedServerFrame | LiveVoiceSttPartialServerFrame | LiveVoiceSttFinalServerFrame | LiveVoiceThinkingServerFrame | LiveVoiceAssistantTextDeltaServerFrame | LiveVoiceTtsAudioServerFrame | LiveVoiceTtsDoneServerFrame | LiveVoiceTurnCancelledServerFrame | LiveVoiceMinimizeRoomServerFrame | LiveVoiceMetricsServerFrame | LiveVoiceArchivedServerFrame | LiveVoiceErrorServerFrame;
|
|
4524
4536
|
|
|
4525
4537
|
declare interface LiveVoiceServerFrameBase {
|
|
4526
4538
|
readonly type: LiveVoiceServerFrameType;
|
package/package.json
CHANGED