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

Commit a2b2006

Browse files
author
Ingenico ePayments
committed
Release 2.21.0.
1 parent 39cb397 commit a2b2006

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
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.20.0",
3+
"version": "2.21.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/payout/CreatePayoutRequest.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,12 @@
175175
"paymentProductId" : {
176176
"type" : "integer",
177177
"maximum" : 2147483647
178+
},
179+
"token" : {
180+
"type" : "string"
178181
}
179182
},
180-
"required" : [ "card", "paymentProductId" ],
183+
"required" : [ "paymentProductId" ],
181184
"additionalProperties" : false
182185
},
183186
"CompanyInformation" : {

schemas/refund/RefundRequest.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@
9494
"countryCode" : {
9595
"type" : "string"
9696
},
97+
"patronymicName" : {
98+
"type" : "string"
99+
},
97100
"swiftCode" : {
98101
"type" : "string"
99102
}
@@ -177,6 +180,9 @@
177180
},
178181
"contactDetails" : {
179182
"$ref" : "#/definitions/ContactDetailsBase"
183+
},
184+
"fiscalNumber" : {
185+
"type" : "string"
180186
}
181187
},
182188
"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/v2.20.0',
12+
'sdkIdentifier': 'NodejsServerSDK/v2.21.0',
1313
'platformIdentifier': process.env['OS'] + ' Node.js/' + process.versions.node
1414
}
1515
};

0 commit comments

Comments
 (0)