@openvoy/openvoy-typescriptmodels 0.0.2601 → 0.0.2621
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 +6 -8
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ export interface AttractionInfo {
|
|
|
49
49
|
destinationIds?: DestinationIds;
|
|
50
50
|
details?: AttractionDetails;
|
|
51
51
|
primaryCity?: CityDetails;
|
|
52
|
+
tags?: string[];
|
|
52
53
|
totalScore?: number;
|
|
53
54
|
tours?: { [index: string]: number };
|
|
54
55
|
}
|
|
@@ -70,6 +71,7 @@ export interface AttractionSummary {
|
|
|
70
71
|
destinationIds?: DestinationIds;
|
|
71
72
|
details?: AttractionDetails;
|
|
72
73
|
primaryCity?: CityDetails;
|
|
74
|
+
tags?: string[];
|
|
73
75
|
timestampOfTotalScore?: string;
|
|
74
76
|
totalScore?: number;
|
|
75
77
|
tourCount?: number;
|
|
@@ -383,7 +385,7 @@ export interface GetAttractionSummary {
|
|
|
383
385
|
}
|
|
384
386
|
|
|
385
387
|
export interface GetAttractionTagInfo {
|
|
386
|
-
tagId?:
|
|
388
|
+
tagId?: string;
|
|
387
389
|
}
|
|
388
390
|
|
|
389
391
|
export interface GetCategory {
|
|
@@ -464,7 +466,7 @@ export interface GetTagById {
|
|
|
464
466
|
|
|
465
467
|
export interface GetTagInfo {
|
|
466
468
|
destinationType?: DestinationType;
|
|
467
|
-
tagId?:
|
|
469
|
+
tagId?: string;
|
|
468
470
|
}
|
|
469
471
|
|
|
470
472
|
export interface GetTagSummary {
|
|
@@ -641,15 +643,11 @@ export interface TagInfo {
|
|
|
641
643
|
parentTags?: { [index: string]: TagDetails };
|
|
642
644
|
root?: boolean;
|
|
643
645
|
tagId?: string;
|
|
644
|
-
tagInfoId?:
|
|
646
|
+
tagInfoId?: string;
|
|
645
647
|
totalScore?: number;
|
|
646
648
|
tours?: { [index: string]: number };
|
|
647
649
|
}
|
|
648
650
|
|
|
649
|
-
export interface TagInfoId {
|
|
650
|
-
type?: any;
|
|
651
|
-
}
|
|
652
|
-
|
|
653
651
|
export interface TagInternalDetails {
|
|
654
652
|
disabled?: boolean;
|
|
655
653
|
hiddenOnWebsite?: boolean;
|
|
@@ -678,7 +676,7 @@ export interface TagSummary {
|
|
|
678
676
|
parentTags?: string[];
|
|
679
677
|
root?: boolean;
|
|
680
678
|
tagId?: string;
|
|
681
|
-
tagInfoId?:
|
|
679
|
+
tagInfoId?: string;
|
|
682
680
|
totalScore?: number;
|
|
683
681
|
tourCount?: number;
|
|
684
682
|
}
|
package/package.json
CHANGED