@glidevvr/storage-payload-types-pkg 1.0.127 → 1.0.129

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 +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.127",
3
+ "version": "1.0.129",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -434,9 +434,9 @@ export interface Market {
434
434
  tenant?: (string | null) | Tenant;
435
435
  title: string;
436
436
  marketType: 'state' | 'city' | 'amenity' | 'allFacilities';
437
- unitCategory?: string[];
438
- unitFeature?: string[];
439
- facilityFeature?: (string | FacilityFeature)[] | null;
437
+ unitCategories?: string[];
438
+ unitFeatures?: string[];
439
+ facilityFeatures?: (string | FacilityFeature)[] | null;
440
440
  country: 'USA' | 'Canada';
441
441
  state?: string | null;
442
442
  city?: string | null;
@@ -2775,9 +2775,9 @@ export interface MarketsSelect<T extends boolean = true> {
2775
2775
  tenant?: T;
2776
2776
  title?: T;
2777
2777
  marketType?: T;
2778
- unitCategory?: T;
2779
- unitFeature?: T;
2780
- facilityFeature?: T;
2778
+ unitCategories?: T;
2779
+ unitFeatures?: T;
2780
+ facilityFeatures?: T;
2781
2781
  country?: T;
2782
2782
  state?: T;
2783
2783
  city?: T;