@openvoy/openvoy-typescriptmodels 0.0.4401 → 0.0.4421
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 +23 -12
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -147,19 +147,8 @@ export interface CityUpdate extends CountryUpdate {
|
|
|
147
147
|
export interface Comparable<T> {
|
|
148
148
|
}
|
|
149
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
|
-
|
|
161
150
|
export interface ContentDetails {
|
|
162
|
-
|
|
151
|
+
pageContent?: PageContent;
|
|
163
152
|
promotionalText?: string;
|
|
164
153
|
promotionalTitle?: string;
|
|
165
154
|
seoSettings?: SeoSettings;
|
|
@@ -622,6 +611,17 @@ export interface LatLong {
|
|
|
622
611
|
longitude?: number;
|
|
623
612
|
}
|
|
624
613
|
|
|
614
|
+
export interface PageContent {
|
|
615
|
+
dayTrips?: string;
|
|
616
|
+
faqItems?: FaqItem[];
|
|
617
|
+
hiddenGems?: string;
|
|
618
|
+
highlights?: string;
|
|
619
|
+
seasons?: Seasons;
|
|
620
|
+
subDivision?: string;
|
|
621
|
+
tips?: string;
|
|
622
|
+
whyVisit?: string;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
625
|
export interface Pagination {
|
|
626
626
|
count?: number;
|
|
627
627
|
from?: number;
|
|
@@ -694,6 +694,17 @@ export interface SearchCategories {
|
|
|
694
694
|
terms?: string[];
|
|
695
695
|
}
|
|
696
696
|
|
|
697
|
+
export interface SeasonContent {
|
|
698
|
+
content?: string;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
export interface Seasons {
|
|
702
|
+
autumn?: SeasonContent;
|
|
703
|
+
spring?: SeasonContent;
|
|
704
|
+
summer?: SeasonContent;
|
|
705
|
+
winter?: SeasonContent;
|
|
706
|
+
}
|
|
707
|
+
|
|
697
708
|
export interface Secret {
|
|
698
709
|
secret?: string;
|
|
699
710
|
}
|
package/package.json
CHANGED