@openvoy/openvoy-typescriptmodels 0.0.4151 → 0.0.4181
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 +20 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export interface AttractionInfo {
|
|
|
55
55
|
primaryCity?: CityDetails;
|
|
56
56
|
tags?: string[];
|
|
57
57
|
totalScore?: number;
|
|
58
|
+
tourCount?: number;
|
|
58
59
|
tours?: { [index: string]: number };
|
|
59
60
|
}
|
|
60
61
|
|
|
@@ -146,7 +147,19 @@ export interface CityUpdate extends CountryUpdate {
|
|
|
146
147
|
export interface Comparable<T> {
|
|
147
148
|
}
|
|
148
149
|
|
|
150
|
+
export interface ContentBlocks {
|
|
151
|
+
bestTime?: string;
|
|
152
|
+
dayTrips?: string;
|
|
153
|
+
faqItems?: FaqItem[];
|
|
154
|
+
hiddenGems?: string;
|
|
155
|
+
highlights?: string;
|
|
156
|
+
subDivision?: string;
|
|
157
|
+
tips?: string;
|
|
158
|
+
whyVisit?: string;
|
|
159
|
+
}
|
|
160
|
+
|
|
149
161
|
export interface ContentDetails {
|
|
162
|
+
contentBlocks?: ContentBlocks;
|
|
150
163
|
promotionalText?: string;
|
|
151
164
|
promotionalTitle?: string;
|
|
152
165
|
seoSettings?: SeoSettings;
|
|
@@ -256,6 +269,7 @@ export interface DestinationInfo {
|
|
|
256
269
|
regionDetails?: DestinationRegionDetails;
|
|
257
270
|
subContinentDetails?: DestinationSubContinentDetails;
|
|
258
271
|
totalScore?: number;
|
|
272
|
+
tourCount?: number;
|
|
259
273
|
tours?: { [index: string]: number };
|
|
260
274
|
type?: DestinationType;
|
|
261
275
|
}
|
|
@@ -358,6 +372,11 @@ export interface FacetedSearch<R> extends FacetableRequest {
|
|
|
358
372
|
pagination?: Pagination;
|
|
359
373
|
}
|
|
360
374
|
|
|
375
|
+
export interface FaqItem {
|
|
376
|
+
answer?: string;
|
|
377
|
+
question?: string;
|
|
378
|
+
}
|
|
379
|
+
|
|
361
380
|
export interface FeatureCountry extends CountryUpdate {
|
|
362
381
|
featured?: boolean;
|
|
363
382
|
}
|
|
@@ -774,6 +793,7 @@ export interface TagInfo {
|
|
|
774
793
|
tagId?: string;
|
|
775
794
|
tagInfoId?: string;
|
|
776
795
|
totalScore?: number;
|
|
796
|
+
tourCount?: number;
|
|
777
797
|
tours?: { [index: string]: number };
|
|
778
798
|
}
|
|
779
799
|
|
package/package.json
CHANGED