connect-sdk-nodejs 4.10.0 → 4.11.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;
@@ -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.11.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.11.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
  },
@@ -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
  },