@thryveai/theme-interfaces 2.7.32 → 2.7.34

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.
@@ -4,6 +4,8 @@ import { IconNames, PaymentCards } from "./icons.interfaces";
4
4
  export interface IRetailerSettings {
5
5
  accountPage?: IAccountPageSettings;
6
6
  additionalCharges?: boolean;
7
+ subscriptions?: boolean;
8
+ creditBalance?: boolean;
7
9
  addresses?: {
8
10
  addressValidationTypes?: IAddressValidationTypes;
9
11
  canadianAddressCompleteKey?: string | undefined;
@@ -193,6 +195,7 @@ export interface ITimeslotModalSettings {
193
195
  timeslotRequiredToAddToCart: boolean;
194
196
  timeslotRequiredToViewCartReview: boolean;
195
197
  timeslotRequiredToViewCheckout: boolean;
198
+ enableSelectToContinueText: boolean;
196
199
  }
197
200
  export declare type IAdvertsData = {
198
201
  [screen in IScreenType]?: string;
@@ -299,6 +302,8 @@ export interface ICheckoutSettingsV2 {
299
302
  }
300
303
  export interface IFeaturesV2 {
301
304
  additionalCharges: boolean;
305
+ creditBalance: boolean;
306
+ subscriptions: boolean;
302
307
  clientCache: boolean;
303
308
  vouchers: IVouchers;
304
309
  promotionDetailsPage: IPromotionCalculator;
@@ -329,6 +329,20 @@ exports.AdminSettingsTemplateSFUI = {
329
329
  type: exports.AdminTemplateInputTypes.checkbox,
330
330
  group: { id: 1, name: "General Features" },
331
331
  },
332
+ subscriptions: {
333
+ title: "Display subscriptions",
334
+ description: "Enable subscriptions functionality",
335
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3274637365/Subscriptions",
336
+ type: exports.AdminTemplateInputTypes.checkbox,
337
+ group: { id: 1, name: "General Features" },
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
+ },
332
346
  // additionalCharges: {
333
347
  // title: "Additional Charges",
334
348
  // description:
@@ -850,6 +864,11 @@ exports.AdminSettingsTemplateSFUI = {
850
864
  description: "Force a timeslot selection in order to view checkout",
851
865
  type: exports.AdminTemplateInputTypes.checkbox,
852
866
  },
867
+ enableSelectToContinueText: {
868
+ title: "Show a message on timeslot selection",
869
+ description: "When enabled, a message will be showed to the users to indicate 'something'",
870
+ type: exports.AdminTemplateInputTypes.checkbox,
871
+ },
853
872
  },
854
873
  },
855
874
  headerLinks: {
@@ -80,6 +80,8 @@ var DefaultConfigSFUI = {
80
80
  },
81
81
  features: {
82
82
  additionalCharges: false,
83
+ creditBalance: false,
84
+ subscriptions: false,
83
85
  addressIntegrationV2: false,
84
86
  advertSettings: {},
85
87
  allowInStorePurchases: false,
@@ -291,6 +293,7 @@ var DefaultConfigSFUI = {
291
293
  timeslotRequiredToAddToCart: false,
292
294
  timeslotRequiredToViewCartReview: false,
293
295
  timeslotRequiredToViewCheckout: false,
296
+ enableSelectToContinueText: false,
294
297
  },
295
298
  useContentEngineV2Components: {
296
299
  Carousel: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.7.32",
3
+ "version": "2.7.34",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "gulp",