@ndla/types-backend 1.0.16 → 1.0.18
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/myndla-api.d.ts +2 -3
- package/package.json +1 -1
package/build/myndla-api.d.ts
CHANGED
|
@@ -96,7 +96,7 @@ export interface IMyNDLAUserDTO {
|
|
|
96
96
|
organization: string;
|
|
97
97
|
groups: IMyNDLAGroupDTO[];
|
|
98
98
|
arenaEnabled: boolean;
|
|
99
|
-
|
|
99
|
+
arenaAccepted: boolean;
|
|
100
100
|
arenaGroups: ArenaGroup[];
|
|
101
101
|
}
|
|
102
102
|
export interface INewCategoryDTO {
|
|
@@ -240,9 +240,8 @@ export interface IUpdatedFolderDTO {
|
|
|
240
240
|
export interface IUpdatedMyNDLAUserDTO {
|
|
241
241
|
favoriteSubjects?: string[];
|
|
242
242
|
arenaEnabled?: boolean;
|
|
243
|
-
shareName?: boolean;
|
|
244
243
|
arenaGroups?: ArenaGroup[];
|
|
245
|
-
|
|
244
|
+
arenaAccepted?: boolean;
|
|
246
245
|
}
|
|
247
246
|
export interface IUpdatedResourceDTO {
|
|
248
247
|
tags?: string[];
|
package/package.json
CHANGED