Skip to content

Commit b74fb40

Browse files
rikublockpsychedelicious
authored andcommitted
chore(ui): update typegen schema
1 parent 47dc954 commit b74fb40

File tree

1 file changed

+63
-0
lines changed
  • invokeai/frontend/web/src/services/api

1 file changed

+63
-0
lines changed

invokeai/frontend/web/src/services/api/schema.ts

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,6 +1098,26 @@ export type paths = {
10981098
patch?: never;
10991099
trace?: never;
11001100
};
1101+
"/api/v1/queue/{queue_id}/cancel_all_except_current": {
1102+
parameters: {
1103+
query?: never;
1104+
header?: never;
1105+
path?: never;
1106+
cookie?: never;
1107+
};
1108+
get?: never;
1109+
/**
1110+
* Cancel All Except Current
1111+
* @description Immediately cancels all queue items except in-processing items
1112+
*/
1113+
put: operations["cancel_all_except_current"];
1114+
post?: never;
1115+
delete?: never;
1116+
options?: never;
1117+
head?: never;
1118+
patch?: never;
1119+
trace?: never;
1120+
};
11011121
"/api/v1/queue/{queue_id}/cancel_by_batch_ids": {
11021122
parameters: {
11031123
query?: never;
@@ -3322,6 +3342,17 @@ export type components = {
33223342
*/
33233343
type: "calculate_image_tiles_output";
33243344
};
3345+
/**
3346+
* CancelAllExceptCurrentResult
3347+
* @description Result of canceling all except current
3348+
*/
3349+
CancelAllExceptCurrentResult: {
3350+
/**
3351+
* Canceled
3352+
* @description Number of queue items canceled
3353+
*/
3354+
canceled: number;
3355+
};
33253356
/**
33263357
* CancelByBatchIDsResult
33273358
* @description Result of canceling by list of batch ids
@@ -21928,6 +21959,38 @@ export interface operations {
2192821959
};
2192921960
};
2193021961
};
21962+
cancel_all_except_current: {
21963+
parameters: {
21964+
query?: never;
21965+
header?: never;
21966+
path: {
21967+
/** @description The queue id to perform this operation on */
21968+
queue_id: string;
21969+
};
21970+
cookie?: never;
21971+
};
21972+
requestBody?: never;
21973+
responses: {
21974+
/** @description Successful Response */
21975+
200: {
21976+
headers: {
21977+
[name: string]: unknown;
21978+
};
21979+
content: {
21980+
"application/json": components["schemas"]["CancelAllExceptCurrentResult"];
21981+
};
21982+
};
21983+
/** @description Validation Error */
21984+
422: {
21985+
headers: {
21986+
[name: string]: unknown;
21987+
};
21988+
content: {
21989+
"application/json": components["schemas"]["HTTPValidationError"];
21990+
};
21991+
};
21992+
};
21993+
};
2193121994
cancel_by_batch_ids: {
2193221995
parameters: {
2193321996
query?: never;

0 commit comments

Comments
 (0)