@glidevvr/storage-payload-types-pkg 1.0.354 → 1.0.355

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 +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.354",
3
+ "version": "1.0.355",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -961,9 +961,9 @@ export interface Facility {
961
961
  */
962
962
  tabLabel?: string | null;
963
963
  /**
964
- * Pick a brand color or choose a custom color. Used for the outline, background, tab, and text fill.
964
+ * Pick a brand color or choose a custom color (defaults to primary). Used for the outline, background, tab, and text fill.
965
965
  */
966
- color?: string | null;
966
+ color: string;
967
967
  id?: string | null;
968
968
  }[]
969
969
  | null;
@@ -5130,9 +5130,9 @@ export interface UnitsTableBlock {
5130
5130
  */
5131
5131
  tabLabel?: string | null;
5132
5132
  /**
5133
- * Pick a brand color or choose a custom color. Used for the outline, background, tab, and text fill.
5133
+ * Pick a brand color or choose a custom color (defaults to primary). Used for the outline, background, tab, and text fill.
5134
5134
  */
5135
- color?: string | null;
5135
+ color: string;
5136
5136
  }[]
5137
5137
  | null;
5138
5138
  };