hububb-models 1.0.47 → 1.0.49
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -2,11 +2,15 @@ export interface User {
|
|
2
2
|
id: string;
|
3
3
|
phoneNumber: string;
|
4
4
|
fullName: string;
|
5
|
+
firstName?: string;
|
6
|
+
lastName?: string;
|
7
|
+
dateOfBirth?: string;
|
8
|
+
profilePicture?: string;
|
5
9
|
email: string;
|
6
10
|
verified?: boolean;
|
7
11
|
kyc?: {
|
8
12
|
verified?: boolean;
|
9
|
-
state?:
|
13
|
+
state?: "processing" | "success" | "declined";
|
10
14
|
declinedReason?: string;
|
11
15
|
form: {
|
12
16
|
firstName?: string;
|
@@ -22,4 +26,5 @@ export interface User {
|
|
22
26
|
};
|
23
27
|
};
|
24
28
|
klevioId?: string;
|
29
|
+
favorites?: string[];
|
25
30
|
}
|
package/src/models/user/user.ts
CHANGED
@@ -2,11 +2,15 @@ export interface User {
|
|
2
2
|
id: string;
|
3
3
|
phoneNumber: string;
|
4
4
|
fullName: string;
|
5
|
+
firstName?: string;
|
6
|
+
lastName?: string;
|
7
|
+
dateOfBirth?: string;
|
8
|
+
profilePicture?: string;
|
5
9
|
email: string;
|
6
10
|
verified?: boolean;
|
7
11
|
kyc?: {
|
8
12
|
verified?: boolean;
|
9
|
-
state?:
|
13
|
+
state?: "processing" | "success" | "declined";
|
10
14
|
declinedReason?: string;
|
11
15
|
form: {
|
12
16
|
firstName?: string;
|
@@ -22,4 +26,5 @@ export interface User {
|
|
22
26
|
};
|
23
27
|
};
|
24
28
|
klevioId?: string;
|
29
|
+
favorites?: string[];
|
25
30
|
}
|