@ndla/types-backend 1.0.82 → 1.0.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/image-api-openapi.d.ts +12 -0
- package/package.json +1 -1
|
@@ -546,6 +546,8 @@ export type components = {
|
|
|
546
546
|
/** @description Describes the changes made to the image, only visible to editors */
|
|
547
547
|
editorNotes?: components["schemas"]["EditorNoteDTO"][];
|
|
548
548
|
image: components["schemas"]["ImageFileDTO"];
|
|
549
|
+
/** @description Describes if the image is inactive or not */
|
|
550
|
+
inactive: boolean;
|
|
549
551
|
};
|
|
550
552
|
/**
|
|
551
553
|
* ImageMetaSummaryDTO
|
|
@@ -584,6 +586,8 @@ export type components = {
|
|
|
584
586
|
/** @description The mimetype of the image */
|
|
585
587
|
contentType: string;
|
|
586
588
|
imageDimensions?: components["schemas"]["ImageDimensionsDTO"];
|
|
589
|
+
/** @description Whether the image is inactive or not */
|
|
590
|
+
inactive: boolean;
|
|
587
591
|
};
|
|
588
592
|
/**
|
|
589
593
|
* ImageTagDTO
|
|
@@ -708,6 +712,8 @@ export type components = {
|
|
|
708
712
|
podcastFriendly?: boolean;
|
|
709
713
|
/** @description A search context retrieved from the response header of a previous search. */
|
|
710
714
|
scrollId?: string;
|
|
715
|
+
/** @description Include inactive images */
|
|
716
|
+
inactive?: boolean;
|
|
711
717
|
/** @description Return only images with one of the provided values for modelReleased. */
|
|
712
718
|
modelReleased?: string[];
|
|
713
719
|
/** @description Filter editors of the image(s). Multiple values can be specified in a comma separated list. */
|
|
@@ -812,6 +818,8 @@ export type components = {
|
|
|
812
818
|
caption?: string;
|
|
813
819
|
/** @description Describes if the model has released use of the image */
|
|
814
820
|
modelReleased?: string;
|
|
821
|
+
/** @description Whether the image is inactive */
|
|
822
|
+
inactive?: boolean;
|
|
815
823
|
};
|
|
816
824
|
/** UpdateMetaDataAndFileForm */
|
|
817
825
|
UpdateMetaDataAndFileForm: {
|
|
@@ -888,6 +896,8 @@ export interface operations {
|
|
|
888
896
|
"search-context"?: string;
|
|
889
897
|
/** @description Filter whether the image(s) should be model-released or not. Multiple values can be specified in a comma separated list. Possible values include: yes,no,not-applicable,not-set */
|
|
890
898
|
"model-released"?: string[];
|
|
899
|
+
/** @description Include inactive images */
|
|
900
|
+
inactive?: boolean;
|
|
891
901
|
};
|
|
892
902
|
header?: never;
|
|
893
903
|
path?: never;
|
|
@@ -1453,6 +1463,8 @@ export interface operations {
|
|
|
1453
1463
|
* The value to search for is the user-id from Auth0.
|
|
1454
1464
|
* UpdatedBy on article and user in editorial-notes are searched. */
|
|
1455
1465
|
users?: string[];
|
|
1466
|
+
/** @description Include inactive images */
|
|
1467
|
+
inactive?: boolean;
|
|
1456
1468
|
};
|
|
1457
1469
|
header?: never;
|
|
1458
1470
|
path?: never;
|
package/package.json
CHANGED
|
@@ -32,6 +32,6 @@
|
|
|
32
32
|
"tsx": "^4.19.3",
|
|
33
33
|
"typescript": "^5.3.3"
|
|
34
34
|
},
|
|
35
|
-
"version": "1.0.
|
|
35
|
+
"version": "1.0.83",
|
|
36
36
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
37
37
|
}
|