@thryveai/theme-interfaces 2.7.132 → 2.7.135
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/dist/interfaces/default-settings.interfaces.d.ts +2 -1
- package/dist/interfaces/retailer-settings.interfaces.d.ts +9 -0
- package/dist/mobile/interfaces/mobile-retailer-settings.interfaces.d.ts +1 -0
- package/dist/mobile/reactnative/MobileDefaultSettings.js +1 -0
- package/dist/storefront/defaultSettingsStorefront.js +8 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IAccountPageV2, IAddressesSettingsV2, IAdminOnlyV2, ICartSummaryV2, ICheckoutSettingsV2, IFeaturesV2, IPdpSettingsV2, IProductCardSettingsV2, ISiteSettingsV2, IWelcomeModalV2, IPerformanceSettingsV2 } from "./retailer-settings.interfaces";
|
|
1
|
+
import { IAccountPageV2, IAddressesSettingsV2, IAdminOnlyV2, ICartSummaryV2, ICheckoutSettingsV2, IFeaturesV2, IPdpSettingsV2, IProductCardSettingsV2, ISiteSettingsV2, IWelcomeModalV2, IPerformanceSettingsV2, IIntegrationSettings } from "./retailer-settings.interfaces";
|
|
2
2
|
export interface IDefaultRetailerSettingsVersion2 {
|
|
3
3
|
accountPage: IAccountPageV2;
|
|
4
4
|
addressSettings: IAddressesSettingsV2;
|
|
@@ -11,4 +11,5 @@ export interface IDefaultRetailerSettingsVersion2 {
|
|
|
11
11
|
siteSettings: ISiteSettingsV2;
|
|
12
12
|
welcomeModal: IWelcomeModalV2[];
|
|
13
13
|
performance: IPerformanceSettingsV2;
|
|
14
|
+
integrations: IIntegrationSettings;
|
|
14
15
|
}
|
|
@@ -124,6 +124,11 @@ export interface IGiftCards {
|
|
|
124
124
|
reCaptcha: boolean;
|
|
125
125
|
}
|
|
126
126
|
export declare type IEntryModalVersion = "entry" | "geolocation" | "skipStoreSelection";
|
|
127
|
+
export interface IProdX {
|
|
128
|
+
enabled: boolean;
|
|
129
|
+
catalogId: string;
|
|
130
|
+
test: boolean;
|
|
131
|
+
}
|
|
127
132
|
export interface ISmartBanner {
|
|
128
133
|
enabled: boolean;
|
|
129
134
|
title: string;
|
|
@@ -444,6 +449,7 @@ export interface ISiteSettingsV2 {
|
|
|
444
449
|
scrollToTopButton: IScrollToTopButton;
|
|
445
450
|
clientRenderCoupons: boolean;
|
|
446
451
|
showShopAllLink: IShowShopAllLink;
|
|
452
|
+
showEmptyMiniList: boolean;
|
|
447
453
|
}
|
|
448
454
|
export interface IHeaderLinksLayout {
|
|
449
455
|
enabled: boolean;
|
|
@@ -455,6 +461,9 @@ export interface IWelcomeModalV2 {
|
|
|
455
461
|
target: LinkTarget;
|
|
456
462
|
icon: string;
|
|
457
463
|
}
|
|
464
|
+
export interface IIntegrationSettings {
|
|
465
|
+
prodX: IProdX;
|
|
466
|
+
}
|
|
458
467
|
export interface IPerformanceSettingsV2 {
|
|
459
468
|
vouchersLongTimeout: boolean;
|
|
460
469
|
}
|
|
@@ -15,6 +15,7 @@ export interface IMobileSettings {
|
|
|
15
15
|
enableDeleteAccount: boolean;
|
|
16
16
|
enableEarlyTimeSlotSelection: boolean;
|
|
17
17
|
enableFirstIntentModal: boolean;
|
|
18
|
+
enableEmailShoppingItemsMessageField: boolean;
|
|
18
19
|
enableGetDeliveryMoreStores: boolean;
|
|
19
20
|
enableGiftCards: boolean;
|
|
20
21
|
enableInStoreOrders: boolean;
|
|
@@ -388,10 +388,18 @@ var DefaultConfigSFUI = {
|
|
|
388
388
|
showShopAllLink: {
|
|
389
389
|
enabled: false,
|
|
390
390
|
},
|
|
391
|
+
showEmptyMiniList: false,
|
|
391
392
|
},
|
|
392
393
|
welcomeModal: [],
|
|
393
394
|
performance: {
|
|
394
395
|
vouchersLongTimeout: false,
|
|
395
396
|
},
|
|
397
|
+
integrations: {
|
|
398
|
+
prodX: {
|
|
399
|
+
enabled: false,
|
|
400
|
+
catalogId: "",
|
|
401
|
+
test: false,
|
|
402
|
+
},
|
|
403
|
+
},
|
|
396
404
|
};
|
|
397
405
|
exports.default = DefaultConfigSFUI;
|