@ndla/types-backend 0.2.43 → 0.2.45
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/article-api.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export interface IArticleIds {
|
|
|
16
16
|
}
|
|
17
17
|
export interface IArticleIntroduction {
|
|
18
18
|
introduction: string;
|
|
19
|
+
htmlIntroduction: string;
|
|
19
20
|
language: string;
|
|
20
21
|
}
|
|
21
22
|
export interface IArticleMetaDescription {
|
|
@@ -61,6 +62,7 @@ export interface IArticleTag {
|
|
|
61
62
|
}
|
|
62
63
|
export interface IArticleTitle {
|
|
63
64
|
title: string;
|
|
65
|
+
htmlTitle: string;
|
|
64
66
|
language: string;
|
|
65
67
|
}
|
|
66
68
|
export interface IArticleV2 {
|
package/build/concept-api.d.ts
CHANGED
package/build/search-api.d.ts
CHANGED
|
@@ -157,6 +157,9 @@ export interface IMultiSearchSummary {
|
|
|
157
157
|
comments?: IComment[];
|
|
158
158
|
prioritized?: boolean;
|
|
159
159
|
priority?: string;
|
|
160
|
+
resourceTypeName?: string;
|
|
161
|
+
parentTopicName?: string;
|
|
162
|
+
primaryRootName?: string;
|
|
160
163
|
}
|
|
161
164
|
export interface IMultiSearchTermsAggregation {
|
|
162
165
|
field: string;
|
package/package.json
CHANGED