@voxket-ai/voxket-live 1.1.62 → 1.1.64
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/dist/components/common/welcome.d.ts +2 -2
- package/dist/components/modalities/chat/chat-view.d.ts +2 -1
- package/dist/components/widget.d.ts +3 -2
- package/dist/core/client.d.ts +4 -4
- package/dist/core/connection-manager.d.ts +3 -3
- package/dist/core/ui-renderer.d.ts +3 -2
- package/dist/index.cjs +107 -107
- package/dist/index.css +1 -1
- package/dist/index.js +16394 -16367
- package/dist/types/core.d.ts +6 -2
- package/package.json +1 -1
package/dist/types/core.d.ts
CHANGED
|
@@ -26,9 +26,13 @@ export interface SessionConfig {
|
|
|
26
26
|
/** Session timeout in milliseconds */
|
|
27
27
|
timeout?: number;
|
|
28
28
|
/** Supported modalities for this session */
|
|
29
|
-
modalities?:
|
|
29
|
+
modalities?: ModalityValue[];
|
|
30
30
|
}
|
|
31
31
|
export type SessionModality = 'voice' | 'video' | 'chat' | 'screen_share';
|
|
32
|
+
export interface ModalityValue {
|
|
33
|
+
mod_type: SessionModality;
|
|
34
|
+
agent_id?: string;
|
|
35
|
+
}
|
|
32
36
|
export interface VoxketSession {
|
|
33
37
|
/** Unique session identifier */
|
|
34
38
|
id: string;
|
|
@@ -43,7 +47,7 @@ export interface VoxketSession {
|
|
|
43
47
|
/** Session metadata */
|
|
44
48
|
metadata: Record<string, any>;
|
|
45
49
|
/** Active modalities */
|
|
46
|
-
activeModalities:
|
|
50
|
+
activeModalities: ModalityValue[];
|
|
47
51
|
/** Agent information */
|
|
48
52
|
agentInfo?: AgentInfo | null;
|
|
49
53
|
}
|