humanish 0.46.0 → 0.48.0

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/run.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { type CodexAppServerTrace } from "./codex-app-server.js";
2
- import { type ActorStatus, type ActorTrace } from "./actor-contract.js";
2
+ import { type ActorStatus, type ActorTrace, type ActorTraceItem } from "./actor-contract.js";
3
3
  import type { TaskFunnel } from "./tasks.js";
4
4
  import { type CapturedGitState } from "./core/git-state.js";
5
5
  import type { E2BDesktopModule } from "./e2b-desktop-launch.js";
@@ -358,6 +358,20 @@ export interface RunStream {
358
358
  turnId?: string;
359
359
  };
360
360
  actor?: ActorTrace;
361
+ /**
362
+ * Mid-run partial actor evidence (#441): the redacted trace items recorded SO FAR,
363
+ * flushed while a live lane is still running so the attached Observer's timeline can
364
+ * grow. Deliberately NOT an ActorTrace — a running lane has no honest status,
365
+ * completionReason, or completedAt, and this shape cannot claim them. Present ONLY on
366
+ * `inProgress` bundles; the final write replaces it with the real `actor` and never
367
+ * carries it.
368
+ */
369
+ liveActor?: {
370
+ schema: "humanish.live-actor.v1";
371
+ /** When this flush was written (ISO-8601). */
372
+ updatedAt: string;
373
+ items: ActorTraceItem[];
374
+ };
361
375
  completion?: RunStreamCompletion;
362
376
  artifacts: Array<{
363
377
  label: string;