@ndla/types-backend 0.2.24 → 0.2.26

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.
@@ -78,6 +78,7 @@ export interface IConceptSummary {
78
78
  source?: string;
79
79
  responsible?: IConceptResponsible;
80
80
  conceptType: string;
81
+ glossData?: IGlossData;
81
82
  }
82
83
  export interface IConceptTags {
83
84
  tags: string[];
@@ -8,13 +8,13 @@ export interface IBreadcrumb {
8
8
  }
9
9
  export interface IConfigMeta {
10
10
  key: string;
11
- value: string;
11
+ value: (boolean | string[]);
12
12
  updatedAt: string;
13
13
  updatedBy: string;
14
14
  }
15
15
  export interface IConfigMetaRestricted {
16
16
  key: string;
17
- value: string;
17
+ value: (boolean | string[]);
18
18
  }
19
19
  export interface ICopyright {
20
20
  license: ILicense;
@@ -153,6 +153,7 @@ export interface IMyNDLAUser {
153
153
  favoriteSubjects: string[];
154
154
  role: string;
155
155
  organization: string;
156
+ arenaEnabled: boolean;
156
157
  }
157
158
  export interface INewFolder {
158
159
  name: string;
package/package.json CHANGED
@@ -26,5 +26,5 @@
26
26
  "devDependencies": {
27
27
  "typescript": "^5.0.2"
28
28
  },
29
- "version": "0.2.24"
29
+ "version": "0.2.26"
30
30
  }