@bigcommerce/checkout-sdk 1.487.0 → 1.488.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/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +4 -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/ApplePayCustomerInitializeOptions.md +13 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -853,6 +853,10 @@ declare interface ApplePayCustomerInitializeOptions {
|
|
|
853
853
|
* @param error - The error object describing the failure.
|
|
854
854
|
*/
|
|
855
855
|
onError?(error?: Error): void;
|
|
856
|
+
/**
|
|
857
|
+
* A callback that gets called when wallet button clicked
|
|
858
|
+
*/
|
|
859
|
+
onClick?(): void;
|
|
856
860
|
}
|
|
857
861
|
|
|
858
862
|
/**
|