@openvoy/openvoy-typescriptmodels 0.0.4231 → 0.0.4251
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 +18 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -548,6 +548,11 @@ export interface GetDestinationInfo {
|
|
|
548
548
|
type?: DestinationType;
|
|
549
549
|
}
|
|
550
550
|
|
|
551
|
+
export interface GetExchangeRate {
|
|
552
|
+
sourceCurrency?: string;
|
|
553
|
+
targetCurrency?: string;
|
|
554
|
+
}
|
|
555
|
+
|
|
551
556
|
export interface GetFacets extends FacetableRequest {
|
|
552
557
|
query?: FacetedSearch<any>;
|
|
553
558
|
}
|
|
@@ -903,6 +908,19 @@ export interface TourProviderId {
|
|
|
903
908
|
type?: any;
|
|
904
909
|
}
|
|
905
910
|
|
|
911
|
+
export interface TourSummary {
|
|
912
|
+
cityId?: string;
|
|
913
|
+
continent?: Continent;
|
|
914
|
+
countryId?: string;
|
|
915
|
+
details?: TourDetails;
|
|
916
|
+
priceInDollar?: number;
|
|
917
|
+
pricing?: { [index: string]: TourPricing };
|
|
918
|
+
regionId?: string;
|
|
919
|
+
subContinent?: string;
|
|
920
|
+
tourId?: TourId;
|
|
921
|
+
tourScore?: number;
|
|
922
|
+
}
|
|
923
|
+
|
|
906
924
|
export interface TourUpdate {
|
|
907
925
|
countryId?: string;
|
|
908
926
|
tourId?: TourId;
|
package/package.json
CHANGED