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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "description": "Models for Hububb application",
5
5
  "main": "index.js",
6
6
  "types": "./src/index.d.ts",
@@ -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?:string,
17
+ country?:{
18
+ code?:string;
19
+ name?:string;
20
+ }
19
21
  documentType?:string
20
22
  }
21
23
  };
@@ -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?:string,
17
+ country?:{
18
+ code?:string;
19
+ name?:string;
20
+ }
19
21
  documentType?:string
20
22
  }
21
23
  };