@glidevvr/storage-payload-types-pkg 1.0.172 → 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 +9 -1
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;
|
|
@@ -612,7 +616,10 @@ export interface Post {
|
|
|
612
616
|
indexable?: boolean | null;
|
|
613
617
|
};
|
|
614
618
|
slug: string;
|
|
615
|
-
|
|
619
|
+
/**
|
|
620
|
+
* Optional author name for the blog post
|
|
621
|
+
*/
|
|
622
|
+
author?: string | null;
|
|
616
623
|
publishedAt?: string | null;
|
|
617
624
|
/**
|
|
618
625
|
* Images should have a horizontal aspect ratio and be at least 1280px wide.
|
|
@@ -2558,6 +2565,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2558
2565
|
tenant?: T;
|
|
2559
2566
|
title?: T;
|
|
2560
2567
|
marketType?: T;
|
|
2568
|
+
unitTableType?: T;
|
|
2561
2569
|
unitCategories?: T;
|
|
2562
2570
|
unitFeatures?: T;
|
|
2563
2571
|
facilityFeatures?: T;
|