@glidevvr/storage-payload-types-pkg 1.0.355 → 1.0.357

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 +101 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.355",
3
+ "version": "1.0.357",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -287,6 +287,7 @@ export interface Page {
287
287
  | GalleryBlock
288
288
  | HomeHero
289
289
  | MediaOverlayBlock
290
+ | PackingMovingBlock
290
291
  | HorizontalRuleBlock
291
292
  | SingleTestimonialBlock
292
293
  | MediaBlock
@@ -420,6 +421,10 @@ export interface Tenant {
420
421
  * Global layout for facility pages. This can be overridden on a per-facility basis.
421
422
  */
422
423
  facilityPageLayout?: ('layout-1' | 'layout-2') | null;
424
+ /**
425
+ * Applies to Facility Layout 2 only. Choose whether the unit table or the company info shows first on facility pages. Can be overridden per-facility.
426
+ */
427
+ unitsCtaBehavior?: ('content-first' | 'units-first') | null;
423
428
  /**
424
429
  * Global layout for market pages. This can be overridden on a per-market basis.
425
430
  */
@@ -814,6 +819,7 @@ export interface Market {
814
819
  | GalleryBlock
815
820
  | HomeHero
816
821
  | MediaOverlayBlock
822
+ | PackingMovingBlock
817
823
  | HorizontalRuleBlock
818
824
  | SingleTestimonialBlock
819
825
  | MediaBlock
@@ -1065,6 +1071,16 @@ export interface Facility {
1065
1071
  */
1066
1072
  facilityPageLayout?: ('layout-1' | 'layout-2') | null;
1067
1073
  };
1074
+ unitsCtaBehaviorGroup?: {
1075
+ /**
1076
+ * Enable this to customize the units CTA behavior for this specific facility. If unchecked, the global setting from the organization will be used.
1077
+ */
1078
+ overrideUnitsCtaBehavior?: boolean | null;
1079
+ /**
1080
+ * Select whether the unit table or the company info shows first on this facility page. This will override the global default.
1081
+ */
1082
+ unitsCtaBehavior?: ('content-first' | 'units-first') | null;
1083
+ };
1068
1084
  meta?: {
1069
1085
  title?: string | null;
1070
1086
  description?: string | null;
@@ -2351,6 +2367,62 @@ export interface MediaOverlayBlock {
2351
2367
  blockName?: string | null;
2352
2368
  blockType: 'mediaOverlay';
2353
2369
  }
2370
+ /**
2371
+ * This interface was referenced by `Config`'s JSON-Schema
2372
+ * via the `definition` "PackingMovingBlock".
2373
+ */
2374
+ export interface PackingMovingBlock {
2375
+ heading?: string | null;
2376
+ description?: {
2377
+ root: {
2378
+ type: string;
2379
+ children: {
2380
+ type: any;
2381
+ version: number;
2382
+ [k: string]: unknown;
2383
+ }[];
2384
+ direction: ('ltr' | 'rtl') | null;
2385
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
2386
+ indent: number;
2387
+ version: number;
2388
+ };
2389
+ [k: string]: unknown;
2390
+ } | null;
2391
+ /**
2392
+ * Image displayed alongside the text. Use a horizontal aspect ratio, at least 800x520 pixels.
2393
+ */
2394
+ image?: (string | null) | Media;
2395
+ buttonLink?: {
2396
+ type?: ('reference' | 'custom') | null;
2397
+ newTab?: boolean | null;
2398
+ reference?:
2399
+ | ({
2400
+ relationTo: 'pages';
2401
+ value: string | Page;
2402
+ } | null)
2403
+ | ({
2404
+ relationTo: 'posts';
2405
+ value: string | Post;
2406
+ } | null)
2407
+ | ({
2408
+ relationTo: 'facilities';
2409
+ value: string | Facility;
2410
+ } | null)
2411
+ | ({
2412
+ relationTo: 'markets';
2413
+ value: string | Market;
2414
+ } | null)
2415
+ | ({
2416
+ relationTo: 'categories';
2417
+ value: string | Category;
2418
+ } | null);
2419
+ url?: string | null;
2420
+ label?: string | null;
2421
+ };
2422
+ id?: string | null;
2423
+ blockName?: string | null;
2424
+ blockType: 'packingMoving';
2425
+ }
2354
2426
  /**
2355
2427
  * This interface was referenced by `Config`'s JSON-Schema
2356
2428
  * via the `definition` "HorizontalRuleBlock".
@@ -3404,6 +3476,7 @@ export interface PagesSelect<T extends boolean = true> {
3404
3476
  galleryBlock?: T | GalleryBlockSelect<T>;
3405
3477
  homeHero?: T | HomeHeroSelect<T>;
3406
3478
  mediaOverlay?: T | MediaOverlayBlockSelect<T>;
3479
+ packingMoving?: T | PackingMovingBlockSelect<T>;
3407
3480
  horizontalRule?: T | HorizontalRuleBlockSelect<T>;
3408
3481
  singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
3409
3482
  mediaBlock?: T | MediaBlockSelect<T>;
@@ -3661,6 +3734,26 @@ export interface HomeHeroSelect<T extends boolean = true> {
3661
3734
  id?: T;
3662
3735
  blockName?: T;
3663
3736
  }
3737
+ /**
3738
+ * This interface was referenced by `Config`'s JSON-Schema
3739
+ * via the `definition` "PackingMovingBlock_select".
3740
+ */
3741
+ export interface PackingMovingBlockSelect<T extends boolean = true> {
3742
+ heading?: T;
3743
+ description?: T;
3744
+ image?: T;
3745
+ buttonLink?:
3746
+ | T
3747
+ | {
3748
+ type?: T;
3749
+ newTab?: T;
3750
+ reference?: T;
3751
+ url?: T;
3752
+ label?: T;
3753
+ };
3754
+ id?: T;
3755
+ blockName?: T;
3756
+ }
3664
3757
  /**
3665
3758
  * This interface was referenced by `Config`'s JSON-Schema
3666
3759
  * via the `definition` "HorizontalRuleBlock_select".
@@ -4003,6 +4096,12 @@ export interface FacilitiesSelect<T extends boolean = true> {
4003
4096
  overrideFacilityPageLayout?: T;
4004
4097
  facilityPageLayout?: T;
4005
4098
  };
4099
+ unitsCtaBehaviorGroup?:
4100
+ | T
4101
+ | {
4102
+ overrideUnitsCtaBehavior?: T;
4103
+ unitsCtaBehavior?: T;
4104
+ };
4006
4105
  meta?:
4007
4106
  | T
4008
4107
  | {
@@ -4160,6 +4259,7 @@ export interface MarketsSelect<T extends boolean = true> {
4160
4259
  galleryBlock?: T | GalleryBlockSelect<T>;
4161
4260
  homeHero?: T | HomeHeroSelect<T>;
4162
4261
  mediaOverlay?: T | MediaOverlayBlockSelect<T>;
4262
+ packingMoving?: T | PackingMovingBlockSelect<T>;
4163
4263
  horizontalRule?: T | HorizontalRuleBlockSelect<T>;
4164
4264
  singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
4165
4265
  mediaBlock?: T | MediaBlockSelect<T>;
@@ -4603,6 +4703,7 @@ export interface TenantsSelect<T extends boolean = true> {
4603
4703
  bodyFontSize?: T;
4604
4704
  siteDesign?: T;
4605
4705
  facilityPageLayout?: T;
4706
+ unitsCtaBehavior?: T;
4606
4707
  marketPageLayout?: T;
4607
4708
  footerLayout?: T;
4608
4709
  enablePreFooter?: T;