@openvoy/openvoy-typescriptmodels 0.0.2071 → 0.0.2081
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 -6
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -44,7 +44,6 @@ export interface CityDetails {
|
|
|
44
44
|
|
|
45
45
|
export interface CityInfo {
|
|
46
46
|
alias?: string;
|
|
47
|
-
averageScore?: number;
|
|
48
47
|
cityId?: string;
|
|
49
48
|
continent?: Continent;
|
|
50
49
|
countryDetails?: CountryDetails;
|
|
@@ -55,6 +54,7 @@ export interface CityInfo {
|
|
|
55
54
|
regionId?: string;
|
|
56
55
|
subContinent?: string;
|
|
57
56
|
timestampOfTourCount?: string;
|
|
57
|
+
totalScore?: number;
|
|
58
58
|
tourWithImageForCity?: Tour;
|
|
59
59
|
}
|
|
60
60
|
|
|
@@ -84,7 +84,6 @@ export interface Comparable<T> {
|
|
|
84
84
|
|
|
85
85
|
export interface ContinentInfo {
|
|
86
86
|
alias?: string;
|
|
87
|
-
averageScore?: number;
|
|
88
87
|
bestTour?: TourInfo;
|
|
89
88
|
continent?: Continent;
|
|
90
89
|
countries?: { [index: string]: CountryDetails };
|
|
@@ -92,6 +91,7 @@ export interface ContinentInfo {
|
|
|
92
91
|
newTours?: { [index: string]: number };
|
|
93
92
|
subContinents?: string[];
|
|
94
93
|
timestampOfTourCount?: string;
|
|
94
|
+
totalScore?: number;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
export interface Country {
|
|
@@ -119,7 +119,6 @@ export interface CountryDetails {
|
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
export interface CountryInfo {
|
|
122
|
-
averageScore?: number;
|
|
123
122
|
cities?: City[];
|
|
124
123
|
countryId?: string;
|
|
125
124
|
details?: CountryDetails;
|
|
@@ -127,6 +126,7 @@ export interface CountryInfo {
|
|
|
127
126
|
newTours?: { [index: string]: number };
|
|
128
127
|
regions?: Region[];
|
|
129
128
|
timestampOfTourCount?: string;
|
|
129
|
+
totalScore?: number;
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
export interface CountryProviderDetails {
|
|
@@ -434,7 +434,6 @@ export interface RegionDetails {
|
|
|
434
434
|
|
|
435
435
|
export interface RegionInfo {
|
|
436
436
|
alias?: string;
|
|
437
|
-
averageScore?: number;
|
|
438
437
|
cities?: City[];
|
|
439
438
|
countryDetails?: CountryDetails;
|
|
440
439
|
countryId?: string;
|
|
@@ -443,6 +442,7 @@ export interface RegionInfo {
|
|
|
443
442
|
newTours?: { [index: string]: number };
|
|
444
443
|
regionId?: string;
|
|
445
444
|
timestampOfTourCount?: string;
|
|
445
|
+
totalScore?: number;
|
|
446
446
|
}
|
|
447
447
|
|
|
448
448
|
export interface RegisterEmailAddress {
|
|
@@ -473,7 +473,6 @@ export interface SetUserRole extends UserUpdate {
|
|
|
473
473
|
|
|
474
474
|
export interface SubContinentInfo {
|
|
475
475
|
alias?: string;
|
|
476
|
-
averageScore?: number;
|
|
477
476
|
bestTour?: TourInfo;
|
|
478
477
|
continent?: Continent;
|
|
479
478
|
countries?: { [index: string]: CountryDetails };
|
|
@@ -482,6 +481,7 @@ export interface SubContinentInfo {
|
|
|
482
481
|
newTours?: { [index: string]: number };
|
|
483
482
|
subContinentId?: string;
|
|
484
483
|
timestampOfTourCount?: string;
|
|
484
|
+
totalScore?: number;
|
|
485
485
|
}
|
|
486
486
|
|
|
487
487
|
export interface Supplier<T> {
|
|
@@ -534,7 +534,6 @@ export interface TagInfo {
|
|
|
534
534
|
active?: boolean;
|
|
535
535
|
alias?: string;
|
|
536
536
|
associationTags?: string[];
|
|
537
|
-
averageScore?: number;
|
|
538
537
|
bestTour?: TourInfo;
|
|
539
538
|
childTagIds?: string[];
|
|
540
539
|
childTags?: { [index: string]: TagDetails };
|
|
@@ -548,6 +547,7 @@ export interface TagInfo {
|
|
|
548
547
|
showOnHomePage?: boolean;
|
|
549
548
|
tagId?: string;
|
|
550
549
|
timestampOfTourCount?: string;
|
|
550
|
+
totalScore?: number;
|
|
551
551
|
tours?: { [index: string]: number };
|
|
552
552
|
}
|
|
553
553
|
|
|
@@ -623,6 +623,7 @@ export interface TourInfo {
|
|
|
623
623
|
bestLandscapeImage?: TourImage;
|
|
624
624
|
bestPortraitImage?: TourImage;
|
|
625
625
|
rating?: RatingDetails;
|
|
626
|
+
ratingScore?: number;
|
|
626
627
|
tourId?: TourId;
|
|
627
628
|
tourScore?: number;
|
|
628
629
|
}
|
package/package.json
CHANGED