@glidevvr/storage-payload-types-pkg 1.0.327 → 1.0.329
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 +5 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -411,6 +411,10 @@ export interface Tenant {
|
|
|
411
411
|
neutralLightColor?: string | null;
|
|
412
412
|
neutralDarkColor?: string | null;
|
|
413
413
|
bodyFontSize?: string | null;
|
|
414
|
+
/**
|
|
415
|
+
* Site-wide design variant. Independent of page Layout. Admin-only for now.
|
|
416
|
+
*/
|
|
417
|
+
siteDesign?: ('design-1' | 'design-2') | null;
|
|
414
418
|
/**
|
|
415
419
|
* Global layout for facility pages. This can be overridden on a per-facility basis.
|
|
416
420
|
*/
|
|
@@ -4272,6 +4276,7 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
4272
4276
|
neutralLightColor?: T;
|
|
4273
4277
|
neutralDarkColor?: T;
|
|
4274
4278
|
bodyFontSize?: T;
|
|
4279
|
+
siteDesign?: T;
|
|
4275
4280
|
facilityPageLayout?: T;
|
|
4276
4281
|
marketPageLayout?: T;
|
|
4277
4282
|
leftButton?:
|