@nextclaw/agent-chat 0.1.2 → 0.1.3

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/dist/index.d.ts +3 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -150,8 +150,11 @@ type SourceUIPart = {
150
150
  };
151
151
  type FileUIPart = {
152
152
  type: 'file';
153
+ name?: string;
153
154
  mimeType: string;
154
155
  data: string;
156
+ url?: string;
157
+ sizeBytes?: number;
155
158
  };
156
159
  type StepStartUIPart = {
157
160
  type: 'step-start';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextclaw/agent-chat",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "private": false,
5
5
  "description": "Nextclaw agent chat core library.",
6
6
  "type": "module",