@glidevvr/storage-payload-types-pkg 1.0.358 → 1.0.359
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 -1
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -790,7 +790,7 @@ export interface Market {
|
|
|
790
790
|
title: string;
|
|
791
791
|
marketType: 'state' | 'city' | 'amenity' | 'selectFacilities' | 'allFacilities';
|
|
792
792
|
/**
|
|
793
|
-
* Advanced
|
|
793
|
+
* Basic shows facility cards; Advanced shows the market units table with rent/reserve, promos, and features per facility.
|
|
794
794
|
*/
|
|
795
795
|
unitTableType?: ('basic' | 'advanced') | null;
|
|
796
796
|
unitCategories?: string[];
|
|
@@ -1132,6 +1132,10 @@ export interface Brand {
|
|
|
1132
1132
|
primaryColor: string;
|
|
1133
1133
|
secondaryColor: string;
|
|
1134
1134
|
tertiaryColor?: string | null;
|
|
1135
|
+
/**
|
|
1136
|
+
* Promo accent color used by unit tables (e.g. promo labels and sale ribbons). Defaults to the theme's promo yellow when unset.
|
|
1137
|
+
*/
|
|
1138
|
+
promoColor?: string | null;
|
|
1135
1139
|
/**
|
|
1136
1140
|
* If checked, the secondary color will be used instead of the primary color for buttons and links. If selecting a neutral color, it is suggested to use the theme's mediumd gray #6F6F6F or dark gray #212529
|
|
1137
1141
|
*/
|
|
@@ -4519,6 +4523,7 @@ export interface BrandsSelect<T extends boolean = true> {
|
|
|
4519
4523
|
primaryColor?: T;
|
|
4520
4524
|
secondaryColor?: T;
|
|
4521
4525
|
tertiaryColor?: T;
|
|
4526
|
+
promoColor?: T;
|
|
4522
4527
|
useSecondaryColor?: T;
|
|
4523
4528
|
createdBy?: T;
|
|
4524
4529
|
updatedBy?: T;
|