@bigcommerce/checkout-sdk 1.411.0 → 1.413.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.
@@ -1525,6 +1525,12 @@ declare interface BoltPaymentInitializeOptions {
1525
1525
  onPaymentSelect?(hasBoltAccount: boolean): void;
1526
1526
  }
1527
1527
 
1528
+ declare interface BraintreeAcceleratedCheckoutCustomer {
1529
+ authenticationState?: string;
1530
+ addresses?: AddressRequestBody[];
1531
+ instruments?: CardInstrument[];
1532
+ }
1533
+
1528
1534
  /**
1529
1535
  * A set of options that are required to initialize the Braintree Accelerated Checkout payment
1530
1536
  * method for presenting on the page.
@@ -4024,6 +4030,13 @@ declare interface CheckoutStoreSelector {
4024
4030
  * @returns The list of extensions if it is loaded, otherwise undefined.
4025
4031
  */
4026
4032
  getExtensions(): Extension[] | undefined;
4033
+ /**
4034
+ * Gets payment provider customers data.
4035
+ *
4036
+ * @alpha
4037
+ * @returns The object with payment provider customer data
4038
+ */
4039
+ getPaymentProviderCustomer(): PaymentProviderCustomer | undefined;
4027
4040
  }
4028
4041
 
4029
4042
  /**
@@ -6855,6 +6868,8 @@ declare interface PaymentMethodConfig {
6855
6868
  testMode?: boolean;
6856
6869
  }
6857
6870
 
6871
+ declare type PaymentProviderCustomer = BraintreeAcceleratedCheckoutCustomer;
6872
+
6858
6873
  /**
6859
6874
  * The set of options for configuring any requests related to the payment step of
6860
6875
  * the current checkout flow.