@skippr/live-agent-sdk 0.96.0 → 0.97.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { LauncherDropTarget } from '../hooks/useLauncherDrag';
|
|
2
2
|
import type { PhaseStatus } from '../hooks/usePhaseUpdates';
|
|
3
3
|
import type { AgentMode } from '../lib/agentMode';
|
|
4
|
-
import { type BuddyShape, CAPTURE_MODE, type CaptureMode, type ChatSurface, DEFAULT_CAPTURE_MODE, type LauncherMode, MIC_MODE, type MicMode } from '../lib/constants';
|
|
4
|
+
import { type ActionPlanMode, type BuddyShape, CAPTURE_MODE, type CaptureMode, type ChatSurface, DEFAULT_CAPTURE_MODE, type LauncherMode, MIC_MODE, type MicMode } from '../lib/constants';
|
|
5
5
|
import type { SessionStatus } from '../lib/sessionStatus';
|
|
6
6
|
import type { BarDock } from '../lib/voiceBar';
|
|
7
7
|
import type { Message } from '../types';
|
|
@@ -10,6 +10,7 @@ export { CAPTURE_MODE, type CaptureMode, DEFAULT_CAPTURE_MODE, MIC_MODE, type Mi
|
|
|
10
10
|
export interface AgentControls {
|
|
11
11
|
highlight?: boolean;
|
|
12
12
|
actions?: boolean;
|
|
13
|
+
actionPlanMode?: ActionPlanMode;
|
|
13
14
|
micMode?: MicMode;
|
|
14
15
|
chat?: ChatSurface;
|
|
15
16
|
}
|
|
@@ -63,6 +63,13 @@ export declare const CHAT_SURFACE: {
|
|
|
63
63
|
};
|
|
64
64
|
export type ChatSurface = (typeof CHAT_SURFACE)[keyof typeof CHAT_SURFACE];
|
|
65
65
|
export declare const DEFAULT_CHAT_SURFACE: ChatSurface;
|
|
66
|
+
export declare const ACTION_PLAN_MODE: {
|
|
67
|
+
readonly Always: "always";
|
|
68
|
+
readonly Auto: "auto";
|
|
69
|
+
readonly Never: "never";
|
|
70
|
+
};
|
|
71
|
+
export type ActionPlanMode = (typeof ACTION_PLAN_MODE)[keyof typeof ACTION_PLAN_MODE];
|
|
72
|
+
export declare const DEFAULT_ACTION_PLAN_MODE: ActionPlanMode;
|
|
66
73
|
export declare const LAUNCHER_MODE: {
|
|
67
74
|
readonly Avatar: "avatar";
|
|
68
75
|
readonly Strip: "strip";
|