@bigcommerce/checkout-sdk 1.242.2 → 1.244.1
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/CHANGELOG.md +16 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +2 -0
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.js.map +1 -1
- package/dist/checkout-sdk.umd.js +1 -1
- package/dist/checkout-sdk.umd.js.map +1 -1
- package/docs/interfaces/checkoutsettings.md +7 -0
- package/docs/interfaces/stripeupepaymentinitializeoptions.md +18 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -2848,6 +2848,7 @@ declare interface CheckoutSettings {
|
|
|
2848
2848
|
features: {
|
|
2849
2849
|
[featureName: string]: boolean;
|
|
2850
2850
|
};
|
|
2851
|
+
checkoutBillingSameAsShippingEnabled: boolean;
|
|
2851
2852
|
enableOrderComments: boolean;
|
|
2852
2853
|
enableTermsAndConditions: boolean;
|
|
2853
2854
|
googleMapsApiKey: string;
|
|
@@ -6722,6 +6723,7 @@ declare interface StripeUPEPaymentInitializeOptions {
|
|
|
6722
6723
|
style?: {
|
|
6723
6724
|
[key: string]: string;
|
|
6724
6725
|
};
|
|
6726
|
+
onError?(error?: Error): void;
|
|
6725
6727
|
}
|
|
6726
6728
|
|
|
6727
6729
|
/**
|