@openvoy/openvoy-typescriptmodels 0.0.6461 → 0.0.6471
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 -9
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -382,6 +382,7 @@ export interface FindCountry {
|
|
|
382
382
|
}
|
|
383
383
|
|
|
384
384
|
export interface FindDayTours extends FacetedSearch<TourSummary> {
|
|
385
|
+
countryId?: string;
|
|
385
386
|
term?: string;
|
|
386
387
|
}
|
|
387
388
|
|
|
@@ -437,23 +438,16 @@ export interface FindTagsForTopbar {
|
|
|
437
438
|
}
|
|
438
439
|
|
|
439
440
|
export interface FindTours extends FacetedSearch<TourSummary> {
|
|
441
|
+
countryId?: string;
|
|
440
442
|
term?: string;
|
|
441
443
|
}
|
|
442
444
|
|
|
443
445
|
export interface FindToursForAttraction extends FacetedSearch<TourSummary> {
|
|
444
446
|
attractionId?: string;
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
export interface FindToursForDestination extends FacetedSearch<TourSummary> {
|
|
448
|
-
cityId?: string;
|
|
449
|
-
continent?: Continent;
|
|
450
447
|
countryId?: string;
|
|
451
|
-
regionId?: string;
|
|
452
|
-
subContinentId?: string;
|
|
453
|
-
term?: string;
|
|
454
448
|
}
|
|
455
449
|
|
|
456
|
-
export interface
|
|
450
|
+
export interface FindToursForDestination extends FacetedSearch<TourSummary> {
|
|
457
451
|
cityId?: string;
|
|
458
452
|
continent?: Continent;
|
|
459
453
|
countryId?: string;
|
|
@@ -463,10 +457,12 @@ export interface FindToursForDestinationNoSorting extends FacetedSearch<TourSumm
|
|
|
463
457
|
}
|
|
464
458
|
|
|
465
459
|
export interface FindToursWithDuration extends FacetedSearch<TourSummary> {
|
|
460
|
+
countryId?: string;
|
|
466
461
|
term?: string;
|
|
467
462
|
}
|
|
468
463
|
|
|
469
464
|
export interface FindToursWithTag extends FacetedSearch<TourSummary> {
|
|
465
|
+
countryId?: string;
|
|
470
466
|
tagId?: string;
|
|
471
467
|
}
|
|
472
468
|
|
package/package.json
CHANGED