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

Commit c10cda1

Browse files
author
Jenkins
committed
Release 3.2.0.
1 parent d5fc4cc commit c10cda1

File tree

4 files changed

+17
-2
lines changed

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

schemas/hostedcheckout/CreateHostedCheckoutRequest.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,9 @@
392392
"customerReference" : {
393393
"type" : "string"
394394
},
395+
"initialSchemeTransactionId" : {
396+
"type" : "string"
397+
},
395398
"paymentProductId" : {
396399
"type" : "integer",
397400
"maximum" : 2147483647
@@ -1479,6 +1482,9 @@
14791482
"challengeIndicator" : {
14801483
"type" : "string"
14811484
},
1485+
"exemptionRequest" : {
1486+
"type" : "string"
1487+
},
14821488
"priorThreeDSecureData" : {
14831489
"$ref" : "#/definitions/ThreeDSecureData"
14841490
},

schemas/payment/CreatePaymentRequest.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,9 +452,15 @@
452452
"externalCardholderAuthenticationData" : {
453453
"$ref" : "#/definitions/ExternalCardholderAuthenticationData"
454454
},
455+
"initialSchemeTransactionId" : {
456+
"type" : "string"
457+
},
455458
"isRecurring" : {
456459
"type" : "boolean"
457460
},
461+
"merchantInitiatedReasonIndicator" : {
462+
"type" : "string"
463+
},
458464
"paymentProductId" : {
459465
"type" : "integer",
460466
"maximum" : 2147483647
@@ -1820,6 +1826,9 @@
18201826
"challengeIndicator" : {
18211827
"type" : "string"
18221828
},
1829+
"exemptionRequest" : {
1830+
"type" : "string"
1831+
},
18231832
"externalCardholderAuthenticationData" : {
18241833
"$ref" : "#/definitions/ExternalCardholderAuthenticationData"
18251834
},

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.1.0',
12+
'sdkIdentifier': 'NodejsServerSDK/v3.2.0',
1313
'platformIdentifier': process.env['OS'] + ' Node.js/' + process.versions.node
1414
}
1515
};

0 commit comments

Comments
 (0)