@openvoy/openvoy-typescriptmodels 0.0.1331 → 0.0.1361
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 +4 -1
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -84,6 +84,7 @@ export interface Comparable<T> {
|
|
|
84
84
|
|
|
85
85
|
export interface ContinentInfo {
|
|
86
86
|
alias?: string;
|
|
87
|
+
bestTour?: TourInfo;
|
|
87
88
|
continent?: Continent;
|
|
88
89
|
countries?: { [index: string]: CountryDetails };
|
|
89
90
|
subContinents?: string[];
|
|
@@ -469,6 +470,7 @@ export interface SetUserRole extends UserUpdate {
|
|
|
469
470
|
|
|
470
471
|
export interface SubContinentInfo {
|
|
471
472
|
alias?: string;
|
|
473
|
+
bestTour?: TourInfo;
|
|
472
474
|
continent?: Continent;
|
|
473
475
|
countries?: { [index: string]: CountryDetails };
|
|
474
476
|
imageUrls?: string[];
|
|
@@ -563,7 +565,8 @@ export interface TourImage {
|
|
|
563
565
|
}
|
|
564
566
|
|
|
565
567
|
export interface TourInfo {
|
|
566
|
-
|
|
568
|
+
bestLandscapeImage?: TourImage;
|
|
569
|
+
bestPortraitImage?: TourImage;
|
|
567
570
|
rating?: RatingDetails;
|
|
568
571
|
tourId?: TourId;
|
|
569
572
|
tourScore?: number;
|
package/package.json
CHANGED