@crewx/sdk 0.8.8-rc.3 → 0.8.8-rc.5

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.
@@ -1296,14 +1296,11 @@ export interface QueryOptions {
1296
1296
  context?: string;
1297
1297
  metadata?: Record<string, unknown>;
1298
1298
  threadId?: string;
1299
+ taskId?: string;
1299
1300
  platform?: Platform;
1300
1301
  messages?: import('../conversation/types').TemplateMessage[];
1301
1302
  vars?: Record<string, unknown>;
1302
1303
  cwd?: string;
1303
- images?: Array<{
1304
- filePath: string;
1305
- mimeType: string;
1306
- }>;
1307
1304
  }
1308
1305
  export interface QueryResult {
1309
1306
  ok: boolean;
@@ -1334,14 +1331,11 @@ export interface ExecuteOptions {
1334
1331
  context?: string;
1335
1332
  metadata?: Record<string, unknown>;
1336
1333
  threadId?: string;
1334
+ taskId?: string;
1337
1335
  platform?: Platform;
1338
1336
  messages?: import('../conversation/types').TemplateMessage[];
1339
1337
  vars?: Record<string, unknown>;
1340
1338
  cwd?: string;
1341
- images?: Array<{
1342
- filePath: string;
1343
- mimeType: string;
1344
- }>;
1345
1339
  }
1346
1340
  export interface ExecuteResult {
1347
1341
  ok: boolean;
@@ -1355,5 +1349,6 @@ export interface ExecuteResult {
1355
1349
  provider: string;
1356
1350
  model?: string;
1357
1351
  durationMs: number;
1352
+ taskId?: string;
1358
1353
  };
1359
1354
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewx/sdk",
3
- "version": "0.8.8-rc.3",
3
+ "version": "0.8.8-rc.5",
4
4
  "license": "UNLICENSED",
5
5
  "engines": {
6
6
  "node": ">=20.19.0"