@ndla/types-backend 0.2.15 → 0.2.17
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 +3 -0
- package/package.json +1 -1
package/build/concept-api.d.ts
CHANGED
|
@@ -50,6 +50,7 @@ export interface IConceptSearchParams {
|
|
|
50
50
|
exactTitleMatch?: boolean;
|
|
51
51
|
embedResource?: string;
|
|
52
52
|
embedId?: string;
|
|
53
|
+
conceptType?: string;
|
|
53
54
|
}
|
|
54
55
|
export interface IConceptSearchResult {
|
|
55
56
|
totalCount: number;
|
|
@@ -76,6 +77,7 @@ export interface IConceptSummary {
|
|
|
76
77
|
articleIds: number[];
|
|
77
78
|
source?: string;
|
|
78
79
|
responsible?: IConceptResponsible;
|
|
80
|
+
conceptType: string;
|
|
79
81
|
}
|
|
80
82
|
export interface IConceptTags {
|
|
81
83
|
tags: string[];
|
|
@@ -111,6 +113,7 @@ export interface IDraftConceptSearchParams {
|
|
|
111
113
|
embedResource?: string;
|
|
112
114
|
embedId?: string;
|
|
113
115
|
responsibleIds: string[];
|
|
116
|
+
conceptType?: string;
|
|
114
117
|
}
|
|
115
118
|
export interface IGlossData {
|
|
116
119
|
gloss: string;
|
package/package.json
CHANGED