@glidevvr/storage-payload-types-pkg 1.0.297 → 1.0.299

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.297",
3
+ "version": "1.0.299",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -1599,6 +1599,10 @@ export interface Facility {
1599
1599
  gallery?: (string | Media)[] | null;
1600
1600
  contentTabs?: ContentTabs;
1601
1601
  unitTableSettings: {
1602
+ /**
1603
+ * Auto-resolved from the facility/org layout cascade. Do not set manually.
1604
+ */
1605
+ filterLayout?: ('layout-1' | 'layout-2') | null;
1602
1606
  /**
1603
1607
  * When enabled, use Cubby for unit table display instead of the standard settings.
1604
1608
  */
@@ -4220,6 +4224,7 @@ export interface FacilitiesSelect<T extends boolean = true> {
4220
4224
  unitTableSettings?:
4221
4225
  | T
4222
4226
  | {
4227
+ filterLayout?: T;
4223
4228
  useCubbyUnitTable?: T;
4224
4229
  cubbyFacilitySlug?: T;
4225
4230
  cubbyUnitLayout?: T;