@openvoy/openvoy-typescriptmodels 0.0.5441 → 0.0.5461
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 -4
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -420,15 +420,15 @@ export interface FindTags extends FacetedSearch<Tag> {
|
|
|
420
420
|
term?: string;
|
|
421
421
|
}
|
|
422
422
|
|
|
423
|
-
export interface FindTours extends FacetedSearch<TourSummary
|
|
423
|
+
export interface FindTours extends FacetedSearch<TourSummary>, SortableSearch {
|
|
424
424
|
term?: string;
|
|
425
425
|
}
|
|
426
426
|
|
|
427
|
-
export interface FindToursForAttraction extends FacetedSearch<TourSummary
|
|
427
|
+
export interface FindToursForAttraction extends FacetedSearch<TourSummary>, SortableSearch {
|
|
428
428
|
attractionId?: string;
|
|
429
429
|
}
|
|
430
430
|
|
|
431
|
-
export interface FindToursForDestination extends FacetedSearch<TourSummary
|
|
431
|
+
export interface FindToursForDestination extends FacetedSearch<TourSummary>, SortableSearch {
|
|
432
432
|
cityId?: string;
|
|
433
433
|
continent?: Continent;
|
|
434
434
|
countryId?: string;
|
|
@@ -440,7 +440,7 @@ export interface FindToursWithDuration extends FacetedSearch<TourSummary>, Sorta
|
|
|
440
440
|
term?: string;
|
|
441
441
|
}
|
|
442
442
|
|
|
443
|
-
export interface FindToursWithTag extends FacetedSearch<TourSummary
|
|
443
|
+
export interface FindToursWithTag extends FacetedSearch<TourSummary>, SortableSearch {
|
|
444
444
|
tagId?: string;
|
|
445
445
|
}
|
|
446
446
|
|
package/package.json
CHANGED