Type Alias: StepState
Makaio Framework / contracts / StepState
Type Alias: StepState
Section titled “Type Alias: StepState”StepState =
z.infer<typeofStepStateSchema>
Defined in: ../../../packages/contracts/src/workflow/schemas.ts:437
Type Composition
Section titled “Type Composition”StepStatez.infer<typeof StepStateSchema>typeof StepStateSchema
Resolved Shape
Section titled “Resolved Shape”type StepState = { status: 'completed' | 'running' | 'failed' | 'pending' | 'skipped' | 'waiting'; sessionId?: string | undefined; subagentId?: string | undefined; result?: string | undefined; error?: string | undefined; startedAt?: number | undefined; completedAt?: number | undefined;};