import { StepId } from '../value-objects/StepId'; export interface StepExecution { stepId: StepId; startedAt: Date; completedAt?: Date; success: boolean; error?: string; }