@openvoy/openvoy-typescriptmodels 0.0.7051 → 0.0.7091
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 +59 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -74,6 +74,21 @@ export interface AttractionSummary {
|
|
|
74
74
|
export interface AttractionUpdate extends AttractionCommand {
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
+
export interface AttractionsExportRow {
|
|
78
|
+
alias?: string;
|
|
79
|
+
attractionId?: string;
|
|
80
|
+
cityId?: string;
|
|
81
|
+
contentDetails?: ContentDetails;
|
|
82
|
+
continent?: string;
|
|
83
|
+
description?: string;
|
|
84
|
+
destinationCountryId?: string;
|
|
85
|
+
name?: string;
|
|
86
|
+
primaryImageUrl?: string;
|
|
87
|
+
subContinent?: string;
|
|
88
|
+
totalScore?: number;
|
|
89
|
+
tourCount?: number;
|
|
90
|
+
}
|
|
91
|
+
|
|
77
92
|
export interface CancellationPolicy {
|
|
78
93
|
cancelIfBadWeather?: boolean;
|
|
79
94
|
cancelIfInsufficientTravelers?: boolean;
|
|
@@ -269,6 +284,13 @@ export interface DestinationSummary {
|
|
|
269
284
|
type?: DestinationType;
|
|
270
285
|
}
|
|
271
286
|
|
|
287
|
+
export interface DownloadAttractionsCsv {
|
|
288
|
+
countryId?: string;
|
|
289
|
+
facetFilters?: FacetFilter[];
|
|
290
|
+
pagination?: Pagination;
|
|
291
|
+
term?: string;
|
|
292
|
+
}
|
|
293
|
+
|
|
272
294
|
export interface DownloadDestinationsCsv {
|
|
273
295
|
facetFilters?: FacetFilter[];
|
|
274
296
|
pagination?: Pagination;
|
|
@@ -276,6 +298,16 @@ export interface DownloadDestinationsCsv {
|
|
|
276
298
|
type?: DestinationType;
|
|
277
299
|
}
|
|
278
300
|
|
|
301
|
+
export interface DownloadTagsCsv {
|
|
302
|
+
attractionId?: string;
|
|
303
|
+
cityId?: string;
|
|
304
|
+
countryId?: string;
|
|
305
|
+
facetFilters?: FacetFilter[];
|
|
306
|
+
pagination?: Pagination;
|
|
307
|
+
regionId?: string;
|
|
308
|
+
term?: string;
|
|
309
|
+
}
|
|
310
|
+
|
|
279
311
|
export interface Email {
|
|
280
312
|
}
|
|
281
313
|
|
|
@@ -1053,6 +1085,33 @@ export interface TagUpdate extends TagCommand {
|
|
|
1053
1085
|
export interface TagUpdater {
|
|
1054
1086
|
}
|
|
1055
1087
|
|
|
1088
|
+
export interface TagsExportRow {
|
|
1089
|
+
active?: boolean;
|
|
1090
|
+
alias?: string;
|
|
1091
|
+
attractionId?: string;
|
|
1092
|
+
childTags?: string;
|
|
1093
|
+
cityId?: string;
|
|
1094
|
+
contentDetails?: ContentDetails;
|
|
1095
|
+
continent?: string;
|
|
1096
|
+
countryId?: string;
|
|
1097
|
+
destinationAlias?: string;
|
|
1098
|
+
destinationId?: string;
|
|
1099
|
+
destinationName?: string;
|
|
1100
|
+
destinationType?: string;
|
|
1101
|
+
disabled?: boolean;
|
|
1102
|
+
enabled?: boolean;
|
|
1103
|
+
hiddenOnWebsite?: boolean;
|
|
1104
|
+
name?: string;
|
|
1105
|
+
parentTags?: string;
|
|
1106
|
+
regionId?: string;
|
|
1107
|
+
root?: boolean;
|
|
1108
|
+
subContinent?: string;
|
|
1109
|
+
tagId?: string;
|
|
1110
|
+
tagInfoId?: string;
|
|
1111
|
+
totalScore?: number;
|
|
1112
|
+
tourCount?: number;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1056
1115
|
export interface Throwable extends Serializable {
|
|
1057
1116
|
cause?: Throwable;
|
|
1058
1117
|
localizedMessage?: string;
|
package/package.json
CHANGED