@openvoy/openvoy-typescriptmodels 0.0.2381 → 0.0.2402
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 -7
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -336,7 +336,7 @@ export interface FindTagCities {
|
|
|
336
336
|
tagId?: string;
|
|
337
337
|
}
|
|
338
338
|
|
|
339
|
-
export interface FindTagInfos extends FacetedSearch<
|
|
339
|
+
export interface FindTagInfos extends FacetedSearch<TagInfo> {
|
|
340
340
|
}
|
|
341
341
|
|
|
342
342
|
export interface FindTags extends FacetedSearch<Tag> {
|
|
@@ -614,7 +614,6 @@ 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
|
}
|
|
@@ -628,20 +627,16 @@ export interface TagDetailsInfo extends Comparable<TagDetailsInfo> {
|
|
|
628
627
|
}
|
|
629
628
|
|
|
630
629
|
export interface TagInfo {
|
|
631
|
-
active?: boolean;
|
|
632
630
|
alias?: string;
|
|
633
631
|
associationTags?: string[];
|
|
634
632
|
bestTour?: TourInfo;
|
|
635
633
|
childTagIds?: string[];
|
|
636
634
|
childTags?: { [index: string]: TagDetails };
|
|
637
635
|
details?: TagDetails;
|
|
638
|
-
enabled?: boolean;
|
|
639
|
-
hasChildren?: boolean;
|
|
640
636
|
internalDetails?: TagInternalDetails;
|
|
641
637
|
parentTagIds?: string[];
|
|
642
638
|
parentTags?: { [index: string]: TagDetails };
|
|
643
639
|
root?: boolean;
|
|
644
|
-
showOnHomePage?: boolean;
|
|
645
640
|
tagId?: string;
|
|
646
641
|
timestampOfTourCount?: string;
|
|
647
642
|
totalScore?: number;
|
|
@@ -717,7 +712,6 @@ export interface TourInfo {
|
|
|
717
712
|
bestLandscapeImage?: Image;
|
|
718
713
|
bestPortraitImage?: Image;
|
|
719
714
|
rating?: RatingDetails;
|
|
720
|
-
ratingScore?: number;
|
|
721
715
|
tourId?: TourId;
|
|
722
716
|
tourScore?: number;
|
|
723
717
|
}
|
package/package.json
CHANGED