@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.
@@ -33,11 +33,6 @@ export interface IEmbedUrlV2 {
33
33
  url: string;
34
34
  embedType: string;
35
35
  }
36
- export interface IError {
37
- code: string;
38
- description: string;
39
- occuredAt: string;
40
- }
41
36
  export interface IFolder {
42
37
  id: string;
43
38
  name: string;
@@ -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
@@ -27,5 +27,5 @@
27
27
  "devDependencies": {
28
28
  "typescript": "^5.3.3"
29
29
  },
30
- "version": "0.2.57"
30
+ "version": "0.2.59"
31
31
  }