/** * Error response when flow execution fails */ export interface FlowExecutionError { /** Error message describing what went wrong during flow execution */ error?: string | undefined; /** Identifier of the node where the error occurred (if applicable) */ node?: string | undefined; /** Additional error details */ details?: Record | undefined; }