@thryveai/theme-interfaces 2.7.136 → 2.7.138
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.
|
@@ -12,6 +12,7 @@ export interface ISharedFeatures {
|
|
|
12
12
|
specialRequestItems: ISpecialRequestItems;
|
|
13
13
|
couponGallery: ICouponGallery;
|
|
14
14
|
flyerConfiguration: IFlyerConfiguration | null;
|
|
15
|
+
enableSecondaryPrice: boolean;
|
|
15
16
|
}
|
|
16
17
|
export interface ISharedCheckout {
|
|
17
18
|
preserveOrderNote: IOrderInstructions;
|
|
@@ -388,6 +388,7 @@ var DefaultConfigSFUI = {
|
|
|
388
388
|
showShopAllLink: {
|
|
389
389
|
enabled: false,
|
|
390
390
|
},
|
|
391
|
+
showEmptyMiniList: false,
|
|
391
392
|
},
|
|
392
393
|
welcomeModal: [],
|
|
393
394
|
performance: {
|
|
@@ -397,8 +398,8 @@ var DefaultConfigSFUI = {
|
|
|
397
398
|
prodX: {
|
|
398
399
|
enabled: false,
|
|
399
400
|
catalogId: "",
|
|
400
|
-
test: false
|
|
401
|
+
test: false,
|
|
401
402
|
},
|
|
402
|
-
}
|
|
403
|
+
},
|
|
403
404
|
};
|
|
404
405
|
exports.default = DefaultConfigSFUI;
|