connect-sdk-nodejs 3.19.0 → 3.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "connect-sdk-nodejs",
3
- "version": "3.19.0",
3
+ "version": "3.20.0",
4
4
  "description": "SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API",
5
5
  "dependencies": {
6
6
  "dateformat": "^4.5.1",
@@ -439,6 +439,9 @@
439
439
  },
440
440
  "issueNumber" : {
441
441
  "type" : "string"
442
+ },
443
+ "partialPin" : {
444
+ "type" : "string"
442
445
  }
443
446
  },
444
447
  "additionalProperties" : false
@@ -161,6 +161,9 @@
161
161
  },
162
162
  "issueNumber" : {
163
163
  "type" : "string"
164
+ },
165
+ "partialPin" : {
166
+ "type" : "string"
164
167
  }
165
168
  },
166
169
  "additionalProperties" : false
@@ -304,6 +304,9 @@
304
304
  },
305
305
  "issueNumber" : {
306
306
  "type" : "string"
307
+ },
308
+ "partialPin" : {
309
+ "type" : "string"
307
310
  }
308
311
  },
309
312
  "additionalProperties" : false
package/utils/headers.js CHANGED
@@ -9,7 +9,7 @@ var serverMetaInfo = function (sdkContext) {
9
9
  key: "X-GCS-ServerMetaInfo",
10
10
  value: {
11
11
  'sdkCreator': 'Ingenico',
12
- 'sdkIdentifier': 'NodejsServerSDK/v3.19.0',
12
+ 'sdkIdentifier': 'NodejsServerSDK/v3.20.0',
13
13
  'platformIdentifier': process.env['OS'] + ' Node.js/' + process.versions.node
14
14
  }
15
15
  };