feat(CLI): Add optional --parameters to scheduled recipe (#8741)

Signed-off-by: Douwe Osinga <douwe@squareup.com>
Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
Spike Wang
2026-05-12 16:30:38 -07:00
committed by GitHub
parent bc6e0b25dc
commit ba60b597fa
9 changed files with 108 additions and 19 deletions
+7
View File
@@ -1255,8 +1255,15 @@ export type ScheduledJob = {
currently_running?: boolean;
id: string;
last_run?: string | null;
parameters?: Array<Array<string>>;
paused?: boolean;
process_start_time?: string | null;
/**
* Original directory of the recipe file before it was copied to scheduled_recipes/.
* Preserved so that relative paths (sub-recipes, template includes) resolve correctly
* against the source tree rather than the scheduler's internal storage directory.
*/
recipe_base_dir?: string | null;
source: string;
};