This repository was archived by the owner on Mar 19, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +38
-2
lines changed
Expand file tree Collapse file tree 3 files changed +38
-2
lines changed Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 2323 "payoutDate" : {
2424 "type" : " string"
2525 },
26+ "payoutDetails" : {
27+ "$ref" : " #/definitions/PayoutDetails"
28+ },
2629 "payoutText" : {
2730 "type" : " string"
2831 },
172175 "type" : " integer" ,
173176 "maximum" : 2147483647
174177 },
178+ "recipient" : {
179+ "$ref" : " #/definitions/PayoutRecipient"
180+ },
175181 "token" : {
176182 "type" : " string"
177183 }
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" : {
Original file line number Diff line number Diff 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 } ;
You can’t perform that action at this time.
0 commit comments