@thryveai/theme-interfaces 2.4.7 → 2.4.8

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
+ ```
@@ -96,6 +96,7 @@ export interface IFeatureSwitch {
96
96
  entryModalVersion: IEntryModalVersion;
97
97
  addressIntegration: IAddressIntegration;
98
98
  hideAlcoholRule: IShoppingRuleControl;
99
+ addressIntegrationV2: boolean;
99
100
  }
100
101
  export interface ISiteSettings {
101
102
  anonymousCart: boolean;
@@ -280,6 +281,7 @@ export interface IFeaturesV2 {
280
281
  smartbanner: ISmartBanner;
281
282
  entryModalVersion: IEntryModalVersion;
282
283
  hideAlcoholRule: IShoppingRuleControl;
284
+ addressIntegrationV2: boolean;
283
285
  allowInStorePurchases: boolean;
284
286
  allowPastPurchases: boolean;
285
287
  advertSettings: IAdvertSettings;
@@ -59,6 +59,12 @@ var FeatureSettingsChildren = {
59
59
  helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3274571877/Additional+Charges",
60
60
  type: exports.AdminTemplateInputTypes.checkbox,
61
61
  },
62
+ addressIntegrationV2: {
63
+ title: "addressIntegrationV2",
64
+ description: "Enables addressIntegrationV2.",
65
+ helpLink: "https://mi9retail.atlassian.net/wiki/spaces/FDS/pages/3274571877/AddressIntegrationV2",
66
+ type: exports.AdminTemplateInputTypes.checkbox,
67
+ },
62
68
  clientCache: {
63
69
  title: "Browser API Caching",
64
70
  description: "Enable cache for clients on the browser",
@@ -85,6 +85,7 @@ var DefaultConfigSFUI = {
85
85
  },
86
86
  entryModalVersion: "entry",
87
87
  hideAlcoholRule: { modal: false, pdp: false },
88
+ addressIntegrationV2: false,
88
89
  allowInStorePurchases: false,
89
90
  allowPastPurchases: true,
90
91
  advertSettings: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "2.4.7",
3
+ "version": "2.4.8",
4
4
  "description": "Shared interfaces and defaults for all Wynshop themed apps.",
5
5
  "scripts": {
6
6
  "build": "tsc",