@openvoy/openvoy-typescriptmodels 0.0.4482 → 0.0.4501
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 +2 -20
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -245,24 +245,6 @@ export interface DestinationIds {
|
|
|
245
245
|
subContinent?: string;
|
|
246
246
|
}
|
|
247
247
|
|
|
248
|
-
export interface DestinationInfo {
|
|
249
|
-
alias?: string;
|
|
250
|
-
bestTour?: TourInfo;
|
|
251
|
-
cityDetails?: DestinationCityDetails;
|
|
252
|
-
contentDetails?: ContentDetails;
|
|
253
|
-
continentDetails?: DestinationContinentDetails;
|
|
254
|
-
countryDetails?: DestinationCountryDetails;
|
|
255
|
-
destinationId?: string;
|
|
256
|
-
destinationIds?: DestinationIds;
|
|
257
|
-
name?: string;
|
|
258
|
-
regionDetails?: DestinationRegionDetails;
|
|
259
|
-
subContinentDetails?: DestinationSubContinentDetails;
|
|
260
|
-
totalScore?: number;
|
|
261
|
-
tourCount?: number;
|
|
262
|
-
tours?: { [index: string]: number };
|
|
263
|
-
type?: DestinationType;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
248
|
export interface DestinationRegionDetails {
|
|
267
249
|
cityBestTours?: { [index: string]: TourInfo };
|
|
268
250
|
details?: RegionDetails;
|
|
@@ -536,8 +518,8 @@ export interface GetDestination {
|
|
|
536
518
|
type?: DestinationType;
|
|
537
519
|
}
|
|
538
520
|
|
|
539
|
-
export interface
|
|
540
|
-
|
|
521
|
+
export interface GetDestinationById {
|
|
522
|
+
destinationId?: string;
|
|
541
523
|
type?: DestinationType;
|
|
542
524
|
}
|
|
543
525
|
|
package/package.json
CHANGED