@glidevvr/storage-payload-types-pkg 1.0.214 → 1.0.216

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.214",
3
+ "version": "1.0.216",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -1058,6 +1058,12 @@ export interface Facility {
1058
1058
  * Short callout about a promotion (i.e 50% OFF First Months Rent!). This displays on market pages.
1059
1059
  */
1060
1060
  marketNotice?: string | null;
1061
+ /**
1062
+ * Background color for the notice box. Text color will be automatically selected for optimal contrast.
1063
+ */
1064
+ backgroundColor?:
1065
+ | ('primary' | 'primary-light' | 'secondary' | 'secondary-light' | 'neutral-light' | 'neutral-dark')
1066
+ | null;
1061
1067
  meta?: {
1062
1068
  title?: string | null;
1063
1069
  description?: string | null;
@@ -2743,6 +2749,7 @@ export interface FacilitiesSelect<T extends boolean = true> {
2743
2749
  };
2744
2750
  facilityNotice?: T;
2745
2751
  marketNotice?: T;
2752
+ backgroundColor?: T;
2746
2753
  meta?:
2747
2754
  | T
2748
2755
  | {