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

Commit f86d403

Browse files
author
Ingenico ePayments
committed
Release 2.17.0.
1 parent 6c4be22 commit f86d403

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-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": "2.16.0",
3+
"version": "2.17.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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,12 @@
343343
},
344344
"transactionChannel" : {
345345
"type" : "string"
346+
},
347+
"unscheduledCardOnFileIndicator" : {
348+
"type" : "string"
349+
},
350+
"unscheduledCardOnFileRequestor" : {
351+
"type" : "string"
346352
}
347353
},
348354
"additionalProperties" : false
@@ -404,6 +410,9 @@
404410
},
405411
"signatureType" : {
406412
"type" : "string"
413+
},
414+
"uniqueMandateReference" : {
415+
"type" : "string"
407416
}
408417
},
409418
"required" : [ "customerReference", "recurrenceType", "signatureType" ],

schemas/mandates/CreateMandateRequest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
},
2323
"signatureType" : {
2424
"type" : "string"
25+
},
26+
"uniqueMandateReference" : {
27+
"type" : "string"
2528
}
2629
},
2730
"required" : [ "customerReference", "recurrenceType", "signatureType" ],

schemas/payment/CreatePaymentRequest.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,12 @@
413413
},
414414
"transactionChannel" : {
415415
"type" : "string"
416+
},
417+
"unscheduledCardOnFileIndicator" : {
418+
"type" : "string"
419+
},
420+
"unscheduledCardOnFileRequestor" : {
421+
"type" : "string"
416422
}
417423
},
418424
"additionalProperties" : false
@@ -501,6 +507,9 @@
501507
},
502508
"signatureType" : {
503509
"type" : "string"
510+
},
511+
"uniqueMandateReference" : {
512+
"type" : "string"
504513
}
505514
},
506515
"required" : [ "customerReference", "recurrenceType", "signatureType" ],

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

0 commit comments

Comments
 (0)