@bigcommerce/checkout-sdk 1.249.0 → 1.250.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/CHANGELOG.md +7 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +3 -1
- 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 +7 -0
- package/docs/interfaces/orderpaymentrequestbody.md +1 -1
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -5455,6 +5455,8 @@ declare interface OrderPayment {
|
|
|
5455
5455
|
amount: number;
|
|
5456
5456
|
}
|
|
5457
5457
|
|
|
5458
|
+
declare type OrderPaymentInstrument = (CreditCardInstrument | HostedInstrument | HostedCreditCardInstrument | HostedVaultedInstrument | NonceInstrument | VaultedInstrument | CreditCardInstrument & WithDocumentInstrument | CreditCardInstrument & WithCheckoutcomFawryInstrument | CreditCardInstrument & WithCheckoutcomSEPAInstrument | CreditCardInstrument & WithCheckoutcomiDealInstrument | HostedInstrument & WithMollieIssuerInstrument | WithAccountCreation);
|
|
5459
|
+
|
|
5458
5460
|
/**
|
|
5459
5461
|
* An object that contains the payment information required for submitting an
|
|
5460
5462
|
* order.
|
|
@@ -5472,7 +5474,7 @@ declare interface OrderPaymentRequestBody {
|
|
|
5472
5474
|
* An object that contains the details of a credit card, vaulted payment
|
|
5473
5475
|
* instrument or nonce instrument.
|
|
5474
5476
|
*/
|
|
5475
|
-
paymentData?:
|
|
5477
|
+
paymentData?: OrderPaymentInstrument;
|
|
5476
5478
|
}
|
|
5477
5479
|
|
|
5478
5480
|
declare type OrderPayments = Array<GatewayOrderPayment | GiftCertificateOrderPayment>;
|