File tree Expand file tree Collapse file tree 1 file changed +8
-20
lines changed
invokeai/frontend/web/src/services/api Expand file tree Collapse file tree 1 file changed +8
-20
lines changed Original file line number Diff line number Diff line change @@ -2288,19 +2288,6 @@ export type components = {
2288
2288
*/
2289
2289
file: Blob;
2290
2290
};
2291
- /** Body_list_all_board_image_names */
2292
- Body_list_all_board_image_names: {
2293
- /**
2294
- * Categories
2295
- * @description The categories of image to include.
2296
- */
2297
- categories?: components["schemas"]["ImageCategory"][] | null;
2298
- /**
2299
- * Is Intermediate
2300
- * @description Whether to list intermediate images.
2301
- */
2302
- is_intermediate?: boolean | null;
2303
- };
2304
2291
/** Body_parse_dynamicprompts */
2305
2292
Body_parse_dynamicprompts: {
2306
2293
/**
@@ -9200,7 +9187,7 @@ export type components = {
9200
9187
};
9201
9188
/**
9202
9189
* Image Generator
9203
- * @description Generated a range of boards for use in a batched generation
9190
+ * @description Generated a collection of images for use in a batched generation
9204
9191
*/
9205
9192
ImageGenerator: {
9206
9193
/**
@@ -21644,19 +21631,20 @@ export interface operations {
21644
21631
};
21645
21632
list_all_board_image_names: {
21646
21633
parameters: {
21647
- query?: never;
21634
+ query?: {
21635
+ /** @description The categories of image to include. */
21636
+ categories?: components["schemas"]["ImageCategory"][] | null;
21637
+ /** @description Whether to list intermediate images. */
21638
+ is_intermediate?: boolean | null;
21639
+ };
21648
21640
header?: never;
21649
21641
path: {
21650
21642
/** @description The id of the board */
21651
21643
board_id: string | "none";
21652
21644
};
21653
21645
cookie?: never;
21654
21646
};
21655
- requestBody?: {
21656
- content: {
21657
- "application/json": components["schemas"]["Body_list_all_board_image_names"];
21658
- };
21659
- };
21647
+ requestBody?: never;
21660
21648
responses: {
21661
21649
/** @description Successful Response */
21662
21650
200: {
You can’t perform that action at this time.
0 commit comments