@bigcommerce/checkout-sdk 1.433.2 → 1.435.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.
@@ -1268,11 +1268,6 @@ declare interface BasePaymentInitializeOptions extends PaymentRequestOptions {
1268
1268
  * They can be omitted unless you need to support StripeUPE.
1269
1269
  */
1270
1270
  stripeupe?: StripeUPEPaymentInitializeOptions;
1271
- /**
1272
- * The options that are required to initialize the Mollie payment method.
1273
- * They can be omitted unless you need to support Mollie.
1274
- */
1275
- mollie?: MolliePaymentInitializeOptions;
1276
1271
  /**
1277
1272
  * The options that are required to initialize the Worldpay payment method.
1278
1273
  * They can be omitted unless you need to support Worldpay.
@@ -6000,7 +5995,7 @@ declare interface MolliePaymentInitializeOptions {
6000
5995
  /**
6001
5996
  * Hosted Form Validation Options
6002
5997
  */
6003
- form?: HostedFormOptions;
5998
+ form?: HostedFormOptions_2;
6004
5999
  unsupportedMethodMessage?: string;
6005
6000
  disableButton(disabled: boolean): void;
6006
6001
  }
@@ -6919,7 +6914,7 @@ declare interface PayPalInstrument extends BaseAccountInstrument {
6919
6914
  method: 'paypal';
6920
6915
  }
6921
6916
 
6922
- declare type PaymentInitializeOptions = BasePaymentInitializeOptions & WithAdyenV2PaymentInitializeOptions & WithAdyenV3PaymentInitializeOptions & WithApplePayPaymentInitializeOptions & WithBlueSnapDirectAPMPaymentInitializeOptions & WithBoltPaymentInitializeOptions & WithBraintreePaypalAchPaymentInitializeOptions & WithBraintreeLocalMethodsPaymentInitializeOptions & WithBraintreeAcceleratedCheckoutPaymentInitializeOptions & WithCreditCardPaymentInitializeOptions & WithGooglePayPaymentInitializeOptions & WithPayPalCommercePaymentInitializeOptions & WithPayPalCommerceCreditPaymentInitializeOptions & WithPayPalCommerceVenmoPaymentInitializeOptions & WithPayPalCommerceAlternativeMethodsPaymentInitializeOptions & WithPayPalCommerceCreditCardsPaymentInitializeOptions & WithSquareV2PaymentInitializeOptions;
6917
+ declare type PaymentInitializeOptions = BasePaymentInitializeOptions & WithAdyenV2PaymentInitializeOptions & WithAdyenV3PaymentInitializeOptions & WithApplePayPaymentInitializeOptions & WithBlueSnapDirectAPMPaymentInitializeOptions & WithBoltPaymentInitializeOptions & WithBraintreePaypalAchPaymentInitializeOptions & WithBraintreeLocalMethodsPaymentInitializeOptions & WithBraintreeAcceleratedCheckoutPaymentInitializeOptions & WithCreditCardPaymentInitializeOptions & WithGooglePayPaymentInitializeOptions & WithMolliePaymentInitializeOptions & WithPayPalCommercePaymentInitializeOptions & WithPayPalCommerceCreditPaymentInitializeOptions & WithPayPalCommerceVenmoPaymentInitializeOptions & WithPayPalCommerceAlternativeMethodsPaymentInitializeOptions & WithPayPalCommerceCreditCardsPaymentInitializeOptions & WithSquareV2PaymentInitializeOptions;
6923
6918
 
6924
6919
  declare type PaymentInstrument = CardInstrument | AccountInstrument;
6925
6920
 
@@ -8217,6 +8212,14 @@ declare interface WithMollieIssuerInstrument {
8217
8212
  shopper_locale: string;
8218
8213
  }
8219
8214
 
8215
+ declare interface WithMolliePaymentInitializeOptions {
8216
+ /**
8217
+ * The options that are required to initialize the Mollie payment
8218
+ * method. They can be omitted unless you need to support Mollie.
8219
+ */
8220
+ mollie?: MolliePaymentInitializeOptions;
8221
+ }
8222
+
8220
8223
  declare interface WithPayPalCommerceAlternativeMethodsButtonInitializeOptions {
8221
8224
  paypalcommercealternativemethods?: PayPalCommerceAlternativeMethodsButtonOptions;
8222
8225
  }