hububb-models 1.0.12 → 1.0.13

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.12",
3
+ "version": "1.0.13",
4
4
  "description": "Models for Hububb application",
5
5
  "main": "index.js",
6
6
  "types": "./src/index.d.ts",
@@ -9,6 +9,7 @@ export interface Reservation {
9
9
  id?: string;
10
10
  guestyId?: string;
11
11
  fullName?: string;
12
+ email?: string;
12
13
  };
13
14
  listing?: {
14
15
  id?: string;
@@ -23,4 +24,5 @@ export interface Reservation {
23
24
  keyholderEmail?: string;
24
25
  propertyId?: string;
25
26
  };
27
+ bookingRefNumber?: string;
26
28
  }
@@ -9,6 +9,7 @@ export interface Reservation {
9
9
  id?: string;
10
10
  guestyId?: string;
11
11
  fullName?: string;
12
+ email?: string;
12
13
  };
13
14
  listing?: {
14
15
  id?: string;
@@ -23,4 +24,5 @@ export interface Reservation {
23
24
  keyholderEmail?: string;
24
25
  propertyId?: string;
25
26
  };
27
+ bookingRefNumber?: string;
26
28
  }
@@ -1,7 +1,7 @@
1
1
  export interface User {
2
2
  id: string;
3
3
  phoneNumber: string;
4
- bookingRefNumber: string;
4
+ fullName: string;
5
5
  email: string;
6
6
  onFido?: {
7
7
  id?: string;
@@ -1,7 +1,7 @@
1
1
  export interface User {
2
2
  id: string;
3
3
  phoneNumber: string;
4
- bookingRefNumber: string;
4
+ fullName: string;
5
5
  email: string;
6
6
  onFido?: {
7
7
  id?: string;