@ndla/types-backend 1.0.74 → 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.
|
@@ -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.
|
|
35
|
+
"version": "1.0.75",
|
|
36
36
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
37
37
|
}
|