@openvoy/openvoy-typescriptmodels 0.0.4141 → 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 +20 -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
|
}
|
|
@@ -953,6 +970,7 @@ export interface UpsertCity extends CityUpdate {
|
|
|
953
970
|
contentDetails?: ContentDetails;
|
|
954
971
|
details?: CityDetails;
|
|
955
972
|
providerDetails?: CityProviderDetails;
|
|
973
|
+
updateContentDetails?: boolean;
|
|
956
974
|
}
|
|
957
975
|
|
|
958
976
|
export interface UpsertCityContentDetails extends CityUpdate {
|
|
@@ -967,6 +985,7 @@ export interface UpsertCountry extends CountryUpdate {
|
|
|
967
985
|
contentDetails?: ContentDetails;
|
|
968
986
|
details?: CountryDetails;
|
|
969
987
|
providerDetails?: CountryProviderDetails;
|
|
988
|
+
updateContentDetails?: boolean;
|
|
970
989
|
}
|
|
971
990
|
|
|
972
991
|
export interface UpsertCountryContentDetails extends CountryUpdate {
|
|
@@ -1000,6 +1019,7 @@ export interface UpsertRegion extends RegionUpdate {
|
|
|
1000
1019
|
contentDetails?: ContentDetails;
|
|
1001
1020
|
details?: RegionDetails;
|
|
1002
1021
|
providerDetails?: RegionProviderDetails;
|
|
1022
|
+
updateContentDetails?: boolean;
|
|
1003
1023
|
}
|
|
1004
1024
|
|
|
1005
1025
|
export interface UpsertRegionContentDetails extends RegionUpdate {
|
package/package.json
CHANGED