@glidevvr/storage-payload-types-pkg 1.0.329 → 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 +5 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -2242,6 +2242,10 @@ export interface MediaBlock {
|
|
|
2242
2242
|
* via the `definition` "RentalStepsBlock".
|
|
2243
2243
|
*/
|
|
2244
2244
|
export interface RentalStepsBlock {
|
|
2245
|
+
/**
|
|
2246
|
+
* Visual layout variant for this Rental Steps block.
|
|
2247
|
+
*/
|
|
2248
|
+
blockLayout?: ('layout-1' | 'layout-2') | null;
|
|
2245
2249
|
heading?: string | null;
|
|
2246
2250
|
steps?:
|
|
2247
2251
|
| {
|
|
@@ -3419,6 +3423,7 @@ export interface MediaBlockSelect<T extends boolean = true> {
|
|
|
3419
3423
|
* via the `definition` "RentalStepsBlock_select".
|
|
3420
3424
|
*/
|
|
3421
3425
|
export interface RentalStepsBlockSelect<T extends boolean = true> {
|
|
3426
|
+
blockLayout?: T;
|
|
3422
3427
|
heading?: T;
|
|
3423
3428
|
steps?:
|
|
3424
3429
|
| T
|