connect-sdk-nodejs 4.7.0 → 4.9.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.
@@ -614,6 +614,7 @@ export interface PaymentReferences {
614
614
  export interface PaymentStatusOutput extends OrderStatusOutput {
615
615
  isAuthorized?: boolean | null;
616
616
  isRefundable?: boolean | null;
617
+ isRetriable?: boolean | null;
617
618
  threeDSecureStatus?: string | null;
618
619
  }
619
620
  export interface PersonalInformation {
@@ -768,6 +769,7 @@ export interface Seller {
768
769
  geocode?: string | null;
769
770
  id?: string | null;
770
771
  invoiceNumber?: string | null;
772
+ isForeignRetailer?: boolean | null;
771
773
  mcc?: string | null;
772
774
  name?: string | null;
773
775
  phoneNumber?: string | 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.7.0",
12
+ sdkIdentifier: "NodejsServerSDK/v4.9.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.7.0",
3
+ "version": "4.9.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": {
@@ -1604,6 +1604,9 @@
1604
1604
  "invoiceNumber" : {
1605
1605
  "type" : "string"
1606
1606
  },
1607
+ "isForeignRetailer" : {
1608
+ "type" : "boolean"
1609
+ },
1607
1610
  "mcc" : {
1608
1611
  "type" : "string"
1609
1612
  },
@@ -1048,6 +1048,9 @@
1048
1048
  "invoiceNumber" : {
1049
1049
  "type" : "string"
1050
1050
  },
1051
+ "isForeignRetailer" : {
1052
+ "type" : "boolean"
1053
+ },
1051
1054
  "mcc" : {
1052
1055
  "type" : "string"
1053
1056
  },
@@ -1952,6 +1952,9 @@
1952
1952
  "invoiceNumber" : {
1953
1953
  "type" : "string"
1954
1954
  },
1955
+ "isForeignRetailer" : {
1956
+ "type" : "boolean"
1957
+ },
1955
1958
  "mcc" : {
1956
1959
  "type" : "string"
1957
1960
  },