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

Commit 4e95ccc

Browse files
author
Ingenico ePayments
committed
Release 2.15.0.
1 parent e38d3fb commit 4e95ccc

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
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.14.0",
3+
"version": "2.15.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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,9 @@
561561
"tokens" : {
562562
"type" : "string"
563563
},
564+
"validateShoppingCart" : {
565+
"type" : "boolean"
566+
},
564567
"variant" : {
565568
"type" : "string"
566569
}
@@ -601,7 +604,6 @@
601604
"$ref" : "#/definitions/OrderLineDetails"
602605
}
603606
},
604-
"required" : [ "amountOfMoney", "invoiceData" ],
605607
"additionalProperties" : false
606608
},
607609
"LineItemInvoiceData" : {
@@ -810,6 +812,9 @@
810812
"type" : "integer",
811813
"maximum" : 9223372036854775807
812814
},
815+
"productCategory" : {
816+
"type" : "string"
817+
},
813818
"productCode" : {
814819
"type" : "string"
815820
},

schemas/payment/CompletePaymentRequest.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,6 @@
386386
"$ref" : "#/definitions/OrderLineDetails"
387387
}
388388
},
389-
"required" : [ "amountOfMoney", "invoiceData" ],
390389
"additionalProperties" : false
391390
},
392391
"LineItemInvoiceData" : {
@@ -517,6 +516,9 @@
517516
"type" : "integer",
518517
"maximum" : 9223372036854775807
519518
},
519+
"productCategory" : {
520+
"type" : "string"
521+
},
520522
"productCode" : {
521523
"type" : "string"
522524
},

schemas/payment/CreatePaymentRequest.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,6 @@
746746
"$ref" : "#/definitions/OrderLineDetails"
747747
}
748748
},
749-
"required" : [ "amountOfMoney", "invoiceData" ],
750749
"additionalProperties" : false
751750
},
752751
"LineItemInvoiceData" : {
@@ -1043,6 +1042,9 @@
10431042
"type" : "integer",
10441043
"maximum" : 9223372036854775807
10451044
},
1045+
"productCategory" : {
1046+
"type" : "string"
1047+
},
10461048
"productCode" : {
10471049
"type" : "string"
10481050
},

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

0 commit comments

Comments
 (0)