@ndla/types-backend 0.2.26 → 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.
- package/build/draft-api.d.ts +3 -0
- package/build/search-api.d.ts +1 -0
- package/package.json +1 -1
package/build/draft-api.d.ts
CHANGED
|
@@ -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;
|
package/build/search-api.d.ts
CHANGED
package/package.json
CHANGED