@bigcommerce/checkout-sdk 1.630.0 → 1.630.2
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 +9 -6
- 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/dist/hosted-form-v2-iframe-host.js +1 -1
- package/dist/hosted-form-v2-iframe-host.umd.js +1 -1
- package/docs/README.md +2 -1
- package/docs/interfaces/BasePaymentInitializeOptions.md +0 -10
- package/docs/interfaces/WithWorldpayAccessPaymentInitializeOptions.md +18 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -830,11 +830,6 @@ declare interface BasePaymentInitializeOptions extends PaymentRequestOptions {
|
|
|
830
830
|
* They can be omitted unless you need to support Chasepay.
|
|
831
831
|
*/
|
|
832
832
|
chasepay?: ChasePayInitializeOptions;
|
|
833
|
-
/**
|
|
834
|
-
* The options that are required to initialize the Worldpay payment method.
|
|
835
|
-
* They can be omitted unless you need to support Worldpay.
|
|
836
|
-
*/
|
|
837
|
-
worldpay?: WorldpayAccessPaymentInitializeOptions;
|
|
838
833
|
}
|
|
839
834
|
|
|
840
835
|
declare interface BillingAddress extends Address {
|
|
@@ -7189,7 +7184,7 @@ declare class PaymentHumanVerificationHandler {
|
|
|
7189
7184
|
private _isPaymentHumanVerificationRequest;
|
|
7190
7185
|
}
|
|
7191
7186
|
|
|
7192
|
-
declare type PaymentInitializeOptions = BasePaymentInitializeOptions & WithAdyenV3PaymentInitializeOptions & WithAdyenV2PaymentInitializeOptions & WithApplePayPaymentInitializeOptions & WithBlueSnapDirectAPMPaymentInitializeOptions & WithBoltPaymentInitializeOptions & WithBraintreeAchPaymentInitializeOptions & WithBraintreeLocalMethodsPaymentInitializeOptions & WithBraintreeFastlanePaymentInitializeOptions & WithCreditCardPaymentInitializeOptions & WithGooglePayPaymentInitializeOptions & WithMolliePaymentInitializeOptions & WithPayPalCommercePaymentInitializeOptions & WithPayPalCommerceCreditPaymentInitializeOptions & WithPayPalCommerceVenmoPaymentInitializeOptions & WithPayPalCommerceAlternativeMethodsPaymentInitializeOptions & WithPayPalCommerceCreditCardsPaymentInitializeOptions & WithPayPalCommerceRatePayPaymentInitializeOptions & WithPayPalCommerceFastlanePaymentInitializeOptions & WithSquareV2PaymentInitializeOptions & WithStripeV3PaymentInitializeOptions & WithStripeUPEPaymentInitializeOptions;
|
|
7187
|
+
declare type PaymentInitializeOptions = BasePaymentInitializeOptions & WithAdyenV3PaymentInitializeOptions & WithAdyenV2PaymentInitializeOptions & WithApplePayPaymentInitializeOptions & WithBlueSnapDirectAPMPaymentInitializeOptions & WithBoltPaymentInitializeOptions & WithBraintreeAchPaymentInitializeOptions & WithBraintreeLocalMethodsPaymentInitializeOptions & WithBraintreeFastlanePaymentInitializeOptions & WithCreditCardPaymentInitializeOptions & WithGooglePayPaymentInitializeOptions & WithMolliePaymentInitializeOptions & WithPayPalCommercePaymentInitializeOptions & WithPayPalCommerceCreditPaymentInitializeOptions & WithPayPalCommerceVenmoPaymentInitializeOptions & WithPayPalCommerceAlternativeMethodsPaymentInitializeOptions & WithPayPalCommerceCreditCardsPaymentInitializeOptions & WithPayPalCommerceRatePayPaymentInitializeOptions & WithPayPalCommerceFastlanePaymentInitializeOptions & WithSquareV2PaymentInitializeOptions & WithStripeV3PaymentInitializeOptions & WithStripeUPEPaymentInitializeOptions & WithWorldpayAccessPaymentInitializeOptions;
|
|
7193
7188
|
|
|
7194
7189
|
declare type PaymentInstrument = CardInstrument | AccountInstrument;
|
|
7195
7190
|
|
|
@@ -8729,6 +8724,14 @@ declare interface WithStripeV3PaymentInitializeOptions {
|
|
|
8729
8724
|
stripev3?: StripeV3PaymentInitializeOptions;
|
|
8730
8725
|
}
|
|
8731
8726
|
|
|
8727
|
+
declare interface WithWorldpayAccessPaymentInitializeOptions {
|
|
8728
|
+
/**
|
|
8729
|
+
* The options that are required to initialize the Apple Pay payment
|
|
8730
|
+
* method. They can be omitted unless you need to support Apple Pay.
|
|
8731
|
+
*/
|
|
8732
|
+
worldpay?: WorldpayAccessPaymentInitializeOptions;
|
|
8733
|
+
}
|
|
8734
|
+
|
|
8732
8735
|
declare interface WorldpayAccessPaymentInitializeOptions {
|
|
8733
8736
|
/**
|
|
8734
8737
|
* A callback that gets called when the iframe is ready to be added to the
|