hububb-models 1.0.16 → 1.0.17

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.16",
3
+ "version": "1.0.17",
4
4
  "description": "Models for Hububb application",
5
5
  "main": "index.js",
6
6
  "types": "./src/index.d.ts",
@@ -5,7 +5,8 @@ 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,
9
10
  };
10
11
  klevioId?: string;
11
12
  }
@@ -5,7 +5,8 @@ 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,
9
10
  };
10
11
  klevioId?: string;
11
12
  }