hububb-models 1.0.32 → 1.0.33
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -2,20 +2,20 @@ import { Timestamp } from "@firebase/firestore-types";
|
|
2
2
|
|
3
3
|
export interface Reservation {
|
4
4
|
id: string;
|
5
|
-
externalId?:
|
5
|
+
externalId?: string;
|
6
6
|
checkIn?: Timestamp;
|
7
7
|
checkOut?: Timestamp;
|
8
8
|
status?: string;
|
9
9
|
statusDescription?: string;
|
10
10
|
guest?: {
|
11
11
|
id?: string;
|
12
|
-
externalId?:
|
12
|
+
externalId?: string;
|
13
13
|
fullName?: string;
|
14
14
|
email?: string;
|
15
15
|
};
|
16
16
|
listing?: {
|
17
17
|
id?: string;
|
18
|
-
externalId?:
|
18
|
+
externalId?: string;
|
19
19
|
title?: string;
|
20
20
|
};
|
21
21
|
klevio?: {
|
@@ -2,20 +2,20 @@ import { Timestamp } from "@firebase/firestore-types";
|
|
2
2
|
|
3
3
|
export interface Reservation {
|
4
4
|
id: string;
|
5
|
-
externalId?:
|
5
|
+
externalId?: string;
|
6
6
|
checkIn?: Timestamp;
|
7
7
|
checkOut?: Timestamp;
|
8
8
|
status?: string;
|
9
9
|
statusDescription?: string;
|
10
10
|
guest?: {
|
11
11
|
id?: string;
|
12
|
-
externalId?:
|
12
|
+
externalId?: string;
|
13
13
|
fullName?: string;
|
14
14
|
email?: string;
|
15
15
|
};
|
16
16
|
listing?: {
|
17
17
|
id?: string;
|
18
|
-
externalId?:
|
18
|
+
externalId?: string;
|
19
19
|
title?: string;
|
20
20
|
};
|
21
21
|
klevio?: {
|