connect-sdk-nodejs 4.10.0 → 4.12.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.
@@ -35,6 +35,7 @@ export interface AirlineData {
35
35
  issueDate?: string | null;
36
36
  merchantCustomerId?: string | null;
37
37
  name?: string | null;
38
+ numberInParty?: number | null;
38
39
  passengerName?: string | null;
39
40
  passengers?: AirlinePassenger[] | null;
40
41
  placeOfIssue?: string | null;
@@ -2,6 +2,7 @@ import { AbstractPaymentMethodSpecificInput, KeyValuePair, PaymentProductFilter
2
2
  import { GPayThreeDSecure, Payment, PaymentCreationReferences } from "../../payment/definitions";
3
3
  export interface CreatedPaymentOutput {
4
4
  displayedData?: DisplayedData | null;
5
+ isCheckedRememberMe?: boolean | null;
5
6
  payment?: Payment | null;
6
7
  paymentCreationReferences?: PaymentCreationReferences | null;
7
8
  /**
@@ -541,6 +541,7 @@ export interface PaymentAccountOnFile {
541
541
  numberOfCardOnFileCreationAttemptsLast24Hours?: number | null;
542
542
  }
543
543
  export interface PaymentCreationOutput extends PaymentCreationReferences {
544
+ isCheckedRememberMe?: boolean | null;
544
545
  isNewToken?: boolean | null;
545
546
  token?: string | null;
546
547
  tokenizationSucceeded?: boolean | null;
@@ -609,6 +610,7 @@ export interface PaymentReferences {
609
610
  merchantReference?: string | null;
610
611
  paymentReference?: string | null;
611
612
  providerId?: string | null;
613
+ providerMerchantId?: string | null;
612
614
  providerReference?: string | null;
613
615
  referenceOrigPayment?: string | null;
614
616
  }
@@ -616,6 +618,7 @@ export interface PaymentStatusOutput extends OrderStatusOutput {
616
618
  isAuthorized?: boolean | null;
617
619
  isRefundable?: boolean | null;
618
620
  isRetriable?: boolean | null;
621
+ providerRawOutput?: KeyValuePair[] | null;
619
622
  threeDSecureStatus?: string | null;
620
623
  }
621
624
  export interface PersonalInformation {
@@ -747,6 +750,7 @@ export interface RefundPaymentProduct840SpecificOutput {
747
750
  customerAccount?: RefundPaymentProduct840CustomerAccount | null;
748
751
  }
749
752
  export interface SchemeTokenData {
753
+ cardholderName?: string | null;
750
754
  cryptogram?: string | null;
751
755
  eci?: string | null;
752
756
  networkToken?: 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.10.0",
12
+ sdkIdentifier: "NodejsServerSDK/v4.12.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.10.0",
3
+ "version": "4.12.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": {
@@ -176,6 +176,10 @@
176
176
  "name" : {
177
177
  "type" : "string"
178
178
  },
179
+ "numberInParty" : {
180
+ "type" : "integer",
181
+ "maximum" : 2147483647
182
+ },
179
183
  "passengerName" : {
180
184
  "type" : "string"
181
185
  },
@@ -74,6 +74,10 @@
74
74
  "name" : {
75
75
  "type" : "string"
76
76
  },
77
+ "numberInParty" : {
78
+ "type" : "integer",
79
+ "maximum" : 2147483647
80
+ },
77
81
  "passengerName" : {
78
82
  "type" : "string"
79
83
  },
@@ -152,6 +152,10 @@
152
152
  "name" : {
153
153
  "type" : "string"
154
154
  },
155
+ "numberInParty" : {
156
+ "type" : "integer",
157
+ "maximum" : 2147483647
158
+ },
155
159
  "passengerName" : {
156
160
  "type" : "string"
157
161
  },
@@ -182,6 +182,10 @@
182
182
  "name" : {
183
183
  "type" : "string"
184
184
  },
185
+ "numberInParty" : {
186
+ "type" : "integer",
187
+ "maximum" : 2147483647
188
+ },
185
189
  "passengerName" : {
186
190
  "type" : "string"
187
191
  },
@@ -1904,6 +1908,9 @@
1904
1908
  "SchemeTokenData" : {
1905
1909
  "type" : "object",
1906
1910
  "properties" : {
1911
+ "cardholderName" : {
1912
+ "type" : "string"
1913
+ },
1907
1914
  "cryptogram" : {
1908
1915
  "type" : "string"
1909
1916
  },
@@ -143,6 +143,10 @@
143
143
  "name" : {
144
144
  "type" : "string"
145
145
  },
146
+ "numberInParty" : {
147
+ "type" : "integer",
148
+ "maximum" : 2147483647
149
+ },
146
150
  "passengerName" : {
147
151
  "type" : "string"
148
152
  },
@@ -140,6 +140,10 @@
140
140
  "name" : {
141
141
  "type" : "string"
142
142
  },
143
+ "numberInParty" : {
144
+ "type" : "integer",
145
+ "maximum" : 2147483647
146
+ },
143
147
  "passengerName" : {
144
148
  "type" : "string"
145
149
  },