Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5415,9 +5415,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Delete Task Instance
schema: {}
'401':
content:
application/json:
Expand Down Expand Up @@ -7767,9 +7765,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Reparse Dag File
schema: {}
'401':
content:
application/json:
Expand Down
4 changes: 2 additions & 2 deletions airflow-core/src/airflow/ui/openapi-gen/queries/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1914,7 +1914,7 @@ export const useBackfillServiceCancelBackfill = <TData = Common.BackfillServiceC
* Request re-parsing a DAG file.
* @param data The data for the request.
* @param data.fileToken
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
export const useDagParsingServiceReparseDagFile = <TData = Common.DagParsingServiceReparseDagFileMutationResult, TError = unknown, TContext = unknown>(options?: Omit<UseMutationOptions<TData, TError, {
Expand Down Expand Up @@ -2380,7 +2380,7 @@ export const useDagServiceDeleteDag = <TData = Common.DagServiceDeleteDagMutatio
* @param data.dagRunId
* @param data.taskId
* @param data.mapIndex
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
export const useTaskInstanceServiceDeleteTaskInstance = <TData = Common.TaskInstanceServiceDeleteTaskInstanceMutationResult, TError = unknown, TContext = unknown>(options?: Omit<UseMutationOptions<TData, TError, {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1995,7 +1995,7 @@ export class TaskInstanceService {
* @param data.dagRunId
* @param data.taskId
* @param data.mapIndex
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static deleteTaskInstance(data: DeleteTaskInstanceData): CancelablePromise<DeleteTaskInstanceResponse> {
Expand Down Expand Up @@ -3587,7 +3587,7 @@ export class DagParsingService {
* Request re-parsing a DAG file.
* @param data The data for the request.
* @param data.fileToken
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static reparseDagFile(data: ReparseDagFileData): CancelablePromise<ReparseDagFileResponse> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2613,7 +2613,7 @@ export type DeleteTaskInstanceData = {
taskId: string;
};

export type DeleteTaskInstanceResponse = null;
export type DeleteTaskInstanceResponse = unknown;

export type GetMappedTaskInstancesData = {
dagId: string;
Expand Down Expand Up @@ -3137,7 +3137,7 @@ export type ReparseDagFileData = {
fileToken: string;
};

export type ReparseDagFileResponse = null;
export type ReparseDagFileResponse = unknown;

export type GetDagVersionData = {
dagId: string;
Expand Down Expand Up @@ -4938,7 +4938,7 @@ export type $OpenApiTs = {
/**
* Successful Response
*/
200: null;
200: unknown;
/**
* Unauthorized
*/
Expand Down Expand Up @@ -6146,7 +6146,7 @@ export type $OpenApiTs = {
/**
* Successful Response
*/
201: null;
201: unknown;
/**
* Unauthorized
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response State
schema: {}
'400':
content:
application/json:
Expand Down Expand Up @@ -319,9 +317,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Push Logs
schema: {}
'400':
content:
application/json:
Expand Down Expand Up @@ -514,9 +510,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Update Queues
schema: {}
'400':
content:
application/json:
Expand Down Expand Up @@ -614,9 +608,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Request Worker Maintenance
schema: {}
'422':
description: Validation Error
content:
Expand Down Expand Up @@ -650,9 +642,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Update Worker Maintenance
schema: {}
'422':
description: Validation Error
content:
Expand Down Expand Up @@ -680,9 +670,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Exit Worker Maintenance
schema: {}
'422':
description: Validation Error
content:
Expand Down Expand Up @@ -711,9 +699,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Request Worker Shutdown
schema: {}
'422':
description: Validation Error
content:
Expand Down Expand Up @@ -742,9 +728,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Delete Worker
schema: {}
'422':
description: Validation Error
content:
Expand Down Expand Up @@ -779,9 +763,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Add Worker Queue
schema: {}
'422':
description: Validation Error
content:
Expand Down Expand Up @@ -815,9 +797,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Remove Worker Queue
schema: {}
'422':
description: Validation Error
content:
Expand Down
Loading