@openvoy/openvoy-typescriptmodels 0.0.2031 → 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 +3 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -517,12 +517,14 @@ export interface TagCommand {
|
|
|
517
517
|
}
|
|
518
518
|
|
|
519
519
|
export interface TagDetails {
|
|
520
|
+
alias?: string;
|
|
520
521
|
name?: string;
|
|
521
522
|
namesByLocale?: { [index: string]: string };
|
|
522
523
|
}
|
|
523
524
|
|
|
524
525
|
export interface TagDetailsInfo extends Comparable<TagDetailsInfo> {
|
|
525
526
|
details?: TagDetails;
|
|
527
|
+
root?: boolean;
|
|
526
528
|
tagId?: string;
|
|
527
529
|
tourScore?: number;
|
|
528
530
|
tours?: TourInfo[];
|
|
@@ -565,6 +567,7 @@ export interface TagProviderId {
|
|
|
565
567
|
|
|
566
568
|
export interface TagScoreInfo extends Comparable<TagScoreInfo> {
|
|
567
569
|
details?: TagDetails;
|
|
570
|
+
root?: boolean;
|
|
568
571
|
scores?: { [index: string]: number };
|
|
569
572
|
tagId?: string;
|
|
570
573
|
tourScore?: number;
|
package/package.json
CHANGED