@bigcommerce/checkout-sdk 1.494.0 → 1.495.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.
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +3 -2
- 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 +1 -1
- package/docs/interfaces/OrderPaymentRequestBody.md +1 -1
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
/// <reference types="applepayjs" />
|
|
2
|
-
import { BlueSnapDirectEcpInstrument } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
3
2
|
import { BraintreeConnectStylesOption } from '@bigcommerce/checkout-sdk/braintree-utils';
|
|
4
3
|
import { BraintreeError as BraintreeError_2 } from '@bigcommerce/checkout-sdk/braintree-utils';
|
|
5
4
|
import { BuyNowCartRequestBody as BuyNowCartRequestBody_2 } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
6
5
|
import { CardClassSelectors } from '@square/web-payments-sdk-types';
|
|
7
6
|
import { CartSource } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
8
7
|
import { CreditCardPaymentInitializeOptions } from '@bigcommerce/checkout-sdk/credit-card-integration';
|
|
8
|
+
import { EcpInstrument } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
9
9
|
import { HostedFormOptions as HostedFormOptions_2 } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
10
10
|
import { LoadingIndicatorStyles } from '@bigcommerce/checkout-sdk/ui';
|
|
11
11
|
import { Omit as Omit_2 } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
12
12
|
import { RequestOptions as RequestOptions_2 } from '@bigcommerce/request-sender';
|
|
13
13
|
import { Response } from '@bigcommerce/request-sender';
|
|
14
|
+
import { SepaInstrument } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
14
15
|
import { StandardError as StandardError_2 } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
15
16
|
import { Timeout } from '@bigcommerce/request-sender';
|
|
16
17
|
import { WithAccountCreation } from '@bigcommerce/checkout-sdk/payment-integration-api';
|
|
@@ -6396,7 +6397,7 @@ declare interface OrderPayment {
|
|
|
6396
6397
|
amount: number;
|
|
6397
6398
|
}
|
|
6398
6399
|
|
|
6399
|
-
declare type OrderPaymentInstrument = WithBankAccountInstrument | CreditCardInstrument | HostedInstrument | HostedCreditCardInstrument | HostedVaultedInstrument | NonceInstrument | VaultedInstrument |
|
|
6400
|
+
declare type OrderPaymentInstrument = WithBankAccountInstrument | EcpInstrument | SepaInstrument | CreditCardInstrument | HostedInstrument | HostedCreditCardInstrument | HostedVaultedInstrument | NonceInstrument | VaultedInstrument | (CreditCardInstrument & WithDocumentInstrument) | (CreditCardInstrument & WithCheckoutcomFawryInstrument) | (CreditCardInstrument & WithCheckoutcomSEPAInstrument) | (CreditCardInstrument & WithCheckoutcomiDealInstrument) | (HostedInstrument & WithMollieIssuerInstrument) | WithAccountCreation;
|
|
6400
6401
|
|
|
6401
6402
|
/**
|
|
6402
6403
|
* An object that contains the payment information required for submitting an
|