export type WorkflowActivationRow = Readonly<{ workflowId: string; isActive: boolean; }>; export interface WorkflowActivationRepository { loadAll(): Promise>; upsert(workflowId: string, active: boolean): Promise; }