@glidevvr/storage-payload-types-pkg 1.0.30 → 1.0.31

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 +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.30",
3
+ "version": "1.0.31",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -743,7 +743,7 @@ export interface Facility {
743
743
  export interface FacilityFeature {
744
744
  id: string;
745
745
  tenant?: (string | null) | Tenant;
746
- featureName: string;
746
+ name: string;
747
747
  description?: string | null;
748
748
  icon?: string | null;
749
749
  slug: string;
@@ -2568,7 +2568,7 @@ export interface MarketsSelect<T extends boolean = true> {
2568
2568
  */
2569
2569
  export interface FacilityFeaturesSelect<T extends boolean = true> {
2570
2570
  tenant?: T;
2571
- featureName?: T;
2571
+ name?: T;
2572
2572
  description?: T;
2573
2573
  icon?: T;
2574
2574
  slug?: T;