@bigcommerce/checkout-sdk 1.323.0 → 1.323.1

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.
@@ -1176,11 +1176,6 @@ declare interface BaseCustomerInitializeOptions extends CustomerRequestOptions {
1176
1176
  * They can be omitted unless you need to support GooglePay.
1177
1177
  */
1178
1178
  googlepaystripeupe?: GooglePayCustomerInitializeOptions;
1179
- /**
1180
- * The options that are required to initialize the PayPalCommerce payment method.
1181
- * They can be omitted unless you need to support PayPalCommerce.
1182
- */
1183
- paypalcommerce?: PaypalCommerceCustomerInitializeOptions;
1184
1179
  /**
1185
1180
  * The options that are required to initialize the Customer Stripe Upe payment method.
1186
1181
  * They can be omitted unless you need to support Customer Stripe Upe.
@@ -6351,28 +6346,6 @@ declare interface PaypalCommerceCreditCardPaymentInitializeOptions {
6351
6346
  form: PaypalCommerceFormOptions;
6352
6347
  }
6353
6348
 
6354
- /**
6355
- * A set of options that are required to initialize the customer step of
6356
- * checkout to support PayPalCommerce.
6357
- */
6358
- declare interface PaypalCommerceCustomerInitializeOptions {
6359
- /**
6360
- * The ID of a container which the checkout button should be inserted into.
6361
- */
6362
- container: string;
6363
- /**
6364
- * A callback that gets called if unable to initialize the widget or select
6365
- * one of the address options provided by the widget.
6366
- *
6367
- * @param error - The error object describing the failure.
6368
- */
6369
- onError?(error?: Error): void;
6370
- /**
6371
- * A callback that gets called when payment complete on paypal side.
6372
- */
6373
- onComplete?(): void;
6374
- }
6375
-
6376
6349
  declare type PaypalCommerceFormFieldBlurEventData = PaypalCommerceFormFieldKeyboardEventData;
6377
6350
 
6378
6351
  declare interface PaypalCommerceFormFieldCardTypeChangeEventData {