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

Commit 7bc45bb

Browse files
IngenicoEPaymentsjenkins
authored andcommitted
Release 3.16.0.
1 parent 24e346b commit 7bc45bb

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-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.15.0",
3+
"version": "3.16.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/payout/CreatePayoutRequest.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
"payoutDate" : {
2424
"type" : "string"
2525
},
26+
"payoutDetails" : {
27+
"$ref" : "#/definitions/PayoutDetails"
28+
},
2629
"payoutText" : {
2730
"type" : "string"
2831
},
@@ -172,6 +175,9 @@
172175
"type" : "integer",
173176
"maximum" : 2147483647
174177
},
178+
"recipient" : {
179+
"$ref" : "#/definitions/PayoutRecipient"
180+
},
175181
"token" : {
176182
"type" : "string"
177183
}
@@ -223,6 +229,36 @@
223229
},
224230
"additionalProperties" : false
225231
},
232+
"PayoutDetails" : {
233+
"type" : "object",
234+
"properties" : {
235+
"amountOfMoney" : {
236+
"$ref" : "#/definitions/AmountOfMoney"
237+
},
238+
"customer" : {
239+
"$ref" : "#/definitions/PayoutCustomer"
240+
},
241+
"references" : {
242+
"$ref" : "#/definitions/PayoutReferences"
243+
}
244+
},
245+
"additionalProperties" : false
246+
},
247+
"PayoutRecipient" : {
248+
"type" : "object",
249+
"properties" : {
250+
"firstName" : {
251+
"type" : "string"
252+
},
253+
"surname" : {
254+
"type" : "string"
255+
},
256+
"surnamePrefix" : {
257+
"type" : "string"
258+
}
259+
},
260+
"additionalProperties" : false
261+
},
226262
"PayoutReferences" : {
227263
"type" : "object",
228264
"properties" : {

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

0 commit comments

Comments
 (0)