@thryveai/theme-interfaces 2.7.145 → 2.7.146
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.
|
@@ -38,7 +38,7 @@ export interface IRetailerSettings {
|
|
|
38
38
|
documentTitle?: string;
|
|
39
39
|
eircode?: string | null;
|
|
40
40
|
enable3dSecure?: boolean;
|
|
41
|
-
|
|
41
|
+
googleTranslateWidget?: IGoogleTranslateWidget;
|
|
42
42
|
enableNewsletterSignup?: boolean;
|
|
43
43
|
enableNotifications?: boolean;
|
|
44
44
|
enableRecipeSearch?: boolean;
|
|
@@ -362,7 +362,7 @@ export interface IFeaturesV2 {
|
|
|
362
362
|
advertSettings: IAdvertSettings;
|
|
363
363
|
ebtPayments: boolean;
|
|
364
364
|
emailCartOrShoppingList: IEmailCartOrShoppingList;
|
|
365
|
-
|
|
365
|
+
googleTranslateWidget: IGoogleTranslateWidget;
|
|
366
366
|
enableNewsletterSignup: boolean;
|
|
367
367
|
enableNotifications: boolean;
|
|
368
368
|
enableRecipeSearch: boolean;
|
|
@@ -388,6 +388,10 @@ export interface IFeaturesV2 {
|
|
|
388
388
|
gsaSupportedBrowser: boolean;
|
|
389
389
|
acquiaAuthService: boolean;
|
|
390
390
|
}
|
|
391
|
+
export interface IGoogleTranslateWidget {
|
|
392
|
+
enabled: boolean;
|
|
393
|
+
position: "header" | "footer";
|
|
394
|
+
}
|
|
391
395
|
export interface IPdpSettingsV2 {
|
|
392
396
|
externalContent: IExternalContentProps;
|
|
393
397
|
nutritionZone: INutritionZone;
|
|
@@ -127,7 +127,7 @@ var DefaultConfigSFUI = {
|
|
|
127
127
|
},
|
|
128
128
|
ebtPayments: false,
|
|
129
129
|
emailCartOrShoppingList: { enabled: false, messageField: false },
|
|
130
|
-
|
|
130
|
+
googleTranslateWidget: { enabled: false, position: "footer" },
|
|
131
131
|
enableNewsletterSignup: false,
|
|
132
132
|
enableNotifications: false,
|
|
133
133
|
enableRecipeSearch: false,
|