digicust_types 1.8.365 → 1.8.367
Sign up to get free protection for your applications and to get access to all the features.
@@ -3,17 +3,18 @@
|
|
3
3
|
*/
|
4
4
|
export interface UserModel {
|
5
5
|
id?: string;
|
6
|
+
mail?: string;
|
7
|
+
displayName?: string;
|
8
|
+
role?: "admin" | "user" | "validator";
|
9
|
+
status: "verified" | "invited";
|
6
10
|
surname?: string;
|
7
11
|
givenName?: string;
|
8
|
-
displayName?: string;
|
9
12
|
jobTitle?: string;
|
10
13
|
mobilePhone?: string;
|
11
|
-
mail?: string;
|
12
14
|
department?: string;
|
13
15
|
country?: string;
|
14
16
|
city?: string;
|
15
17
|
streetAddress?: string;
|
16
18
|
subscribeToNewsletter?: boolean;
|
17
19
|
acceptTerms?: boolean;
|
18
|
-
role?: "admin" | "user" | "validator";
|
19
20
|
}
|