Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 | // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { ExecutionContext } from "./ExecutionContext";
import type { NodeInput } from "./NodeInput";
import type { NodeOutput } from "./NodeOutput";
import type { TaskStatus } from "./TaskStatus";
/**
* Unified task structure that replaces both TaskRecord and WorkflowTask
*/
export type Task = { id: string, execution_id: string, workflow_id: string, node_id: string, status: TaskStatus, created_at: bigint, started_at: bigint | null, completed_at: bigint | null, input: NodeInput, output: NodeOutput | null, error: string | null, context: ExecutionContext, };
|