hububb-models 1.0.3 → 1.0.4
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.d.ts +5 -5
- package/src/models/listing.ts +5 -5
package/package.json
CHANGED
package/src/models/listing.d.ts
CHANGED
@@ -16,7 +16,7 @@ export interface Listing {
|
|
16
16
|
beds?: number;
|
17
17
|
areaSquareFeet?: number;
|
18
18
|
address: Address;
|
19
|
-
publishedAddress
|
19
|
+
publishedAddress?: {
|
20
20
|
full: string;
|
21
21
|
lng: number;
|
22
22
|
lat: number;
|
@@ -49,11 +49,11 @@ export interface Listing {
|
|
49
49
|
currency: string;
|
50
50
|
cleaningFee: number;
|
51
51
|
};
|
52
|
-
netIncomeFormula
|
53
|
-
commissionFormula
|
54
|
-
commissionTaxPrecentage
|
52
|
+
netIncomeFormula?: string;
|
53
|
+
commissionFormula?: string;
|
54
|
+
commissionTaxPrecentage?: string;
|
55
55
|
|
56
|
-
paymentProcessing
|
56
|
+
paymentProcessing?: {
|
57
57
|
active: boolean;
|
58
58
|
paymentProviders: {
|
59
59
|
stripe: {
|
package/src/models/listing.ts
CHANGED
@@ -16,7 +16,7 @@ export interface Listing {
|
|
16
16
|
beds?: number;
|
17
17
|
areaSquareFeet?: number;
|
18
18
|
address: Address;
|
19
|
-
publishedAddress
|
19
|
+
publishedAddress?: {
|
20
20
|
full: string;
|
21
21
|
lng: number;
|
22
22
|
lat: number;
|
@@ -49,11 +49,11 @@ export interface Listing {
|
|
49
49
|
currency: string;
|
50
50
|
cleaningFee: number;
|
51
51
|
};
|
52
|
-
netIncomeFormula
|
53
|
-
commissionFormula
|
54
|
-
commissionTaxPrecentage
|
52
|
+
netIncomeFormula?: string;
|
53
|
+
commissionFormula?: string;
|
54
|
+
commissionTaxPrecentage?: string;
|
55
55
|
|
56
|
-
paymentProcessing
|
56
|
+
paymentProcessing?: {
|
57
57
|
active: boolean;
|
58
58
|
paymentProviders: {
|
59
59
|
stripe: {
|