@ndla/types-backend 0.2.29 → 0.2.30
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/learningpath-api.d.ts +11 -0
- package/package.json +1 -1
|
@@ -149,11 +149,22 @@ export interface IMessage {
|
|
|
149
149
|
message: string;
|
|
150
150
|
date: string;
|
|
151
151
|
}
|
|
152
|
+
export interface IMyNDLAGroup {
|
|
153
|
+
id: string;
|
|
154
|
+
displayName: string;
|
|
155
|
+
isPrimarySchool: boolean;
|
|
156
|
+
parentId?: string;
|
|
157
|
+
}
|
|
152
158
|
export interface IMyNDLAUser {
|
|
153
159
|
id: number;
|
|
160
|
+
feideId: string;
|
|
161
|
+
username: string;
|
|
162
|
+
email: string;
|
|
163
|
+
displayName: string;
|
|
154
164
|
favoriteSubjects: string[];
|
|
155
165
|
role: string;
|
|
156
166
|
organization: string;
|
|
167
|
+
groups: IMyNDLAGroup[];
|
|
157
168
|
arenaEnabled: boolean;
|
|
158
169
|
shareName: boolean;
|
|
159
170
|
}
|
package/package.json
CHANGED