Skip to content

Commit d539cee

Browse files
hkc-8010eladkal
authored andcommitted
Regenerate ts-sdk supervisor schema for first_task_reschedule_start_date
A new prek hook (check-ts-sdk-supervisor-schema) landed on main after this branch was created, requiring the TypeScript SDK's generated supervisor types to stay in sync with the Python schema.json. Run `pnpm run generate:supervisor` to add the missing first_task_reschedule_start_date field to ts-sdk/src/generated/supervisor.ts.
1 parent ac0a428 commit d539cee

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

ts-sdk/src/generated/supervisor.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ export type TaskInstanceState =
230230
| "deferred"
231231
| "awaiting_input";
232232
export type TaskRescheduleCount = number;
233+
export type FirstTaskRescheduleStartDate = string | null;
233234
export type MaxTries = number;
234235
export type Key = string;
235236
export type Value = string | null;
@@ -1011,6 +1012,7 @@ export interface TaskCallbackRequest {
10111012
export interface TIRunContext {
10121013
dag_run: DagRun;
10131014
task_reschedule_count?: TaskRescheduleCount;
1015+
first_task_reschedule_start_date?: FirstTaskRescheduleStartDate;
10141016
max_tries: MaxTries;
10151017
variables?: Variables;
10161018
connections?: Connections;

0 commit comments

Comments
 (0)