export type GraphRuntimeMode = "simulate" | "live" | "plan"; export type RunLogMode = "off" | "minimal" | "verbose" | "debug"; export interface GraphRuntimeObject { jobId: string; job: { id: string; jobId: string; agentId?: string; jobTypeId?: string; }; input?: Record; mode?: GraphRuntimeMode; runLogMode?: RunLogMode; maxRunLogEntries?: number; maxRunLogDataJsonChars?: number; runTaskDiagnostics?: boolean; variables?: Record; } //# sourceMappingURL=runtime.d.ts.map