@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.
Files changed (2) hide show
  1. package/core.d.ts +5 -0
  2. 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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.4721",
3
+ "version": "0.0.4731",
4
4
  "types": "core.d.ts"
5
5
  }