@bigcommerce/checkout-sdk 1.326.2 → 1.326.4
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 +0 -25
- 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 +0 -25
- 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/README.md +0 -1
- package/docs/interfaces/BaseCheckoutButtonInitializeOptions.md +0 -10
- package/package.json +1 -1
- package/docs/interfaces/PaypalCommerceInlineCheckoutButtonInitializeOptions.md +0 -56
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.326.4](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.326.3...v1.326.4) (2023-01-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Code Refactoring
|
|
9
|
+
|
|
10
|
+
* **payment:** PAYPAL-1917 removed PayPalCommerceInlineCheckoutButtonStrategy from core package ([#1783](https://github.com/bigcommerce/checkout-sdk-js/issues/1783)) ([0921359](https://github.com/bigcommerce/checkout-sdk-js/commit/0921359bd2a1f9df68476a077baea0ea0c7ba8f1))
|
|
11
|
+
|
|
12
|
+
### [1.326.3](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.326.2...v1.326.3) (2023-01-20)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **payment:** CHECKOUT-000 Fix issue with offsite payment completion ([#1786](https://github.com/bigcommerce/checkout-sdk-js/issues/1786)) ([c1d5b79](https://github.com/bigcommerce/checkout-sdk-js/commit/c1d5b79efd17da26c553ad515f5d9ab78ee152a8))
|
|
18
|
+
|
|
5
19
|
### [1.326.2](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.326.1...v1.326.2) (2023-01-19)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -313,11 +313,6 @@ declare interface BaseCheckoutButtonInitializeOptions extends CheckoutButtonOpti
|
|
|
313
313
|
* unless you need to support PayPal Commerce Alternative Payment Methods.
|
|
314
314
|
*/
|
|
315
315
|
paypalcommercealternativemethods?: PaypalCommerceAlternativeMethodsButtonOptions;
|
|
316
|
-
/**
|
|
317
|
-
* The options that are required to facilitate PayPal Commerce Inline Checkout. They can be omitted
|
|
318
|
-
* unless you need to support PayPal Commerce Inline(Accelerated) Checkout.
|
|
319
|
-
*/
|
|
320
|
-
paypalcommerceinline?: PaypalCommerceInlineCheckoutButtonInitializeOptions;
|
|
321
316
|
/**
|
|
322
317
|
* The options that are required to facilitate PayPal Commerce Venmo. They can be omitted
|
|
323
318
|
* unless you need to support PayPal Commerce Venmo.
|
|
@@ -843,26 +838,6 @@ declare interface PaypalCommerceCreditButtonInitializeOptions {
|
|
|
843
838
|
onComplete?(): void;
|
|
844
839
|
}
|
|
845
840
|
|
|
846
|
-
declare interface PaypalCommerceInlineCheckoutButtonInitializeOptions {
|
|
847
|
-
/**
|
|
848
|
-
* A class name used to add special class for container where the button will be generated in
|
|
849
|
-
* Default: 'PaypalCommerceInlineButton'
|
|
850
|
-
*/
|
|
851
|
-
buttonContainerClassName?: string;
|
|
852
|
-
/**
|
|
853
|
-
* A set of styling options for the checkout button.
|
|
854
|
-
*/
|
|
855
|
-
style?: PaypalButtonStyleOptions_2;
|
|
856
|
-
/**
|
|
857
|
-
* A callback that gets called when payment complete on paypal side.
|
|
858
|
-
*/
|
|
859
|
-
onComplete(): void;
|
|
860
|
-
/**
|
|
861
|
-
* A callback that gets called on any error
|
|
862
|
-
*/
|
|
863
|
-
onError?(): void;
|
|
864
|
-
}
|
|
865
|
-
|
|
866
841
|
declare interface PaypalCommerceVenmoButtonInitializeOptions {
|
|
867
842
|
/**
|
|
868
843
|
* A set of styling options for the checkout button.
|