@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.
@@ -945,6 +945,7 @@ declare interface BaseAccountInstrument extends BaseInstrument {
945
945
  }
946
946
 
947
947
  declare interface BaseCheckoutButtonInitializeOptions extends CheckoutButtonOptions {
948
+ [key: string]: unknown;
948
949
  /**
949
950
  * The options that are required to initialize the ApplePay payment method.
950
951
  * They can be omitted unless you need to support ApplePay in cart.
@@ -5557,6 +5558,8 @@ declare interface MolliePaymentInitializeOptions {
5557
5558
  * Hosted Form Validation Options
5558
5559
  */
5559
5560
  form?: HostedFormOptions;
5561
+ unsupportedMethodMessage?: string;
5562
+ disableButton(): void;
5560
5563
  }
5561
5564
 
5562
5565
  /**