@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/payload-types.ts +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.329",
3
+ "version": "1.0.330",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
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