@openvoy/openvoy-typescriptmodels 0.0.5841 → 0.0.5861

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 +12 -0
  2. package/package.json +1 -1
package/core.d.ts CHANGED
@@ -356,6 +356,10 @@ export interface FindAttractionSummaries extends FacetedSearch<AttractionSummary
356
356
  term?: string;
357
357
  }
358
358
 
359
+ export interface FindAttractionsForTopbar {
360
+ continent?: Continent;
361
+ }
362
+
359
363
  export interface FindCities extends FacetedSearch<City> {
360
364
  term?: string;
361
365
  }
@@ -377,6 +381,10 @@ export interface FindCountriesByCategory extends FacetedSearch<DestinationSummar
377
381
  category?: string;
378
382
  }
379
383
 
384
+ export interface FindCountriesForTopbar {
385
+ continent?: Continent;
386
+ }
387
+
380
388
  export interface FindCountry {
381
389
  countryId?: string;
382
390
  }
@@ -432,6 +440,10 @@ export interface FindTags extends FacetedSearch<Tag> {
432
440
  term?: string;
433
441
  }
434
442
 
443
+ export interface FindTagsForTopbar {
444
+ destinationId?: string;
445
+ }
446
+
435
447
  export interface FindTours extends FacetedSearch<TourSummary> {
436
448
  term?: string;
437
449
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.5841",
3
+ "version": "0.0.5861",
4
4
  "types": "core.d.ts"
5
5
  }