@glidevvr/storage-payload-types-pkg 1.0.173 → 1.0.174
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 +5 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -437,6 +437,10 @@ export interface Market {
|
|
|
437
437
|
tenant?: (string | null) | Tenant;
|
|
438
438
|
title: string;
|
|
439
439
|
marketType: 'state' | 'city' | 'amenity' | 'allFacilities';
|
|
440
|
+
/**
|
|
441
|
+
* Advanced Unit Table Coming Soon
|
|
442
|
+
*/
|
|
443
|
+
unitTableType?: ('basic' | 'advanced') | null;
|
|
440
444
|
unitCategories?: string[];
|
|
441
445
|
unitFeatures?: string[];
|
|
442
446
|
facilityFeatures?: (string | FacilityFeature)[] | null;
|
|
@@ -2561,6 +2565,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2561
2565
|
tenant?: T;
|
|
2562
2566
|
title?: T;
|
|
2563
2567
|
marketType?: T;
|
|
2568
|
+
unitTableType?: T;
|
|
2564
2569
|
unitCategories?: T;
|
|
2565
2570
|
unitFeatures?: T;
|
|
2566
2571
|
facilityFeatures?: T;
|