@ndla/types-backend 0.2.10 → 0.2.11
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/package.json +1 -1
package/build/draft-api.d.ts
CHANGED
|
@@ -50,6 +50,7 @@ export interface IArticle {
|
|
|
50
50
|
responsible?: IDraftResponsible;
|
|
51
51
|
slug?: string;
|
|
52
52
|
comments: IComment[];
|
|
53
|
+
prioritized: boolean;
|
|
53
54
|
}
|
|
54
55
|
export interface IArticleContent {
|
|
55
56
|
content: string;
|
|
@@ -172,6 +173,7 @@ export interface INewArticle {
|
|
|
172
173
|
responsibleId?: string;
|
|
173
174
|
slug?: string;
|
|
174
175
|
comments: INewComment[];
|
|
176
|
+
prioritized?: boolean;
|
|
175
177
|
}
|
|
176
178
|
export interface INewArticleMetaImage {
|
|
177
179
|
id: string;
|
|
@@ -245,6 +247,7 @@ export interface IUpdatedArticle {
|
|
|
245
247
|
responsibleId?: (null | string);
|
|
246
248
|
slug?: string;
|
|
247
249
|
comments?: IUpdatedComment[];
|
|
250
|
+
prioritized?: boolean;
|
|
248
251
|
}
|
|
249
252
|
export interface IUpdatedComment {
|
|
250
253
|
id?: string;
|
package/package.json
CHANGED