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

Commit 28aa46c

Browse files
Release 4.9.0.
1 parent 48625b2 commit 28aa46c

File tree

7 files changed

+13
-3
lines changed

7 files changed

+13
-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.8.0",
3+
"version": "4.9.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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1604,6 +1604,9 @@
16041604
"invoiceNumber" : {
16051605
"type" : "string"
16061606
},
1607+
"isForeignRetailer" : {
1608+
"type" : "boolean"
1609+
},
16071610
"mcc" : {
16081611
"type" : "string"
16091612
},

schemas/payment/CompletePaymentRequest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,6 +1048,9 @@
10481048
"invoiceNumber" : {
10491049
"type" : "string"
10501050
},
1051+
"isForeignRetailer" : {
1052+
"type" : "boolean"
1053+
},
10511054
"mcc" : {
10521055
"type" : "string"
10531056
},

schemas/payment/CreatePaymentRequest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1952,6 +1952,9 @@
19521952
"invoiceNumber" : {
19531953
"type" : "string"
19541954
},
1955+
"isForeignRetailer" : {
1956+
"type" : "boolean"
1957+
},
19551958
"mcc" : {
19561959
"type" : "string"
19571960
},

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -928,6 +928,7 @@ export interface Seller {
928928
geocode?: string | null;
929929
id?: string | null;
930930
invoiceNumber?: string | null;
931+
isForeignRetailer?: boolean | null;
931932
mcc?: string | null;
932933
name?: string | null;
933934
phoneNumber?: string | null;

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

0 commit comments

Comments
 (0)