@glidevvr/storage-payload-types-pkg 1.0.304 → 1.0.306

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 +387 -48
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.304",
3
+ "version": "1.0.306",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -268,6 +268,96 @@ export interface Page {
268
268
  id: string;
269
269
  tenant?: (string | null) | Tenant;
270
270
  title: string;
271
+ /**
272
+ * Displays a full-width image or video overlay hero above the breadcrumbs. The default page title will be suppressed — use the heading in the Page Hero rich text as your page title instead.
273
+ */
274
+ enablePageHero?: boolean | null;
275
+ pageHero?:
276
+ | {
277
+ backgroundType?: ('image' | 'video') | null;
278
+ /**
279
+ * Required. When video is selected, the image displays while the video loads and on slow connections. Landscape orientation, minimum 1920x600px recommended.
280
+ */
281
+ backgroundImage: string | Media;
282
+ /**
283
+ * Upload a video from the media collection. Only fully processed videos (Vimeo status: completed) are available for selection.
284
+ */
285
+ backgroundVideo?: (string | null) | Media;
286
+ /**
287
+ * Minimum height on desktop. Auto sizes to fit content.
288
+ */
289
+ minHeight?: ('auto' | 'small' | 'medium' | 'large' | 'extraLarge') | null;
290
+ /**
291
+ * Minimum height on mobile. Auto sizes to fit content.
292
+ */
293
+ mobileMinHeight?: ('auto' | 'small' | 'medium' | 'large' | 'extraLarge') | null;
294
+ /**
295
+ * Horizontal position (0% = left, 50% = center, 100% = right).
296
+ */
297
+ focalPointX?: number | null;
298
+ /**
299
+ * Vertical position (0% = top, 50% = center, 100% = bottom).
300
+ */
301
+ focalPointY?: number | null;
302
+ /**
303
+ * Color of the overlay on top of the background image.
304
+ */
305
+ overlayColor: 'primary' | 'secondary' | 'tertiary' | 'black' | 'white';
306
+ /**
307
+ * Opacity of the overlay (0 = fully transparent, 100 = fully opaque). Default: 80%.
308
+ */
309
+ overlayOpacity: number;
310
+ /**
311
+ * Add a colored background behind the text content for improved readability.
312
+ */
313
+ enableBackdrop?: boolean | null;
314
+ /**
315
+ * Background color of the content backdrop.
316
+ */
317
+ backdropColor?: ('primary' | 'secondary' | 'tertiary' | 'black' | 'white') | null;
318
+ /**
319
+ * Opacity of the backdrop (0 = transparent, 100 = fully opaque).
320
+ */
321
+ backdropOpacity?: number | null;
322
+ /**
323
+ * Position of the content backdrop within the block. On mobile, always centers.
324
+ */
325
+ backdropPosition?:
326
+ | (
327
+ | 'top-left'
328
+ | 'top-center'
329
+ | 'top-right'
330
+ | 'center-left'
331
+ | 'center'
332
+ | 'center-right'
333
+ | 'bottom-left'
334
+ | 'bottom-center'
335
+ | 'bottom-right'
336
+ )
337
+ | null;
338
+ /**
339
+ * Rich text content displayed over the image. Text color adjusts automatically for accessibility.
340
+ */
341
+ content?: {
342
+ root: {
343
+ type: string;
344
+ children: {
345
+ type: any;
346
+ version: number;
347
+ [k: string]: unknown;
348
+ }[];
349
+ direction: ('ltr' | 'rtl') | null;
350
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
351
+ indent: number;
352
+ version: number;
353
+ };
354
+ [k: string]: unknown;
355
+ } | null;
356
+ id?: string | null;
357
+ blockName?: string | null;
358
+ blockType: 'mediaOverlay';
359
+ }[]
360
+ | null;
271
361
  blocks: (
272
362
  | {
273
363
  introContent?: {
@@ -662,6 +752,90 @@ export interface Page {
662
752
  blockName?: string | null;
663
753
  blockType: 'homeHero';
664
754
  }
755
+ | {
756
+ backgroundType?: ('image' | 'video') | null;
757
+ /**
758
+ * Required. When video is selected, the image displays while the video loads and on slow connections. Landscape orientation, minimum 1920x600px recommended.
759
+ */
760
+ backgroundImage: string | Media;
761
+ /**
762
+ * Upload a video from the media collection. Only fully processed videos (Vimeo status: completed) are available for selection.
763
+ */
764
+ backgroundVideo?: (string | null) | Media;
765
+ /**
766
+ * Minimum height on desktop. Auto sizes to fit content.
767
+ */
768
+ minHeight?: ('auto' | 'small' | 'medium' | 'large' | 'extraLarge') | null;
769
+ /**
770
+ * Minimum height on mobile. Auto sizes to fit content.
771
+ */
772
+ mobileMinHeight?: ('auto' | 'small' | 'medium' | 'large' | 'extraLarge') | null;
773
+ /**
774
+ * Horizontal position (0% = left, 50% = center, 100% = right).
775
+ */
776
+ focalPointX?: number | null;
777
+ /**
778
+ * Vertical position (0% = top, 50% = center, 100% = bottom).
779
+ */
780
+ focalPointY?: number | null;
781
+ /**
782
+ * Color of the overlay on top of the background image.
783
+ */
784
+ overlayColor: 'primary' | 'secondary' | 'tertiary' | 'black' | 'white';
785
+ /**
786
+ * Opacity of the overlay (0 = fully transparent, 100 = fully opaque). Default: 80%.
787
+ */
788
+ overlayOpacity: number;
789
+ /**
790
+ * Add a colored background behind the text content for improved readability.
791
+ */
792
+ enableBackdrop?: boolean | null;
793
+ /**
794
+ * Background color of the content backdrop.
795
+ */
796
+ backdropColor?: ('primary' | 'secondary' | 'tertiary' | 'black' | 'white') | null;
797
+ /**
798
+ * Opacity of the backdrop (0 = transparent, 100 = fully opaque).
799
+ */
800
+ backdropOpacity?: number | null;
801
+ /**
802
+ * Position of the content backdrop within the block. On mobile, always centers.
803
+ */
804
+ backdropPosition?:
805
+ | (
806
+ | 'top-left'
807
+ | 'top-center'
808
+ | 'top-right'
809
+ | 'center-left'
810
+ | 'center'
811
+ | 'center-right'
812
+ | 'bottom-left'
813
+ | 'bottom-center'
814
+ | 'bottom-right'
815
+ )
816
+ | null;
817
+ /**
818
+ * Rich text content displayed over the image. Text color adjusts automatically for accessibility.
819
+ */
820
+ content?: {
821
+ root: {
822
+ type: string;
823
+ children: {
824
+ type: any;
825
+ version: number;
826
+ [k: string]: unknown;
827
+ }[];
828
+ direction: ('ltr' | 'rtl') | null;
829
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
830
+ indent: number;
831
+ version: number;
832
+ };
833
+ [k: string]: unknown;
834
+ } | null;
835
+ id?: string | null;
836
+ blockName?: string | null;
837
+ blockType: 'mediaOverlay';
838
+ }
665
839
  | {
666
840
  id?: string | null;
667
841
  blockName?: string | null;
@@ -1346,6 +1520,39 @@ export interface Tenant {
1346
1520
  * Enable Storage Defender for this tenant. This will create a Storage Defender page in the Pages collection.
1347
1521
  */
1348
1522
  storageDefender?: boolean | null;
1523
+ /**
1524
+ * These settings are passed to the SE Tenant Dashboard on the Pay Online page.
1525
+ */
1526
+ tenantPaySettings?: {
1527
+ /**
1528
+ * Disable ability for users to edit their account information.
1529
+ */
1530
+ disableAccountEditing?: boolean | null;
1531
+ /**
1532
+ * Hide gate code from users.
1533
+ */
1534
+ disableGateCode?: boolean | null;
1535
+ /**
1536
+ * Disable the button on login for account registration.
1537
+ */
1538
+ disableAccountRegistration?: boolean | null;
1539
+ /**
1540
+ * Host platform identifier for this app.
1541
+ */
1542
+ siteCms?: string | null;
1543
+ /**
1544
+ * Disable ACH payments for users.
1545
+ */
1546
+ disableAchPayments?: boolean | null;
1547
+ /**
1548
+ * Hides the button to cancel autopay.
1549
+ */
1550
+ disableAutopayCancellation?: boolean | null;
1551
+ /**
1552
+ * Adds a dropdown to filter facilities by state.
1553
+ */
1554
+ enableStateFilter?: boolean | null;
1555
+ };
1349
1556
  /**
1350
1557
  * When enabled, builds cannot be triggered for this organization — neither manually via the Build & Deploy button nor automatically on content publish.
1351
1558
  */
@@ -1471,6 +1678,7 @@ export interface Market {
1471
1678
  blockType: 'galleryBlock';
1472
1679
  }
1473
1680
  | HomeHero
1681
+ | MediaOverlayBlock
1474
1682
  | HorizontalRuleBlock
1475
1683
  | SingleTestimonialBlock
1476
1684
  | {
@@ -1806,6 +2014,7 @@ export interface Brand {
1806
2014
  footerLogo?: (string | null) | Media;
1807
2015
  primaryColor: string;
1808
2016
  secondaryColor: string;
2017
+ tertiaryColor?: string | null;
1809
2018
  /**
1810
2019
  * If checked, the secondary color will be used instead of the primary color for buttons and links. If selecting a neutral color, it is suggested to use the theme's mediumd gray #6F6F6F or dark gray #212529
1811
2020
  */
@@ -2874,6 +3083,94 @@ export interface HomeHero {
2874
3083
  blockName?: string | null;
2875
3084
  blockType: 'homeHero';
2876
3085
  }
3086
+ /**
3087
+ * This interface was referenced by `Config`'s JSON-Schema
3088
+ * via the `definition` "MediaOverlayBlock".
3089
+ */
3090
+ export interface MediaOverlayBlock {
3091
+ backgroundType?: ('image' | 'video') | null;
3092
+ /**
3093
+ * Required. When video is selected, the image displays while the video loads and on slow connections. Landscape orientation, minimum 1920x600px recommended.
3094
+ */
3095
+ backgroundImage: string | Media;
3096
+ /**
3097
+ * Upload a video from the media collection. Only fully processed videos (Vimeo status: completed) are available for selection.
3098
+ */
3099
+ backgroundVideo?: (string | null) | Media;
3100
+ /**
3101
+ * Minimum height on desktop. Auto sizes to fit content.
3102
+ */
3103
+ minHeight?: ('auto' | 'small' | 'medium' | 'large' | 'extraLarge') | null;
3104
+ /**
3105
+ * Minimum height on mobile. Auto sizes to fit content.
3106
+ */
3107
+ mobileMinHeight?: ('auto' | 'small' | 'medium' | 'large' | 'extraLarge') | null;
3108
+ /**
3109
+ * Horizontal position (0% = left, 50% = center, 100% = right).
3110
+ */
3111
+ focalPointX?: number | null;
3112
+ /**
3113
+ * Vertical position (0% = top, 50% = center, 100% = bottom).
3114
+ */
3115
+ focalPointY?: number | null;
3116
+ /**
3117
+ * Color of the overlay on top of the background image.
3118
+ */
3119
+ overlayColor: 'primary' | 'secondary' | 'tertiary' | 'black' | 'white';
3120
+ /**
3121
+ * Opacity of the overlay (0 = fully transparent, 100 = fully opaque). Default: 80%.
3122
+ */
3123
+ overlayOpacity: number;
3124
+ /**
3125
+ * Add a colored background behind the text content for improved readability.
3126
+ */
3127
+ enableBackdrop?: boolean | null;
3128
+ /**
3129
+ * Background color of the content backdrop.
3130
+ */
3131
+ backdropColor?: ('primary' | 'secondary' | 'tertiary' | 'black' | 'white') | null;
3132
+ /**
3133
+ * Opacity of the backdrop (0 = transparent, 100 = fully opaque).
3134
+ */
3135
+ backdropOpacity?: number | null;
3136
+ /**
3137
+ * Position of the content backdrop within the block. On mobile, always centers.
3138
+ */
3139
+ backdropPosition?:
3140
+ | (
3141
+ | 'top-left'
3142
+ | 'top-center'
3143
+ | 'top-right'
3144
+ | 'center-left'
3145
+ | 'center'
3146
+ | 'center-right'
3147
+ | 'bottom-left'
3148
+ | 'bottom-center'
3149
+ | 'bottom-right'
3150
+ )
3151
+ | null;
3152
+ /**
3153
+ * Rich text content displayed over the image. Text color adjusts automatically for accessibility.
3154
+ */
3155
+ content?: {
3156
+ root: {
3157
+ type: string;
3158
+ children: {
3159
+ type: any;
3160
+ version: number;
3161
+ [k: string]: unknown;
3162
+ }[];
3163
+ direction: ('ltr' | 'rtl') | null;
3164
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
3165
+ indent: number;
3166
+ version: number;
3167
+ };
3168
+ [k: string]: unknown;
3169
+ } | null;
3170
+ id?: string | null;
3171
+ blockName?: string | null;
3172
+ blockType: 'mediaOverlay';
3173
+ }
2877
3174
  /**
2878
3175
  * This interface was referenced by `Config`'s JSON-Schema
2879
3176
  * via the `definition` "HorizontalRuleBlock".
@@ -3749,6 +4046,12 @@ export interface PayloadMigration {
3749
4046
  export interface PagesSelect<T extends boolean = true> {
3750
4047
  tenant?: T;
3751
4048
  title?: T;
4049
+ enablePageHero?: T;
4050
+ pageHero?:
4051
+ | T
4052
+ | {
4053
+ mediaOverlay?: T | MediaOverlayBlockSelect<T>;
4054
+ };
3752
4055
  blocks?:
3753
4056
  | T
3754
4057
  | {
@@ -3762,6 +4065,7 @@ export interface PagesSelect<T extends boolean = true> {
3762
4065
  formBlock?: T | FormBlockSelect<T>;
3763
4066
  galleryBlock?: T | GalleryBlockSelect<T>;
3764
4067
  homeHero?: T | HomeHeroSelect<T>;
4068
+ mediaOverlay?: T | MediaOverlayBlockSelect<T>;
3765
4069
  horizontalRule?: T | HorizontalRuleBlockSelect<T>;
3766
4070
  singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
3767
4071
  mediaBlock?: T | MediaBlockSelect<T>;
@@ -3798,6 +4102,28 @@ export interface PagesSelect<T extends boolean = true> {
3798
4102
  createdAt?: T;
3799
4103
  _status?: T;
3800
4104
  }
4105
+ /**
4106
+ * This interface was referenced by `Config`'s JSON-Schema
4107
+ * via the `definition` "MediaOverlayBlock_select".
4108
+ */
4109
+ export interface MediaOverlayBlockSelect<T extends boolean = true> {
4110
+ backgroundType?: T;
4111
+ backgroundImage?: T;
4112
+ backgroundVideo?: T;
4113
+ minHeight?: T;
4114
+ mobileMinHeight?: T;
4115
+ focalPointX?: T;
4116
+ focalPointY?: T;
4117
+ overlayColor?: T;
4118
+ overlayOpacity?: T;
4119
+ enableBackdrop?: T;
4120
+ backdropColor?: T;
4121
+ backdropOpacity?: T;
4122
+ backdropPosition?: T;
4123
+ content?: T;
4124
+ id?: T;
4125
+ blockName?: T;
4126
+ }
3801
4127
  /**
3802
4128
  * This interface was referenced by `Config`'s JSON-Schema
3803
4129
  * via the `definition` "ArchiveBlock_select".
@@ -4428,6 +4754,7 @@ export interface MarketsSelect<T extends boolean = true> {
4428
4754
  formBlock?: T | FormBlockSelect<T>;
4429
4755
  galleryBlock?: T | GalleryBlockSelect<T>;
4430
4756
  homeHero?: T | HomeHeroSelect<T>;
4757
+ mediaOverlay?: T | MediaOverlayBlockSelect<T>;
4431
4758
  horizontalRule?: T | HorizontalRuleBlockSelect<T>;
4432
4759
  singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
4433
4760
  mediaBlock?: T | MediaBlockSelect<T>;
@@ -4685,6 +5012,7 @@ export interface BrandsSelect<T extends boolean = true> {
4685
5012
  footerLogo?: T;
4686
5013
  primaryColor?: T;
4687
5014
  secondaryColor?: T;
5015
+ tertiaryColor?: T;
4688
5016
  useSecondaryColor?: T;
4689
5017
  createdBy?: T;
4690
5018
  updatedBy?: T;
@@ -4897,6 +5225,17 @@ export interface TenantsSelect<T extends boolean = true> {
4897
5225
  };
4898
5226
  socialMedia?: T | SocialMediaSelect<T>;
4899
5227
  storageDefender?: T;
5228
+ tenantPaySettings?:
5229
+ | T
5230
+ | {
5231
+ disableAccountEditing?: T;
5232
+ disableGateCode?: T;
5233
+ disableAccountRegistration?: T;
5234
+ siteCms?: T;
5235
+ disableAchPayments?: T;
5236
+ disableAutopayCancellation?: T;
5237
+ enableStateFilter?: T;
5238
+ };
4900
5239
  buildsDisabled?: T;
4901
5240
  legacyWebsiteUrl?: T;
4902
5241
  scrapeFacilityContent?: T;
@@ -5214,33 +5553,6 @@ export interface ButtonBlock {
5214
5553
  blockName?: string | null;
5215
5554
  blockType: 'button';
5216
5555
  }
5217
- /**
5218
- * This interface was referenced by `Config`'s JSON-Schema
5219
- * via the `definition` "FaqBlock".
5220
- */
5221
- export interface FaqBlock {
5222
- /**
5223
- * Only one block per page should have the include FAQ schema option checked.
5224
- */
5225
- includeFaqSchema?: boolean | null;
5226
- faq?: Faqs;
5227
- id?: string | null;
5228
- blockName?: string | null;
5229
- blockType: 'faq';
5230
- }
5231
- /**
5232
- * This interface was referenced by `Config`'s JSON-Schema
5233
- * via the `definition` "GalleryBlock".
5234
- */
5235
- export interface GalleryBlock {
5236
- /**
5237
- * Add 2-4 images or videos to the gallery. Videos must be fully processed (Vimeo status: completed) to appear in the selection. If you only want one item, use the Media Block instead.
5238
- */
5239
- media: (string | Media)[];
5240
- id?: string | null;
5241
- blockName?: string | null;
5242
- blockType: 'galleryBlock';
5243
- }
5244
5556
  /**
5245
5557
  * This interface was referenced by `Config`'s JSON-Schema
5246
5558
  * via the `definition` "MediaBlock".
@@ -5273,27 +5585,6 @@ export interface MediaBlock {
5273
5585
  blockName?: string | null;
5274
5586
  blockType: 'mediaBlock';
5275
5587
  }
5276
- /**
5277
- * This interface was referenced by `Config`'s JSON-Schema
5278
- * via the `definition` "SizeGuidePreviewBlock".
5279
- */
5280
- export interface SizeGuidePreviewBlock {
5281
- /**
5282
- * Optional heading for the size guide preview
5283
- */
5284
- heading?: string | null;
5285
- /**
5286
- * Optional subheading for the size guide preview
5287
- */
5288
- subheading?: string | null;
5289
- /**
5290
- * The text for the button that links to the size guide.
5291
- */
5292
- buttonText?: string | null;
5293
- id?: string | null;
5294
- blockName?: string | null;
5295
- blockType: 'sizeGuidePreview';
5296
- }
5297
5588
  /**
5298
5589
  * This interface was referenced by `Config`'s JSON-Schema
5299
5590
  * via the `definition` "RowGroupBlock".
@@ -5331,6 +5622,54 @@ export interface RowGroupBlock {
5331
5622
  blockName?: string | null;
5332
5623
  blockType: 'rowGroup';
5333
5624
  }
5625
+ /**
5626
+ * This interface was referenced by `Config`'s JSON-Schema
5627
+ * via the `definition` "FaqBlock".
5628
+ */
5629
+ export interface FaqBlock {
5630
+ /**
5631
+ * Only one block per page should have the include FAQ schema option checked.
5632
+ */
5633
+ includeFaqSchema?: boolean | null;
5634
+ faq?: Faqs;
5635
+ id?: string | null;
5636
+ blockName?: string | null;
5637
+ blockType: 'faq';
5638
+ }
5639
+ /**
5640
+ * This interface was referenced by `Config`'s JSON-Schema
5641
+ * via the `definition` "GalleryBlock".
5642
+ */
5643
+ export interface GalleryBlock {
5644
+ /**
5645
+ * Add 2-4 images or videos to the gallery. Videos must be fully processed (Vimeo status: completed) to appear in the selection. If you only want one item, use the Media Block instead.
5646
+ */
5647
+ media: (string | Media)[];
5648
+ id?: string | null;
5649
+ blockName?: string | null;
5650
+ blockType: 'galleryBlock';
5651
+ }
5652
+ /**
5653
+ * This interface was referenced by `Config`'s JSON-Schema
5654
+ * via the `definition` "SizeGuidePreviewBlock".
5655
+ */
5656
+ export interface SizeGuidePreviewBlock {
5657
+ /**
5658
+ * Optional heading for the size guide preview
5659
+ */
5660
+ heading?: string | null;
5661
+ /**
5662
+ * Optional subheading for the size guide preview
5663
+ */
5664
+ subheading?: string | null;
5665
+ /**
5666
+ * The text for the button that links to the size guide.
5667
+ */
5668
+ buttonText?: string | null;
5669
+ id?: string | null;
5670
+ blockName?: string | null;
5671
+ blockType: 'sizeGuidePreview';
5672
+ }
5334
5673
  /**
5335
5674
  * This interface was referenced by `Config`'s JSON-Schema
5336
5675
  * via the `definition` "UnitsTableBlock".