@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.
package/build/concept-api.d.ts
CHANGED
|
@@ -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