@bigcommerce/checkout-sdk 1.493.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 +4 -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/FormField.md +7 -0
- 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';
|
|
@@ -5197,6 +5198,7 @@ declare interface FormField {
|
|
|
5197
5198
|
secret?: boolean;
|
|
5198
5199
|
min?: string | number;
|
|
5199
5200
|
max?: string | number;
|
|
5201
|
+
inputDateFormat?: string;
|
|
5200
5202
|
options?: FormFieldOptions;
|
|
5201
5203
|
requirements?: CustomerPasswordRequirements;
|
|
5202
5204
|
}
|
|
@@ -6395,7 +6397,7 @@ declare interface OrderPayment {
|
|
|
6395
6397
|
amount: number;
|
|
6396
6398
|
}
|
|
6397
6399
|
|
|
6398
|
-
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;
|
|
6399
6401
|
|
|
6400
6402
|
/**
|
|
6401
6403
|
* An object that contains the payment information required for submitting an
|