hububb-models 1.0.16 → 1.0.18
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -5,7 +5,14 @@ export interface User {
|
|
5
5
|
email: string;
|
6
6
|
kyc?:{
|
7
7
|
verified?:boolean,
|
8
|
-
state?: 'processing'| 'success' | "declined"
|
8
|
+
state?: 'processing'| 'success' | "declined",
|
9
|
+
declinedReason?:string,
|
10
|
+
form:{
|
11
|
+
firstName?:string,
|
12
|
+
lastName?:string,
|
13
|
+
dob?:string,
|
14
|
+
phoneNumber?:string
|
15
|
+
}
|
9
16
|
};
|
10
17
|
klevioId?: string;
|
11
18
|
}
|
package/src/models/user/user.ts
CHANGED
@@ -5,7 +5,14 @@ export interface User {
|
|
5
5
|
email: string;
|
6
6
|
kyc?:{
|
7
7
|
verified?:boolean,
|
8
|
-
state?: 'processing'| 'success' | "declined"
|
8
|
+
state?: 'processing'| 'success' | "declined",
|
9
|
+
declinedReason?:string,
|
10
|
+
form:{
|
11
|
+
firstName?:string,
|
12
|
+
lastName?:string,
|
13
|
+
dob?:string,
|
14
|
+
phoneNumber?:string
|
15
|
+
}
|
9
16
|
};
|
10
17
|
klevioId?: string;
|
11
18
|
}
|