@openvoy/openvoy-typescriptmodels 0.0.4161 → 0.0.4181
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/core.d.ts +3 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export interface AttractionInfo {
|
|
|
55
55
|
primaryCity?: CityDetails;
|
|
56
56
|
tags?: string[];
|
|
57
57
|
totalScore?: number;
|
|
58
|
+
tourCount?: number;
|
|
58
59
|
tours?: { [index: string]: number };
|
|
59
60
|
}
|
|
60
61
|
|
|
@@ -268,6 +269,7 @@ export interface DestinationInfo {
|
|
|
268
269
|
regionDetails?: DestinationRegionDetails;
|
|
269
270
|
subContinentDetails?: DestinationSubContinentDetails;
|
|
270
271
|
totalScore?: number;
|
|
272
|
+
tourCount?: number;
|
|
271
273
|
tours?: { [index: string]: number };
|
|
272
274
|
type?: DestinationType;
|
|
273
275
|
}
|
|
@@ -791,6 +793,7 @@ export interface TagInfo {
|
|
|
791
793
|
tagId?: string;
|
|
792
794
|
tagInfoId?: string;
|
|
793
795
|
totalScore?: number;
|
|
796
|
+
tourCount?: number;
|
|
794
797
|
tours?: { [index: string]: number };
|
|
795
798
|
}
|
|
796
799
|
|
package/package.json
CHANGED