@thryveai/theme-interfaces 2.8.22 → 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 +68 -29
- package/dist/JSONSchemas/index.js +133 -79
- package/dist/interfaces/retailer-settings.interfaces.d.ts +8 -0
- package/dist/storefront/commonSettingsStorefront.js +10 -3
- package/dist/storefront/defaultIconsStorefront.js +1 -1
- package/dist/storefront/defaultSettingsStorefront.js +10 -3
- package/package.json +2 -1
|
@@ -96,6 +96,13 @@ var CommonConfigSFUI = {
|
|
|
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,
|
|
@@ -406,7 +413,7 @@ var CommonConfigSFUI = {
|
|
|
406
413
|
scrollToTopButton: {
|
|
407
414
|
enabled: true,
|
|
408
415
|
percentOffset: { bottom: 15, right: 2 },
|
|
409
|
-
visibilityThreshold: 2000
|
|
416
|
+
visibilityThreshold: 2000,
|
|
410
417
|
},
|
|
411
418
|
clientRenderCoupons: true,
|
|
412
419
|
showClippedStateInCouponModal: false,
|
|
@@ -420,8 +427,8 @@ var CommonConfigSFUI = {
|
|
|
420
427
|
confirmationDelay: 5000,
|
|
421
428
|
},
|
|
422
429
|
carousel: {
|
|
423
|
-
showArrowsOnHoverOnly: true
|
|
424
|
-
}
|
|
430
|
+
showArrowsOnHoverOnly: true,
|
|
431
|
+
},
|
|
425
432
|
},
|
|
426
433
|
welcomeModal: [],
|
|
427
434
|
performance: {
|