@openvoy/openvoy-typescriptmodels 0.0.2391 → 0.0.2411
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 +1 -3
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -614,16 +614,15 @@ export interface TagCommand {
|
|
|
614
614
|
}
|
|
615
615
|
|
|
616
616
|
export interface TagDetails {
|
|
617
|
-
alias?: string;
|
|
618
617
|
name?: string;
|
|
619
618
|
namesByLocale?: { [index: string]: string };
|
|
620
619
|
}
|
|
621
620
|
|
|
622
621
|
export interface TagDetailsInfo extends Comparable<TagDetailsInfo> {
|
|
623
622
|
details?: TagDetails;
|
|
623
|
+
parentTagNames?: string[];
|
|
624
624
|
root?: boolean;
|
|
625
625
|
tagId?: string;
|
|
626
|
-
tourScore?: number;
|
|
627
626
|
tours?: TourInfo[];
|
|
628
627
|
}
|
|
629
628
|
|
|
@@ -713,7 +712,6 @@ export interface TourInfo {
|
|
|
713
712
|
bestLandscapeImage?: Image;
|
|
714
713
|
bestPortraitImage?: Image;
|
|
715
714
|
rating?: RatingDetails;
|
|
716
|
-
ratingScore?: number;
|
|
717
715
|
tourId?: TourId;
|
|
718
716
|
tourScore?: number;
|
|
719
717
|
}
|
package/package.json
CHANGED