@tutti-os/agent-activity-core 0.0.23 → 0.0.25

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 +8 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -209,14 +209,20 @@ interface AgentActivitySendInput {
209
209
  signal?: AbortSignal;
210
210
  }
211
211
  interface AgentPromptContentBlock {
212
- type: "text" | "image" | "skill" | "mention";
212
+ type: "text" | "image" | "file" | "skill" | "mention";
213
213
  text?: string;
214
- mimeType?: "image/png" | "image/jpeg" | "image/webp";
214
+ mimeType?: "image/png" | "image/jpeg" | "image/webp" | string;
215
215
  data?: string;
216
216
  url?: string;
217
217
  attachmentId?: string;
218
218
  name?: string;
219
219
  path?: string;
220
+ uri?: string;
221
+ hostPath?: string;
222
+ uploadStatus?: string;
223
+ assetId?: string;
224
+ kind?: string;
225
+ sizeBytes?: number;
220
226
  }
221
227
  interface AgentActivityCancelSessionInput {
222
228
  workspaceId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tutti-os/agent-activity-core",
3
- "version": "0.0.23",
3
+ "version": "0.0.25",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",