@openvoy/openvoy-typescriptmodels 0.0.6241 → 0.0.6261
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 +21 -39
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -71,30 +71,6 @@ export interface AttractionSummary {
|
|
|
71
71
|
export interface AttractionUpdate extends AttractionCommand {
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
export interface Category {
|
|
75
|
-
active?: boolean;
|
|
76
|
-
alias?: string;
|
|
77
|
-
attractionId?: string;
|
|
78
|
-
categoryId?: string;
|
|
79
|
-
city?: string;
|
|
80
|
-
continent?: Continent;
|
|
81
|
-
country?: string;
|
|
82
|
-
destinationAlias?: string;
|
|
83
|
-
destinationTypeOfTag?: DestinationType;
|
|
84
|
-
name?: string;
|
|
85
|
-
region?: string;
|
|
86
|
-
subContinent?: string;
|
|
87
|
-
tourScore?: number;
|
|
88
|
-
type?: CategoryType;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
export interface CategoryCode {
|
|
92
|
-
type?: any;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
export interface CategoryUpdater {
|
|
96
|
-
}
|
|
97
|
-
|
|
98
74
|
export interface City {
|
|
99
75
|
alias?: string;
|
|
100
76
|
attractions?: Attraction[];
|
|
@@ -510,20 +486,6 @@ export interface GetAttractionTagInfo {
|
|
|
510
486
|
tagId?: string;
|
|
511
487
|
}
|
|
512
488
|
|
|
513
|
-
export interface GetCategory {
|
|
514
|
-
categoryId?: string;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
export interface GetCategoryByCode {
|
|
518
|
-
categoryType?: CategoryType;
|
|
519
|
-
code?: string;
|
|
520
|
-
destinationId?: string;
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
export interface GetCategoryEntity {
|
|
524
|
-
categoryId?: string;
|
|
525
|
-
}
|
|
526
|
-
|
|
527
489
|
export interface GetCity {
|
|
528
490
|
cityId?: string;
|
|
529
491
|
}
|
|
@@ -669,6 +631,23 @@ export interface NumberSortableFilter extends SortableFilter<number> {
|
|
|
669
631
|
min?: number;
|
|
670
632
|
}
|
|
671
633
|
|
|
634
|
+
export interface Page {
|
|
635
|
+
active?: boolean;
|
|
636
|
+
alias?: string;
|
|
637
|
+
attractionId?: string;
|
|
638
|
+
categoryId?: string;
|
|
639
|
+
city?: string;
|
|
640
|
+
continent?: Continent;
|
|
641
|
+
country?: string;
|
|
642
|
+
destinationAlias?: string;
|
|
643
|
+
destinationTypeOfTag?: DestinationType;
|
|
644
|
+
name?: string;
|
|
645
|
+
region?: string;
|
|
646
|
+
subContinent?: string;
|
|
647
|
+
tourScore?: number;
|
|
648
|
+
type?: CategoryType;
|
|
649
|
+
}
|
|
650
|
+
|
|
672
651
|
export interface PageContent {
|
|
673
652
|
dayTrips?: string;
|
|
674
653
|
faqItems?: FaqItem[];
|
|
@@ -680,6 +659,9 @@ export interface PageContent {
|
|
|
680
659
|
whyVisit?: string;
|
|
681
660
|
}
|
|
682
661
|
|
|
662
|
+
export interface PagesUpdater {
|
|
663
|
+
}
|
|
664
|
+
|
|
683
665
|
export interface Pagination {
|
|
684
666
|
count?: number;
|
|
685
667
|
from?: number;
|
|
@@ -746,7 +728,7 @@ export interface ReviewSummary {
|
|
|
746
728
|
rating?: number;
|
|
747
729
|
}
|
|
748
730
|
|
|
749
|
-
export interface SearchCategories extends FacetedSearch<
|
|
731
|
+
export interface SearchCategories extends FacetedSearch<Page> {
|
|
750
732
|
activeOnly?: boolean;
|
|
751
733
|
term?: string;
|
|
752
734
|
}
|
package/package.json
CHANGED