@openvoy/openvoy-typescriptmodels 0.0.4151 → 0.0.4161
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 +17 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -146,7 +146,19 @@ export interface CityUpdate extends CountryUpdate {
|
|
|
146
146
|
export interface Comparable<T> {
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
+
export interface ContentBlocks {
|
|
150
|
+
bestTime?: string;
|
|
151
|
+
dayTrips?: string;
|
|
152
|
+
faqItems?: FaqItem[];
|
|
153
|
+
hiddenGems?: string;
|
|
154
|
+
highlights?: string;
|
|
155
|
+
subDivision?: string;
|
|
156
|
+
tips?: string;
|
|
157
|
+
whyVisit?: string;
|
|
158
|
+
}
|
|
159
|
+
|
|
149
160
|
export interface ContentDetails {
|
|
161
|
+
contentBlocks?: ContentBlocks;
|
|
150
162
|
promotionalText?: string;
|
|
151
163
|
promotionalTitle?: string;
|
|
152
164
|
seoSettings?: SeoSettings;
|
|
@@ -358,6 +370,11 @@ export interface FacetedSearch<R> extends FacetableRequest {
|
|
|
358
370
|
pagination?: Pagination;
|
|
359
371
|
}
|
|
360
372
|
|
|
373
|
+
export interface FaqItem {
|
|
374
|
+
answer?: string;
|
|
375
|
+
question?: string;
|
|
376
|
+
}
|
|
377
|
+
|
|
361
378
|
export interface FeatureCountry extends CountryUpdate {
|
|
362
379
|
featured?: boolean;
|
|
363
380
|
}
|
package/package.json
CHANGED