bugraoz93 commented on code in PR #44332: URL: https://github.com/apache/airflow/pull/44332#discussion_r1870418798
########## airflow/ui/openapi-gen/requests/types.gen.ts: ########## @@ -683,6 +683,45 @@ export type GraphDataResponse = { export type arrange = "BT" | "LR" | "RL" | "TB"; +/** + * DAG Run model for the Grid UI with Task Instances. + */ +export type GridDAGRunwithTIs = { + run_id: string; + queued_at: string | null; + start_date: string | null; + end_date: string | null; + state: string; + run_type: string; + data_interval_start: string | null; + data_interval_end: string | null; + version_number: string | null; + task_instances: Array<GridTaskInstanceSummary> | null; +}; + +/** + * Response model for the Grid UI. + */ +export type GridResponse = { + dag_runs: Array<GridDAGRunwithTIs>; +}; Review Comment: Removed and merged into one model -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org