@thryveai/theme-interfaces 2.7.69 → 2.7.70

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.
@@ -54,6 +54,10 @@ export interface IDefaultThemeImages {
54
54
  };
55
55
  verifySiteImage: string;
56
56
  favicons: IDefaultThemeFavicons;
57
+ banner: {
58
+ src: string;
59
+ alt: string;
60
+ };
57
61
  }
58
62
  export interface IDefaultThemeInterface {
59
63
  colors: {
@@ -358,14 +358,8 @@ export interface IProductCardSettingsV2 {
358
358
  productCardTitleHeight: number;
359
359
  productCards: IProductCardsProps;
360
360
  }
361
- export interface ICookiePro {
362
- enabled: boolean;
363
- src: string;
364
- domain: string;
365
- }
366
361
  export interface ISiteSettingsV2 {
367
362
  clientSideOrderModify: boolean;
368
- cookiePro: ICookiePro;
369
363
  anonymousCart: boolean;
370
364
  ctaButtons: ICtaButtons | null | undefined;
371
365
  cmsLazyLoadRows: number;
@@ -54,6 +54,10 @@ export interface IThemeImages {
54
54
  };
55
55
  verifySiteImage?: string;
56
56
  favicons?: IThemeFavicons;
57
+ banner?: {
58
+ src?: string;
59
+ alt?: string;
60
+ };
57
61
  }
58
62
  export interface IThemeInterface {
59
63
  colors?: {
@@ -92,5 +92,9 @@ var DefaultImagesSFUI = {
92
92
  href: "".concat(imageBucket, "/favicons/favicon-16x16.png"),
93
93
  },
94
94
  ],
95
+ banner: {
96
+ src: "",
97
+ alt: "",
98
+ },
95
99
  };
96
100
  exports.default = DefaultImagesSFUI;
@@ -358,7 +358,6 @@ var DefaultConfigSFUI = {
358
358
  isLegacyProductURL: false,
359
359
  headerLinks: { dimension: 0, enabled: false },
360
360
  showCartValueOnMobile: false,
361
- cookiePro: { enabled: false, domain: "", src: "" },
362
361
  },
363
362
  welcomeModal: [],
364
363
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.7.69",
3
+ "version": "2.7.70",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "gulp",