@glidevvr/storage-payload-types-pkg 1.0.333 → 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 +31 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.333",
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
@@ -2052,6 +2052,10 @@ export interface GalleryBlock {
2052
2052
  * via the `definition` "HomeHero".
2053
2053
  */
2054
2054
  export interface HomeHero {
2055
+ /**
2056
+ * Visual layout variant for this hero block.
2057
+ */
2058
+ blockLayout?: ('layout-1' | 'layout-2') | null;
2055
2059
  title?: string | null;
2056
2060
  subtitle?: string | null;
2057
2061
  /**
@@ -2066,6 +2070,22 @@ export interface HomeHero {
2066
2070
  fullImageContentAlign?: ('center' | 'right' | 'left') | null;
2067
2071
  halfImageContentSide?: ('right' | 'left') | null;
2068
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;
2069
2089
  id?: string | null;
2070
2090
  blockName?: string | null;
2071
2091
  blockType: 'homeHero';
@@ -3389,6 +3409,7 @@ export interface GalleryBlockSelect<T extends boolean = true> {
3389
3409
  * via the `definition` "HomeHero_select".
3390
3410
  */
3391
3411
  export interface HomeHeroSelect<T extends boolean = true> {
3412
+ blockLayout?: T;
3392
3413
  title?: T;
3393
3414
  subtitle?: T;
3394
3415
  backgroundImage?: T;
@@ -3397,6 +3418,16 @@ export interface HomeHeroSelect<T extends boolean = true> {
3397
3418
  fullImageContentAlign?: T;
3398
3419
  halfImageContentSide?: T;
3399
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;
3400
3431
  id?: T;
3401
3432
  blockName?: T;
3402
3433
  }