@ndla/types-backend 0.2.31 → 0.2.32
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 +7 -0
- package/package.json +1 -1
package/build/concept-api.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export interface IConcept {
|
|
|
22
22
|
responsible?: IConceptResponsible;
|
|
23
23
|
conceptType: string;
|
|
24
24
|
glossData?: IGlossData;
|
|
25
|
+
editorNotes?: IEditorNote[];
|
|
25
26
|
}
|
|
26
27
|
export interface IConceptContent {
|
|
27
28
|
content: string;
|
|
@@ -116,6 +117,12 @@ export interface IDraftCopyright {
|
|
|
116
117
|
validTo?: string;
|
|
117
118
|
processed: boolean;
|
|
118
119
|
}
|
|
120
|
+
export interface IEditorNote {
|
|
121
|
+
note: string;
|
|
122
|
+
updatedBy: string;
|
|
123
|
+
status: IStatus;
|
|
124
|
+
timestamp: string;
|
|
125
|
+
}
|
|
119
126
|
export interface IGlossData {
|
|
120
127
|
gloss: string;
|
|
121
128
|
wordClass: string;
|
package/package.json
CHANGED