mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-14 18:57:55 -05:00
chore(ui): update typegen schema
This commit is contained in:
@@ -1098,6 +1098,26 @@ export type paths = {
|
||||
patch?: never;
|
||||
trace?: never;
|
||||
};
|
||||
"/api/v1/queue/{queue_id}/cancel_all_except_current": {
|
||||
parameters: {
|
||||
query?: never;
|
||||
header?: never;
|
||||
path?: never;
|
||||
cookie?: never;
|
||||
};
|
||||
get?: never;
|
||||
/**
|
||||
* Cancel All Except Current
|
||||
* @description Immediately cancels all queue items except in-processing items
|
||||
*/
|
||||
put: operations["cancel_all_except_current"];
|
||||
post?: never;
|
||||
delete?: never;
|
||||
options?: never;
|
||||
head?: never;
|
||||
patch?: never;
|
||||
trace?: never;
|
||||
};
|
||||
"/api/v1/queue/{queue_id}/cancel_by_batch_ids": {
|
||||
parameters: {
|
||||
query?: never;
|
||||
@@ -3322,6 +3342,17 @@ export type components = {
|
||||
*/
|
||||
type: "calculate_image_tiles_output";
|
||||
};
|
||||
/**
|
||||
* CancelAllExceptCurrentResult
|
||||
* @description Result of canceling all except current
|
||||
*/
|
||||
CancelAllExceptCurrentResult: {
|
||||
/**
|
||||
* Canceled
|
||||
* @description Number of queue items canceled
|
||||
*/
|
||||
canceled: number;
|
||||
};
|
||||
/**
|
||||
* CancelByBatchIDsResult
|
||||
* @description Result of canceling by list of batch ids
|
||||
@@ -21928,6 +21959,38 @@ export interface operations {
|
||||
};
|
||||
};
|
||||
};
|
||||
cancel_all_except_current: {
|
||||
parameters: {
|
||||
query?: never;
|
||||
header?: never;
|
||||
path: {
|
||||
/** @description The queue id to perform this operation on */
|
||||
queue_id: string;
|
||||
};
|
||||
cookie?: never;
|
||||
};
|
||||
requestBody?: never;
|
||||
responses: {
|
||||
/** @description Successful Response */
|
||||
200: {
|
||||
headers: {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content: {
|
||||
"application/json": components["schemas"]["CancelAllExceptCurrentResult"];
|
||||
};
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
headers: {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content: {
|
||||
"application/json": components["schemas"]["HTTPValidationError"];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
cancel_by_batch_ids: {
|
||||
parameters: {
|
||||
query?: never;
|
||||
|
||||
Reference in New Issue
Block a user