@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.
@@ -149,6 +149,7 @@ export declare class TaskRepository extends BaseSqliteRepository {
149
149
  costUsd?: number;
150
150
  model?: string | null;
151
151
  runEpoch?: number | null;
152
+ partialResultRecovered?: boolean;
152
153
  }): void;
153
154
  appendLog(taskId: string, entry: {
154
155
  timestamp: string;
@@ -0,0 +1,7 @@
1
+ import type { TaskLogEntry } from '../types/task-log.types.js';
2
+ export interface AnchorChildInput {
3
+ taskId: string;
4
+ agentId: string;
5
+ startedAt: string;
6
+ }
7
+ export declare function anchorChildTasks(entries: TaskLogEntry[], children: AnchorChildInput[]): TaskLogEntry[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewx/sdk",
3
- "version": "0.9.0-rc.80",
3
+ "version": "0.9.0-rc.82",
4
4
  "license": "UNLICENSED",
5
5
  "engines": {
6
6
  "node": ">=20.19.0"