@openvoy/openvoy-typescriptmodels 0.0.2011 → 0.0.2031
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 +2 -21
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -50,14 +50,12 @@ 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]: TagScoreInfo };
|
|
58
57
|
timestampOfTourCount?: string;
|
|
59
58
|
tourWithImageForCity?: Tour;
|
|
60
|
-
tours?: { [index: string]: number };
|
|
61
59
|
}
|
|
62
60
|
|
|
63
61
|
export interface CityProviderDetails {
|
|
@@ -93,9 +91,7 @@ export interface ContinentInfo {
|
|
|
93
91
|
newTags?: { [index: string]: TagScoreInfo };
|
|
94
92
|
newTours?: { [index: string]: number };
|
|
95
93
|
subContinents?: string[];
|
|
96
|
-
tags?: { [index: string]: TagDetailsInfo };
|
|
97
94
|
timestampOfTourCount?: string;
|
|
98
|
-
tours?: TourInfo[];
|
|
99
95
|
}
|
|
100
96
|
|
|
101
97
|
export interface Country {
|
|
@@ -130,9 +126,7 @@ export interface CountryInfo {
|
|
|
130
126
|
newTags?: { [index: string]: TagScoreInfo };
|
|
131
127
|
newTours?: { [index: string]: number };
|
|
132
128
|
regions?: Region[];
|
|
133
|
-
tags?: { [index: string]: TagDetailsInfo };
|
|
134
129
|
timestampOfTourCount?: string;
|
|
135
|
-
tours?: TourInfo[];
|
|
136
130
|
}
|
|
137
131
|
|
|
138
132
|
export interface CountryProviderDetails {
|
|
@@ -418,15 +412,6 @@ export interface LatLong {
|
|
|
418
412
|
longitude?: number;
|
|
419
413
|
}
|
|
420
414
|
|
|
421
|
-
export interface MigrateDestinationData {
|
|
422
|
-
cityId?: string;
|
|
423
|
-
continent?: Continent;
|
|
424
|
-
countryId?: string;
|
|
425
|
-
regionId?: string;
|
|
426
|
-
resetOriginal?: boolean;
|
|
427
|
-
subContinentId?: string;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
415
|
export interface Pagination {
|
|
431
416
|
count?: number;
|
|
432
417
|
from?: number;
|
|
@@ -457,9 +442,7 @@ export interface RegionInfo {
|
|
|
457
442
|
newTags?: { [index: string]: TagScoreInfo };
|
|
458
443
|
newTours?: { [index: string]: number };
|
|
459
444
|
regionId?: string;
|
|
460
|
-
tags?: { [index: string]: TagDetailsInfo };
|
|
461
445
|
timestampOfTourCount?: string;
|
|
462
|
-
tours?: TourInfo[];
|
|
463
446
|
}
|
|
464
447
|
|
|
465
448
|
export interface RegisterEmailAddress {
|
|
@@ -498,9 +481,7 @@ export interface SubContinentInfo {
|
|
|
498
481
|
newTags?: { [index: string]: TagScoreInfo };
|
|
499
482
|
newTours?: { [index: string]: number };
|
|
500
483
|
subContinentId?: string;
|
|
501
|
-
tags?: { [index: string]: TagDetailsInfo };
|
|
502
484
|
timestampOfTourCount?: string;
|
|
503
|
-
tours?: TourInfo[];
|
|
504
485
|
}
|
|
505
486
|
|
|
506
487
|
export interface Supplier<T> {
|
package/package.json
CHANGED