@thryveai/theme-interfaces 2.3.12 → 2.3.13

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.
@@ -88,16 +88,17 @@ export interface IRetailerSettings {
88
88
  export interface IFeatureSwitch {
89
89
  additionalCharges: boolean;
90
90
  clientCache: boolean;
91
- vouchers: {
92
- enabled: boolean;
93
- reCaptcha: boolean;
94
- };
91
+ vouchers: IVouchers;
95
92
  giftCards: IGiftCards;
96
93
  smartbanner: ISmartBanner;
97
94
  }
98
95
  export interface ISiteSettings {
99
96
  anonymousCart: boolean;
100
97
  }
98
+ export interface IVouchers {
99
+ enabled: boolean;
100
+ reCaptcha: boolean;
101
+ }
101
102
  export interface IGiftCards {
102
103
  enabled: boolean;
103
104
  gitfCardInputValidation: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.3.12",
3
+ "version": "2.3.13",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "tsc",