@thryveai/theme-interfaces 1.5.6 → 1.5.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "description": "Shared Interfaces for all ThryveAi storefront retailer themes.",
5
5
  "scripts": {
6
6
  "build": "tsc",
@@ -208,7 +208,7 @@ export interface IDefaultRetailerSettings {
208
208
  showCheckoutPromoCode: boolean;
209
209
  showImgOnOrder: boolean;
210
210
  smsNotifications: ISMSConfig;
211
- sodiumWarning?: ISodiumWarning;
211
+ sodiumWarning: ISodiumWarning;
212
212
  subHeaderHeight: number;
213
213
  timeslotModalSettings: ITimeslotModalSettings;
214
214
  useAddressValidation: boolean;
@@ -230,7 +230,7 @@ export interface ICtaButtons {
230
230
  iconAlignment: "left" | "right" | null;
231
231
  iconName: IconNames;
232
232
  }
233
- interface ISodiumWarning {
233
+ export interface ISodiumWarning {
234
234
  isEnabled: boolean;
235
235
  threshold: number;
236
236
  }