teodor-new-chat-ui 4.3.355 → 4.3.357

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.
@@ -31,7 +31,7 @@ export type ToolEndEvent = {
31
31
  seq?: number;
32
32
  } & ToolEventIdentity;
33
33
  export type ToolProgressEvent = {
34
- type: "progress";
34
+ type: "tool.progress";
35
35
  content?: string;
36
36
  seq?: number;
37
37
  };
@@ -1,4 +1,4 @@
1
- export type ToolStreamEntryType = "tool.start" | "tool.call" | "progress" | "custom" | "tool.end";
1
+ export type ToolStreamEntryType = "tool.start" | "tool.call" | "tool.progress" | "custom" | "tool.end";
2
2
  export interface ToolStreamEntry {
3
3
  id: string;
4
4
  idx: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "teodor-new-chat-ui",
3
- "version": "4.3.355",
3
+ "version": "4.3.357",
4
4
  "description": "React chat UI components with streaming support, tool calls, and modern design",
5
5
  "main": "dist/index.umd.js",
6
6
  "module": "dist/index.esm.js",
File without changes