@voxket-ai/voxket-live 1.0.149 → 1.0.151

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.
@@ -19,6 +19,8 @@ export interface SessionConfig {
19
19
  participantName?: string;
20
20
  /** Session-specific metadata */
21
21
  metadata?: Record<string, any>;
22
+ /** Participant-specific metadata to be sent to the API */
23
+ participantMetadata?: Record<string, any>;
22
24
  /** Session timeout in milliseconds */
23
25
  timeout?: number;
24
26
  /** Supported modalities for this session */
@@ -0,0 +1,23 @@
1
+ export interface ToolExecutionData {
2
+ type: string;
3
+ function_calls: Array<{
4
+ id: string;
5
+ type: string;
6
+ call_id: string;
7
+ arguments: string;
8
+ name: string;
9
+ created_at: number;
10
+ }>;
11
+ function_call_outputs: Array<{
12
+ id: string;
13
+ type: string;
14
+ name: string;
15
+ call_id: string;
16
+ output: string;
17
+ is_error: boolean;
18
+ created_at: number;
19
+ }>;
20
+ created_at: number;
21
+ parseError?: boolean;
22
+ rawData?: any;
23
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voxket-ai/voxket-live",
3
- "version": "1.0.149",
3
+ "version": "1.0.151",
4
4
  "description": "A React widget for embedding Voxket-powered audio/video/chat experiences.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -98,6 +98,7 @@
98
98
  "motion": "~12.18.1",
99
99
  "path": "~0.12.7",
100
100
  "react-markdown": "~10.1.0",
101
+ "recharts": "~3.2.1",
101
102
  "rehype-highlight": "~7.0.2",
102
103
  "remark-gfm": "~4.0.1",
103
104
  "sonner": "~2.0.5",