@1interface/chat-shell 0.3.2 → 0.3.3

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +12 -4
  2. package/package.json +5 -5
package/dist/index.d.ts CHANGED
@@ -95,6 +95,7 @@ messageQueue: {
95
95
  id: string;
96
96
  text: string;
97
97
  queuedAt: string;
98
+ transcriptionIds?: string[];
98
99
  }[];
99
100
  };
100
101
  conversations: {
@@ -124,12 +125,13 @@ protocol: ProtocolType;
124
125
  body?: any;
125
126
  }, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "chat" | "toolServers", any, "chatApi", unknown>;
126
127
  transcribeAudio: MutationDefinition< {
128
+ conversationId: string;
127
129
  audioFile: File;
128
130
  }, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "chat" | "toolServers", {
129
131
  success: boolean;
130
132
  data: {
131
133
  text: string;
132
- filename?: string;
134
+ transcription_id: string;
133
135
  };
134
136
  }, "chatApi", unknown>;
135
137
  getToolServers: QueryDefinition<void, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "chat" | "toolServers", {
@@ -168,6 +170,7 @@ messageQueue: {
168
170
  id: string;
169
171
  text: string;
170
172
  queuedAt: string;
173
+ transcriptionIds?: string[];
171
174
  }[];
172
175
  };
173
176
  conversations: {
@@ -197,12 +200,13 @@ protocol: ProtocolType;
197
200
  body?: any;
198
201
  }, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "chat" | "toolServers", any, "chatApi", unknown>;
199
202
  transcribeAudio: MutationDefinition< {
203
+ conversationId: string;
200
204
  audioFile: File;
201
205
  }, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "chat" | "toolServers", {
202
206
  success: boolean;
203
207
  data: {
204
208
  text: string;
205
- filename?: string;
209
+ transcription_id: string;
206
210
  };
207
211
  }, "chatApi", unknown>;
208
212
  getToolServers: QueryDefinition<void, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "chat" | "toolServers", {
@@ -259,6 +263,7 @@ messageQueue: {
259
263
  id: string;
260
264
  text: string;
261
265
  queuedAt: string;
266
+ transcriptionIds?: string[];
262
267
  }[];
263
268
  };
264
269
  conversations: {
@@ -288,12 +293,13 @@ protocol: ProtocolType;
288
293
  body?: any;
289
294
  }, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "chat" | "toolServers", any, "chatApi", unknown>;
290
295
  transcribeAudio: MutationDefinition< {
296
+ conversationId: string;
291
297
  audioFile: File;
292
298
  }, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "chat" | "toolServers", {
293
299
  success: boolean;
294
300
  data: {
295
301
  text: string;
296
- filename?: string;
302
+ transcription_id: string;
297
303
  };
298
304
  }, "chatApi", unknown>;
299
305
  getToolServers: QueryDefinition<void, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "chat" | "toolServers", {
@@ -333,6 +339,7 @@ messageQueue: {
333
339
  id: string;
334
340
  text: string;
335
341
  queuedAt: string;
342
+ transcriptionIds?: string[];
336
343
  }[];
337
344
  };
338
345
  conversations: {
@@ -362,12 +369,13 @@ protocol: ProtocolType;
362
369
  body?: any;
363
370
  }, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "chat" | "toolServers", any, "chatApi", unknown>;
364
371
  transcribeAudio: MutationDefinition< {
372
+ conversationId: string;
365
373
  audioFile: File;
366
374
  }, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "chat" | "toolServers", {
367
375
  success: boolean;
368
376
  data: {
369
377
  text: string;
370
- filename?: string;
378
+ transcription_id: string;
371
379
  };
372
380
  }, "chatApi", unknown>;
373
381
  getToolServers: QueryDefinition<void, BaseQueryFn<string | FetchArgs, unknown, FetchBaseQueryError>, "chat" | "toolServers", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1interface/chat-shell",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "license": "UNLICENSED",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -51,11 +51,11 @@
51
51
  "lucide-react": "^0.562.0",
52
52
  "streamdown": "^1.6.11",
53
53
  "tailwind-merge": "^3.6.0",
54
- "@1interface/chat-core": "^0.2.4",
55
- "@1interface/shared-core": "^0.2.2",
54
+ "@1interface/voice-shell": "^0.3.2",
55
+ "@1interface/chat-core": "^0.3.0",
56
56
  "@1interface/widgets": "^0.1.0",
57
- "@1interface/voice-core": "^0.3.1",
58
- "@1interface/voice-shell": "^0.3.1"
57
+ "@1interface/voice-core": "^0.3.2",
58
+ "@1interface/shared-core": "^0.3.0"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "@reduxjs/toolkit": "^2.0.0",