@bigcommerce/checkout-sdk 1.340.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 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.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
+
5
12
  ## [1.340.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.339.0...v1.340.0) (2023-02-09)
6
13
 
7
14
 
@@ -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
  */