hububb-models 1.0.11 → 1.0.13
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/models/listing/listing.d.ts +4 -0
- package/src/models/listing/listing.ts +4 -0
- package/src/models/reservation/reservation.d.ts +2 -0
- package/src/models/reservation/reservation.ts +2 -0
- package/src/models/user/user.d.ts +1 -1
- package/src/models/user/user.ts +1 -1
package/package.json
CHANGED
@@ -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
|
}
|