@openvoy/openvoy-typescriptmodels 0.0.5411 → 0.0.5421
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 -2
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -83,7 +83,6 @@ export interface Category {
|
|
|
83
83
|
name?: string;
|
|
84
84
|
region?: string;
|
|
85
85
|
subContinent?: string;
|
|
86
|
-
timestampOfTourCount?: string;
|
|
87
86
|
tourScore?: number;
|
|
88
87
|
type?: CategoryType;
|
|
89
88
|
}
|
|
@@ -92,6 +91,9 @@ export interface CategoryCode {
|
|
|
92
91
|
type?: any;
|
|
93
92
|
}
|
|
94
93
|
|
|
94
|
+
export interface CategoryUpdater {
|
|
95
|
+
}
|
|
96
|
+
|
|
95
97
|
export interface City {
|
|
96
98
|
alias?: string;
|
|
97
99
|
attractions?: Attraction[];
|
|
@@ -435,7 +437,6 @@ export interface FindToursForDestination extends FacetedSearch<TourSummary> {
|
|
|
435
437
|
}
|
|
436
438
|
|
|
437
439
|
export interface FindToursWithDuration extends FacetedSearch<TourSummary>, SortableSearch {
|
|
438
|
-
durationFilter?: NumberSortableFilter;
|
|
439
440
|
term?: string;
|
|
440
441
|
}
|
|
441
442
|
|
package/package.json
CHANGED