teodor-new-chat-ui 4.3.356 → 4.3.358

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
  };
@@ -159,6 +159,18 @@ export interface ThreadSummary {
159
159
  updatedAt: string;
160
160
  messageCount: number;
161
161
  }
162
+ export interface SharedThreadSummary extends ThreadSummary {
163
+ shareId: string;
164
+ sharedByUserId: string;
165
+ sharedAt: string;
166
+ }
167
+ export interface ThreadShareResponse {
168
+ shareId: string;
169
+ threadId: string;
170
+ sharedByUserId: string;
171
+ sharedWithUserId: string;
172
+ sharedAt: string;
173
+ }
162
174
  export interface ThreadInfo extends ThreadSummary {
163
175
  lastMessage?: string | null;
164
176
  }
@@ -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.356",
3
+ "version": "4.3.358",
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