hububb-models 1.0.24 → 1.0.25
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -12,10 +12,12 @@ export interface User {
|
|
12
12
|
firstName?:string,
|
13
13
|
lastName?:string,
|
14
14
|
dob?:string,
|
15
|
-
phoneNumber?:string,
|
16
15
|
document?:string,
|
17
16
|
face?:string,
|
18
|
-
country?:
|
17
|
+
country?:{
|
18
|
+
code?:string;
|
19
|
+
name?:string;
|
20
|
+
}
|
19
21
|
documentType?:string
|
20
22
|
}
|
21
23
|
};
|
package/src/models/user/user.ts
CHANGED
@@ -12,10 +12,12 @@ export interface User {
|
|
12
12
|
firstName?:string,
|
13
13
|
lastName?:string,
|
14
14
|
dob?:string,
|
15
|
-
phoneNumber?:string,
|
16
15
|
document?:string,
|
17
16
|
face?:string,
|
18
|
-
country?:
|
17
|
+
country?:{
|
18
|
+
code?:string;
|
19
|
+
name?:string;
|
20
|
+
}
|
19
21
|
documentType?:string
|
20
22
|
}
|
21
23
|
};
|