@thryveai/theme-interfaces 2.8.21 → 2.8.23
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/dist/JSONSchemas/index.d.ts +81 -30
- package/dist/JSONSchemas/index.js +165 -81
- package/dist/interfaces/icons.interfaces.d.ts +2 -2
- package/dist/interfaces/retailer-settings.interfaces.d.ts +8 -0
- package/dist/storefront/commonSettingsStorefront.js +11 -3
- package/dist/storefront/defaultIconsStorefront.js +1 -1
- package/dist/storefront/defaultSettingsStorefront.js +11 -3
- package/package.json +2 -1
|
@@ -96,12 +96,20 @@ var DefaultConfigSFUI = {
|
|
|
96
96
|
houseAccountRegExValidation: ".",
|
|
97
97
|
minimumCreditCardAmount: 1.0,
|
|
98
98
|
numericPhonePayload: false,
|
|
99
|
+
nativePayments: {
|
|
100
|
+
googlePayButton: {
|
|
101
|
+
buttonColor: "default",
|
|
102
|
+
buttonType: "checkout",
|
|
103
|
+
buttonRadius: 4,
|
|
104
|
+
},
|
|
105
|
+
},
|
|
99
106
|
paymentCards: {
|
|
100
107
|
AmExpCard: true,
|
|
101
108
|
DiscoverCard: true,
|
|
102
109
|
MasterCard: true,
|
|
103
110
|
MasterCardDebit: true,
|
|
104
111
|
VisaCard: true,
|
|
112
|
+
VisaDebit: false,
|
|
105
113
|
PayPal: false,
|
|
106
114
|
ApplePay: false,
|
|
107
115
|
GooglePay: false,
|
|
@@ -405,7 +413,7 @@ var DefaultConfigSFUI = {
|
|
|
405
413
|
scrollToTopButton: {
|
|
406
414
|
enabled: false,
|
|
407
415
|
percentOffset: { bottom: 15, right: 2 },
|
|
408
|
-
visibilityThreshold: 2000
|
|
416
|
+
visibilityThreshold: 2000,
|
|
409
417
|
},
|
|
410
418
|
clientRenderCoupons: true,
|
|
411
419
|
showClippedStateInCouponModal: false,
|
|
@@ -419,8 +427,8 @@ var DefaultConfigSFUI = {
|
|
|
419
427
|
confirmationDelay: 5000,
|
|
420
428
|
},
|
|
421
429
|
carousel: {
|
|
422
|
-
showArrowsOnHoverOnly: true
|
|
423
|
-
}
|
|
430
|
+
showArrowsOnHoverOnly: true,
|
|
431
|
+
},
|
|
424
432
|
},
|
|
425
433
|
welcomeModal: [],
|
|
426
434
|
performance: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thryveai/theme-interfaces",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.23",
|
|
4
4
|
"description": "Shared interfaces and defaults for all Wynshop themed apps.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "gulp",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
17
|
"devDependencies": {
|
|
18
|
+
"@types/googlepay": "^0.7.6",
|
|
18
19
|
"@types/node": "^17.0.42",
|
|
19
20
|
"cz-conventional-changelog": "^3.3.0",
|
|
20
21
|
"fs-extra": "11.1.0",
|