@glidevvr/storage-payload-types-pkg 1.0.276 → 1.0.278
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
|
@@ -683,6 +683,10 @@ export interface Facility {
|
|
|
683
683
|
* Select multiple features related to this facility.
|
|
684
684
|
*/
|
|
685
685
|
facilityFeatures?: (string | FacilityFeature)[] | null;
|
|
686
|
+
/**
|
|
687
|
+
* Select up to 3 features to highlight on the facility page. Only shown for Layout 2.
|
|
688
|
+
*/
|
|
689
|
+
featuredFacilityFeatures?: (string | FacilityFeature)[] | null;
|
|
686
690
|
facilityPaymentSystem?: ('default' | 'none' | 'storage_essentials') | null;
|
|
687
691
|
/**
|
|
688
692
|
* The first image selected is displayed on market pages. For best results, use images with a 16:9 aspect ratio that are at least 1477x831 pixels wide.
|
|
@@ -3167,6 +3171,7 @@ export interface FacilitiesSelect<T extends boolean = true> {
|
|
|
3167
3171
|
googlePlaceId?: T;
|
|
3168
3172
|
brandSelection?: T;
|
|
3169
3173
|
facilityFeatures?: T;
|
|
3174
|
+
featuredFacilityFeatures?: T;
|
|
3170
3175
|
facilityPaymentSystem?: T;
|
|
3171
3176
|
gallery?: T;
|
|
3172
3177
|
contentTabs?: T | ContentTabsSelect<T>;
|