Skip to content

Type Alias: StepState

Makaio Framework


Makaio Framework / contracts / StepState

StepState = z.infer<typeof StepStateSchema>

Defined in: ../../../packages/contracts/src/workflow/schemas.ts:437

  • StepState
    • z.infer<typeof StepStateSchema>
      • typeof StepStateSchema
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;
};