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

Commit 5fb963f

Browse files
Release 4.5.0.
1 parent c96e9bd commit 5fb963f

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "4.4.0",
3+
"version": "4.5.0",
44
"description": "SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API",
55
"homepage": "https://github.com/Ingenico-ePayments/connect-sdk-nodejs#readme",
66
"bugs": {

src/model/domain/definitions/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,11 @@ export interface LodgingRoom {
297297
}
298298

299299
export interface MicrosoftFraudResults {
300+
deviceCountryCode?: string | null;
301+
deviceId?: string | null;
300302
fraudScore?: number | null;
303+
trueIpAddress?: string | null;
304+
userDeviceType?: string | null;
301305
}
302306

303307
export interface OrderStatusOutput {

src/utils/headers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ interface ServerMetaInfo {
1818
export function serverMetaInfo(sdkContext: SdkContext): Header {
1919
const info: ServerMetaInfo = {
2020
sdkCreator: "Ingenico",
21-
sdkIdentifier: "NodejsServerSDK/v4.4.0",
21+
sdkIdentifier: "NodejsServerSDK/v4.5.0",
2222
platformIdentifier: process.env["OS"] + " Node.js/" + process.versions.node
2323
};
2424
if (sdkContext.getIntegrator() !== null) {

0 commit comments

Comments
 (0)