@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.
@@ -789,6 +789,16 @@ declare interface ApplePayButtonInitializeOptions {
789
789
  * DOM. When a customer clicks on it, it will trigger Apple sheet.
790
790
  */
791
791
  declare interface ApplePayButtonInitializeOptions_2 {
792
+ /**
793
+ * This option indicates if product requires shipping
794
+ */
795
+ requiresShipping?: boolean;
796
+ /**
797
+ * The options that are required to initialize Buy Now functionality.
798
+ */
799
+ buyNowInitializeOptions?: {
800
+ getBuyNowCartRequestBody?(): BuyNowCartRequestBody_2 | void;
801
+ };
792
802
  /**
793
803
  * The class name of the ApplePay button style.
794
804
  */
@@ -3296,7 +3306,7 @@ declare interface CheckoutSettings {
3296
3306
  [featureName: string]: boolean;
3297
3307
  };
3298
3308
  checkoutBillingSameAsShippingEnabled: boolean;
3299
- CheckoutUserExperienceSettings: {
3309
+ checkoutUserExperienceSettings: {
3300
3310
  [key in UserExperienceSettingNames]: boolean;
3301
3311
  };
3302
3312
  enableOrderComments: boolean;