@openvoy/openvoy-typescriptmodels 0.0.1261 → 0.0.1281
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 +7 -4
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -16,6 +16,8 @@ export interface Category {
|
|
|
16
16
|
name?: string;
|
|
17
17
|
region?: string;
|
|
18
18
|
subContinent?: string;
|
|
19
|
+
timestampOfTourCount?: string;
|
|
20
|
+
tourScore?: number;
|
|
19
21
|
type?: CategoryType;
|
|
20
22
|
}
|
|
21
23
|
|
|
@@ -51,6 +53,7 @@ export interface CityInfo {
|
|
|
51
53
|
subContinent?: string;
|
|
52
54
|
tags?: { [index: string]: DestinationDetailsInfo };
|
|
53
55
|
timestampOfTourCount?: string;
|
|
56
|
+
tourScore?: number;
|
|
54
57
|
tours?: TourInfo[];
|
|
55
58
|
}
|
|
56
59
|
|
|
@@ -85,6 +88,7 @@ export interface ContinentInfo {
|
|
|
85
88
|
subContinents?: string[];
|
|
86
89
|
tags?: { [index: string]: DestinationDetailsInfo };
|
|
87
90
|
timestampOfTourCount?: string;
|
|
91
|
+
tourScore?: number;
|
|
88
92
|
tours?: TourInfo[];
|
|
89
93
|
}
|
|
90
94
|
|
|
@@ -119,6 +123,7 @@ export interface CountryInfo {
|
|
|
119
123
|
regions?: Region[];
|
|
120
124
|
tags?: { [index: string]: DestinationDetailsInfo };
|
|
121
125
|
timestampOfTourCount?: string;
|
|
126
|
+
tourScore?: number;
|
|
122
127
|
tours?: TourInfo[];
|
|
123
128
|
}
|
|
124
129
|
|
|
@@ -247,10 +252,6 @@ export interface FindCountriesByCategory {
|
|
|
247
252
|
category?: string;
|
|
248
253
|
}
|
|
249
254
|
|
|
250
|
-
export interface FindCountryCities {
|
|
251
|
-
countryId?: string;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
255
|
export interface FindCountryInfos extends FacetedSearch<CountryInfo> {
|
|
255
256
|
}
|
|
256
257
|
|
|
@@ -435,6 +436,7 @@ export interface RegionInfo {
|
|
|
435
436
|
regionId?: string;
|
|
436
437
|
tags?: { [index: string]: DestinationDetailsInfo };
|
|
437
438
|
timestampOfTourCount?: string;
|
|
439
|
+
tourScore?: number;
|
|
438
440
|
tours?: TourInfo[];
|
|
439
441
|
}
|
|
440
442
|
|
|
@@ -472,6 +474,7 @@ export interface SubContinentInfo {
|
|
|
472
474
|
subContinentId?: string;
|
|
473
475
|
tags?: { [index: string]: DestinationDetailsInfo };
|
|
474
476
|
timestampOfTourCount?: string;
|
|
477
|
+
tourScore?: number;
|
|
475
478
|
tours?: TourInfo[];
|
|
476
479
|
}
|
|
477
480
|
|
package/package.json
CHANGED