@glidevvr/storage-payload-types-pkg 1.0.329 → 1.0.331
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 +7 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -839,6 +839,7 @@ export interface Facility {
|
|
|
839
839
|
*/
|
|
840
840
|
additionalUnitSourceInfo?: string | null;
|
|
841
841
|
allowedCategories: string[];
|
|
842
|
+
categoryOrder?: string[];
|
|
842
843
|
allowedFeatures: string[];
|
|
843
844
|
/**
|
|
844
845
|
* Drag to prioritize - the first listed will have the highest priority. The default sorting is Available (desc), Area (asc), Width (asc), Display Rate (asc).
|
|
@@ -2242,6 +2243,10 @@ export interface MediaBlock {
|
|
|
2242
2243
|
* via the `definition` "RentalStepsBlock".
|
|
2243
2244
|
*/
|
|
2244
2245
|
export interface RentalStepsBlock {
|
|
2246
|
+
/**
|
|
2247
|
+
* Visual layout variant for this Rental Steps block.
|
|
2248
|
+
*/
|
|
2249
|
+
blockLayout?: ('layout-1' | 'layout-2') | null;
|
|
2245
2250
|
heading?: string | null;
|
|
2246
2251
|
steps?:
|
|
2247
2252
|
| {
|
|
@@ -3419,6 +3424,7 @@ export interface MediaBlockSelect<T extends boolean = true> {
|
|
|
3419
3424
|
* via the `definition` "RentalStepsBlock_select".
|
|
3420
3425
|
*/
|
|
3421
3426
|
export interface RentalStepsBlockSelect<T extends boolean = true> {
|
|
3427
|
+
blockLayout?: T;
|
|
3422
3428
|
heading?: T;
|
|
3423
3429
|
steps?:
|
|
3424
3430
|
| T
|
|
@@ -3661,6 +3667,7 @@ export interface FacilitiesSelect<T extends boolean = true> {
|
|
|
3661
3667
|
softReservationAppExternalUrl?: T;
|
|
3662
3668
|
additionalUnitSourceInfo?: T;
|
|
3663
3669
|
allowedCategories?: T;
|
|
3670
|
+
categoryOrder?: T;
|
|
3664
3671
|
allowedFeatures?: T;
|
|
3665
3672
|
sort?: T;
|
|
3666
3673
|
groupBy?: T;
|