@thryveai/theme-interfaces 2.6.1 → 2.6.2

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/README.md CHANGED
@@ -1,29 +1,29 @@
1
- #V8 Theme Interfaces
2
-
3
- interfaces for all MI9 Retailer Themes.
4
-
5
- ###icons.interfaces
6
- List of all icons used inside the ui projects.
7
-
8
- ###retailer-settings.interfaces
9
- more info here
10
- https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo
11
- ###theme.interfaces
12
- The interface for each theme, colors, fonts, sizes and other css properties.
13
-
14
- #To Build Project
15
-
16
- ```
17
- npm install
18
- npm run build
19
- ```
20
-
21
- #To Publish npm package
22
- ```
23
- npm login
24
- npm publish
25
- ```
26
- or
27
- ```
28
- npm run push
29
- ```
1
+ #V8 Theme Interfaces
2
+
3
+ interfaces for all MI9 Retailer Themes.
4
+
5
+ ###icons.interfaces
6
+ List of all icons used inside the ui projects.
7
+
8
+ ###retailer-settings.interfaces
9
+ more info here
10
+ https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/1594065051/Storefront+configuration+-+from+theme+repo
11
+ ###theme.interfaces
12
+ The interface for each theme, colors, fonts, sizes and other css properties.
13
+
14
+ #To Build Project
15
+
16
+ ```
17
+ npm install
18
+ npm run build
19
+ ```
20
+
21
+ #To Publish npm package
22
+ ```
23
+ npm login
24
+ npm publish
25
+ ```
26
+ or
27
+ ```
28
+ npm run push
29
+ ```
@@ -554,4 +554,5 @@ export interface IMaintainCustomerPreferences {
554
554
  [key in IConfigurableCustomerPreference]: string[];
555
555
  };
556
556
  optInMarketingPreferences: boolean;
557
+ selectOptInMarketingPreferencesStore: boolean;
557
558
  }
@@ -455,6 +455,11 @@ var SiteSettingsChildren = {
455
455
  description: "Do NOT enable for GDPR compliant clients!",
456
456
  type: exports.AdminTemplateInputTypes.checkbox,
457
457
  },
458
+ selectOptInMarketingPreferencesStore: {
459
+ title: "Force selection of exact store you want to receive marketing preferences from",
460
+ description: "Select store customer wants to receive updates/offers from",
461
+ type: exports.AdminTemplateInputTypes.checkbox,
462
+ },
458
463
  },
459
464
  },
460
465
  retailerCountry: {
@@ -249,6 +249,7 @@ var DefaultConfigSFUI = {
249
249
  marketingPreferences: [],
250
250
  },
251
251
  optInMarketingPreferences: false,
252
+ selectOptInMarketingPreferencesStore: false,
252
253
  },
253
254
  mapZoom: 8,
254
255
  promoTemplateVersion: 1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.6.1",
3
+ "version": "2.6.2",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "gulp",