@openvoy/openvoy-typescriptmodels 0.0.4721 → 0.0.4731
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 +5 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -414,6 +414,10 @@ export interface FindTours extends FacetedSearch<TourSummary> {
|
|
|
414
414
|
term?: string;
|
|
415
415
|
}
|
|
416
416
|
|
|
417
|
+
export interface FindToursForAttraction extends FacetedSearch<TourSummary> {
|
|
418
|
+
attractionId?: string;
|
|
419
|
+
}
|
|
420
|
+
|
|
417
421
|
export interface FindToursForDestination extends FacetedSearch<TourSummary> {
|
|
418
422
|
cityId?: string;
|
|
419
423
|
continent?: Continent;
|
|
@@ -895,6 +899,7 @@ export interface TourProviderId {
|
|
|
895
899
|
}
|
|
896
900
|
|
|
897
901
|
export interface TourSummary {
|
|
902
|
+
attractions?: string[];
|
|
898
903
|
cityId?: string;
|
|
899
904
|
continent?: Continent;
|
|
900
905
|
countryId?: string;
|
package/package.json
CHANGED