@openvoy/openvoy-typescriptmodels 0.0.6901 → 0.0.6911
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 +9 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -220,6 +220,11 @@ export interface DestinationIds {
|
|
|
220
220
|
subContinent?: string;
|
|
221
221
|
}
|
|
222
222
|
|
|
223
|
+
export interface DestinationItem {
|
|
224
|
+
destinationId?: string;
|
|
225
|
+
name?: string;
|
|
226
|
+
}
|
|
227
|
+
|
|
223
228
|
export interface DestinationRegionDetails {
|
|
224
229
|
cityBestTours?: { [index: string]: TourInfo };
|
|
225
230
|
details?: RegionDetails;
|
|
@@ -396,6 +401,10 @@ export interface FindDestinations extends FacetedSearch<DestinationSummary> {
|
|
|
396
401
|
type?: DestinationType;
|
|
397
402
|
}
|
|
398
403
|
|
|
404
|
+
export interface FindDestinationsForCountry {
|
|
405
|
+
countryId?: string;
|
|
406
|
+
}
|
|
407
|
+
|
|
399
408
|
export interface FindExchangeRates {
|
|
400
409
|
targetCurrency?: string;
|
|
401
410
|
}
|
package/package.json
CHANGED