@openvoy/openvoy-typescriptmodels 0.0.2011 → 0.0.2021
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 +8 -4
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -50,14 +50,14 @@ export interface CityInfo {
|
|
|
50
50
|
countryDetails?: CountryDetails;
|
|
51
51
|
countryId?: string;
|
|
52
52
|
details?: CityDetails;
|
|
53
|
-
|
|
54
|
-
|
|
53
|
+
newTags?: { [index: string]: TagScoreInfo };
|
|
54
|
+
newTours?: { [index: string]: number };
|
|
55
55
|
regionId?: string;
|
|
56
56
|
subContinent?: string;
|
|
57
|
-
tags?: { [index: string]:
|
|
57
|
+
tags?: { [index: string]: TagDetailsInfo };
|
|
58
58
|
timestampOfTourCount?: string;
|
|
59
59
|
tourWithImageForCity?: Tour;
|
|
60
|
-
tours?:
|
|
60
|
+
tours?: TourInfo[];
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
export interface CityProviderDetails {
|
|
@@ -418,6 +418,10 @@ export interface LatLong {
|
|
|
418
418
|
longitude?: number;
|
|
419
419
|
}
|
|
420
420
|
|
|
421
|
+
export interface MigrateAllDestinationData {
|
|
422
|
+
type?: CategoryType;
|
|
423
|
+
}
|
|
424
|
+
|
|
421
425
|
export interface MigrateDestinationData {
|
|
422
426
|
cityId?: string;
|
|
423
427
|
continent?: Continent;
|
package/package.json
CHANGED