@thryveai/theme-interfaces 2.7.104 → 2.7.106

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.
@@ -7,6 +7,7 @@ export interface ISharedSettings {
7
7
  }
8
8
  export interface ISharedFeatures {
9
9
  specialRequestItems: ISpecialRequestItems;
10
+ couponGallery: ICouponGallery;
10
11
  }
11
12
  export interface ISharedCheckout {
12
13
  preserveOrderNote: IOrderInstructions;
@@ -18,6 +19,9 @@ export interface ISpecialRequestItems {
18
19
  enable: boolean;
19
20
  excludeStores: string[];
20
21
  }
22
+ export interface ICouponGallery {
23
+ enabled: boolean;
24
+ }
21
25
  export interface ISharedGeneral {
22
26
  enableStoreSelectorList: boolean;
23
27
  skipStoreSelection: boolean;
@@ -64,6 +64,18 @@ exports.AdminSharedSettingsTemplateSFUI = {
64
64
  },
65
65
  },
66
66
  },
67
+ couponGallery: {
68
+ title: "Coupon Gallery",
69
+ description: "",
70
+ type: exports.AdminSharedTemplateInputTypes.collapsableObject,
71
+ value: {
72
+ enabled: {
73
+ title: "Enable coupon gallery",
74
+ description: "This will display a fully integrated coupon gallery on the storefront and mobile app.",
75
+ type: exports.AdminSharedTemplateInputTypes.checkbox,
76
+ },
77
+ },
78
+ }
67
79
  },
68
80
  },
69
81
  checkout: {