@ndla/types-backend 1.0.73 → 1.0.75

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.
@@ -701,10 +701,6 @@ export type components = {
701
701
  groups: components["schemas"]["MyNDLAGroupDTO"][];
702
702
  /** @description Whether arena is explicitly enabled for the user */
703
703
  arenaEnabled: boolean;
704
- /** @description Whether the user has accepted the use of arena */
705
- arenaAccepted: boolean;
706
- /** @description Whether the user has accepted the sharing of their name */
707
- shareNameAccepted: boolean;
708
704
  };
709
705
  /** NewFolderDTO */
710
706
  NewFolderDTO: {
@@ -907,10 +903,6 @@ export type components = {
907
903
  favoriteSubjects?: string[];
908
904
  /** @description Whether arena should explicitly be enabled for the user */
909
905
  arenaEnabled?: boolean;
910
- /** @description Whether the user has accepted the use of arena */
911
- arenaAccepted?: boolean;
912
- /** @description Whether the user has accepted the sharing of their name */
913
- shareNameAccepted?: boolean;
914
906
  };
915
907
  /** UpdatedResourceDTO */
916
908
  UpdatedResourceDTO: {
@@ -278,6 +278,8 @@ export type components = {
278
278
  publishedDateTo?: string;
279
279
  /** @description Types of hits to appear in the result */
280
280
  resultTypes?: components["schemas"]["SearchType"][];
281
+ /** @description Only return results that have one of the specified tags. */
282
+ tags?: string[];
281
283
  };
282
284
  /**
283
285
  * ErrorBody
@@ -805,6 +807,8 @@ export type components = {
805
807
  resultTypes?: components["schemas"]["SearchType"][];
806
808
  /** @description Which node types the search request should return */
807
809
  nodeTypeFilter?: components["schemas"]["NodeType"][];
810
+ /** @description Only return results that have one of the specified tags. */
811
+ tags?: string[];
808
812
  };
809
813
  /**
810
814
  * SearchSuggestionDTO
@@ -1030,6 +1034,7 @@ export interface operations {
1030
1034
  traits?: string[];
1031
1035
  "result-types"?: string[];
1032
1036
  "node-types"?: string[];
1037
+ tags?: string[];
1033
1038
  /** @description Whether to include group without resource-types for group-search. Defaults to false. */
1034
1039
  "missing-group"?: boolean;
1035
1040
  };
@@ -1118,6 +1123,7 @@ export interface operations {
1118
1123
  traits?: string[];
1119
1124
  "result-types"?: string[];
1120
1125
  "node-types"?: string[];
1126
+ tags?: string[];
1121
1127
  };
1122
1128
  header?: {
1123
1129
  /** @description Header containing FEIDE access token. */
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.73",
35
+ "version": "1.0.75",
36
36
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
37
37
  }