agentgui 1.0.410 → 1.0.411

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/package.json +1 -1
  2. package/server.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.410",
3
+ "version": "1.0.411",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -3865,7 +3865,8 @@ const BROADCAST_TYPES = new Set([
3865
3865
  'conversations_updated', 'conversation_deleted', 'queue_status', 'queue_updated',
3866
3866
  'rate_limit_hit', 'rate_limit_clear',
3867
3867
  'script_started', 'script_stopped', 'script_output',
3868
- 'model_download_progress', 'stt_progress', 'tts_setup_progress', 'voice_list'
3868
+ 'model_download_progress', 'stt_progress', 'tts_setup_progress', 'voice_list',
3869
+ 'streaming_start', 'streaming_progress', 'streaming_complete', 'streaming_error'
3869
3870
  ]);
3870
3871
 
3871
3872
  const wsOptimizer = new WSOptimizer();