@thryveai/theme-interfaces 2.8.27 → 2.8.29

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.
@@ -186,6 +186,8 @@ export interface IFlippConfigV2 {
186
186
  version: 2;
187
187
  zoom: number;
188
188
  excludeFlyer?: string;
189
+ configUrl?: string;
190
+ mibUrl?: string;
189
191
  }
190
192
  export interface INewFlippConfig {
191
193
  accessToken: string;
@@ -198,6 +200,8 @@ export interface INewFlippConfig {
198
200
  tabletZoom: number;
199
201
  mobileZoom: number;
200
202
  excludeFlyer?: string;
203
+ configUrl?: string;
204
+ mibUrl?: string;
201
205
  }
202
206
  export declare type IFlippScriptUrls = "circulars.priceritemarketplace" | "circulars.dearbornmarket" | "flyers.v8.commerce.mi9cloud" | "flyers.stg.v8.mywebgrocer" | "flyers.saveonfoods";
203
207
  export interface IRedPepperConfig {
@@ -52,6 +52,11 @@ export interface ISharedGeneral {
52
52
  dateOfBirthInputFormat: IDateFormat;
53
53
  wasComparisonPrice: boolean;
54
54
  enableTargetedRewardsIcon: boolean;
55
+ displayInstacartIcon: {
56
+ timeslot: boolean;
57
+ summary: boolean;
58
+ orderHeader: boolean;
59
+ };
55
60
  }
56
61
  export interface IFlyerConfiguration {
57
62
  enabled: boolean;
@@ -33,7 +33,7 @@ var CommonSharedSettingsConfig = {
33
33
  },
34
34
  ageGateModal: {
35
35
  enabled: false,
36
- redirectUrl: ''
36
+ redirectUrl: "",
37
37
  },
38
38
  loyalty: {
39
39
  barcodeFormat: "UPC",
@@ -54,6 +54,11 @@ var CommonSharedSettingsConfig = {
54
54
  dateOfBirthInputFormat: "DD/MM/YYYY",
55
55
  wasComparisonPrice: false,
56
56
  enableTargetedRewardsIcon: false,
57
+ displayInstacartIcon: {
58
+ timeslot: true,
59
+ summary: true,
60
+ orderHeader: true,
61
+ },
57
62
  },
58
63
  };
59
64
  exports.default = CommonSharedSettingsConfig;