@openvoy/openvoy-typescriptmodels 0.0.5851 → 0.0.5871
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 +15 -0
- 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
|
}
|
|
@@ -369,6 +373,9 @@ export interface FindCity {
|
|
|
369
373
|
code?: string;
|
|
370
374
|
}
|
|
371
375
|
|
|
376
|
+
export interface FindContinentsForTopbar {
|
|
377
|
+
}
|
|
378
|
+
|
|
372
379
|
export interface FindCountries extends FacetedSearch<Country> {
|
|
373
380
|
term?: string;
|
|
374
381
|
}
|
|
@@ -377,6 +384,10 @@ export interface FindCountriesByCategory extends FacetedSearch<DestinationSummar
|
|
|
377
384
|
category?: string;
|
|
378
385
|
}
|
|
379
386
|
|
|
387
|
+
export interface FindCountriesForTopbar {
|
|
388
|
+
continent?: Continent;
|
|
389
|
+
}
|
|
390
|
+
|
|
380
391
|
export interface FindCountry {
|
|
381
392
|
countryId?: string;
|
|
382
393
|
}
|
|
@@ -432,6 +443,10 @@ export interface FindTags extends FacetedSearch<Tag> {
|
|
|
432
443
|
term?: string;
|
|
433
444
|
}
|
|
434
445
|
|
|
446
|
+
export interface FindTagsForTopbar {
|
|
447
|
+
destinationId?: string;
|
|
448
|
+
}
|
|
449
|
+
|
|
435
450
|
export interface FindTours extends FacetedSearch<TourSummary> {
|
|
436
451
|
term?: string;
|
|
437
452
|
}
|
package/package.json
CHANGED