@glidevvr/storage-payload-types-pkg 1.0.354 → 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.
- package/package.json +1 -1
- package/payload-types.ts +25 -4
package/package.json
CHANGED
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
|
*/
|
|
@@ -961,9 +965,9 @@ export interface Facility {
|
|
|
961
965
|
*/
|
|
962
966
|
tabLabel?: string | null;
|
|
963
967
|
/**
|
|
964
|
-
* Pick a brand color or choose a custom color. Used for the outline, background, tab, and text fill.
|
|
968
|
+
* Pick a brand color or choose a custom color (defaults to primary). Used for the outline, background, tab, and text fill.
|
|
965
969
|
*/
|
|
966
|
-
color
|
|
970
|
+
color: string;
|
|
967
971
|
id?: string | null;
|
|
968
972
|
}[]
|
|
969
973
|
| null;
|
|
@@ -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;
|
|
@@ -5130,9 +5151,9 @@ export interface UnitsTableBlock {
|
|
|
5130
5151
|
*/
|
|
5131
5152
|
tabLabel?: string | null;
|
|
5132
5153
|
/**
|
|
5133
|
-
* Pick a brand color or choose a custom color. Used for the outline, background, tab, and text fill.
|
|
5154
|
+
* Pick a brand color or choose a custom color (defaults to primary). Used for the outline, background, tab, and text fill.
|
|
5134
5155
|
*/
|
|
5135
|
-
color
|
|
5156
|
+
color: string;
|
|
5136
5157
|
}[]
|
|
5137
5158
|
| null;
|
|
5138
5159
|
};
|