@bigcommerce/checkout-sdk 1.296.2 → 1.297.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 +8 -0
- package/dist/checkout-button.d.ts +8 -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 +8 -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/PaypalCommerceButtonInitializeOptions.md +16 -0
- package/docs/interfaces/PaypalCommerceCreditButtonInitializeOptions.md +16 -0
- package/package.json +2 -2
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -6138,6 +6138,10 @@ declare interface PaypalCommerceButtonInitializeOptions {
|
|
|
6138
6138
|
buyNowInitializeOptions?: {
|
|
6139
6139
|
getBuyNowCartRequestBody?(): BuyNowCartRequestBody | void;
|
|
6140
6140
|
};
|
|
6141
|
+
/**
|
|
6142
|
+
* A callback that gets called when payment complete on paypal side.
|
|
6143
|
+
*/
|
|
6144
|
+
onComplete?(): void;
|
|
6141
6145
|
}
|
|
6142
6146
|
|
|
6143
6147
|
declare interface PaypalCommerceCreditButtonInitializeOptions {
|
|
@@ -6163,6 +6167,10 @@ declare interface PaypalCommerceCreditButtonInitializeOptions {
|
|
|
6163
6167
|
buyNowInitializeOptions?: {
|
|
6164
6168
|
getBuyNowCartRequestBody?(): BuyNowCartRequestBody | void;
|
|
6165
6169
|
};
|
|
6170
|
+
/**
|
|
6171
|
+
* A callback that gets called when payment complete on paypal side.
|
|
6172
|
+
*/
|
|
6173
|
+
onComplete?(): void;
|
|
6166
6174
|
}
|
|
6167
6175
|
|
|
6168
6176
|
/**
|