@bigcommerce/checkout-sdk 1.326.3 → 1.327.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.
@@ -979,11 +979,6 @@ declare interface BaseCheckoutButtonInitializeOptions extends CheckoutButtonOpti
979
979
  * unless you need to support PayPal Commerce Alternative Payment Methods.
980
980
  */
981
981
  paypalcommercealternativemethods?: PaypalCommerceAlternativeMethodsButtonOptions;
982
- /**
983
- * The options that are required to facilitate PayPal Commerce Inline Checkout. They can be omitted
984
- * unless you need to support PayPal Commerce Inline(Accelerated) Checkout.
985
- */
986
- paypalcommerceinline?: PaypalCommerceInlineCheckoutButtonInitializeOptions;
987
982
  /**
988
983
  * The options that are required to facilitate PayPal Commerce Venmo. They can be omitted
989
984
  * unless you need to support PayPal Commerce Venmo.
@@ -6430,26 +6425,6 @@ declare interface PaypalCommerceFormOptions {
6430
6425
  */
6431
6426
  declare type PaypalCommerceInitializeOptions = PaypalCommercePaymentInitializeOptions | PaypalCommerceCreditCardPaymentInitializeOptions;
6432
6427
 
6433
- declare interface PaypalCommerceInlineCheckoutButtonInitializeOptions {
6434
- /**
6435
- * A class name used to add special class for container where the button will be generated in
6436
- * Default: 'PaypalCommerceInlineButton'
6437
- */
6438
- buttonContainerClassName?: string;
6439
- /**
6440
- * A set of styling options for the checkout button.
6441
- */
6442
- style?: PaypalButtonStyleOptions_2;
6443
- /**
6444
- * A callback that gets called when payment complete on paypal side.
6445
- */
6446
- onComplete(): void;
6447
- /**
6448
- * A callback that gets called on any error
6449
- */
6450
- onError?(): void;
6451
- }
6452
-
6453
6428
  /**
6454
6429
  * A set of options that are required to initialize the PayPal Commerce payment
6455
6430
  * method for presenting its PayPal button.