@glidevvr/storage-payload-types-pkg 1.0.195 → 1.0.196
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
|
@@ -1062,6 +1062,10 @@ export interface Brand {
|
|
|
1062
1062
|
footerLogo?: (string | null) | Media;
|
|
1063
1063
|
primaryColor: string;
|
|
1064
1064
|
secondaryColor: string;
|
|
1065
|
+
/**
|
|
1066
|
+
* 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
|
|
1067
|
+
*/
|
|
1068
|
+
useSecondaryColor?: boolean | null;
|
|
1065
1069
|
createdBy?: string | null;
|
|
1066
1070
|
updatedBy?: string | null;
|
|
1067
1071
|
updatedAt: string;
|
|
@@ -2921,6 +2925,7 @@ export interface BrandsSelect<T extends boolean = true> {
|
|
|
2921
2925
|
footerLogo?: T;
|
|
2922
2926
|
primaryColor?: T;
|
|
2923
2927
|
secondaryColor?: T;
|
|
2928
|
+
useSecondaryColor?: T;
|
|
2924
2929
|
createdBy?: T;
|
|
2925
2930
|
updatedBy?: T;
|
|
2926
2931
|
updatedAt?: T;
|