@thryveai/theme-interfaces 2.6.3 → 2.6.4

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
+ ```
@@ -331,6 +331,7 @@ export interface IFeaturesV2 {
331
331
  smsNotifications: ISMSConfig;
332
332
  specialRequestItems: boolean;
333
333
  couponGallery: ICouponGalleryLayout;
334
+ gsaSupportedBrowser: boolean;
334
335
  }
335
336
  export interface IPdpSettingsV2 {
336
337
  nutritionZone: INutritionZone;
@@ -83,6 +83,12 @@ var FeatureSettingsChildren = {
83
83
  },
84
84
  },
85
85
  },
86
+ gsaSupportedBrowser: {
87
+ title: "gsaSupportedBrowser",
88
+ description: "Enables a retailer setting to block or unblock users from accessing the storefront using GSA",
89
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3274571877/gsaSupportedBrowser",
90
+ type: exports.AdminTemplateInputTypes.checkbox,
91
+ },
86
92
  clientCache: {
87
93
  title: "Browser API Caching",
88
94
  description: "Enable cache for clients on the browser",
@@ -149,6 +149,7 @@ var DefaultConfigSFUI = {
149
149
  bundlePromotionCalculator: true,
150
150
  nonBundlePromotionCalculator: true,
151
151
  },
152
+ gsaSupportedBrowser: false,
152
153
  },
153
154
  pdpSettings: {
154
155
  nutritionZone: "us",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.6.3",
3
+ "version": "2.6.4",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "gulp",