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