chore(ui): regen api client

This commit is contained in:
psychedelicious 2023-05-27 09:17:17 +10:00 committed by Kent Keirsey
parent ee0225f4ba
commit f51defeeb3

View File

@ -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,
}, },