@openvoy/openvoy-typescriptmodels 0.0.2041 → 0.0.2051
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 +2 -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[];
|
|
@@ -566,6 +567,7 @@ export interface TagProviderId {
|
|
|
566
567
|
|
|
567
568
|
export interface TagScoreInfo extends Comparable<TagScoreInfo> {
|
|
568
569
|
details?: TagDetails;
|
|
570
|
+
root?: boolean;
|
|
569
571
|
scores?: { [index: string]: number };
|
|
570
572
|
tagId?: string;
|
|
571
573
|
tourScore?: number;
|
package/package.json
CHANGED