@glidevvr/storage-payload-types-pkg 1.0.324 → 1.0.326

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.324",
3
+ "version": "1.0.326",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -795,6 +795,10 @@ export interface Facility {
795
795
  selectedFacilities?: string[];
796
796
  tableLayout: 'row' | 'grid';
797
797
  buttonLayout: 'separate' | 'combined';
798
+ /**
799
+ * Background color for the mobile "See Available Units" button (Layout 2). "Default" uses the brand button color (primary/secondary based on the brand toggle).
800
+ */
801
+ seeAvailableUnitsButtonColor?: ('default' | 'primary' | 'secondary' | 'tertiary') | null;
798
802
  vacancyNotice: boolean;
799
803
  /**
800
804
  * At how many units left to show the urgency notice.
@@ -3637,6 +3641,7 @@ export interface FacilitiesSelect<T extends boolean = true> {
3637
3641
  selectedFacilities?: T;
3638
3642
  tableLayout?: T;
3639
3643
  buttonLayout?: T;
3644
+ seeAvailableUnitsButtonColor?: T;
3640
3645
  vacancyNotice?: T;
3641
3646
  vacancyThreshold?: T;
3642
3647
  showAppliedPromoPrice?: T;