hububb-models 1.0.49 → 1.0.50
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
@@ -36,14 +36,14 @@ export interface Listing {
|
|
36
36
|
cancellation: string;
|
37
37
|
};
|
38
38
|
prices: {
|
39
|
-
guestsIncludedInRegularFee
|
40
|
-
extraPersonFee
|
39
|
+
guestsIncludedInRegularFee?: number;
|
40
|
+
extraPersonFee?: number;
|
41
41
|
basePrice: number;
|
42
|
-
basePriceUSD
|
43
|
-
monthlyPriceFactor
|
44
|
-
weeklyPriceFactor
|
45
|
-
|
46
|
-
securityDepositFee
|
42
|
+
basePriceUSD?: number;
|
43
|
+
monthlyPriceFactor?: number;
|
44
|
+
weeklyPriceFactor?: number;
|
45
|
+
weekendBasePrice?: number;
|
46
|
+
securityDepositFee?: number;
|
47
47
|
currency: string;
|
48
48
|
cleaningFee: number;
|
49
49
|
};
|
@@ -94,6 +94,8 @@ export interface Address {
|
|
94
94
|
street: string;
|
95
95
|
city: string;
|
96
96
|
country: string;
|
97
|
+
state?: string;
|
98
|
+
zipcode?: string;
|
97
99
|
}
|
98
100
|
export interface Picture {
|
99
101
|
regular?: string;
|
@@ -39,14 +39,14 @@ export interface Listing {
|
|
39
39
|
cancellation: string;
|
40
40
|
};
|
41
41
|
prices: {
|
42
|
-
guestsIncludedInRegularFee
|
43
|
-
extraPersonFee
|
42
|
+
guestsIncludedInRegularFee?: number;
|
43
|
+
extraPersonFee?: number;
|
44
44
|
basePrice: number;
|
45
|
-
basePriceUSD
|
46
|
-
monthlyPriceFactor
|
47
|
-
weeklyPriceFactor
|
48
|
-
|
49
|
-
securityDepositFee
|
45
|
+
basePriceUSD?: number;
|
46
|
+
monthlyPriceFactor?: number;
|
47
|
+
weeklyPriceFactor?: number;
|
48
|
+
weekendBasePrice?: number;
|
49
|
+
securityDepositFee?: number;
|
50
50
|
currency: string;
|
51
51
|
cleaningFee: number;
|
52
52
|
};
|
@@ -98,6 +98,8 @@ export interface Address {
|
|
98
98
|
street: string;
|
99
99
|
city: string;
|
100
100
|
country: string;
|
101
|
+
state?: string;
|
102
|
+
zipcode?: string;
|
101
103
|
}
|
102
104
|
export interface Picture {
|
103
105
|
regular?: string;
|