Skip to content

Commit f762776

Browse files
chore(ui): typegen
1 parent b495b9d commit f762776

File tree

1 file changed

+8
-20
lines changed
  • invokeai/frontend/web/src/services/api

1 file changed

+8
-20
lines changed

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

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2288,19 +2288,6 @@ export type components = {
22882288
*/
22892289
file: Blob;
22902290
};
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-
};
23042291
/** Body_parse_dynamicprompts */
23052292
Body_parse_dynamicprompts: {
23062293
/**
@@ -9200,7 +9187,7 @@ export type components = {
92009187
};
92019188
/**
92029189
* 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
92049191
*/
92059192
ImageGenerator: {
92069193
/**
@@ -21644,19 +21631,20 @@ export interface operations {
2164421631
};
2164521632
list_all_board_image_names: {
2164621633
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+
};
2164821640
header?: never;
2164921641
path: {
2165021642
/** @description The id of the board */
2165121643
board_id: string | "none";
2165221644
};
2165321645
cookie?: never;
2165421646
};
21655-
requestBody?: {
21656-
content: {
21657-
"application/json": components["schemas"]["Body_list_all_board_image_names"];
21658-
};
21659-
};
21647+
requestBody?: never;
2166021648
responses: {
2166121649
/** @description Successful Response */
2166221650
200: {

0 commit comments

Comments
 (0)