@bigcommerce/checkout-sdk 1.339.0 → 1.341.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 +14 -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 +11 -1
- 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/ApplePayButtonInitializeOptions_2.md +24 -0
- package/docs/interfaces/CheckoutSettings.md +9 -9
- package/package.json +1 -1
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.341.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.340.0...v1.341.0) (2023-02-09)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **payment:** PAYPAL-1634 added ability for applepay spb to work with buyNowCart on PDP ([#1809](https://github.com/bigcommerce/checkout-sdk-js/issues/1809)) ([0490606](https://github.com/bigcommerce/checkout-sdk-js/commit/049060659cb6bcf380177343697420b85767abf6))
|
|
11
|
+
|
|
12
|
+
## [1.340.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.339.0...v1.340.0) (2023-02-09)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **checkout:** CHECKOUT-7231 Update checkoutUserExperienceSettings ([#1831](https://github.com/bigcommerce/checkout-sdk-js/issues/1831)) ([24d6f87](https://github.com/bigcommerce/checkout-sdk-js/commit/24d6f87a6bfe64eaefbf7384eb5009dc71399b5c))
|
|
18
|
+
|
|
5
19
|
## [1.339.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.338.0...v1.339.0) (2023-02-09)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -200,6 +200,16 @@ declare interface ApplePayButtonInitializeOptions {
|
|
|
200
200
|
* DOM. When a customer clicks on it, it will trigger Apple sheet.
|
|
201
201
|
*/
|
|
202
202
|
declare interface ApplePayButtonInitializeOptions_2 {
|
|
203
|
+
/**
|
|
204
|
+
* This option indicates if product requires shipping
|
|
205
|
+
*/
|
|
206
|
+
requiresShipping?: boolean;
|
|
207
|
+
/**
|
|
208
|
+
* The options that are required to initialize Buy Now functionality.
|
|
209
|
+
*/
|
|
210
|
+
buyNowInitializeOptions?: {
|
|
211
|
+
getBuyNowCartRequestBody?(): BuyNowCartRequestBody_2 | void;
|
|
212
|
+
};
|
|
203
213
|
/**
|
|
204
214
|
* The class name of the ApplePay button style.
|
|
205
215
|
*/
|