hububb-models 1.0.14 → 1.0.16

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.14",
3
+ "version": "1.0.16",
4
4
  "description": "Models for Hububb application",
5
5
  "main": "index.js",
6
6
  "types": "./src/index.d.ts",
@@ -3,9 +3,9 @@ export interface User {
3
3
  phoneNumber: string;
4
4
  fullName: string;
5
5
  email: string;
6
- onFido?: {
7
- id?: string;
8
- verified?: boolean;
6
+ kyc?:{
7
+ verified?:boolean,
8
+ state?: 'processing'| 'success' | "declined"
9
9
  };
10
10
  klevioId?: string;
11
11
  }
@@ -3,9 +3,9 @@ export interface User {
3
3
  phoneNumber: string;
4
4
  fullName: string;
5
5
  email: string;
6
- onFido?: {
7
- id?: string;
8
- verified?: boolean;
6
+ kyc?:{
7
+ verified?:boolean,
8
+ state?: 'processing'| 'success' | "declined"
9
9
  };
10
10
  klevioId?: string;
11
11
  }