@openvoy/openvoy-typescriptmodels 0.0.2601 → 0.0.2612
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 +4 -8
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -383,7 +383,7 @@ export interface GetAttractionSummary {
|
|
|
383
383
|
}
|
|
384
384
|
|
|
385
385
|
export interface GetAttractionTagInfo {
|
|
386
|
-
tagId?:
|
|
386
|
+
tagId?: string;
|
|
387
387
|
}
|
|
388
388
|
|
|
389
389
|
export interface GetCategory {
|
|
@@ -464,7 +464,7 @@ export interface GetTagById {
|
|
|
464
464
|
|
|
465
465
|
export interface GetTagInfo {
|
|
466
466
|
destinationType?: DestinationType;
|
|
467
|
-
tagId?:
|
|
467
|
+
tagId?: string;
|
|
468
468
|
}
|
|
469
469
|
|
|
470
470
|
export interface GetTagSummary {
|
|
@@ -641,15 +641,11 @@ export interface TagInfo {
|
|
|
641
641
|
parentTags?: { [index: string]: TagDetails };
|
|
642
642
|
root?: boolean;
|
|
643
643
|
tagId?: string;
|
|
644
|
-
tagInfoId?:
|
|
644
|
+
tagInfoId?: string;
|
|
645
645
|
totalScore?: number;
|
|
646
646
|
tours?: { [index: string]: number };
|
|
647
647
|
}
|
|
648
648
|
|
|
649
|
-
export interface TagInfoId {
|
|
650
|
-
type?: any;
|
|
651
|
-
}
|
|
652
|
-
|
|
653
649
|
export interface TagInternalDetails {
|
|
654
650
|
disabled?: boolean;
|
|
655
651
|
hiddenOnWebsite?: boolean;
|
|
@@ -678,7 +674,7 @@ export interface TagSummary {
|
|
|
678
674
|
parentTags?: string[];
|
|
679
675
|
root?: boolean;
|
|
680
676
|
tagId?: string;
|
|
681
|
-
tagInfoId?:
|
|
677
|
+
tagInfoId?: string;
|
|
682
678
|
totalScore?: number;
|
|
683
679
|
tourCount?: number;
|
|
684
680
|
}
|
package/package.json
CHANGED