@@ -785,6 +785,26 @@ export type paths = {
785
785
patch?: never;
786
786
trace?: never;
787
787
};
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
+ };
788
808
"/api/v1/board_images/": {
789
809
parameters: {
790
810
query?: never;
@@ -1973,7 +1993,7 @@ export type components = {
1973
1993
};
1974
1994
/**
1975
1995
* BoardDTO
1976
- * @description Deserialized board record with cover image URL and image count .
1996
+ * @description Deserialized board record.
1977
1997
*/
1978
1998
BoardDTO: {
1979
1999
/**
@@ -2003,9 +2023,9 @@ export type components = {
2003
2023
deleted_at?: string | null;
2004
2024
/**
2005
2025
* Cover Image Name
2006
- * @description The name of the board's cover image.
2026
+ * @description The name of the cover image of the board .
2007
2027
*/
2008
- cover_image_name: string | null;
2028
+ cover_image_name? : string | null;
2009
2029
/**
2010
2030
* Archived
2011
2031
* @description Whether or not the board is archived.
@@ -2021,6 +2041,11 @@ export type components = {
2021
2041
* @description The number of images in the board.
2022
2042
*/
2023
2043
image_count: number;
2044
+ /**
2045
+ * Asset Count
2046
+ * @description The number of assets in the board.
2047
+ */
2048
+ asset_count: number;
2024
2049
};
2025
2050
/**
2026
2051
* BoardField
@@ -4345,7 +4370,7 @@ export type components = {
4345
4370
};
4346
4371
/**
4347
4372
* Core Metadata
4348
- * @description Collects core generation metadata into a MetadataField
4373
+ * @description Used internally by Invoke to collect metadata for generations.
4349
4374
*/
4350
4375
CoreMetadataInvocation: {
4351
4376
/**
@@ -16391,6 +16416,19 @@ export type components = {
16391
16416
*/
16392
16417
type: "url";
16393
16418
};
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
+ };
16394
16432
/**
16395
16433
* Unsharp Mask
16396
16434
* @description Applies an unsharp mask filter to an image
@@ -18845,6 +18883,26 @@ export interface operations {
18845
18883
};
18846
18884
};
18847
18885
};
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
+ };
18848
18906
add_image_to_board: {
18849
18907
parameters: {
18850
18908
query?: never;
0 commit comments