@bigcommerce/checkout-sdk 1.558.0 → 1.558.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.
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +16 -16
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.js.map +1 -1
- package/dist/checkout-sdk.umd.js +1 -1
- package/dist/checkout-sdk.umd.js.map +1 -1
- package/docs/README.md +3 -3
- package/docs/interfaces/{BraintreePaypalAchInitializeOptions.md → BraintreeAchInitializeOptions.md} +3 -3
- package/docs/interfaces/WithBraintreeAchPaymentInitializeOptions.md +18 -0
- package/package.json +1 -1
- package/docs/interfaces/WithBraintreePaypalAchPaymentInitializeOptions.md +0 -18
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -1664,6 +1664,13 @@ declare interface BraintreeAcceleratedCheckoutShippingInitializeOptions {
|
|
|
1664
1664
|
styles?: BraintreeConnectStylesOption;
|
|
1665
1665
|
}
|
|
1666
1666
|
|
|
1667
|
+
declare interface BraintreeAchInitializeOptions {
|
|
1668
|
+
/**
|
|
1669
|
+
* A callback that returns text that should be displayed to the customer in UI for proof of authorization
|
|
1670
|
+
*/
|
|
1671
|
+
getMandateText: () => string;
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1667
1674
|
declare interface BraintreeConnectTrackerService {
|
|
1668
1675
|
trackStepViewed(step: string): void;
|
|
1669
1676
|
customerPaymentMethodExecuted(): void;
|
|
@@ -1929,13 +1936,6 @@ declare interface BraintreePaymentInitializeOptions {
|
|
|
1929
1936
|
bannerContainerId?: string;
|
|
1930
1937
|
}
|
|
1931
1938
|
|
|
1932
|
-
declare interface BraintreePaypalAchInitializeOptions {
|
|
1933
|
-
/**
|
|
1934
|
-
* A callback that returns text that should be displayed to the customer in UI for proof of authorization
|
|
1935
|
-
*/
|
|
1936
|
-
getMandateText: () => string;
|
|
1937
|
-
}
|
|
1938
|
-
|
|
1939
1939
|
declare interface BraintreePaypalButtonInitializeOptions {
|
|
1940
1940
|
/**
|
|
1941
1941
|
* The ID of a container which the messaging should be inserted.
|
|
@@ -7893,7 +7893,7 @@ declare class PaymentHumanVerificationHandler {
|
|
|
7893
7893
|
private _isPaymentHumanVerificationRequest;
|
|
7894
7894
|
}
|
|
7895
7895
|
|
|
7896
|
-
declare type PaymentInitializeOptions = BasePaymentInitializeOptions & WithAdyenV2PaymentInitializeOptions & WithAdyenV3PaymentInitializeOptions & WithApplePayPaymentInitializeOptions & WithBlueSnapDirectAPMPaymentInitializeOptions & WithBoltPaymentInitializeOptions &
|
|
7896
|
+
declare type PaymentInitializeOptions = BasePaymentInitializeOptions & WithAdyenV2PaymentInitializeOptions & WithAdyenV3PaymentInitializeOptions & WithApplePayPaymentInitializeOptions & WithBlueSnapDirectAPMPaymentInitializeOptions & WithBoltPaymentInitializeOptions & WithBraintreeAchPaymentInitializeOptions & WithBraintreeLocalMethodsPaymentInitializeOptions & WithBraintreeAcceleratedCheckoutPaymentInitializeOptions & WithCreditCardPaymentInitializeOptions & WithGooglePayPaymentInitializeOptions & WithMolliePaymentInitializeOptions & WithPayPalCommercePaymentInitializeOptions & WithPayPalCommerceCreditPaymentInitializeOptions & WithPayPalCommerceVenmoPaymentInitializeOptions & WithPayPalCommerceAlternativeMethodsPaymentInitializeOptions & WithPayPalCommerceCreditCardsPaymentInitializeOptions & WithPayPalCommerceRatePayPaymentInitializeOptions & WithPayPalCommerceFastlanePaymentInitializeOptions & WithSquareV2PaymentInitializeOptions & WithStripeV3PaymentInitializeOptions & WithStripeUPEPaymentInitializeOptions;
|
|
7897
7897
|
|
|
7898
7898
|
declare type PaymentInstrument = CardInstrument | AccountInstrument;
|
|
7899
7899
|
|
|
@@ -9303,6 +9303,14 @@ declare interface WithBraintreeAcceleratedCheckoutPaymentInitializeOptions {
|
|
|
9303
9303
|
braintreeacceleratedcheckout?: BraintreeAcceleratedCheckoutPaymentInitializeOptions;
|
|
9304
9304
|
}
|
|
9305
9305
|
|
|
9306
|
+
declare interface WithBraintreeAchPaymentInitializeOptions {
|
|
9307
|
+
/**
|
|
9308
|
+
* The options that are required to initialize the Braintree ACH payment
|
|
9309
|
+
* method. They can be omitted unless you need to support Apple Pay.
|
|
9310
|
+
*/
|
|
9311
|
+
braintreeach?: BraintreeAchInitializeOptions;
|
|
9312
|
+
}
|
|
9313
|
+
|
|
9306
9314
|
declare interface WithBraintreeFastlaneCustomerInitializeOptions {
|
|
9307
9315
|
braintreeafastlane?: BraintreeFastlaneCustomerInitializeOptions;
|
|
9308
9316
|
}
|
|
@@ -9311,14 +9319,6 @@ declare interface WithBraintreeLocalMethodsPaymentInitializeOptions {
|
|
|
9311
9319
|
braintreelocalmethods?: BraintreeLocalMethods;
|
|
9312
9320
|
}
|
|
9313
9321
|
|
|
9314
|
-
declare interface WithBraintreePaypalAchPaymentInitializeOptions {
|
|
9315
|
-
/**
|
|
9316
|
-
* The options that are required to initialize the Braintree ACH payment
|
|
9317
|
-
* method. They can be omitted unless you need to support Apple Pay.
|
|
9318
|
-
*/
|
|
9319
|
-
braintreeach?: BraintreePaypalAchInitializeOptions;
|
|
9320
|
-
}
|
|
9321
|
-
|
|
9322
9322
|
declare interface WithBraintreePaypalCustomerInitializeOptions {
|
|
9323
9323
|
/**
|
|
9324
9324
|
* The options that are required to initialize the customer step of checkout
|