@@ -785,6 +785,26 @@ export type paths = {
785785 patch?: never;
786786 trace?: never;
787787 };
788+ "/api/v1/boards/uncategorized/counts": {
789+ parameters: {
790+ query?: never;
791+ header?: never;
792+ path?: never;
793+ cookie?: never;
794+ };
795+ /**
796+ * Get Uncategorized Image Counts
797+ * @description Gets count of images and assets for uncategorized images (images with no board assocation)
798+ */
799+ get: operations["get_uncategorized_image_counts"];
800+ put?: never;
801+ post?: never;
802+ delete?: never;
803+ options?: never;
804+ head?: never;
805+ patch?: never;
806+ trace?: never;
807+ };
788808 "/api/v1/board_images/": {
789809 parameters: {
790810 query?: never;
@@ -1973,7 +1993,7 @@ export type components = {
19731993 };
19741994 /**
19751995 * BoardDTO
1976- * @description Deserialized board record with cover image URL and image count .
1996+ * @description Deserialized board record.
19771997 */
19781998 BoardDTO: {
19791999 /**
@@ -2003,9 +2023,9 @@ export type components = {
20032023 deleted_at?: string | null;
20042024 /**
20052025 * Cover Image Name
2006- * @description The name of the board's cover image.
2026+ * @description The name of the cover image of the board .
20072027 */
2008- cover_image_name: string | null;
2028+ cover_image_name? : string | null;
20092029 /**
20102030 * Archived
20112031 * @description Whether or not the board is archived.
@@ -2021,6 +2041,11 @@ export type components = {
20212041 * @description The number of images in the board.
20222042 */
20232043 image_count: number;
2044+ /**
2045+ * Asset Count
2046+ * @description The number of assets in the board.
2047+ */
2048+ asset_count: number;
20242049 };
20252050 /**
20262051 * BoardField
@@ -4345,7 +4370,7 @@ export type components = {
43454370 };
43464371 /**
43474372 * Core Metadata
4348- * @description Collects core generation metadata into a MetadataField
4373+ * @description Used internally by Invoke to collect metadata for generations.
43494374 */
43504375 CoreMetadataInvocation: {
43514376 /**
@@ -16391,6 +16416,19 @@ export type components = {
1639116416 */
1639216417 type: "url";
1639316418 };
16419+ /** UncategorizedImageCounts */
16420+ UncategorizedImageCounts: {
16421+ /**
16422+ * Image Count
16423+ * @description The number of uncategorized images.
16424+ */
16425+ image_count: number;
16426+ /**
16427+ * Asset Count
16428+ * @description The number of uncategorized assets.
16429+ */
16430+ asset_count: number;
16431+ };
1639416432 /**
1639516433 * Unsharp Mask
1639616434 * @description Applies an unsharp mask filter to an image
@@ -18845,6 +18883,26 @@ export interface operations {
1884518883 };
1884618884 };
1884718885 };
18886+ get_uncategorized_image_counts: {
18887+ parameters: {
18888+ query?: never;
18889+ header?: never;
18890+ path?: never;
18891+ cookie?: never;
18892+ };
18893+ requestBody?: never;
18894+ responses: {
18895+ /** @description Successful Response */
18896+ 200: {
18897+ headers: {
18898+ [name: string]: unknown;
18899+ };
18900+ content: {
18901+ "application/json": components["schemas"]["UncategorizedImageCounts"];
18902+ };
18903+ };
18904+ };
18905+ };
1884818906 add_image_to_board: {
1884918907 parameters: {
1885018908 query?: never;
0 commit comments