@glidevvr/storage-payload-types-pkg 1.0.331 → 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 +30 -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".
|
|
@@ -1742,6 +1755,10 @@ export interface FeaturedLocationsBlock {
|
|
|
1742
1755
|
* via the `definition` "FeaturesGridBlock".
|
|
1743
1756
|
*/
|
|
1744
1757
|
export interface FeaturesGridBlock {
|
|
1758
|
+
/**
|
|
1759
|
+
* Visual layout variant for this Features Grid block.
|
|
1760
|
+
*/
|
|
1761
|
+
blockLayout?: ('layout-1' | 'layout-2') | null;
|
|
1745
1762
|
heading?: string | null;
|
|
1746
1763
|
description?: {
|
|
1747
1764
|
root: {
|
|
@@ -3128,6 +3145,7 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
3128
3145
|
archive?: T | ArchiveBlockSelect<T>;
|
|
3129
3146
|
cta?: T | CallToActionBlockSelect<T>;
|
|
3130
3147
|
content?: T | ContentBlockSelect<T>;
|
|
3148
|
+
corporateReviews?: T | CorporateReviewsBlockSelect<T>;
|
|
3131
3149
|
facilityBanner?: T | FacilityBannerBlockSelect<T>;
|
|
3132
3150
|
faq?: T | FaqBlockSelect<T>;
|
|
3133
3151
|
featuredLocations?: T | FeaturedLocationsBlockSelect<T>;
|
|
@@ -3261,6 +3279,16 @@ export interface ContentBlockSelect<T extends boolean = true> {
|
|
|
3261
3279
|
id?: T;
|
|
3262
3280
|
blockName?: T;
|
|
3263
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
|
+
}
|
|
3264
3292
|
/**
|
|
3265
3293
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3266
3294
|
* via the `definition` "FacilityBannerBlock_select".
|
|
@@ -3305,6 +3333,7 @@ export interface FeaturedLocationsBlockSelect<T extends boolean = true> {
|
|
|
3305
3333
|
* via the `definition` "FeaturesGridBlock_select".
|
|
3306
3334
|
*/
|
|
3307
3335
|
export interface FeaturesGridBlockSelect<T extends boolean = true> {
|
|
3336
|
+
blockLayout?: T;
|
|
3308
3337
|
heading?: T;
|
|
3309
3338
|
description?: T;
|
|
3310
3339
|
featuresGrid?:
|
|
@@ -3834,6 +3863,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
3834
3863
|
archive?: T | ArchiveBlockSelect<T>;
|
|
3835
3864
|
cta?: T | CallToActionBlockSelect<T>;
|
|
3836
3865
|
content?: T | ContentBlockSelect<T>;
|
|
3866
|
+
corporateReviews?: T | CorporateReviewsBlockSelect<T>;
|
|
3837
3867
|
facilityBanner?: T | FacilityBannerBlockSelect<T>;
|
|
3838
3868
|
faq?: T | FaqBlockSelect<T>;
|
|
3839
3869
|
featuredLocations?: T | FeaturedLocationsBlockSelect<T>;
|