@glidevvr/storage-payload-types-pkg 1.0.332 → 1.0.333
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/package.json +1 -1
- package/payload-types.ts +25 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -278,6 +278,7 @@ export interface Page {
|
|
|
278
278
|
| ArchiveBlock
|
|
279
279
|
| CallToActionBlock
|
|
280
280
|
| ContentBlock
|
|
281
|
+
| CorporateReviewsBlock
|
|
281
282
|
| FacilityBannerBlock
|
|
282
283
|
| FaqBlock
|
|
283
284
|
| FeaturedLocationsBlock
|
|
@@ -678,6 +679,7 @@ export interface Market {
|
|
|
678
679
|
| ArchiveBlock
|
|
679
680
|
| CallToActionBlock
|
|
680
681
|
| ContentBlock
|
|
682
|
+
| CorporateReviewsBlock
|
|
681
683
|
| FacilityBannerBlock
|
|
682
684
|
| FaqBlock
|
|
683
685
|
| FeaturedLocationsBlock
|
|
@@ -1695,6 +1697,17 @@ export interface ContentBlock {
|
|
|
1695
1697
|
blockName?: string | null;
|
|
1696
1698
|
blockType: 'content';
|
|
1697
1699
|
}
|
|
1700
|
+
/**
|
|
1701
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1702
|
+
* via the `definition` "CorporateReviewsBlock".
|
|
1703
|
+
*/
|
|
1704
|
+
export interface CorporateReviewsBlock {
|
|
1705
|
+
heading?: string | null;
|
|
1706
|
+
selectedFacilities: string[];
|
|
1707
|
+
id?: string | null;
|
|
1708
|
+
blockName?: string | null;
|
|
1709
|
+
blockType: 'corporateReviews';
|
|
1710
|
+
}
|
|
1698
1711
|
/**
|
|
1699
1712
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1700
1713
|
* via the `definition` "FaqBlock".
|
|
@@ -3132,6 +3145,7 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
3132
3145
|
archive?: T | ArchiveBlockSelect<T>;
|
|
3133
3146
|
cta?: T | CallToActionBlockSelect<T>;
|
|
3134
3147
|
content?: T | ContentBlockSelect<T>;
|
|
3148
|
+
corporateReviews?: T | CorporateReviewsBlockSelect<T>;
|
|
3135
3149
|
facilityBanner?: T | FacilityBannerBlockSelect<T>;
|
|
3136
3150
|
faq?: T | FaqBlockSelect<T>;
|
|
3137
3151
|
featuredLocations?: T | FeaturedLocationsBlockSelect<T>;
|
|
@@ -3265,6 +3279,16 @@ export interface ContentBlockSelect<T extends boolean = true> {
|
|
|
3265
3279
|
id?: T;
|
|
3266
3280
|
blockName?: T;
|
|
3267
3281
|
}
|
|
3282
|
+
/**
|
|
3283
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3284
|
+
* via the `definition` "CorporateReviewsBlock_select".
|
|
3285
|
+
*/
|
|
3286
|
+
export interface CorporateReviewsBlockSelect<T extends boolean = true> {
|
|
3287
|
+
heading?: T;
|
|
3288
|
+
selectedFacilities?: T;
|
|
3289
|
+
id?: T;
|
|
3290
|
+
blockName?: T;
|
|
3291
|
+
}
|
|
3268
3292
|
/**
|
|
3269
3293
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3270
3294
|
* via the `definition` "FacilityBannerBlock_select".
|
|
@@ -3839,6 +3863,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
3839
3863
|
archive?: T | ArchiveBlockSelect<T>;
|
|
3840
3864
|
cta?: T | CallToActionBlockSelect<T>;
|
|
3841
3865
|
content?: T | ContentBlockSelect<T>;
|
|
3866
|
+
corporateReviews?: T | CorporateReviewsBlockSelect<T>;
|
|
3842
3867
|
facilityBanner?: T | FacilityBannerBlockSelect<T>;
|
|
3843
3868
|
faq?: T | FaqBlockSelect<T>;
|
|
3844
3869
|
featuredLocations?: T | FeaturedLocationsBlockSelect<T>;
|