@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.
@@ -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?: CreditCardInstrument | HostedInstrument | HostedCreditCardInstrument | HostedVaultedInstrument | NonceInstrument | VaultedInstrument | CreditCardInstrument & WithDocumentInstrument | CreditCardInstrument & WithCheckoutcomFawryInstrument | CreditCardInstrument & WithCheckoutcomSEPAInstrument | CreditCardInstrument & WithCheckoutcomiDealInstrument | HostedInstrument & WithMollieIssuerInstrument | WithAccountCreation;
5477
+ paymentData?: OrderPaymentInstrument;
5476
5478
  }
5477
5479
 
5478
5480
  declare type OrderPayments = Array<GatewayOrderPayment | GiftCertificateOrderPayment>;