@glidevvr/storage-payload-types-pkg 1.0.328 → 1.0.330
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 +10 -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
|
*/
|
|
@@ -2238,6 +2242,10 @@ export interface MediaBlock {
|
|
|
2238
2242
|
* via the `definition` "RentalStepsBlock".
|
|
2239
2243
|
*/
|
|
2240
2244
|
export interface RentalStepsBlock {
|
|
2245
|
+
/**
|
|
2246
|
+
* Visual layout variant for this Rental Steps block.
|
|
2247
|
+
*/
|
|
2248
|
+
blockLayout?: ('layout-1' | 'layout-2') | null;
|
|
2241
2249
|
heading?: string | null;
|
|
2242
2250
|
steps?:
|
|
2243
2251
|
| {
|
|
@@ -3415,6 +3423,7 @@ export interface MediaBlockSelect<T extends boolean = true> {
|
|
|
3415
3423
|
* via the `definition` "RentalStepsBlock_select".
|
|
3416
3424
|
*/
|
|
3417
3425
|
export interface RentalStepsBlockSelect<T extends boolean = true> {
|
|
3426
|
+
blockLayout?: T;
|
|
3418
3427
|
heading?: T;
|
|
3419
3428
|
steps?:
|
|
3420
3429
|
| T
|
|
@@ -4272,6 +4281,7 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
4272
4281
|
neutralLightColor?: T;
|
|
4273
4282
|
neutralDarkColor?: T;
|
|
4274
4283
|
bodyFontSize?: T;
|
|
4284
|
+
siteDesign?: T;
|
|
4275
4285
|
facilityPageLayout?: T;
|
|
4276
4286
|
marketPageLayout?: T;
|
|
4277
4287
|
leftButton?:
|