mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
chore(ui): regen api client
This commit is contained in:
parent
ee0225f4ba
commit
f51defeeb3
@ -24,6 +24,7 @@ export class ImagesService {
|
|||||||
public static listImagesWithMetadata({
|
public static listImagesWithMetadata({
|
||||||
imageType,
|
imageType,
|
||||||
imageCategory,
|
imageCategory,
|
||||||
|
isIntermediate = false,
|
||||||
page,
|
page,
|
||||||
perPage = 10,
|
perPage = 10,
|
||||||
}: {
|
}: {
|
||||||
@ -35,6 +36,10 @@ export class ImagesService {
|
|||||||
* The kind of images to list
|
* The kind of images to list
|
||||||
*/
|
*/
|
||||||
imageCategory: ImageCategory,
|
imageCategory: ImageCategory,
|
||||||
|
/**
|
||||||
|
* The kind of images to list
|
||||||
|
*/
|
||||||
|
isIntermediate?: boolean,
|
||||||
/**
|
/**
|
||||||
* The page of image metadata to get
|
* The page of image metadata to get
|
||||||
*/
|
*/
|
||||||
@ -50,6 +55,7 @@ export class ImagesService {
|
|||||||
query: {
|
query: {
|
||||||
'image_type': imageType,
|
'image_type': imageType,
|
||||||
'image_category': imageCategory,
|
'image_category': imageCategory,
|
||||||
|
'is_intermediate': isIntermediate,
|
||||||
'page': page,
|
'page': page,
|
||||||
'per_page': perPage,
|
'per_page': perPage,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user