@crewx/sdk 0.9.0-rc.80 → 0.9.0-rc.82
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/esm/index.js +157 -161
- package/dist/esm/plugins/index.js +154 -142
- package/dist/esm/repository/index.js +61 -64
- package/dist/index.d.ts +2 -0
- package/dist/index.js +159 -163
- package/dist/plugins/index.js +160 -148
- package/dist/plugins/sqlite-tracing.d.ts +1 -0
- package/dist/provider/cli/adapter.types.d.ts +1 -1
- package/dist/repository/index.js +61 -64
- package/dist/repository/task.repository.d.ts +1 -0
- package/dist/task-log/anchor-child-tasks.d.ts +7 -0
- package/package.json +1 -1
|
@@ -30,6 +30,7 @@ export declare class SqliteTracingPlugin extends CrewxPlugin {
|
|
|
30
30
|
detach(_crewx: Crewx): void;
|
|
31
31
|
getMetrics(): SqliteTracingMetrics;
|
|
32
32
|
private enqueueLog;
|
|
33
|
+
private recoverPartialResult;
|
|
33
34
|
private flushTaskLogs;
|
|
34
35
|
private flushAllTaskLogs;
|
|
35
36
|
private clearAllTimers;
|
|
@@ -34,7 +34,7 @@ export interface CliProviderAdapter {
|
|
|
34
34
|
};
|
|
35
35
|
extractText(stdout: string): string;
|
|
36
36
|
extractFailure?(line: string): Error | null;
|
|
37
|
-
interpretExit?(code: number, stderr: string): Error | null;
|
|
37
|
+
interpretExit?(code: number, stderr: string, stdout?: string): Error | null;
|
|
38
38
|
parseResultMeta?(stdout: string): {
|
|
39
39
|
usage?: ProviderUsage | null;
|
|
40
40
|
model?: string | null;
|