gui-chat-protocol 0.0.3 → 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
@@ -263,6 +263,7 @@ export declare interface ViewComponentProps<T = unknown, J = unknown> {
263
263
  sendTextMessage: (text?: string, options?: SendTextMessageOptions) => void;
264
264
  onUpdateResult?: (result: Partial<ToolResult<T, J>>) => void;
265
265
  pluginConfigs?: Record<string, unknown>;
266
+ isAudioPlaying?: boolean;
266
267
  }
267
268
 
268
269
  export { }
package/dist/react.d.ts CHANGED
@@ -279,6 +279,7 @@ export declare interface ViewComponentProps<T = unknown, J = unknown> {
279
279
  sendTextMessage: (text?: string, options?: SendTextMessageOptions) => void;
280
280
  onUpdateResult?: (result: Partial<ToolResult<T, J>>) => void;
281
281
  pluginConfigs?: Record<string, unknown>;
282
+ isAudioPlaying?: boolean;
282
283
  }
283
284
 
284
285
  export { }
package/dist/vue.d.ts CHANGED
@@ -299,6 +299,7 @@ export declare interface ViewComponentProps<T = unknown, J = unknown> {
299
299
  sendTextMessage: (text?: string, options?: SendTextMessageOptions) => void;
300
300
  onUpdateResult?: (result: Partial<ToolResult<T, J>>) => void;
301
301
  pluginConfigs?: Record<string, unknown>;
302
+ isAudioPlaying?: boolean;
302
303
  }
303
304
 
304
305
  export { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gui-chat-protocol",
3
- "version": "0.0.3",
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": {