@openvoy/openvoy-typescriptmodels 0.0.2041 → 0.0.2061
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 +3 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -524,6 +524,7 @@ export interface TagDetails {
|
|
|
524
524
|
|
|
525
525
|
export interface TagDetailsInfo extends Comparable<TagDetailsInfo> {
|
|
526
526
|
details?: TagDetails;
|
|
527
|
+
root?: boolean;
|
|
527
528
|
tagId?: string;
|
|
528
529
|
tourScore?: number;
|
|
529
530
|
tours?: TourInfo[];
|
|
@@ -544,6 +545,7 @@ export interface TagInfo {
|
|
|
544
545
|
parentTagIds?: string[];
|
|
545
546
|
parentTags?: { [index: string]: TagDetails };
|
|
546
547
|
root?: boolean;
|
|
548
|
+
showOnHomePage?: boolean;
|
|
547
549
|
tagId?: string;
|
|
548
550
|
timestampOfTourCount?: string;
|
|
549
551
|
tours?: { [index: string]: number };
|
|
@@ -566,6 +568,7 @@ export interface TagProviderId {
|
|
|
566
568
|
|
|
567
569
|
export interface TagScoreInfo extends Comparable<TagScoreInfo> {
|
|
568
570
|
details?: TagDetails;
|
|
571
|
+
root?: boolean;
|
|
569
572
|
scores?: { [index: string]: number };
|
|
570
573
|
tagId?: string;
|
|
571
574
|
tourScore?: number;
|
package/package.json
CHANGED