@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.
@@ -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
@@ -26,5 +26,5 @@
26
26
  "devDependencies": {
27
27
  "typescript": "^5.0.2"
28
28
  },
29
- "version": "0.2.31"
29
+ "version": "0.2.32"
30
30
  }