@glidevvr/storage-payload-types-pkg 1.0.330 → 1.0.332

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 +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.330",
3
+ "version": "1.0.332",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
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).
@@ -1741,6 +1742,10 @@ export interface FeaturedLocationsBlock {
1741
1742
  * via the `definition` "FeaturesGridBlock".
1742
1743
  */
1743
1744
  export interface FeaturesGridBlock {
1745
+ /**
1746
+ * Visual layout variant for this Features Grid block.
1747
+ */
1748
+ blockLayout?: ('layout-1' | 'layout-2') | null;
1744
1749
  heading?: string | null;
1745
1750
  description?: {
1746
1751
  root: {
@@ -3304,6 +3309,7 @@ export interface FeaturedLocationsBlockSelect<T extends boolean = true> {
3304
3309
  * via the `definition` "FeaturesGridBlock_select".
3305
3310
  */
3306
3311
  export interface FeaturesGridBlockSelect<T extends boolean = true> {
3312
+ blockLayout?: T;
3307
3313
  heading?: T;
3308
3314
  description?: T;
3309
3315
  featuresGrid?:
@@ -3666,6 +3672,7 @@ export interface FacilitiesSelect<T extends boolean = true> {
3666
3672
  softReservationAppExternalUrl?: T;
3667
3673
  additionalUnitSourceInfo?: T;
3668
3674
  allowedCategories?: T;
3675
+ categoryOrder?: T;
3669
3676
  allowedFeatures?: T;
3670
3677
  sort?: T;
3671
3678
  groupBy?: T;