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

Commit de0bc7c

Browse files
Release 4.17.0.
1 parent 8ccd10a commit de0bc7c

File tree

8 files changed

+6
-14
lines changed

8 files changed

+6
-14
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "connect-sdk-nodejs",
3-
"version": "4.16.0",
3+
"version": "4.17.0",
44
"description": "SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API",
55
"homepage": "https://github.com/Ingenico-ePayments/connect-sdk-nodejs#readme",
66
"bugs": {

schemas/hostedcheckout/CreateHostedCheckoutRequest.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1657,9 +1657,6 @@
16571657
"SdkDataInput" : {
16581658
"type" : "object",
16591659
"properties" : {
1660-
"deviceInfo" : {
1661-
"type" : "string"
1662-
},
16631660
"deviceRenderOptions" : {
16641661
"$ref" : "#/definitions/DeviceRenderOptions"
16651662
},

schemas/payment/CreatePaymentRequest.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2001,9 +2001,6 @@
20012001
"SdkDataInput" : {
20022002
"type" : "object",
20032003
"properties" : {
2004-
"deviceInfo" : {
2005-
"type" : "string"
2006-
},
20072004
"deviceRenderOptions" : {
20082005
"$ref" : "#/definitions/DeviceRenderOptions"
20092006
},

src/model/domain/definitions/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ export interface CardFraudResults extends FraudResults {
129129
avsResult?: string | null;
130130
cvvResult?: string | null;
131131
fraugster?: FraugsterResults | null;
132-
microsoftFraudProtection?: MicrosoftFraudResults | null;
133132
retailDecisions?: FraudResultsRetailDecisions | null;
134133
}
135134

@@ -234,6 +233,7 @@ export interface FraudFieldsShippingDetails {
234233
export interface FraudResults {
235234
fraudServiceResult?: string | null;
236235
inAuth?: InAuth | null;
236+
microsoftFraudProtection?: MicrosoftFraudResults | null;
237237
}
238238

239239
export interface FraudResultsRetailDecisions {

src/model/domain/payment/definitions/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,7 @@ export interface EInvoicePaymentMethodSpecificInput extends AbstractEInvoicePaym
395395
export interface EInvoicePaymentMethodSpecificInputBase extends AbstractEInvoicePaymentMethodSpecificInput {}
396396

397397
export interface EInvoicePaymentMethodSpecificOutput extends AbstractPaymentMethodSpecificOutput {
398+
fraudResults?: FraudResults | null;
398399
paymentProduct9000SpecificOutput?: EInvoicePaymentProduct9000SpecificOutput | null;
399400
}
400401

@@ -963,10 +964,6 @@ export interface SchemeTokenData {
963964
}
964965

965966
export interface SdkDataInput {
966-
/**
967-
* @deprecated No replacement
968-
*/
969-
deviceInfo?: string | null;
970967
deviceRenderOptions?: DeviceRenderOptions | null;
971968
sdkAppId?: string | null;
972969
sdkEncryptedData?: string | null;

src/model/domain/product/definitions/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export interface PaymentProduct {
8181
fields?: PaymentProductField[] | null;
8282
fieldsWarning?: string | null;
8383
id?: number | null;
84+
isAuthenticationSupported?: boolean | null;
8485
isJavaScriptRequired?: boolean | null;
8586
maxAmount?: number | null;
8687
minAmount?: number | null;

src/utils/headers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ interface ServerMetaInfo {
1818
export function serverMetaInfo(sdkContext: SdkContext): Header {
1919
const info: ServerMetaInfo = {
2020
sdkCreator: "Ingenico",
21-
sdkIdentifier: "NodejsServerSDK/v4.16.0",
21+
sdkIdentifier: "NodejsServerSDK/v4.17.0",
2222
platformIdentifier: process.env["OS"] + " Node.js/" + process.versions.node
2323
};
2424
if (sdkContext.getIntegrator() !== null) {

0 commit comments

Comments
 (0)