@ndla/types-backend 0.2.25 → 0.2.27

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.
@@ -78,6 +78,7 @@ export interface IConceptSummary {
78
78
  source?: string;
79
79
  responsible?: IConceptResponsible;
80
80
  conceptType: string;
81
+ glossData?: IGlossData;
81
82
  }
82
83
  export interface IConceptTags {
83
84
  tags: string[];
@@ -30,6 +30,7 @@ export interface IArticle {
30
30
  slug?: string;
31
31
  comments: IComment[];
32
32
  prioritized: boolean;
33
+ priority: string;
33
34
  started: boolean;
34
35
  }
35
36
  export interface IArticleContent {
@@ -139,6 +140,7 @@ export interface INewArticle {
139
140
  slug?: string;
140
141
  comments: INewComment[];
141
142
  prioritized?: boolean;
143
+ priority?: string;
142
144
  }
143
145
  export interface INewArticleMetaImage {
144
146
  id: string;
@@ -208,6 +210,7 @@ export interface IUpdatedArticle {
208
210
  slug?: string;
209
211
  comments?: IUpdatedComment[];
210
212
  prioritized?: boolean;
213
+ priority?: string;
211
214
  }
212
215
  export interface IUpdatedComment {
213
216
  id?: string;
@@ -155,6 +155,7 @@ export interface IMultiSearchSummary {
155
155
  responsible?: IDraftResponsible;
156
156
  comments?: IComment[];
157
157
  prioritized?: boolean;
158
+ priority?: string;
158
159
  }
159
160
  export interface IMultiSearchTermsAggregation {
160
161
  field: string;
package/package.json CHANGED
@@ -26,5 +26,5 @@
26
26
  "devDependencies": {
27
27
  "typescript": "^5.0.2"
28
28
  },
29
- "version": "0.2.25"
29
+ "version": "0.2.27"
30
30
  }