@thryveai/theme-interfaces 2.7.149 → 2.7.150
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;
|
|
@@ -363,7 +363,7 @@ export interface IFeaturesV2 {
|
|
|
363
363
|
advertSettings: IAdvertSettings;
|
|
364
364
|
ebtPayments: boolean;
|
|
365
365
|
emailCartOrShoppingList: IEmailCartOrShoppingList;
|
|
366
|
-
|
|
366
|
+
googleTranslateWidget: IGoogleTranslateWidget;
|
|
367
367
|
enableNewsletterSignup: boolean;
|
|
368
368
|
enableNotifications: boolean;
|
|
369
369
|
enableRecipeSearch: boolean;
|
|
@@ -390,6 +390,10 @@ export interface IFeaturesV2 {
|
|
|
390
390
|
gsaSupportedBrowser: boolean;
|
|
391
391
|
acquiaAuthService: boolean;
|
|
392
392
|
}
|
|
393
|
+
export interface IGoogleTranslateWidget {
|
|
394
|
+
enabled: boolean;
|
|
395
|
+
position: "header" | "footer";
|
|
396
|
+
}
|
|
393
397
|
export interface IPdpSettingsV2 {
|
|
394
398
|
externalContent: IExternalContentProps;
|
|
395
399
|
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,
|