connect-sdk-nodejs 4.4.0 → 4.5.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.
@@ -264,7 +264,11 @@ export interface LodgingRoom {
264
264
  typeOfRoom?: string | null;
265
265
  }
266
266
  export interface MicrosoftFraudResults {
267
+ deviceCountryCode?: string | null;
268
+ deviceId?: string | null;
267
269
  fraudScore?: number | null;
270
+ trueIpAddress?: string | null;
271
+ userDeviceType?: string | null;
268
272
  }
269
273
  export interface OrderStatusOutput {
270
274
  errors?: APIError[] | null;
@@ -9,7 +9,7 @@ exports.date = date;
9
9
  function serverMetaInfo(sdkContext) {
10
10
  const info = {
11
11
  sdkCreator: "Ingenico",
12
- sdkIdentifier: "NodejsServerSDK/v4.4.0",
12
+ sdkIdentifier: "NodejsServerSDK/v4.5.0",
13
13
  platformIdentifier: process.env["OS"] + " Node.js/" + process.versions.node
14
14
  };
15
15
  if (sdkContext.getIntegrator() !== null) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "connect-sdk-nodejs",
3
- "version": "4.4.0",
3
+ "version": "4.5.0",
4
4
  "description": "SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API",
5
5
  "homepage": "https://github.com/Ingenico-ePayments/connect-sdk-nodejs#readme",
6
6
  "bugs": {