hububb-models 1.0.47 → 1.0.49

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.47",
3
+ "version": "1.0.49",
4
4
  "description": "Models for Hububb application",
5
5
  "main": "index.js",
6
6
  "types": "./src/index.d.ts",
@@ -2,11 +2,15 @@ export interface User {
2
2
  id: string;
3
3
  phoneNumber: string;
4
4
  fullName: string;
5
+ firstName?: string;
6
+ lastName?: string;
7
+ dateOfBirth?: string;
8
+ profilePicture?: string;
5
9
  email: string;
6
10
  verified?: boolean;
7
11
  kyc?: {
8
12
  verified?: boolean;
9
- state?: 'processing' | 'success' | 'declined';
13
+ state?: "processing" | "success" | "declined";
10
14
  declinedReason?: string;
11
15
  form: {
12
16
  firstName?: string;
@@ -22,4 +26,5 @@ export interface User {
22
26
  };
23
27
  };
24
28
  klevioId?: string;
29
+ favorites?: string[];
25
30
  }
@@ -2,11 +2,15 @@ export interface User {
2
2
  id: string;
3
3
  phoneNumber: string;
4
4
  fullName: string;
5
+ firstName?: string;
6
+ lastName?: string;
7
+ dateOfBirth?: string;
8
+ profilePicture?: string;
5
9
  email: string;
6
10
  verified?: boolean;
7
11
  kyc?: {
8
12
  verified?: boolean;
9
- state?: 'processing' | 'success' | 'declined';
13
+ state?: "processing" | "success" | "declined";
10
14
  declinedReason?: string;
11
15
  form: {
12
16
  firstName?: string;
@@ -22,4 +26,5 @@ export interface User {
22
26
  };
23
27
  };
24
28
  klevioId?: string;
29
+ favorites?: string[];
25
30
  }