@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.
@@ -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;
@@ -17,5 +17,6 @@ exports.MobileDefaultSettings = {
17
17
  enableProductInfiniteScroll: false,
18
18
  enablePromoCode: true,
19
19
  enableSearchPreviewTopCategories: false,
20
+ enableEmailShoppingItemsMessageField: false,
20
21
  },
21
22
  };
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.7.132",
3
+ "version": "2.7.135",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "gulp",