digicust_types 1.8.369 → 1.8.371
Sign up to get free protection for your applications and to get access to all the features.
@@ -2,19 +2,12 @@
|
|
2
2
|
* Information about a user of Digicust
|
3
3
|
*/
|
4
4
|
export interface UserModel {
|
5
|
+
/** User id to match user in azure active directory */
|
6
|
+
userId?: string;
|
5
7
|
id?: string;
|
6
8
|
mail?: string;
|
7
9
|
displayName?: string;
|
8
10
|
role?: "admin" | "user" | "validator";
|
9
|
-
status
|
10
|
-
surname?: string;
|
11
|
-
givenName?: string;
|
12
|
-
jobTitle?: string;
|
13
|
-
mobilePhone?: string;
|
14
|
-
department?: string;
|
15
|
-
country?: string;
|
16
|
-
city?: string;
|
17
|
-
streetAddress?: string;
|
18
|
-
subscribeToNewsletter?: boolean;
|
11
|
+
status?: "verified" | "invited";
|
19
12
|
acceptTerms?: boolean;
|
20
13
|
}
|
package/package.json
CHANGED