@glidevvr/storage-payload-types-pkg 1.0.194 → 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 -3
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -732,9 +732,6 @@ export interface Post {
|
|
|
732
732
|
indexable?: boolean | null;
|
|
733
733
|
};
|
|
734
734
|
slug: string;
|
|
735
|
-
/**
|
|
736
|
-
* Optional author name for the blog post
|
|
737
|
-
*/
|
|
738
735
|
author?: string | null;
|
|
739
736
|
publishedAt?: string | null;
|
|
740
737
|
/**
|
|
@@ -1065,6 +1062,10 @@ export interface Brand {
|
|
|
1065
1062
|
footerLogo?: (string | null) | Media;
|
|
1066
1063
|
primaryColor: string;
|
|
1067
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;
|
|
1068
1069
|
createdBy?: string | null;
|
|
1069
1070
|
updatedBy?: string | null;
|
|
1070
1071
|
updatedAt: string;
|
|
@@ -2924,6 +2925,7 @@ export interface BrandsSelect<T extends boolean = true> {
|
|
|
2924
2925
|
footerLogo?: T;
|
|
2925
2926
|
primaryColor?: T;
|
|
2926
2927
|
secondaryColor?: T;
|
|
2928
|
+
useSecondaryColor?: T;
|
|
2927
2929
|
createdBy?: T;
|
|
2928
2930
|
updatedBy?: T;
|
|
2929
2931
|
updatedAt?: T;
|