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

Commit c96e9bd

Browse files
Release 4.4.0.
1 parent fa9a616 commit c96e9bd

File tree

8 files changed

+27
-6
lines changed

8 files changed

+27
-6
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
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.3.0",
3+
"version": "4.4.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": {

schemas/hostedcheckout/CreateHostedCheckoutRequest.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1577,6 +1577,9 @@
15771577
"description" : {
15781578
"type" : "string"
15791579
},
1580+
"externalReferenceId" : {
1581+
"type" : "string"
1582+
},
15801583
"geocode" : {
15811584
"type" : "string"
15821585
},
@@ -1592,6 +1595,9 @@
15921595
"name" : {
15931596
"type" : "string"
15941597
},
1598+
"phoneNumber" : {
1599+
"type" : "string"
1600+
},
15951601
"type" : {
15961602
"type" : "string"
15971603
}

schemas/payment/CompletePaymentRequest.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,6 +1033,9 @@
10331033
"description" : {
10341034
"type" : "string"
10351035
},
1036+
"externalReferenceId" : {
1037+
"type" : "string"
1038+
},
10361039
"geocode" : {
10371040
"type" : "string"
10381041
},
@@ -1048,6 +1051,9 @@
10481051
"name" : {
10491052
"type" : "string"
10501053
},
1054+
"phoneNumber" : {
1055+
"type" : "string"
1056+
},
10511057
"type" : {
10521058
"type" : "string"
10531059
}

schemas/payment/CreatePaymentRequest.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1934,6 +1934,9 @@
19341934
"description" : {
19351935
"type" : "string"
19361936
},
1937+
"externalReferenceId" : {
1938+
"type" : "string"
1939+
},
19371940
"geocode" : {
19381941
"type" : "string"
19391942
},
@@ -1949,6 +1952,9 @@
19491952
"name" : {
19501953
"type" : "string"
19511954
},
1955+
"phoneNumber" : {
1956+
"type" : "string"
1957+
},
19521958
"type" : {
19531959
"type" : "string"
19541960
}

src/model/domain/payment/definitions/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -913,11 +913,13 @@ export interface Seller {
913913
address?: Address | null;
914914
channelCode?: string | null;
915915
description?: string | null;
916+
externalReferenceId?: string | null;
916917
geocode?: string | null;
917918
id?: string | null;
918919
invoiceNumber?: string | null;
919920
mcc?: string | null;
920921
name?: string | null;
922+
phoneNumber?: string | null;
921923
type?: string | null;
922924
}
923925

src/model/domain/product/definitions/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ export interface PaymentProduct {
9090
paymentProduct320SpecificData?: PaymentProduct320SpecificData | null;
9191
paymentProduct863SpecificData?: PaymentProduct863SpecificData | null;
9292
paymentProductGroup?: string | null;
93+
supportsMandates?: boolean | null;
9394
usesRedirectionTo3rdParty?: boolean | null;
9495
}
9596

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.3.0",
21+
sdkIdentifier: "NodejsServerSDK/v4.4.0",
2222
platformIdentifier: process.env["OS"] + " Node.js/" + process.versions.node
2323
};
2424
if (sdkContext.getIntegrator() !== null) {

0 commit comments

Comments
 (0)