@ndla/types-backend 0.2.41 → 0.2.43
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/frontpage-api.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export type ArenaGroup = "ADMIN";
|
|
1
2
|
export interface IAuthor {
|
|
2
3
|
type: string;
|
|
3
4
|
name: string;
|
|
@@ -167,6 +168,7 @@ export interface IMyNDLAUser {
|
|
|
167
168
|
groups: IMyNDLAGroup[];
|
|
168
169
|
arenaEnabled: boolean;
|
|
169
170
|
shareName: boolean;
|
|
171
|
+
arenaGroups: ArenaGroup[];
|
|
170
172
|
}
|
|
171
173
|
export interface INewFolder {
|
|
172
174
|
name: string;
|
package/package.json
CHANGED