@glidevvr/storage-payload-types-pkg 1.0.219 → 1.0.221

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 +80 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.219",
3
+ "version": "1.0.221",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -264,6 +264,7 @@ export interface Page {
264
264
  | ArchiveBlock
265
265
  | CallToActionBlock
266
266
  | ContentBlock
267
+ | FacilityBannerBlock
267
268
  | FaqBlock
268
269
  | FeaturedLocationsBlock
269
270
  | FeaturesGridBlock
@@ -579,6 +580,7 @@ export interface Market {
579
580
  | ArchiveBlock
580
581
  | CallToActionBlock
581
582
  | ContentBlock
583
+ | FacilityBannerBlock
582
584
  | FaqBlock
583
585
  | FeaturedLocationsBlock
584
586
  | FeaturesGridBlock
@@ -1036,6 +1038,10 @@ export interface Facility {
1036
1038
  */
1037
1039
  groupBy?: ('width' | 'length' | 'unit_type_id' | 'display_Rate' | 'floor')[] | null;
1038
1040
  };
1041
+ /**
1042
+ * Notify customers about a promotion or announcement. Displays above the facility tabs.
1043
+ */
1044
+ facilityBanner?: FacilityBannerBlock[] | null;
1039
1045
  /**
1040
1046
  * Notify customers about a promotion or announcement. Displays in a square block at the top of the page.
1041
1047
  */
@@ -1201,6 +1207,36 @@ export interface ContentTabs {
1201
1207
  } | null;
1202
1208
  };
1203
1209
  }
1210
+ /**
1211
+ * This interface was referenced by `Config`'s JSON-Schema
1212
+ * via the `definition` "FacilityBannerBlock".
1213
+ */
1214
+ export interface FacilityBannerBlock {
1215
+ /**
1216
+ * Select the background color for the banner
1217
+ */
1218
+ backgroundColor?:
1219
+ | ('primary' | 'primary-light' | 'secondary' | 'secondary-light' | 'neutral-light' | 'neutral-dark')
1220
+ | null;
1221
+ content?: {
1222
+ root: {
1223
+ type: string;
1224
+ children: {
1225
+ type: string;
1226
+ version: number;
1227
+ [k: string]: unknown;
1228
+ }[];
1229
+ direction: ('ltr' | 'rtl') | null;
1230
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
1231
+ indent: number;
1232
+ version: number;
1233
+ };
1234
+ [k: string]: unknown;
1235
+ } | null;
1236
+ id?: string | null;
1237
+ blockName?: string | null;
1238
+ blockType: 'facilityBanner';
1239
+ }
1204
1240
  /**
1205
1241
  * This interface was referenced by `Config`'s JSON-Schema
1206
1242
  * via the `definition` "ContentBlock".
@@ -2331,6 +2367,7 @@ export interface PagesSelect<T extends boolean = true> {
2331
2367
  archive?: T | ArchiveBlockSelect<T>;
2332
2368
  cta?: T | CallToActionBlockSelect<T>;
2333
2369
  content?: T | ContentBlockSelect<T>;
2370
+ facilityBanner?: T | FacilityBannerBlockSelect<T>;
2334
2371
  faq?: T | FaqBlockSelect<T>;
2335
2372
  featuredLocations?: T | FeaturedLocationsBlockSelect<T>;
2336
2373
  featuresGrid?: T | FeaturesGridBlockSelect<T>;
@@ -2434,6 +2471,16 @@ export interface ContentBlockSelect<T extends boolean = true> {
2434
2471
  id?: T;
2435
2472
  blockName?: T;
2436
2473
  }
2474
+ /**
2475
+ * This interface was referenced by `Config`'s JSON-Schema
2476
+ * via the `definition` "FacilityBannerBlock_select".
2477
+ */
2478
+ export interface FacilityBannerBlockSelect<T extends boolean = true> {
2479
+ backgroundColor?: T;
2480
+ content?: T;
2481
+ id?: T;
2482
+ blockName?: T;
2483
+ }
2437
2484
  /**
2438
2485
  * This interface was referenced by `Config`'s JSON-Schema
2439
2486
  * via the `definition` "FaqBlock_select".
@@ -2747,6 +2794,11 @@ export interface FacilitiesSelect<T extends boolean = true> {
2747
2794
  sort?: T;
2748
2795
  groupBy?: T;
2749
2796
  };
2797
+ facilityBanner?:
2798
+ | T
2799
+ | {
2800
+ facilityBanner?: T | FacilityBannerBlockSelect<T>;
2801
+ };
2750
2802
  facilityNotice?: T;
2751
2803
  marketNotice?: T;
2752
2804
  backgroundColor?: T;
@@ -2837,6 +2889,7 @@ export interface MarketsSelect<T extends boolean = true> {
2837
2889
  archive?: T | ArchiveBlockSelect<T>;
2838
2890
  cta?: T | CallToActionBlockSelect<T>;
2839
2891
  content?: T | ContentBlockSelect<T>;
2892
+ facilityBanner?: T | FacilityBannerBlockSelect<T>;
2840
2893
  faq?: T | FaqBlockSelect<T>;
2841
2894
  featuredLocations?: T | FeaturedLocationsBlockSelect<T>;
2842
2895
  featuresGrid?: T | FeaturesGridBlockSelect<T>;
@@ -3564,6 +3617,33 @@ export interface ButtonBlock {
3564
3617
  blockName?: string | null;
3565
3618
  blockType: 'button';
3566
3619
  }
3620
+ /**
3621
+ * This interface was referenced by `Config`'s JSON-Schema
3622
+ * via the `definition` "RowGroupBlock".
3623
+ */
3624
+ export interface RowGroupBlock {
3625
+ /**
3626
+ * Content will display in a row on tablet/desktop, and stack vertically on mobile.
3627
+ */
3628
+ content?: {
3629
+ root: {
3630
+ type: string;
3631
+ children: {
3632
+ type: string;
3633
+ version: number;
3634
+ [k: string]: unknown;
3635
+ }[];
3636
+ direction: ('ltr' | 'rtl') | null;
3637
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
3638
+ indent: number;
3639
+ version: number;
3640
+ };
3641
+ [k: string]: unknown;
3642
+ } | null;
3643
+ id?: string | null;
3644
+ blockName?: string | null;
3645
+ blockType: 'rowGroup';
3646
+ }
3567
3647
  /**
3568
3648
  * This interface was referenced by `Config`'s JSON-Schema
3569
3649
  * via the `definition` "auth".