@bigcommerce/checkout-sdk 1.340.0 → 1.342.0
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 +14 -0
- package/dist/checkout-button.d.ts +10 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.js.map +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-button.umd.js.map +1 -1
- package/dist/checkout-sdk.d.ts +10 -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/ApplePayButtonInitializeOptions_2.md +24 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -789,6 +789,16 @@ declare interface ApplePayButtonInitializeOptions {
|
|
|
789
789
|
* DOM. When a customer clicks on it, it will trigger Apple sheet.
|
|
790
790
|
*/
|
|
791
791
|
declare interface ApplePayButtonInitializeOptions_2 {
|
|
792
|
+
/**
|
|
793
|
+
* This option indicates if product requires shipping
|
|
794
|
+
*/
|
|
795
|
+
requiresShipping?: boolean;
|
|
796
|
+
/**
|
|
797
|
+
* The options that are required to initialize Buy Now functionality.
|
|
798
|
+
*/
|
|
799
|
+
buyNowInitializeOptions?: {
|
|
800
|
+
getBuyNowCartRequestBody?(): BuyNowCartRequestBody_2 | void;
|
|
801
|
+
};
|
|
792
802
|
/**
|
|
793
803
|
* The class name of the ApplePay button style.
|
|
794
804
|
*/
|