ephraimbuddy commented on code in PR #40988: URL: https://github.com/apache/airflow/pull/40988#discussion_r1693225577
########## airflow/www/static/js/types/api-generated.ts: ########## @@ -4347,6 +4397,69 @@ export interface operations { 404: components["responses"]["NotFound"]; }; }; + /** This endpoint allows specifying `~` as the dag_id, dag_run_id to retrieve DAG runs for all DAGs and DAG runs. */ + get_task_instances_history: { + parameters: { + path: { + /** The DAG ID. */ + dag_id: components["parameters"]["DAGID"]; + /** The DAG run ID. */ + dag_run_id: components["parameters"]["DAGRunID"]; Review Comment: There're two endpoints. One includes the map_index. ########## airflow/www/static/js/types/api-generated.ts: ########## @@ -4347,6 +4397,69 @@ export interface operations { 404: components["responses"]["NotFound"]; }; }; + /** This endpoint allows specifying `~` as the dag_id, dag_run_id to retrieve DAG runs for all DAGs and DAG runs. */ + get_task_instances_history: { + parameters: { + path: { + /** The DAG ID. */ + dag_id: components["parameters"]["DAGID"]; + /** The DAG run ID. */ + dag_run_id: components["parameters"]["DAGRunID"]; Review Comment: Check below -- 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