connect-sdk-nodejs 4.16.0 → 4.17.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.
@@ -111,7 +111,6 @@ export interface CardFraudResults extends FraudResults {
111
111
  avsResult?: string | null;
112
112
  cvvResult?: string | null;
113
113
  fraugster?: FraugsterResults | null;
114
- microsoftFraudProtection?: MicrosoftFraudResults | null;
115
114
  retailDecisions?: FraudResultsRetailDecisions | null;
116
115
  }
117
116
  export interface CardWithoutCvv extends CardEssentials {
@@ -209,6 +208,7 @@ export interface FraudFieldsShippingDetails {
209
208
  export interface FraudResults {
210
209
  fraudServiceResult?: string | null;
211
210
  inAuth?: InAuth | null;
211
+ microsoftFraudProtection?: MicrosoftFraudResults | null;
212
212
  }
213
213
  export interface FraudResultsRetailDecisions {
214
214
  fraudCode?: string | null;
@@ -313,6 +313,7 @@ export interface EInvoicePaymentMethodSpecificInput extends AbstractEInvoicePaym
313
313
  export interface EInvoicePaymentMethodSpecificInputBase extends AbstractEInvoicePaymentMethodSpecificInput {
314
314
  }
315
315
  export interface EInvoicePaymentMethodSpecificOutput extends AbstractPaymentMethodSpecificOutput {
316
+ fraudResults?: FraudResults | null;
316
317
  paymentProduct9000SpecificOutput?: EInvoicePaymentProduct9000SpecificOutput | null;
317
318
  }
318
319
  export interface EInvoicePaymentProduct9000SpecificInput {
@@ -802,10 +803,6 @@ export interface SchemeTokenData {
802
803
  tokenExpiryDate?: string | null;
803
804
  }
804
805
  export interface SdkDataInput {
805
- /**
806
- * @deprecated No replacement
807
- */
808
- deviceInfo?: string | null;
809
806
  deviceRenderOptions?: DeviceRenderOptions | null;
810
807
  sdkAppId?: string | null;
811
808
  sdkEncryptedData?: string | null;
@@ -63,6 +63,7 @@ export interface PaymentProduct {
63
63
  fields?: PaymentProductField[] | null;
64
64
  fieldsWarning?: string | null;
65
65
  id?: number | null;
66
+ isAuthenticationSupported?: boolean | null;
66
67
  isJavaScriptRequired?: boolean | null;
67
68
  maxAmount?: number | null;
68
69
  minAmount?: number | null;
@@ -9,7 +9,7 @@ exports.date = date;
9
9
  function serverMetaInfo(sdkContext) {
10
10
  const info = {
11
11
  sdkCreator: "Ingenico",
12
- sdkIdentifier: "NodejsServerSDK/v4.16.0",
12
+ sdkIdentifier: "NodejsServerSDK/v4.17.0",
13
13
  platformIdentifier: process.env["OS"] + " Node.js/" + process.versions.node
14
14
  };
15
15
  if (sdkContext.getIntegrator() !== null) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "connect-sdk-nodejs",
3
- "version": "4.16.0",
3
+ "version": "4.17.0",
4
4
  "description": "SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API",
5
5
  "homepage": "https://github.com/Ingenico-ePayments/connect-sdk-nodejs#readme",
6
6
  "bugs": {
@@ -1657,9 +1657,6 @@
1657
1657
  "SdkDataInput" : {
1658
1658
  "type" : "object",
1659
1659
  "properties" : {
1660
- "deviceInfo" : {
1661
- "type" : "string"
1662
- },
1663
1660
  "deviceRenderOptions" : {
1664
1661
  "$ref" : "#/definitions/DeviceRenderOptions"
1665
1662
  },
@@ -2001,9 +2001,6 @@
2001
2001
  "SdkDataInput" : {
2002
2002
  "type" : "object",
2003
2003
  "properties" : {
2004
- "deviceInfo" : {
2005
- "type" : "string"
2006
- },
2007
2004
  "deviceRenderOptions" : {
2008
2005
  "$ref" : "#/definitions/DeviceRenderOptions"
2009
2006
  },