@bigcommerce/checkout-sdk 1.441.4 → 1.442.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.
@@ -1537,6 +1537,17 @@ declare interface BraintreeAcceleratedCheckoutCustomer {
1537
1537
  instruments?: CardInstrument[];
1538
1538
  }
1539
1539
 
1540
+ /**
1541
+ * A set of options that are required to initialize the shipping step of
1542
+ * checkout in order to support Braintree Accelerated Checkout.
1543
+ */
1544
+ declare interface BraintreeAcceleratedCheckoutInitializeOptions {
1545
+ /**
1546
+ * The identifier of the payment method.
1547
+ */
1548
+ methodId: string;
1549
+ }
1550
+
1540
1551
  /**
1541
1552
  * A set of options that are required to initialize the Braintree Accelerated Checkout payment
1542
1553
  * method for presenting on the page.
@@ -7273,6 +7284,11 @@ declare interface ShippingInitializeOptions<T = {}> extends ShippingRequestOptio
7273
7284
  * when using Stripe Upe Link.
7274
7285
  */
7275
7286
  stripeupe?: StripeUPEShippingInitializeOptions;
7287
+ /**
7288
+ * The options that are required to initialize the shipping step of checkout
7289
+ * when using Braintree Accelerated Checkout.
7290
+ */
7291
+ braintreeacceleratedcheckout?: BraintreeAcceleratedCheckoutInitializeOptions;
7276
7292
  }
7277
7293
 
7278
7294
  declare interface ShippingOption {