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

Commit 95095ff

Browse files
IngenicoEPaymentsjenkins
authored andcommitted
Release 3.18.0.
1 parent 2eacc52 commit 95095ff

File tree

5 files changed

+17
-2
lines changed

5 files changed

+17
-2
lines changed

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": "3.17.0",
3+
"version": "3.18.0",
44
"description": "SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API",
55
"dependencies": {
66
"dateformat": "^4.5.1",

schemas/hostedcheckout/CreateHostedCheckoutRequest.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,9 @@
623623
"CustomerAccountAuthentication" : {
624624
"type" : "object",
625625
"properties" : {
626+
"data" : {
627+
"type" : "string"
628+
},
626629
"method" : {
627630
"type" : "string"
628631
},
@@ -1706,6 +1709,9 @@
17061709
},
17071710
"skipAuthentication" : {
17081711
"type" : "boolean"
1712+
},
1713+
"transactionRiskLevel" : {
1714+
"type" : "string"
17091715
}
17101716
},
17111717
"additionalProperties" : false

schemas/payment/CompletePaymentRequest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,9 @@
493493
"CustomerAccountAuthentication" : {
494494
"type" : "object",
495495
"properties" : {
496+
"data" : {
497+
"type" : "string"
498+
},
496499
"method" : {
497500
"type" : "string"
498501
},

schemas/payment/CreatePaymentRequest.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -779,6 +779,9 @@
779779
"CustomerAccountAuthentication" : {
780780
"type" : "object",
781781
"properties" : {
782+
"data" : {
783+
"type" : "string"
784+
},
782785
"method" : {
783786
"type" : "string"
784787
},
@@ -2087,6 +2090,9 @@
20872090
},
20882091
"skipAuthentication" : {
20892092
"type" : "boolean"
2093+
},
2094+
"transactionRiskLevel" : {
2095+
"type" : "string"
20902096
}
20912097
},
20922098
"additionalProperties" : false

utils/headers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var serverMetaInfo = function (sdkContext) {
99
key: "X-GCS-ServerMetaInfo",
1010
value: {
1111
'sdkCreator': 'Ingenico',
12-
'sdkIdentifier': 'NodejsServerSDK/v3.17.0',
12+
'sdkIdentifier': 'NodejsServerSDK/v3.18.0',
1313
'platformIdentifier': process.env['OS'] + ' Node.js/' + process.versions.node
1414
}
1515
};

0 commit comments

Comments
 (0)