@openvoy/openvoy-typescriptmodels 0.0.5351 → 0.0.5371
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 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -200,6 +200,11 @@ export interface DateRange extends Comparable<DateRange> {
|
|
|
200
200
|
start?: string;
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
+
export interface DateSortableFilter extends SortableFilter<string> {
|
|
204
|
+
maxExclusive?: string;
|
|
205
|
+
min?: string;
|
|
206
|
+
}
|
|
207
|
+
|
|
203
208
|
export interface DeleteAttraction extends AttractionCommand {
|
|
204
209
|
countryId?: string;
|
|
205
210
|
}
|
|
@@ -432,6 +437,11 @@ export interface FindToursForDestination extends FacetedSearch<TourSummary> {
|
|
|
432
437
|
subContinentId?: string;
|
|
433
438
|
}
|
|
434
439
|
|
|
440
|
+
export interface FindToursWithDuration extends FacetedSearch<TourSummary> {
|
|
441
|
+
durationFilter?: NumberSortableFilter;
|
|
442
|
+
term?: string;
|
|
443
|
+
}
|
|
444
|
+
|
|
435
445
|
export interface FindToursWithTag extends FacetedSearch<TourSummary> {
|
|
436
446
|
tagId?: string;
|
|
437
447
|
}
|
|
@@ -608,6 +618,11 @@ export interface LatLong {
|
|
|
608
618
|
longitude?: number;
|
|
609
619
|
}
|
|
610
620
|
|
|
621
|
+
export interface NumberSortableFilter extends SortableFilter<number> {
|
|
622
|
+
maxExclusive?: number;
|
|
623
|
+
min?: number;
|
|
624
|
+
}
|
|
625
|
+
|
|
611
626
|
export interface PageContent {
|
|
612
627
|
dayTrips?: string;
|
|
613
628
|
faqItems?: FaqItem[];
|
|
@@ -742,6 +757,12 @@ export interface SitemapUrlEntry {
|
|
|
742
757
|
priority?: number;
|
|
743
758
|
}
|
|
744
759
|
|
|
760
|
+
export interface SortableFilter<T> {
|
|
761
|
+
maxExclusive?: T;
|
|
762
|
+
min?: T;
|
|
763
|
+
path?: string;
|
|
764
|
+
}
|
|
765
|
+
|
|
745
766
|
export interface Supplier<T> {
|
|
746
767
|
}
|
|
747
768
|
|
package/package.json
CHANGED