@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.
@@ -6143,6 +6143,16 @@ declare interface PaypalCommerceCreditButtonInitializeOptions {
6143
6143
  * A set of styling options for the checkout button.
6144
6144
  */
6145
6145
  style?: PaypalButtonStyleOptions_2;
6146
+ /**
6147
+ * The option that used to initialize a PayPal script with provided currency code.
6148
+ */
6149
+ currencyCode?: string;
6150
+ /**
6151
+ * The options that are required to initialize Buy Now functionality.
6152
+ */
6153
+ buyNowInitializeOptions?: {
6154
+ getBuyNowCartRequestBody?(): BuyNowCartRequestBody | void;
6155
+ };
6146
6156
  }
6147
6157
 
6148
6158
  /**