@ndla/types-backend 0.2.48 → 0.2.50
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/concept-api.d.ts +1 -0
- package/build/draft-api.d.ts +2 -0
- package/package.json +1 -1
package/build/concept-api.d.ts
CHANGED
package/build/draft-api.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ export interface IArticleContent {
|
|
|
39
39
|
}
|
|
40
40
|
export interface IArticleIntroduction {
|
|
41
41
|
introduction: string;
|
|
42
|
+
htmlIntroduction: string;
|
|
42
43
|
language: string;
|
|
43
44
|
}
|
|
44
45
|
export interface IArticleMetaDescription {
|
|
@@ -72,6 +73,7 @@ export interface IArticleTag {
|
|
|
72
73
|
}
|
|
73
74
|
export interface IArticleTitle {
|
|
74
75
|
title: string;
|
|
76
|
+
htmlTitle: string;
|
|
75
77
|
language: string;
|
|
76
78
|
}
|
|
77
79
|
export interface IAuthor {
|
package/package.json
CHANGED