@bigcommerce/checkout-sdk 1.293.0 → 1.294.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 +7 -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/PaypalCommerceCreditButtonInitializeOptions.md +24 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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.294.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.293.0...v1.294.0) (2022-10-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **payment:** PAYPAL-1626 made PayPalCommerceCredit competible with Buy Now ([#1620](https://github.com/bigcommerce/checkout-sdk-js/issues/1620)) ([1b523f4](https://github.com/bigcommerce/checkout-sdk-js/commit/1b523f429e589f5de49126053d24e3bc351cf2c3))
|
|
11
|
+
|
|
5
12
|
## [1.293.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.292.1...v1.293.0) (2022-10-03)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -730,6 +730,16 @@ declare interface PaypalCommerceCreditButtonInitializeOptions {
|
|
|
730
730
|
* A set of styling options for the checkout button.
|
|
731
731
|
*/
|
|
732
732
|
style?: PaypalButtonStyleOptions_2;
|
|
733
|
+
/**
|
|
734
|
+
* The option that used to initialize a PayPal script with provided currency code.
|
|
735
|
+
*/
|
|
736
|
+
currencyCode?: string;
|
|
737
|
+
/**
|
|
738
|
+
* The options that are required to initialize Buy Now functionality.
|
|
739
|
+
*/
|
|
740
|
+
buyNowInitializeOptions?: {
|
|
741
|
+
getBuyNowCartRequestBody?(): BuyNowCartRequestBody | void;
|
|
742
|
+
};
|
|
733
743
|
}
|
|
734
744
|
|
|
735
745
|
declare interface PaypalCommerceInlineCheckoutButtonInitializeOptions {
|