@thryveai/theme-interfaces 2.7.130 → 2.7.131
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.
|
@@ -211,6 +211,10 @@ export interface ITimeslotModalSettings {
|
|
|
211
211
|
export declare type IAdvertsData = {
|
|
212
212
|
[screen in IScreenType]?: string;
|
|
213
213
|
};
|
|
214
|
+
export declare type IEmailCartOrShoppingList = {
|
|
215
|
+
enabled: boolean;
|
|
216
|
+
messageField: boolean;
|
|
217
|
+
};
|
|
214
218
|
export declare type IAdvertSettings = {
|
|
215
219
|
page_homepage?: IAdvertLeaderboards;
|
|
216
220
|
page_search?: IAdvertLeaderboards & IAdvertProductGrid & IAdvertSkyScrapers;
|
|
@@ -352,7 +356,7 @@ export interface IFeaturesV2 {
|
|
|
352
356
|
allowPastPurchases: boolean;
|
|
353
357
|
advertSettings: IAdvertSettings;
|
|
354
358
|
ebtPayments: boolean;
|
|
355
|
-
emailCartOrShoppingList:
|
|
359
|
+
emailCartOrShoppingList: IEmailCartOrShoppingList;
|
|
356
360
|
enableGoogleTranslate: boolean;
|
|
357
361
|
enableNewsletterSignup: boolean;
|
|
358
362
|
enableNotifications: boolean;
|
|
@@ -126,7 +126,7 @@ var DefaultConfigSFUI = {
|
|
|
126
126
|
galleryIsIframe: false,
|
|
127
127
|
},
|
|
128
128
|
ebtPayments: false,
|
|
129
|
-
emailCartOrShoppingList: false,
|
|
129
|
+
emailCartOrShoppingList: { enabled: false, messageField: false },
|
|
130
130
|
enableGoogleTranslate: false,
|
|
131
131
|
enableNewsletterSignup: false,
|
|
132
132
|
enableNotifications: false,
|