@ndla/types-backend 0.2.57 → 0.2.59
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/search-api.d.ts
CHANGED
|
@@ -94,6 +94,8 @@ export interface IDraftSearchParams {
|
|
|
94
94
|
prioritized?: boolean;
|
|
95
95
|
priority?: string[];
|
|
96
96
|
topics?: string[];
|
|
97
|
+
publishedDateFrom?: string;
|
|
98
|
+
publishedDateTo?: string;
|
|
97
99
|
}
|
|
98
100
|
export interface IGroupSearchResult {
|
|
99
101
|
totalCount: number;
|
|
@@ -193,6 +195,7 @@ export interface IMultiSearchSummary {
|
|
|
193
195
|
resourceTypeName?: string;
|
|
194
196
|
parentTopicName?: string;
|
|
195
197
|
primaryRootName?: string;
|
|
198
|
+
published?: string;
|
|
196
199
|
}
|
|
197
200
|
export interface IMultiSearchTermsAggregation {
|
|
198
201
|
field: string;
|
package/package.json
CHANGED