@glidevvr/storage-payload-types-pkg 1.0.316 → 1.0.317

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 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.316",
3
+ "version": "1.0.317",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -295,6 +295,7 @@ export interface Page {
295
295
  | StorageTypesBlock
296
296
  | SizeGuideBlock
297
297
  | SizeGuidePreviewBlock
298
+ | SpacerBlock
298
299
  | StorageDefenderBlock
299
300
  | MapLocationsAccordion
300
301
  )[];
@@ -690,6 +691,7 @@ export interface Market {
690
691
  | StorageTypesBlock
691
692
  | SizeGuideBlock
692
693
  | SizeGuidePreviewBlock
694
+ | SpacerBlock
693
695
  | StorageDefenderBlock
694
696
  | MapLocationsAccordion
695
697
  )[]
@@ -2093,7 +2095,11 @@ export interface MediaOverlayBlock {
2093
2095
  */
2094
2096
  backdropOpacity?: number | null;
2095
2097
  /**
2096
- * Position of the content within the block. On mobile, always centers.
2098
+ * Shape of the block's bottom edge. Chevron tapers the bottom into a downward point — the background image/video and color overlay continue into the point.
2099
+ */
2100
+ bottomEdge?: ('flat' | 'chevron') | null;
2101
+ /**
2102
+ * Position of the content within the block. On mobile, always centers. Top and bottom positioning take visible effect only when the block Height is large enough to leave room around the content — use Height: Large or Extra Large for predictable top- or bottom-anchored layouts. Left, center, and right positioning work at any height.
2097
2103
  */
2098
2104
  contentPosition?:
2099
2105
  | (
@@ -2461,6 +2467,41 @@ export interface SizeGuidePreviewBlock {
2461
2467
  blockName?: string | null;
2462
2468
  blockType: 'sizeGuidePreview';
2463
2469
  }
2470
+ /**
2471
+ * This interface was referenced by `Config`'s JSON-Schema
2472
+ * via the `definition` "SpacerBlock".
2473
+ */
2474
+ export interface SpacerBlock {
2475
+ /**
2476
+ * Height of the spacer. Scales smaller on mobile.
2477
+ */
2478
+ height: 'sm' | 'md' | 'lg' | 'xl';
2479
+ /**
2480
+ * Optional background color.
2481
+ */
2482
+ background?:
2483
+ | (
2484
+ | 'none'
2485
+ | 'primary'
2486
+ | 'primary-light'
2487
+ | 'secondary'
2488
+ | 'secondary-light'
2489
+ | 'tertiary'
2490
+ | 'tertiary-light'
2491
+ | 'neutral-light'
2492
+ | 'neutral-dark'
2493
+ | 'black'
2494
+ | 'white'
2495
+ )
2496
+ | null;
2497
+ /**
2498
+ * Opacity of the background color (0 = transparent, 100 = fully opaque).
2499
+ */
2500
+ backgroundOpacity?: number | null;
2501
+ id?: string | null;
2502
+ blockName?: string | null;
2503
+ blockType: 'spacer';
2504
+ }
2464
2505
  /**
2465
2506
  * This interface was referenced by `Config`'s JSON-Schema
2466
2507
  * via the `definition` "StorageDefenderBlock".
@@ -3087,6 +3128,7 @@ export interface PagesSelect<T extends boolean = true> {
3087
3128
  storageTypes?: T | StorageTypesBlockSelect<T>;
3088
3129
  sizeGuide?: T | SizeGuideBlockSelect<T>;
3089
3130
  sizeGuidePreview?: T | SizeGuidePreviewBlockSelect<T>;
3131
+ spacer?: T | SpacerBlockSelect<T>;
3090
3132
  storageDefender?: T | StorageDefenderBlockSelect<T>;
3091
3133
  mapLocationsAccordion?: T | MapLocationsAccordionSelect<T>;
3092
3134
  };
@@ -3131,6 +3173,7 @@ export interface MediaOverlayBlockSelect<T extends boolean = true> {
3131
3173
  enableBackdrop?: T;
3132
3174
  backdropColor?: T;
3133
3175
  backdropOpacity?: T;
3176
+ bottomEdge?: T;
3134
3177
  contentPosition?: T;
3135
3178
  content?: T;
3136
3179
  id?: T;
@@ -3473,6 +3516,17 @@ export interface SizeGuidePreviewBlockSelect<T extends boolean = true> {
3473
3516
  id?: T;
3474
3517
  blockName?: T;
3475
3518
  }
3519
+ /**
3520
+ * This interface was referenced by `Config`'s JSON-Schema
3521
+ * via the `definition` "SpacerBlock_select".
3522
+ */
3523
+ export interface SpacerBlockSelect<T extends boolean = true> {
3524
+ height?: T;
3525
+ background?: T;
3526
+ backgroundOpacity?: T;
3527
+ id?: T;
3528
+ blockName?: T;
3529
+ }
3476
3530
  /**
3477
3531
  * This interface was referenced by `Config`'s JSON-Schema
3478
3532
  * via the `definition` "StorageDefenderBlock_select".
@@ -3776,6 +3830,7 @@ export interface MarketsSelect<T extends boolean = true> {
3776
3830
  storageTypes?: T | StorageTypesBlockSelect<T>;
3777
3831
  sizeGuide?: T | SizeGuideBlockSelect<T>;
3778
3832
  sizeGuidePreview?: T | SizeGuidePreviewBlockSelect<T>;
3833
+ spacer?: T | SpacerBlockSelect<T>;
3779
3834
  storageDefender?: T | StorageDefenderBlockSelect<T>;
3780
3835
  mapLocationsAccordion?: T | MapLocationsAccordionSelect<T>;
3781
3836
  };