hububb-models 1.0.52 → 1.0.54
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -18,6 +18,7 @@ export interface Listing {
|
|
18
18
|
bedrooms?: number;
|
19
19
|
bathrooms?: number;
|
20
20
|
bathroomShared?: number;
|
21
|
+
bathroomPrivate?: number;
|
21
22
|
beds?: number;
|
22
23
|
areaSquareFeet?: number;
|
23
24
|
address: Address;
|
@@ -85,7 +86,7 @@ export interface Listing {
|
|
85
86
|
externalId?: string;
|
86
87
|
requestToBook?: boolean;
|
87
88
|
nickname?: string;
|
88
|
-
listingType?: "parent" | "child";
|
89
|
+
listingType?: "parent" | "child" | "shared";
|
89
90
|
parentId?: string;
|
90
91
|
}
|
91
92
|
export interface Door {
|
@@ -19,6 +19,7 @@ export interface Listing {
|
|
19
19
|
bedrooms?: number;
|
20
20
|
bathrooms?: number;
|
21
21
|
bathroomShared?: number;
|
22
|
+
bathroomPrivate?: number;
|
22
23
|
beds?: number;
|
23
24
|
areaSquareFeet?: number;
|
24
25
|
address: Address;
|
@@ -89,7 +90,7 @@ export interface Listing {
|
|
89
90
|
externalId?: string;
|
90
91
|
requestToBook?: boolean;
|
91
92
|
nickname?: string;
|
92
|
-
listingType?: "parent" | "child";
|
93
|
+
listingType?: "parent" | "child" | "shared";
|
93
94
|
parentId?: string;
|
94
95
|
}
|
95
96
|
export interface Door {
|