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

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 +21 -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.356",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -420,6 +420,10 @@ export interface Tenant {
420
420
  * Global layout for facility pages. This can be overridden on a per-facility basis.
421
421
  */
422
422
  facilityPageLayout?: ('layout-1' | 'layout-2') | null;
423
+ /**
424
+ * 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.
425
+ */
426
+ unitsCtaBehavior?: ('content-first' | 'units-first') | null;
423
427
  /**
424
428
  * Global layout for market pages. This can be overridden on a per-market basis.
425
429
  */
@@ -1065,6 +1069,16 @@ export interface Facility {
1065
1069
  */
1066
1070
  facilityPageLayout?: ('layout-1' | 'layout-2') | null;
1067
1071
  };
1072
+ unitsCtaBehaviorGroup?: {
1073
+ /**
1074
+ * Enable this to customize the units CTA behavior for this specific facility. If unchecked, the global setting from the organization will be used.
1075
+ */
1076
+ overrideUnitsCtaBehavior?: boolean | null;
1077
+ /**
1078
+ * Select whether the unit table or the company info shows first on this facility page. This will override the global default.
1079
+ */
1080
+ unitsCtaBehavior?: ('content-first' | 'units-first') | null;
1081
+ };
1068
1082
  meta?: {
1069
1083
  title?: string | null;
1070
1084
  description?: string | null;
@@ -4003,6 +4017,12 @@ export interface FacilitiesSelect<T extends boolean = true> {
4003
4017
  overrideFacilityPageLayout?: T;
4004
4018
  facilityPageLayout?: T;
4005
4019
  };
4020
+ unitsCtaBehaviorGroup?:
4021
+ | T
4022
+ | {
4023
+ overrideUnitsCtaBehavior?: T;
4024
+ unitsCtaBehavior?: T;
4025
+ };
4006
4026
  meta?:
4007
4027
  | T
4008
4028
  | {
@@ -4603,6 +4623,7 @@ export interface TenantsSelect<T extends boolean = true> {
4603
4623
  bodyFontSize?: T;
4604
4624
  siteDesign?: T;
4605
4625
  facilityPageLayout?: T;
4626
+ unitsCtaBehavior?: T;
4606
4627
  marketPageLayout?: T;
4607
4628
  footerLayout?: T;
4608
4629
  enablePreFooter?: T;