@thryveai/theme-interfaces 2.7.35 → 2.7.37
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.
|
@@ -5,6 +5,7 @@ export interface IRetailerSettings {
|
|
|
5
5
|
accountPage?: IAccountPageSettings;
|
|
6
6
|
additionalCharges?: boolean;
|
|
7
7
|
subscriptions?: boolean;
|
|
8
|
+
creditBalance?: boolean;
|
|
8
9
|
addresses?: {
|
|
9
10
|
addressValidationTypes?: IAddressValidationTypes;
|
|
10
11
|
canadianAddressCompleteKey?: string | undefined;
|
|
@@ -200,6 +201,7 @@ export declare type IAdvertsData = {
|
|
|
200
201
|
[screen in IScreenType]?: string;
|
|
201
202
|
};
|
|
202
203
|
export declare type IAdvertSettings = {
|
|
204
|
+
useAdsV1: boolean;
|
|
203
205
|
page_homepage?: IAdvertLeaderboards;
|
|
204
206
|
page_search?: IAdvertLeaderboards & IAdvertProductGrid & IAdvertSkyScrapers;
|
|
205
207
|
page_cart?: IAdvertLeaderboards & IAdvertSkyScrapers;
|
|
@@ -301,6 +303,7 @@ export interface ICheckoutSettingsV2 {
|
|
|
301
303
|
}
|
|
302
304
|
export interface IFeaturesV2 {
|
|
303
305
|
additionalCharges: boolean;
|
|
306
|
+
creditBalance: boolean;
|
|
304
307
|
subscriptions: boolean;
|
|
305
308
|
clientCache: boolean;
|
|
306
309
|
vouchers: IVouchers;
|
|
@@ -329,6 +332,7 @@ export interface IFeaturesV2 {
|
|
|
329
332
|
enabled: boolean;
|
|
330
333
|
url: string;
|
|
331
334
|
};
|
|
335
|
+
recipeLegacyShareLink: boolean;
|
|
332
336
|
registrationFields: IRegistrationField[];
|
|
333
337
|
secondTierAuthorization?: ISecondTierAuthorization;
|
|
334
338
|
showCheckoutPromoCode: boolean;
|
|
@@ -336,6 +336,13 @@ exports.AdminSettingsTemplateSFUI = {
|
|
|
336
336
|
type: exports.AdminTemplateInputTypes.checkbox,
|
|
337
337
|
group: { id: 1, name: "General Features" },
|
|
338
338
|
},
|
|
339
|
+
creditBalance: {
|
|
340
|
+
title: "Display creditBalance to customer",
|
|
341
|
+
description: "Enable creditBalance functionality",
|
|
342
|
+
helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3274637365/creditBalance",
|
|
343
|
+
type: exports.AdminTemplateInputTypes.checkbox,
|
|
344
|
+
group: { id: 1, name: "General Features" },
|
|
345
|
+
},
|
|
339
346
|
// additionalCharges: {
|
|
340
347
|
// title: "Additional Charges",
|
|
341
348
|
// description:
|
|
@@ -80,9 +80,12 @@ var DefaultConfigSFUI = {
|
|
|
80
80
|
},
|
|
81
81
|
features: {
|
|
82
82
|
additionalCharges: false,
|
|
83
|
+
creditBalance: false,
|
|
83
84
|
subscriptions: false,
|
|
84
85
|
addressIntegrationV2: false,
|
|
85
|
-
advertSettings: {
|
|
86
|
+
advertSettings: {
|
|
87
|
+
useAdsV1: false,
|
|
88
|
+
},
|
|
86
89
|
allowInStorePurchases: false,
|
|
87
90
|
allowPastPurchases: true,
|
|
88
91
|
clientCache: false,
|
|
@@ -123,6 +126,7 @@ var DefaultConfigSFUI = {
|
|
|
123
126
|
enabled: false,
|
|
124
127
|
url: "",
|
|
125
128
|
},
|
|
129
|
+
recipeLegacyShareLink: true,
|
|
126
130
|
registrationFields: [],
|
|
127
131
|
secondTierAuthorization: undefined,
|
|
128
132
|
showCheckoutPromoCode: true,
|