@glidevvr/storage-payload-types-pkg 1.0.332 → 1.0.334

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/payload-types.ts +56 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.332",
3
+ "version": "1.0.334",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
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".
@@ -2039,6 +2052,10 @@ export interface GalleryBlock {
2039
2052
  * via the `definition` "HomeHero".
2040
2053
  */
2041
2054
  export interface HomeHero {
2055
+ /**
2056
+ * Visual layout variant for this hero block.
2057
+ */
2058
+ blockLayout?: ('layout-1' | 'layout-2') | null;
2042
2059
  title?: string | null;
2043
2060
  subtitle?: string | null;
2044
2061
  /**
@@ -2053,6 +2070,22 @@ export interface HomeHero {
2053
2070
  fullImageContentAlign?: ('center' | 'right' | 'left') | null;
2054
2071
  halfImageContentSide?: ('right' | 'left') | null;
2055
2072
  searchLayout?: 'default' | null;
2073
+ eyebrow?: string | null;
2074
+ imageCount?: ('1' | '2' | '3') | null;
2075
+ /**
2076
+ * Order:
2077
+ * 3 images: Top-left (portrait), top-right, bottom-right
2078
+ * 2 images: Top-left, top-right (portrait)
2079
+ * 1 image: Fills full space
2080
+ */
2081
+ images?:
2082
+ | {
2083
+ image: string | Media;
2084
+ label?: string | null;
2085
+ id?: string | null;
2086
+ }[]
2087
+ | null;
2088
+ labelPosition?: ('top-left' | 'top-right' | 'bottom-left' | 'bottom-right') | null;
2056
2089
  id?: string | null;
2057
2090
  blockName?: string | null;
2058
2091
  blockType: 'homeHero';
@@ -3132,6 +3165,7 @@ export interface PagesSelect<T extends boolean = true> {
3132
3165
  archive?: T | ArchiveBlockSelect<T>;
3133
3166
  cta?: T | CallToActionBlockSelect<T>;
3134
3167
  content?: T | ContentBlockSelect<T>;
3168
+ corporateReviews?: T | CorporateReviewsBlockSelect<T>;
3135
3169
  facilityBanner?: T | FacilityBannerBlockSelect<T>;
3136
3170
  faq?: T | FaqBlockSelect<T>;
3137
3171
  featuredLocations?: T | FeaturedLocationsBlockSelect<T>;
@@ -3265,6 +3299,16 @@ export interface ContentBlockSelect<T extends boolean = true> {
3265
3299
  id?: T;
3266
3300
  blockName?: T;
3267
3301
  }
3302
+ /**
3303
+ * This interface was referenced by `Config`'s JSON-Schema
3304
+ * via the `definition` "CorporateReviewsBlock_select".
3305
+ */
3306
+ export interface CorporateReviewsBlockSelect<T extends boolean = true> {
3307
+ heading?: T;
3308
+ selectedFacilities?: T;
3309
+ id?: T;
3310
+ blockName?: T;
3311
+ }
3268
3312
  /**
3269
3313
  * This interface was referenced by `Config`'s JSON-Schema
3270
3314
  * via the `definition` "FacilityBannerBlock_select".
@@ -3365,6 +3409,7 @@ export interface GalleryBlockSelect<T extends boolean = true> {
3365
3409
  * via the `definition` "HomeHero_select".
3366
3410
  */
3367
3411
  export interface HomeHeroSelect<T extends boolean = true> {
3412
+ blockLayout?: T;
3368
3413
  title?: T;
3369
3414
  subtitle?: T;
3370
3415
  backgroundImage?: T;
@@ -3373,6 +3418,16 @@ export interface HomeHeroSelect<T extends boolean = true> {
3373
3418
  fullImageContentAlign?: T;
3374
3419
  halfImageContentSide?: T;
3375
3420
  searchLayout?: T;
3421
+ eyebrow?: T;
3422
+ imageCount?: T;
3423
+ images?:
3424
+ | T
3425
+ | {
3426
+ image?: T;
3427
+ label?: T;
3428
+ id?: T;
3429
+ };
3430
+ labelPosition?: T;
3376
3431
  id?: T;
3377
3432
  blockName?: T;
3378
3433
  }
@@ -3839,6 +3894,7 @@ export interface MarketsSelect<T extends boolean = true> {
3839
3894
  archive?: T | ArchiveBlockSelect<T>;
3840
3895
  cta?: T | CallToActionBlockSelect<T>;
3841
3896
  content?: T | ContentBlockSelect<T>;
3897
+ corporateReviews?: T | CorporateReviewsBlockSelect<T>;
3842
3898
  facilityBanner?: T | FacilityBannerBlockSelect<T>;
3843
3899
  faq?: T | FaqBlockSelect<T>;
3844
3900
  featuredLocations?: T | FeaturedLocationsBlockSelect<T>;