@openvoy/openvoy-typescriptmodels 0.0.5371 → 0.0.5411
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 +9 -4
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -323,9 +323,6 @@ export interface FacetResult {
|
|
|
323
323
|
facets?: { [index: string]: FacetValueResult[] };
|
|
324
324
|
}
|
|
325
325
|
|
|
326
|
-
export interface FacetUtils {
|
|
327
|
-
}
|
|
328
|
-
|
|
329
326
|
export interface FacetValueResult {
|
|
330
327
|
count?: number;
|
|
331
328
|
value?: string;
|
|
@@ -437,7 +434,7 @@ export interface FindToursForDestination extends FacetedSearch<TourSummary> {
|
|
|
437
434
|
subContinentId?: string;
|
|
438
435
|
}
|
|
439
436
|
|
|
440
|
-
export interface FindToursWithDuration extends FacetedSearch<TourSummary
|
|
437
|
+
export interface FindToursWithDuration extends FacetedSearch<TourSummary>, SortableSearch {
|
|
441
438
|
durationFilter?: NumberSortableFilter;
|
|
442
439
|
term?: string;
|
|
443
440
|
}
|
|
@@ -707,6 +704,9 @@ export interface SearchCategories {
|
|
|
707
704
|
terms?: string[];
|
|
708
705
|
}
|
|
709
706
|
|
|
707
|
+
export interface SearchUtils {
|
|
708
|
+
}
|
|
709
|
+
|
|
710
710
|
export interface SeasonContent {
|
|
711
711
|
content?: string;
|
|
712
712
|
}
|
|
@@ -761,6 +761,11 @@ export interface SortableFilter<T> {
|
|
|
761
761
|
maxExclusive?: T;
|
|
762
762
|
min?: T;
|
|
763
763
|
path?: string;
|
|
764
|
+
type?: string;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
export interface SortableSearch {
|
|
768
|
+
sortableFilters?: SortableFilter<any>[];
|
|
764
769
|
}
|
|
765
770
|
|
|
766
771
|
export interface Supplier<T> {
|
package/package.json
CHANGED