@openvoy/openvoy-typescriptmodels 0.0.4041 → 0.0.4051
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 -1
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -117,7 +117,6 @@ export interface City {
|
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
export interface CityDetails {
|
|
120
|
-
description?: string;
|
|
121
120
|
imageUrl?: string;
|
|
122
121
|
name?: string;
|
|
123
122
|
regionId?: string;
|
|
@@ -287,6 +286,13 @@ export interface DestinationSummary {
|
|
|
287
286
|
type?: DestinationType;
|
|
288
287
|
}
|
|
289
288
|
|
|
289
|
+
export interface DownloadDestinationsCsv {
|
|
290
|
+
facetFilters?: FacetFilter[];
|
|
291
|
+
pagination?: Pagination;
|
|
292
|
+
term?: string;
|
|
293
|
+
type?: DestinationType;
|
|
294
|
+
}
|
|
295
|
+
|
|
290
296
|
export interface Email {
|
|
291
297
|
}
|
|
292
298
|
|
|
@@ -316,6 +322,17 @@ export interface ExchangeRateId {
|
|
|
316
322
|
type?: any;
|
|
317
323
|
}
|
|
318
324
|
|
|
325
|
+
export interface ExportRow {
|
|
326
|
+
cityDetails?: CityDetails;
|
|
327
|
+
contentDetails?: ContentDetails;
|
|
328
|
+
countryDetails?: CountryDetails;
|
|
329
|
+
destinationId?: string;
|
|
330
|
+
destinationIds?: DestinationIds;
|
|
331
|
+
regionDetails?: RegionDetails;
|
|
332
|
+
totalScore?: number;
|
|
333
|
+
tourCount?: number;
|
|
334
|
+
}
|
|
335
|
+
|
|
319
336
|
export interface FacetFilter {
|
|
320
337
|
facetName?: string;
|
|
321
338
|
values?: any[];
|
package/package.json
CHANGED