@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.
- package/package.json +1 -1
- package/payload-types.ts +6 -6
package/package.json
CHANGED
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
|
-
|
|
438
|
-
|
|
439
|
-
|
|
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
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2778
|
+
unitCategories?: T;
|
|
2779
|
+
unitFeatures?: T;
|
|
2780
|
+
facilityFeatures?: T;
|
|
2781
2781
|
country?: T;
|
|
2782
2782
|
state?: T;
|
|
2783
2783
|
city?: T;
|