@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.
- package/dist/conversation/sqlite-provider.d.ts +10 -3
- package/dist/conversation/types.d.ts +10 -3
- package/dist/esm/index.js +18 -18
- package/dist/esm/plugins/index.js +16 -16
- package/dist/esm/repository/index.js +16 -16
- package/dist/index.browser.js +2 -2
- package/dist/index.js +18 -18
- package/dist/plugins/conversation.d.ts +3 -0
- package/dist/plugins/index.js +15 -15
- package/dist/provider/bridge.d.ts +0 -4
- package/dist/repository/index.js +16 -16
- package/dist/repository/thread.repository.d.ts +3 -1
- package/dist/types/index.d.ts +3 -8
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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
|
}
|