@openvoy/openvoy-typescriptmodels 0.0.4251 → 0.0.4281
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 +4 -2
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -450,11 +450,11 @@ export interface FindTags extends FacetedSearch<Tag> {
|
|
|
450
450
|
term?: string;
|
|
451
451
|
}
|
|
452
452
|
|
|
453
|
-
export interface FindTours extends FacetedSearch<
|
|
453
|
+
export interface FindTours extends FacetedSearch<TourSummary> {
|
|
454
454
|
term?: string;
|
|
455
455
|
}
|
|
456
456
|
|
|
457
|
-
export interface FindToursForDestination extends FacetedSearch<
|
|
457
|
+
export interface FindToursForDestination extends FacetedSearch<TourSummary> {
|
|
458
458
|
cityId?: string;
|
|
459
459
|
continent?: Continent;
|
|
460
460
|
countryId?: string;
|
|
@@ -913,6 +913,7 @@ export interface TourSummary {
|
|
|
913
913
|
continent?: Continent;
|
|
914
914
|
countryId?: string;
|
|
915
915
|
details?: TourDetails;
|
|
916
|
+
externalId?: TourProviderId;
|
|
916
917
|
priceInDollar?: number;
|
|
917
918
|
pricing?: { [index: string]: TourPricing };
|
|
918
919
|
regionId?: string;
|
|
@@ -944,6 +945,7 @@ export interface UpdateTour extends TourDetailsUpdate {
|
|
|
944
945
|
export interface UpdateTourPricing extends TourUpdate {
|
|
945
946
|
cityId?: string;
|
|
946
947
|
continent?: Continent;
|
|
948
|
+
priceInDollar?: number;
|
|
947
949
|
pricing?: { [index: string]: TourPricing };
|
|
948
950
|
regionId?: string;
|
|
949
951
|
subContinent?: string;
|
package/package.json
CHANGED