Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Releases: Ingenico-ePayments/connect-sdk-nodejs

4.20.0

27 Feb 12:14
Compare
Choose a tag to compare
  • Added:
    • Added support for HTTP proxies. A proxy can be configured when initializing the SDK using new property proxy with the following nested properties:

      • host: the proxy hostname
      • scheme: the proxy scheme; defaults to http if omitted
      • port: the proxy port; defaults to 3128 if omitted
      • credentials: the optional proxy credentials, in the format <username>:<password>

      A minimal example:

       connectSdk.init({
         host: "[hostname.of.the.api]",
         apiKeyId: "[your-api-key-id]",
         secretApiKey: "[your-secret-api-key]",
         integrator: "[your-company-name]",
         proxy: {
           host: "[hostname.of.the.proxy]"
         }
       });
      

4.19.0

14 Feb 08:20
Compare
Choose a tag to compare
  • Added:
    • Added property isInstallments to interfaces FindProductgroupsParams, GetProductgroupParams, FindProductsParams and GetProductParams.

4.18.0

16 Jan 08:51
Compare
Choose a tag to compare
  • Added:
    • Added property acquirerPromotionCode to interface AbstractCardPaymentMethodSpecificInput.
  • Changed:
    • Split off webhooks signature validation to interface SignatureValidator and module webhooks/validation.

4.17.0

12 Dec 12:51
Compare
Choose a tag to compare
  • Added:
    • Added property fraudResults to interface EInvoicePaymentMethodSpecificOutput.
    • Added property isAuthenticationSupported to interface PaymentProduct.
  • Changed:
    • Moved property microsoftFraudProtection from interface CardFraudResults to its super interface FraudResults.
  • Removed:
    • Removed property deviceInfo from interface SdkDataInput, as this property is no longer supported by the REST API.

4.16.0

26 Oct 12:56
Compare
Choose a tag to compare
  • Added:
    • Added property accountFundingRecipient to interface AdditionalOrderInput.
    • Added property isCompany to interface Customer.
    • Added property fundingType to interface OrderTypeInformation.
    • Added property identification to interface PersonalInformation.
  • Deprecated:
    • Deprecated interface LoanRecipient and property loanRecipient of interface AdditionalOrderInput.
  • Security:
    • Updated the babel version.

4.15.0

16 Oct 11:33
Compare
Choose a tag to compare
  • Added:
    • Added property recurringPaymentsData to interface HostedCheckoutSpecificInput.
    • Added property amountOfMoneyTotal to interface Installments.
    • Added property installments to interface ConnectSdk. This exposes call installments.getInstallmentsInfo.

4.14.0

11 Aug 07:40
Compare
Choose a tag to compare
  • Added:
    • Added property card to interface RefundCardMethodSpecificOutput.
  • Security:
    • Updated the semver and word-wrap versions.

4.13.0

14 Jul 11:40
Compare
Choose a tag to compare
  • Added:
    • Added properties isRetriable and providerRawOutput to interfaces CaptureStatusOutput and OrderStatusOutput. Interface PaymentStatusOutput now inherits these from OrderStatusOutput.
    • Added properties providerId and providerMerchantId to interface OrderReferences.
    • Added property authorisationCode to interface RefundCardMethodSpecificOutput.

4.12.0

28 Jun 07:46
Compare
Choose a tag to compare
  • Added:
    • Added property isCheckedRememberMe to interfaces CreatedPaymentOutput and PaymentCreationOutput.
    • Added property providerMerchantId to interface PaymentReferences.
    • Added property providerRawOutput to interface PaymentStatusOutput.
    • Added property cardholderName to interface SchemeTokenData.

4.11.0

16 May 08:17
Compare
Choose a tag to compare
  • Added:
    • Added property numberInParty to interface AirlineData.