fix(cli): include model and thinking fields in cron edit patch type

This commit is contained in:
Peter Steinberger
2026-02-18 13:39:25 +00:00
parent 41e68c31db
commit 33f30367e1

View File

@@ -37,7 +37,7 @@ const { registerCronCli } = await import("./cron-cli.js");
type CronUpdatePatch = {
patch?: {
payload?: { message?: string };
payload?: { message?: string; model?: string; thinking?: string };
delivery?: { mode?: string; channel?: string; to?: string; bestEffort?: boolean };
};
};