gui-chat-protocol 0.0.2 → 0.0.4

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/index.d.ts CHANGED
@@ -204,7 +204,6 @@ export declare interface ToolPluginCore<T = unknown, J = unknown, A extends obje
204
204
  execute: (context: ToolContext, args: A) => Promise<ToolResult<T, J>>;
205
205
  generatingMessage: string;
206
206
  waitingMessage?: string;
207
- uploadMessage?: string;
208
207
  isEnabled: (startResponse?: S | null) => boolean;
209
208
  delayAfterExecution?: number;
210
209
  systemPrompt?: string;
@@ -264,6 +263,7 @@ export declare interface ViewComponentProps<T = unknown, J = unknown> {
264
263
  sendTextMessage: (text?: string, options?: SendTextMessageOptions) => void;
265
264
  onUpdateResult?: (result: Partial<ToolResult<T, J>>) => void;
266
265
  pluginConfigs?: Record<string, unknown>;
266
+ isAudioPlaying?: boolean;
267
267
  }
268
268
 
269
269
  export { }
package/dist/react.d.ts CHANGED
@@ -206,7 +206,6 @@ export declare interface ToolPluginCore<T = unknown, J = unknown, A extends obje
206
206
  execute: (context: ToolContext, args: A) => Promise<ToolResult<T, J>>;
207
207
  generatingMessage: string;
208
208
  waitingMessage?: string;
209
- uploadMessage?: string;
210
209
  isEnabled: (startResponse?: S | null) => boolean;
211
210
  delayAfterExecution?: number;
212
211
  systemPrompt?: string;
@@ -280,6 +279,7 @@ export declare interface ViewComponentProps<T = unknown, J = unknown> {
280
279
  sendTextMessage: (text?: string, options?: SendTextMessageOptions) => void;
281
280
  onUpdateResult?: (result: Partial<ToolResult<T, J>>) => void;
282
281
  pluginConfigs?: Record<string, unknown>;
282
+ isAudioPlaying?: boolean;
283
283
  }
284
284
 
285
285
  export { }
package/dist/vue.d.ts CHANGED
@@ -235,7 +235,6 @@ export declare interface ToolPluginCore<T = unknown, J = unknown, A extends obje
235
235
  execute: (context: ToolContext, args: A) => Promise<ToolResult<T, J>>;
236
236
  generatingMessage: string;
237
237
  waitingMessage?: string;
238
- uploadMessage?: string;
239
238
  isEnabled: (startResponse?: S | null) => boolean;
240
239
  delayAfterExecution?: number;
241
240
  systemPrompt?: string;
@@ -300,6 +299,7 @@ export declare interface ViewComponentProps<T = unknown, J = unknown> {
300
299
  sendTextMessage: (text?: string, options?: SendTextMessageOptions) => void;
301
300
  onUpdateResult?: (result: Partial<ToolResult<T, J>>) => void;
302
301
  pluginConfigs?: Record<string, unknown>;
302
+ isAudioPlaying?: boolean;
303
303
  }
304
304
 
305
305
  export { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gui-chat-protocol",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Protocol types for GUI chat plugins - framework-agnostic core with Vue and React adapters",
5
5
  "type": "module",
6
6
  "exports": {