@ndla/types-backend 1.0.81 → 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.
@@ -528,7 +528,7 @@ export type components = {
528
528
  /** @description The gloss itself */
529
529
  gloss: string;
530
530
  /** @description Word class / part of speech, ex. noun, adjective, verb, adverb, ... */
531
- wordClass: string;
531
+ wordClass: string[];
532
532
  /** @description Original language of the gloss */
533
533
  originalLanguage: string;
534
534
  /** @description Alternative writing of the gloss */
@@ -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.81",
35
+ "version": "1.0.83",
36
36
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
37
37
  }