@bigcommerce/checkout-sdk 1.276.0 → 1.277.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 +16 -0
- package/dist/checkout-button.d.ts +1 -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 +3 -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/dist/embedded-checkout.js +1 -1
- package/docs/interfaces/BaseCheckoutButtonInitializeOptions.md +4 -0
- package/docs/interfaces/MolliePaymentInitializeOptions.md +21 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
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.277.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.276.2...v1.277.0) (2022-08-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **checkout-button:** INT-6023 Resize VCO button for Discover cards ([#1489](https://github.com/bigcommerce/checkout-sdk-js/issues/1489)) ([24e78e6](https://github.com/bigcommerce/checkout-sdk-js/commit/24e78e6d40944037611aaf7fe83b6059da574c8b))
|
|
11
|
+
|
|
12
|
+
### [1.276.2](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.276.1...v1.276.2) (2022-08-12)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **payment:** INT-5854 [Mollie] Klarna is not available if cart contains digital products ([#1510](https://github.com/bigcommerce/checkout-sdk-js/issues/1510)) ([9077b3e](https://github.com/bigcommerce/checkout-sdk-js/commit/9077b3e05d4eda9e01ae7f855a07e3caee90ee1e))
|
|
18
|
+
|
|
19
|
+
### [1.276.1](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.276.0...v1.276.1) (2022-08-10)
|
|
20
|
+
|
|
5
21
|
## [1.276.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.275.1...v1.276.0) (2022-08-10)
|
|
6
22
|
|
|
7
23
|
|
|
@@ -191,6 +191,7 @@ declare interface ApplePayButtonInitializeOptions_2 {
|
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
declare interface BaseCheckoutButtonInitializeOptions extends CheckoutButtonOptions {
|
|
194
|
+
[key: string]: unknown;
|
|
194
195
|
/**
|
|
195
196
|
* The options that are required to initialize the ApplePay payment method.
|
|
196
197
|
* They can be omitted unless you need to support ApplePay in cart.
|