mirror of https://github.com/openclaw/openclaw.git
44 lines
935 B
TypeScript
44 lines
935 B
TypeScript
import type { DeliveryContext } from "../utils/delivery-context.js";
|
|
import type { TaskNotifyPolicy } from "./task-registry.types.js";
|
|
|
|
export type JsonValue =
|
|
| null
|
|
| boolean
|
|
| number
|
|
| string
|
|
| JsonValue[]
|
|
| { [key: string]: JsonValue };
|
|
|
|
export type TaskFlowSyncMode = "task_mirrored" | "managed";
|
|
|
|
export type TaskFlowStatus =
|
|
| "queued"
|
|
| "running"
|
|
| "waiting"
|
|
| "blocked"
|
|
| "succeeded"
|
|
| "failed"
|
|
| "cancelled"
|
|
| "lost";
|
|
|
|
export type TaskFlowRecord = {
|
|
flowId: string;
|
|
syncMode: TaskFlowSyncMode;
|
|
ownerKey: string;
|
|
requesterOrigin?: DeliveryContext;
|
|
controllerId?: string;
|
|
revision: number;
|
|
status: TaskFlowStatus;
|
|
notifyPolicy: TaskNotifyPolicy;
|
|
goal: string;
|
|
currentStep?: string;
|
|
blockedTaskId?: string;
|
|
blockedSummary?: string;
|
|
stateJson?: JsonValue;
|
|
waitJson?: JsonValue;
|
|
cancelRequestedAt?: number;
|
|
createdAt: number;
|
|
updatedAt: number;
|
|
endedAt?: number;
|
|
};
|