/** * Options for WorkflowScheduleModule configuration */ export interface WorkflowScheduleModuleOptions { /** * Flag to control whether this server should run the workflow scheduler * Set to true only on the dedicated scheduler server * Set to false on API/worker servers that should not execute cron jobs * @default false (safe default - scheduler disabled unless explicitly enabled) */ is_workflow?: boolean; }