@thryveai/theme-interfaces 2.7.107 → 2.7.109
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/retailer-settings.interfaces.d.ts +1 -0
- package/dist/interfaces/shared-settings.interfaces.d.ts +1 -0
- package/dist/storefront/SFUISharedSettingsTemplate.AdminUi.js +29 -18
- package/dist/storefront/defaultSettingsStorefront.js +1 -0
- package/dist/storefront/defaultSharedSettings.js +1 -0
- package/package.json +1 -1
|
@@ -396,6 +396,7 @@ export interface ISiteSettingsV2 {
|
|
|
396
396
|
cmsLazyLoadRows: number;
|
|
397
397
|
daysToRemainSignedIn: NumberRange<1, 999>;
|
|
398
398
|
defaultCountry: IDefaultCounty;
|
|
399
|
+
defaultLanguage: string;
|
|
399
400
|
defaultSearchParams: IDefaultSearchParams;
|
|
400
401
|
defaultShoppingMode: "pickup" | "planning" | "delivery";
|
|
401
402
|
defaultStoreLocation: IDefaultStoreLocation;
|
|
@@ -39,6 +39,12 @@ exports.AdminSharedSettingsTemplateSFUI = {
|
|
|
39
39
|
description: "Global Features for the website and app",
|
|
40
40
|
type: exports.AdminSharedTemplateInputTypes.collapsableObject,
|
|
41
41
|
value: {
|
|
42
|
+
// multilingual: {
|
|
43
|
+
// title: "Multilingual",
|
|
44
|
+
// description:
|
|
45
|
+
// "This will enable the option for customers to select their preferred language for the site.",
|
|
46
|
+
// type: AdminSharedTemplateInputTypes.checkbox,
|
|
47
|
+
// },
|
|
42
48
|
specialRequestItems: {
|
|
43
49
|
title: "Special Request Items",
|
|
44
50
|
description: "",
|
|
@@ -64,18 +70,20 @@ exports.AdminSharedSettingsTemplateSFUI = {
|
|
|
64
70
|
},
|
|
65
71
|
},
|
|
66
72
|
},
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
73
|
+
//TO BE UNCOMMENTED ONCE FEATURE IS COMPLETE
|
|
74
|
+
// couponGallery: {
|
|
75
|
+
// title: "Coupon Gallery",
|
|
76
|
+
// description: "",
|
|
77
|
+
// type: AdminSharedTemplateInputTypes.collapsableObject,
|
|
78
|
+
// value: {
|
|
79
|
+
// enabled: {
|
|
80
|
+
// title: "Enable coupon gallery",
|
|
81
|
+
// description:
|
|
82
|
+
// "This will display a fully integrated coupon gallery on the storefront and mobile app.",
|
|
83
|
+
// type: AdminSharedTemplateInputTypes.checkbox,
|
|
84
|
+
// },
|
|
85
|
+
// },
|
|
86
|
+
// }
|
|
79
87
|
},
|
|
80
88
|
},
|
|
81
89
|
checkout: {
|
|
@@ -107,12 +115,15 @@ exports.AdminSharedSettingsTemplateSFUI = {
|
|
|
107
115
|
description: "This will display the list of available stores for the planning and pickup store selector modals prior to the user entering their address.",
|
|
108
116
|
type: exports.AdminSharedTemplateInputTypes.checkbox,
|
|
109
117
|
},
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
118
|
+
//TO BE UNCOMMENTED ONCE FEATURE IS COMPLETE
|
|
119
|
+
// skipStoreSelection: {
|
|
120
|
+
// title: "Skip store selection",
|
|
121
|
+
// description:
|
|
122
|
+
// "This will skip the enter nearest store modal in the first time user flow if no store is returned. The corporate store will be selected if available otherwise the default store will be used.",
|
|
123
|
+
// type: AdminSharedTemplateInputTypes.checkbox,
|
|
124
|
+
// helpLink:
|
|
125
|
+
// "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/4039704585/Skip+Nearest+Store+Suggestion",
|
|
126
|
+
// },
|
|
116
127
|
},
|
|
117
128
|
},
|
|
118
129
|
};
|