hububb-models 1.0.49 → 1.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -13,6 +13,7 @@ export interface Listing {
|
|
|
13
13
|
accommodates?: number;
|
|
14
14
|
bedrooms?: number;
|
|
15
15
|
bathrooms?: number;
|
|
16
|
+
bathroomShared?: number;
|
|
16
17
|
beds?: number;
|
|
17
18
|
areaSquareFeet?: number;
|
|
18
19
|
address: Address;
|
|
@@ -36,14 +37,14 @@ export interface Listing {
|
|
|
36
37
|
cancellation: string;
|
|
37
38
|
};
|
|
38
39
|
prices: {
|
|
39
|
-
guestsIncludedInRegularFee
|
|
40
|
-
extraPersonFee
|
|
40
|
+
guestsIncludedInRegularFee?: number;
|
|
41
|
+
extraPersonFee?: number;
|
|
41
42
|
basePrice: number;
|
|
42
|
-
basePriceUSD
|
|
43
|
-
monthlyPriceFactor
|
|
44
|
-
weeklyPriceFactor
|
|
45
|
-
|
|
46
|
-
securityDepositFee
|
|
43
|
+
basePriceUSD?: number;
|
|
44
|
+
monthlyPriceFactor?: number;
|
|
45
|
+
weeklyPriceFactor?: number;
|
|
46
|
+
weekendBasePrice?: number;
|
|
47
|
+
securityDepositFee?: number;
|
|
47
48
|
currency: string;
|
|
48
49
|
cleaningFee: number;
|
|
49
50
|
};
|
|
@@ -94,6 +95,8 @@ export interface Address {
|
|
|
94
95
|
street: string;
|
|
95
96
|
city: string;
|
|
96
97
|
country: string;
|
|
98
|
+
state?: string;
|
|
99
|
+
zipcode?: string;
|
|
97
100
|
}
|
|
98
101
|
export interface Picture {
|
|
99
102
|
regular?: string;
|
|
@@ -14,6 +14,7 @@ export interface Listing {
|
|
|
14
14
|
accommodates?: number;
|
|
15
15
|
bedrooms?: number;
|
|
16
16
|
bathrooms?: number;
|
|
17
|
+
bathroomShared?: number;
|
|
17
18
|
beds?: number;
|
|
18
19
|
areaSquareFeet?: number;
|
|
19
20
|
address: Address;
|
|
@@ -39,14 +40,14 @@ export interface Listing {
|
|
|
39
40
|
cancellation: string;
|
|
40
41
|
};
|
|
41
42
|
prices: {
|
|
42
|
-
guestsIncludedInRegularFee
|
|
43
|
-
extraPersonFee
|
|
43
|
+
guestsIncludedInRegularFee?: number;
|
|
44
|
+
extraPersonFee?: number;
|
|
44
45
|
basePrice: number;
|
|
45
|
-
basePriceUSD
|
|
46
|
-
monthlyPriceFactor
|
|
47
|
-
weeklyPriceFactor
|
|
48
|
-
|
|
49
|
-
securityDepositFee
|
|
46
|
+
basePriceUSD?: number;
|
|
47
|
+
monthlyPriceFactor?: number;
|
|
48
|
+
weeklyPriceFactor?: number;
|
|
49
|
+
weekendBasePrice?: number;
|
|
50
|
+
securityDepositFee?: number;
|
|
50
51
|
currency: string;
|
|
51
52
|
cleaningFee: number;
|
|
52
53
|
};
|
|
@@ -98,6 +99,8 @@ export interface Address {
|
|
|
98
99
|
street: string;
|
|
99
100
|
city: string;
|
|
100
101
|
country: string;
|
|
102
|
+
state?: string;
|
|
103
|
+
zipcode?: string;
|
|
101
104
|
}
|
|
102
105
|
export interface Picture {
|
|
103
106
|
regular?: string;
|