@sap/async-xsjs 2.3.0 → 2.3.1
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.
- package/CHANGELOG.md +13 -0
- package/lib/routes.js +2 -0
- package/npm-shrinkwrap.json +337 -341
- package/package.json +32 -24
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
5
5
|
|
|
6
6
|
The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
7
7
|
|
|
8
|
+
<a name="2.3.1"></a>
|
|
9
|
+
## 2.3.1 - 2026-06-15
|
|
10
|
+
|
|
11
|
+
### Updated
|
|
12
|
+
- Update nodemailer to 8.0.11
|
|
13
|
+
- update yauzl to 3.4.0
|
|
14
|
+
- update @sap/hdbext to 8.1.13
|
|
15
|
+
- pinned @sap/xsodata version to 8.3.0
|
|
16
|
+
- Updated @sap/instance-manager to 5.2.3
|
|
17
|
+
- update lodash version to 4.18.1
|
|
18
|
+
- pinned @sap/jobs-client version to 1.8.5
|
|
19
|
+
- Added node 18 support & tests
|
|
20
|
+
|
|
8
21
|
<a name="2.3.0"></a>
|
|
9
22
|
## 2.3.0 - 2026-06-02
|
|
10
23
|
|
package/lib/routes.js
CHANGED
|
@@ -95,6 +95,8 @@ exports.error = function (err, req, res, next) { // eslint-disable-line no-unuse
|
|
|
95
95
|
if (process.env.NODE_ENV === 'development') {
|
|
96
96
|
title = status + ' ' + err.message;
|
|
97
97
|
stacktrace = err.stack || '';
|
|
98
|
+
} else if (status >= 400 && status < 500 && err.message) {
|
|
99
|
+
title = status + ' ' + err.message;
|
|
98
100
|
} else {
|
|
99
101
|
// do not reveal internal details to the client
|
|
100
102
|
title = status + ' ' + http.STATUS_CODES[status];
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,71 +1,74 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/async-xsjs",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@sap/async-xsjs",
|
|
9
|
-
"version": "2.3.
|
|
9
|
+
"version": "2.3.1",
|
|
10
10
|
"license": "SEE LICENSE IN LICENSE file",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@sap/audit-logging": "^
|
|
13
|
-
"@sap/e2e-trace": "^
|
|
14
|
-
"@sap/hana-client": "2.
|
|
12
|
+
"@sap/audit-logging": "^6.3.0",
|
|
13
|
+
"@sap/e2e-trace": "^5.3.0",
|
|
14
|
+
"@sap/hana-client": "2.26.26",
|
|
15
15
|
"@sap/hdbext": "8.1.13",
|
|
16
|
-
"@sap/instance-manager": "
|
|
17
|
-
"@sap/jobs-client": "
|
|
18
|
-
"@sap/logging": "^
|
|
19
|
-
"@sap/node-jwt": "^1.6.
|
|
20
|
-
"@sap/node-vsi": "^1.4.
|
|
21
|
-
"@sap/textbundle": "^
|
|
22
|
-
"@sap/xsenv": "^
|
|
23
|
-
"@sap/xsodata": "
|
|
24
|
-
"@sap/xss-secure": "^
|
|
16
|
+
"@sap/instance-manager": "5.2.3",
|
|
17
|
+
"@sap/jobs-client": "1.8.5",
|
|
18
|
+
"@sap/logging": "^8.3.0",
|
|
19
|
+
"@sap/node-jwt": "^1.6.26",
|
|
20
|
+
"@sap/node-vsi": "^1.4.30",
|
|
21
|
+
"@sap/textbundle": "^5.3.0",
|
|
22
|
+
"@sap/xsenv": "^5.4.0",
|
|
23
|
+
"@sap/xsodata": "8.3.0",
|
|
24
|
+
"@sap/xss-secure": "^5.2.0",
|
|
25
25
|
"@sap/xssec": "^3.6.0",
|
|
26
26
|
"accept-language": "2.0.16",
|
|
27
|
-
"axios": "^1.
|
|
28
|
-
"big.js": "
|
|
29
|
-
"body-parser": "
|
|
27
|
+
"axios": "^1.12.2",
|
|
28
|
+
"big.js": "6.2.2",
|
|
29
|
+
"body-parser": "1.20.3",
|
|
30
30
|
"callsite": "1.0.0",
|
|
31
31
|
"compression": "1.8.1",
|
|
32
32
|
"content-type": "1.0.5",
|
|
33
|
-
"cookie": "1.
|
|
33
|
+
"cookie": "1.0.2",
|
|
34
34
|
"cookie-parser": "1.4.7",
|
|
35
|
-
"express": "4.
|
|
35
|
+
"express": "4.21.2",
|
|
36
36
|
"lodash": "4.18.1",
|
|
37
37
|
"media-typer": "0.3.0",
|
|
38
|
-
"moment": "2.
|
|
39
|
-
"multiparty": "4.
|
|
40
|
-
"nodemailer": "8.0.
|
|
38
|
+
"moment": "2.29.4",
|
|
39
|
+
"multiparty": "4.2.2",
|
|
40
|
+
"nodemailer": "8.0.11",
|
|
41
41
|
"passport": "0.7.0",
|
|
42
42
|
"passport-strategy": "1.0.0",
|
|
43
|
-
"sax": "1.
|
|
43
|
+
"sax": "1.4.1",
|
|
44
44
|
"statuses": "1.2.1",
|
|
45
45
|
"verror": "1.10.1",
|
|
46
|
-
"yauzl": "3.
|
|
46
|
+
"yauzl": "3.4.0",
|
|
47
47
|
"yazl": "2.4.1"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
|
-
"node": "^
|
|
50
|
+
"node": "^18.x || ^20.x || ^22.x"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"node_modules/@sap/audit-logging": {
|
|
54
|
-
"version": "
|
|
54
|
+
"version": "6.9.0",
|
|
55
55
|
"license": "SEE LICENSE IN LICENSE file",
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@sap/xssec": "4.
|
|
58
|
-
"debug": "4.
|
|
57
|
+
"@sap/xssec": "4.9.0",
|
|
58
|
+
"debug": "4.3.5",
|
|
59
|
+
"lodash": "4.17.21",
|
|
60
|
+
"node-cache": "5.1.2",
|
|
61
|
+
"node-fetch": "2.7.0"
|
|
59
62
|
},
|
|
60
63
|
"engines": {
|
|
61
|
-
"node": "^
|
|
64
|
+
"node": "^18.0.0 || ^20.0.0 || ^22.x"
|
|
62
65
|
}
|
|
63
66
|
},
|
|
64
67
|
"node_modules/@sap/audit-logging/node_modules/@sap/xssec": {
|
|
65
|
-
"version": "4.
|
|
68
|
+
"version": "4.9.0",
|
|
66
69
|
"license": "SAP DEVELOPER LICENSE AGREEMENT",
|
|
67
70
|
"dependencies": {
|
|
68
|
-
"debug": "^4.4
|
|
71
|
+
"debug": "^4.3.4",
|
|
69
72
|
"jwt-decode": "^4"
|
|
70
73
|
},
|
|
71
74
|
"engines": {
|
|
@@ -73,17 +76,17 @@
|
|
|
73
76
|
}
|
|
74
77
|
},
|
|
75
78
|
"node_modules/@sap/e2e-trace": {
|
|
76
|
-
"version": "
|
|
79
|
+
"version": "5.4.0",
|
|
77
80
|
"license": "SEE LICENSE IN LICENSE file",
|
|
78
81
|
"dependencies": {
|
|
79
82
|
"request-stats": "3.0.0"
|
|
80
83
|
},
|
|
81
84
|
"engines": {
|
|
82
|
-
"node": "^
|
|
85
|
+
"node": "^18.0.0 || ^20.0.0 || ^22.0.0"
|
|
83
86
|
}
|
|
84
87
|
},
|
|
85
88
|
"node_modules/@sap/hana-client": {
|
|
86
|
-
"version": "2.
|
|
89
|
+
"version": "2.26.26",
|
|
87
90
|
"hasInstallScript": true,
|
|
88
91
|
"license": "SEE LICENSE IN developer-license-3_2.txt",
|
|
89
92
|
"dependencies": {
|
|
@@ -148,58 +151,133 @@
|
|
|
148
151
|
"ms": "2.0.0"
|
|
149
152
|
}
|
|
150
153
|
},
|
|
151
|
-
"node_modules/@sap/hdbext/node_modules/ms": {
|
|
154
|
+
"node_modules/@sap/hdbext/node_modules/@sap/hana-client/node_modules/ms": {
|
|
152
155
|
"version": "2.0.0",
|
|
153
156
|
"license": "MIT"
|
|
154
157
|
},
|
|
158
|
+
"node_modules/@sap/hdbext/node_modules/debug": {
|
|
159
|
+
"version": "4.4.3",
|
|
160
|
+
"license": "MIT",
|
|
161
|
+
"dependencies": {
|
|
162
|
+
"ms": "^2.1.3"
|
|
163
|
+
},
|
|
164
|
+
"engines": {
|
|
165
|
+
"node": ">=6.0"
|
|
166
|
+
},
|
|
167
|
+
"peerDependenciesMeta": {
|
|
168
|
+
"supports-color": {
|
|
169
|
+
"optional": true
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"node_modules/@sap/hdbext/node_modules/ms": {
|
|
174
|
+
"version": "2.1.3",
|
|
175
|
+
"license": "MIT"
|
|
176
|
+
},
|
|
155
177
|
"node_modules/@sap/instance-manager": {
|
|
156
|
-
"version": "5.2.
|
|
178
|
+
"version": "5.2.3",
|
|
157
179
|
"license": "SEE LICENSE IN LICENSE file",
|
|
158
180
|
"dependencies": {
|
|
159
|
-
"@sap/xssec": "^
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
181
|
+
"@sap/xssec": "^3.6.1",
|
|
182
|
+
"clone": "2.1.2",
|
|
183
|
+
"debug": "4.3.7",
|
|
184
|
+
"lru-cache": "4.1.5",
|
|
185
|
+
"node-fetch": "2.7.0",
|
|
186
|
+
"uuid": "10.0.0"
|
|
163
187
|
},
|
|
164
188
|
"engines": {
|
|
165
|
-
"node": "^
|
|
189
|
+
"node": "^18 || ^20 || ^22.0.0"
|
|
166
190
|
}
|
|
167
191
|
},
|
|
168
|
-
"node_modules/@sap/instance-manager/node_modules
|
|
169
|
-
"version": "4.
|
|
170
|
-
"license": "
|
|
192
|
+
"node_modules/@sap/instance-manager/node_modules/debug": {
|
|
193
|
+
"version": "4.3.7",
|
|
194
|
+
"license": "MIT",
|
|
171
195
|
"dependencies": {
|
|
172
|
-
"
|
|
173
|
-
"jwt-decode": "^4"
|
|
196
|
+
"ms": "^2.1.3"
|
|
174
197
|
},
|
|
175
198
|
"engines": {
|
|
176
|
-
"node": ">=
|
|
199
|
+
"node": ">=6.0"
|
|
200
|
+
},
|
|
201
|
+
"peerDependenciesMeta": {
|
|
202
|
+
"supports-color": {
|
|
203
|
+
"optional": true
|
|
204
|
+
}
|
|
177
205
|
}
|
|
178
206
|
},
|
|
207
|
+
"node_modules/@sap/instance-manager/node_modules/ms": {
|
|
208
|
+
"version": "2.1.3",
|
|
209
|
+
"license": "MIT"
|
|
210
|
+
},
|
|
179
211
|
"node_modules/@sap/jobs-client": {
|
|
180
|
-
"version": "1.
|
|
212
|
+
"version": "1.8.5",
|
|
181
213
|
"license": "SEE LICENSE IN LICENSE",
|
|
182
214
|
"dependencies": {
|
|
183
|
-
"@sap/xsenv": "
|
|
215
|
+
"@sap/xsenv": "4.2.0"
|
|
216
|
+
},
|
|
217
|
+
"engines": {
|
|
218
|
+
"node": "^14 || ^16 || ^18 || ^20"
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"node_modules/@sap/jobs-client/node_modules/@sap/xsenv": {
|
|
222
|
+
"version": "4.2.0",
|
|
223
|
+
"license": "SEE LICENSE IN LICENSE file",
|
|
224
|
+
"dependencies": {
|
|
225
|
+
"debug": "4.3.3",
|
|
226
|
+
"node-cache": "^5.1.0",
|
|
227
|
+
"verror": "1.10.0"
|
|
184
228
|
},
|
|
185
229
|
"engines": {
|
|
186
|
-
"node": "^14 || ^16 || ^18 || ^20
|
|
230
|
+
"node": "^12.0.0 || ^14.0.0 || ^16.0.0 || ^18.0.0 || ^20.0.0"
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
"node_modules/@sap/jobs-client/node_modules/debug": {
|
|
234
|
+
"version": "4.3.3",
|
|
235
|
+
"license": "MIT",
|
|
236
|
+
"dependencies": {
|
|
237
|
+
"ms": "2.1.2"
|
|
238
|
+
},
|
|
239
|
+
"engines": {
|
|
240
|
+
"node": ">=6.0"
|
|
241
|
+
},
|
|
242
|
+
"peerDependenciesMeta": {
|
|
243
|
+
"supports-color": {
|
|
244
|
+
"optional": true
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
"node_modules/@sap/jobs-client/node_modules/verror": {
|
|
249
|
+
"version": "1.10.0",
|
|
250
|
+
"engines": [
|
|
251
|
+
"node >=0.6.0"
|
|
252
|
+
],
|
|
253
|
+
"license": "MIT",
|
|
254
|
+
"dependencies": {
|
|
255
|
+
"assert-plus": "^1.0.0",
|
|
256
|
+
"core-util-is": "1.0.2",
|
|
257
|
+
"extsprintf": "^1.2.0"
|
|
187
258
|
}
|
|
188
259
|
},
|
|
189
260
|
"node_modules/@sap/logging": {
|
|
190
|
-
"version": "
|
|
261
|
+
"version": "8.4.0",
|
|
191
262
|
"license": "SEE LICENSE IN LICENSE file",
|
|
192
263
|
"dependencies": {
|
|
193
|
-
"@sap/e2e-trace": "^
|
|
194
|
-
"lodash": "4.
|
|
264
|
+
"@sap/e2e-trace": "^5.4.0",
|
|
265
|
+
"lodash": "4.17.21",
|
|
195
266
|
"moment": "2.30.1"
|
|
196
267
|
},
|
|
197
268
|
"engines": {
|
|
198
|
-
"node": "^
|
|
269
|
+
"node": "^18.0.0 || ^20.0.0 || ^22.0.0"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"node_modules/@sap/logging/node_modules/moment": {
|
|
273
|
+
"version": "2.30.1",
|
|
274
|
+
"license": "MIT",
|
|
275
|
+
"engines": {
|
|
276
|
+
"node": "*"
|
|
199
277
|
}
|
|
200
278
|
},
|
|
201
279
|
"node_modules/@sap/node-jwt": {
|
|
202
|
-
"version": "1.6.
|
|
280
|
+
"version": "1.6.30",
|
|
203
281
|
"hasInstallScript": true,
|
|
204
282
|
"license": "SAP DEVELOPER LICENSE AGREEMENT",
|
|
205
283
|
"engines": {
|
|
@@ -207,7 +285,7 @@
|
|
|
207
285
|
}
|
|
208
286
|
},
|
|
209
287
|
"node_modules/@sap/node-vsi": {
|
|
210
|
-
"version": "1.4.
|
|
288
|
+
"version": "1.4.34",
|
|
211
289
|
"hasInstallScript": true,
|
|
212
290
|
"license": "SAP DEVELOPER LICENSE AGREEMENT",
|
|
213
291
|
"engines": {
|
|
@@ -215,26 +293,45 @@
|
|
|
215
293
|
}
|
|
216
294
|
},
|
|
217
295
|
"node_modules/@sap/textbundle": {
|
|
218
|
-
"version": "
|
|
296
|
+
"version": "5.4.0",
|
|
219
297
|
"license": "SEE LICENSE IN LICENSE file",
|
|
220
298
|
"engines": {
|
|
221
|
-
"node": "^
|
|
299
|
+
"node": "^18.0.0 || ^20.0.0 || ^22.0.0"
|
|
222
300
|
}
|
|
223
301
|
},
|
|
224
302
|
"node_modules/@sap/xsenv": {
|
|
225
|
-
"version": "6.
|
|
226
|
-
"license": "SEE LICENSE IN LICENSE",
|
|
303
|
+
"version": "5.6.1",
|
|
304
|
+
"license": "SEE LICENSE IN LICENSE file",
|
|
227
305
|
"dependencies": {
|
|
228
|
-
"debug": "4.4.
|
|
306
|
+
"debug": "4.4.0",
|
|
229
307
|
"node-cache": "^5.1.2",
|
|
230
308
|
"verror": "1.10.1"
|
|
231
309
|
},
|
|
232
310
|
"engines": {
|
|
233
|
-
"node": "^
|
|
311
|
+
"node": "^18.0.0 || ^20.0.0 || ^22.0.0"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"node_modules/@sap/xsenv/node_modules/debug": {
|
|
315
|
+
"version": "4.4.0",
|
|
316
|
+
"license": "MIT",
|
|
317
|
+
"dependencies": {
|
|
318
|
+
"ms": "^2.1.3"
|
|
319
|
+
},
|
|
320
|
+
"engines": {
|
|
321
|
+
"node": ">=6.0"
|
|
322
|
+
},
|
|
323
|
+
"peerDependenciesMeta": {
|
|
324
|
+
"supports-color": {
|
|
325
|
+
"optional": true
|
|
326
|
+
}
|
|
234
327
|
}
|
|
235
328
|
},
|
|
329
|
+
"node_modules/@sap/xsenv/node_modules/ms": {
|
|
330
|
+
"version": "2.1.3",
|
|
331
|
+
"license": "MIT"
|
|
332
|
+
},
|
|
236
333
|
"node_modules/@sap/xsodata": {
|
|
237
|
-
"version": "8.3.
|
|
334
|
+
"version": "8.3.0",
|
|
238
335
|
"license": "SEE LICENSE IN developer-license-3.1.txt",
|
|
239
336
|
"dependencies": {
|
|
240
337
|
"@sap/xsenv": "5.6.1",
|
|
@@ -243,7 +340,7 @@
|
|
|
243
340
|
"big.js": "7.0.1",
|
|
244
341
|
"body-parser": "1.20.4",
|
|
245
342
|
"hdb": "0.19.12",
|
|
246
|
-
"lodash": "4.
|
|
343
|
+
"lodash": "4.17.21",
|
|
247
344
|
"negotiator": "1.0.0",
|
|
248
345
|
"rwlock": "5.0.0",
|
|
249
346
|
"xml-writer": "1.7.0"
|
|
@@ -252,16 +349,15 @@
|
|
|
252
349
|
"node": "^18 || ^20 || ^22 || ^24"
|
|
253
350
|
}
|
|
254
351
|
},
|
|
255
|
-
"node_modules/@sap/xsodata/node_modules
|
|
256
|
-
"version": "
|
|
257
|
-
"license": "
|
|
258
|
-
"dependencies": {
|
|
259
|
-
"debug": "4.4.0",
|
|
260
|
-
"node-cache": "^5.1.2",
|
|
261
|
-
"verror": "1.10.1"
|
|
262
|
-
},
|
|
352
|
+
"node_modules/@sap/xsodata/node_modules/big.js": {
|
|
353
|
+
"version": "7.0.1",
|
|
354
|
+
"license": "MIT",
|
|
263
355
|
"engines": {
|
|
264
|
-
"node": "
|
|
356
|
+
"node": "*"
|
|
357
|
+
},
|
|
358
|
+
"funding": {
|
|
359
|
+
"type": "opencollective",
|
|
360
|
+
"url": "https://opencollective.com/bigjs"
|
|
265
361
|
}
|
|
266
362
|
},
|
|
267
363
|
"node_modules/@sap/xsodata/node_modules/body-parser": {
|
|
@@ -286,41 +382,34 @@
|
|
|
286
382
|
"npm": "1.2.8000 || >= 1.4.16"
|
|
287
383
|
}
|
|
288
384
|
},
|
|
289
|
-
"node_modules/@sap/xsodata/node_modules/
|
|
385
|
+
"node_modules/@sap/xsodata/node_modules/debug": {
|
|
290
386
|
"version": "2.6.9",
|
|
291
387
|
"license": "MIT",
|
|
292
388
|
"dependencies": {
|
|
293
389
|
"ms": "2.0.0"
|
|
294
390
|
}
|
|
295
391
|
},
|
|
296
|
-
"node_modules/@sap/xsodata/node_modules/
|
|
297
|
-
"version": "2.0.
|
|
298
|
-
"license": "MIT"
|
|
299
|
-
},
|
|
300
|
-
"node_modules/@sap/xsodata/node_modules/debug": {
|
|
301
|
-
"version": "4.4.0",
|
|
392
|
+
"node_modules/@sap/xsodata/node_modules/http-errors": {
|
|
393
|
+
"version": "2.0.1",
|
|
302
394
|
"license": "MIT",
|
|
303
395
|
"dependencies": {
|
|
304
|
-
"
|
|
396
|
+
"depd": "~2.0.0",
|
|
397
|
+
"inherits": "~2.0.4",
|
|
398
|
+
"setprototypeof": "~1.2.0",
|
|
399
|
+
"statuses": "~2.0.2",
|
|
400
|
+
"toidentifier": "~1.0.1"
|
|
305
401
|
},
|
|
306
402
|
"engines": {
|
|
307
|
-
"node": ">=
|
|
403
|
+
"node": ">= 0.8"
|
|
308
404
|
},
|
|
309
|
-
"
|
|
310
|
-
"
|
|
311
|
-
|
|
312
|
-
}
|
|
405
|
+
"funding": {
|
|
406
|
+
"type": "opencollective",
|
|
407
|
+
"url": "https://opencollective.com/express"
|
|
313
408
|
}
|
|
314
409
|
},
|
|
315
|
-
"node_modules/@sap/xsodata/node_modules/
|
|
316
|
-
"version": "0.
|
|
317
|
-
"license": "MIT"
|
|
318
|
-
"dependencies": {
|
|
319
|
-
"safer-buffer": ">= 2.1.2 < 3"
|
|
320
|
-
},
|
|
321
|
-
"engines": {
|
|
322
|
-
"node": ">=0.10.0"
|
|
323
|
-
}
|
|
410
|
+
"node_modules/@sap/xsodata/node_modules/ms": {
|
|
411
|
+
"version": "2.0.0",
|
|
412
|
+
"license": "MIT"
|
|
324
413
|
},
|
|
325
414
|
"node_modules/@sap/xsodata/node_modules/raw-body": {
|
|
326
415
|
"version": "2.5.3",
|
|
@@ -335,22 +424,18 @@
|
|
|
335
424
|
"node": ">= 0.8"
|
|
336
425
|
}
|
|
337
426
|
},
|
|
338
|
-
"node_modules/@sap/xsodata/node_modules/
|
|
339
|
-
"version": "
|
|
427
|
+
"node_modules/@sap/xsodata/node_modules/statuses": {
|
|
428
|
+
"version": "2.0.2",
|
|
340
429
|
"license": "MIT",
|
|
341
|
-
"dependencies": {
|
|
342
|
-
"media-typer": "0.3.0",
|
|
343
|
-
"mime-types": "~2.1.24"
|
|
344
|
-
},
|
|
345
430
|
"engines": {
|
|
346
|
-
"node": ">= 0.
|
|
431
|
+
"node": ">= 0.8"
|
|
347
432
|
}
|
|
348
433
|
},
|
|
349
434
|
"node_modules/@sap/xss-secure": {
|
|
350
|
-
"version": "
|
|
435
|
+
"version": "5.3.0",
|
|
351
436
|
"license": "SEE LICENSE IN LICENSE file",
|
|
352
437
|
"engines": {
|
|
353
|
-
"node": "^
|
|
438
|
+
"node": "^18.0.0 || ^20.0.0 || ^22.0.0"
|
|
354
439
|
}
|
|
355
440
|
},
|
|
356
441
|
"node_modules/@sap/xssec": {
|
|
@@ -428,7 +513,7 @@
|
|
|
428
513
|
"license": "MIT"
|
|
429
514
|
},
|
|
430
515
|
"node_modules/axios": {
|
|
431
|
-
"version": "1.
|
|
516
|
+
"version": "1.18.0",
|
|
432
517
|
"license": "MIT",
|
|
433
518
|
"dependencies": {
|
|
434
519
|
"follow-redirects": "^1.16.0",
|
|
@@ -445,7 +530,7 @@
|
|
|
445
530
|
}
|
|
446
531
|
},
|
|
447
532
|
"node_modules/big.js": {
|
|
448
|
-
"version": "
|
|
533
|
+
"version": "6.2.2",
|
|
449
534
|
"license": "MIT",
|
|
450
535
|
"engines": {
|
|
451
536
|
"node": "*"
|
|
@@ -456,27 +541,38 @@
|
|
|
456
541
|
}
|
|
457
542
|
},
|
|
458
543
|
"node_modules/body-parser": {
|
|
459
|
-
"version": "
|
|
544
|
+
"version": "1.20.3",
|
|
460
545
|
"license": "MIT",
|
|
461
546
|
"dependencies": {
|
|
462
|
-
"bytes": "
|
|
463
|
-
"content-type": "
|
|
464
|
-
"debug": "
|
|
465
|
-
"
|
|
466
|
-
"
|
|
467
|
-
"
|
|
468
|
-
"
|
|
469
|
-
"
|
|
470
|
-
"
|
|
547
|
+
"bytes": "3.1.2",
|
|
548
|
+
"content-type": "~1.0.5",
|
|
549
|
+
"debug": "2.6.9",
|
|
550
|
+
"depd": "2.0.0",
|
|
551
|
+
"destroy": "1.2.0",
|
|
552
|
+
"http-errors": "2.0.0",
|
|
553
|
+
"iconv-lite": "0.4.24",
|
|
554
|
+
"on-finished": "2.4.1",
|
|
555
|
+
"qs": "6.13.0",
|
|
556
|
+
"raw-body": "2.5.2",
|
|
557
|
+
"type-is": "~1.6.18",
|
|
558
|
+
"unpipe": "1.0.0"
|
|
471
559
|
},
|
|
472
560
|
"engines": {
|
|
473
|
-
"node": ">=
|
|
474
|
-
|
|
475
|
-
"funding": {
|
|
476
|
-
"type": "opencollective",
|
|
477
|
-
"url": "https://opencollective.com/express"
|
|
561
|
+
"node": ">= 0.8",
|
|
562
|
+
"npm": "1.2.8000 || >= 1.4.16"
|
|
478
563
|
}
|
|
479
564
|
},
|
|
565
|
+
"node_modules/body-parser/node_modules/debug": {
|
|
566
|
+
"version": "2.6.9",
|
|
567
|
+
"license": "MIT",
|
|
568
|
+
"dependencies": {
|
|
569
|
+
"ms": "2.0.0"
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
"node_modules/body-parser/node_modules/ms": {
|
|
573
|
+
"version": "2.0.0",
|
|
574
|
+
"license": "MIT"
|
|
575
|
+
},
|
|
480
576
|
"node_modules/buffer-crc32": {
|
|
481
577
|
"version": "0.2.13",
|
|
482
578
|
"license": "MIT",
|
|
@@ -605,14 +701,10 @@
|
|
|
605
701
|
}
|
|
606
702
|
},
|
|
607
703
|
"node_modules/cookie": {
|
|
608
|
-
"version": "1.
|
|
704
|
+
"version": "1.0.2",
|
|
609
705
|
"license": "MIT",
|
|
610
706
|
"engines": {
|
|
611
707
|
"node": ">=18"
|
|
612
|
-
},
|
|
613
|
-
"funding": {
|
|
614
|
-
"type": "opencollective",
|
|
615
|
-
"url": "https://opencollective.com/express"
|
|
616
708
|
}
|
|
617
709
|
},
|
|
618
710
|
"node_modules/cookie-parser": {
|
|
@@ -637,11 +729,15 @@
|
|
|
637
729
|
"version": "1.0.6",
|
|
638
730
|
"license": "MIT"
|
|
639
731
|
},
|
|
732
|
+
"node_modules/core-util-is": {
|
|
733
|
+
"version": "1.0.2",
|
|
734
|
+
"license": "MIT"
|
|
735
|
+
},
|
|
640
736
|
"node_modules/debug": {
|
|
641
|
-
"version": "4.
|
|
737
|
+
"version": "4.3.5",
|
|
642
738
|
"license": "MIT",
|
|
643
739
|
"dependencies": {
|
|
644
|
-
"ms": "
|
|
740
|
+
"ms": "2.1.2"
|
|
645
741
|
},
|
|
646
742
|
"engines": {
|
|
647
743
|
"node": ">=6.0"
|
|
@@ -753,37 +849,37 @@
|
|
|
753
849
|
}
|
|
754
850
|
},
|
|
755
851
|
"node_modules/express": {
|
|
756
|
-
"version": "4.
|
|
852
|
+
"version": "4.21.2",
|
|
757
853
|
"license": "MIT",
|
|
758
854
|
"dependencies": {
|
|
759
855
|
"accepts": "~1.3.8",
|
|
760
856
|
"array-flatten": "1.1.1",
|
|
761
|
-
"body-parser": "
|
|
762
|
-
"content-disposition": "
|
|
857
|
+
"body-parser": "1.20.3",
|
|
858
|
+
"content-disposition": "0.5.4",
|
|
763
859
|
"content-type": "~1.0.4",
|
|
764
|
-
"cookie": "
|
|
765
|
-
"cookie-signature": "
|
|
860
|
+
"cookie": "0.7.1",
|
|
861
|
+
"cookie-signature": "1.0.6",
|
|
766
862
|
"debug": "2.6.9",
|
|
767
863
|
"depd": "2.0.0",
|
|
768
864
|
"encodeurl": "~2.0.0",
|
|
769
865
|
"escape-html": "~1.0.3",
|
|
770
866
|
"etag": "~1.8.1",
|
|
771
|
-
"finalhandler": "
|
|
772
|
-
"fresh": "
|
|
773
|
-
"http-errors": "
|
|
867
|
+
"finalhandler": "1.3.1",
|
|
868
|
+
"fresh": "0.5.2",
|
|
869
|
+
"http-errors": "2.0.0",
|
|
774
870
|
"merge-descriptors": "1.0.3",
|
|
775
871
|
"methods": "~1.1.2",
|
|
776
|
-
"on-finished": "
|
|
872
|
+
"on-finished": "2.4.1",
|
|
777
873
|
"parseurl": "~1.3.3",
|
|
778
|
-
"path-to-regexp": "
|
|
874
|
+
"path-to-regexp": "0.1.12",
|
|
779
875
|
"proxy-addr": "~2.0.7",
|
|
780
|
-
"qs": "
|
|
876
|
+
"qs": "6.13.0",
|
|
781
877
|
"range-parser": "~1.2.1",
|
|
782
878
|
"safe-buffer": "5.2.1",
|
|
783
|
-
"send": "
|
|
784
|
-
"serve-static": "
|
|
879
|
+
"send": "0.19.0",
|
|
880
|
+
"serve-static": "1.16.2",
|
|
785
881
|
"setprototypeof": "1.2.0",
|
|
786
|
-
"statuses": "
|
|
882
|
+
"statuses": "2.0.1",
|
|
787
883
|
"type-is": "~1.6.18",
|
|
788
884
|
"utils-merge": "1.0.1",
|
|
789
885
|
"vary": "~1.1.2"
|
|
@@ -796,43 +892,8 @@
|
|
|
796
892
|
"url": "https://opencollective.com/express"
|
|
797
893
|
}
|
|
798
894
|
},
|
|
799
|
-
"node_modules/express/node_modules/body-parser": {
|
|
800
|
-
"version": "1.20.5",
|
|
801
|
-
"license": "MIT",
|
|
802
|
-
"dependencies": {
|
|
803
|
-
"bytes": "~3.1.2",
|
|
804
|
-
"content-type": "~1.0.5",
|
|
805
|
-
"debug": "2.6.9",
|
|
806
|
-
"depd": "2.0.0",
|
|
807
|
-
"destroy": "~1.2.0",
|
|
808
|
-
"http-errors": "~2.0.1",
|
|
809
|
-
"iconv-lite": "~0.4.24",
|
|
810
|
-
"on-finished": "~2.4.1",
|
|
811
|
-
"qs": "~6.15.1",
|
|
812
|
-
"raw-body": "~2.5.3",
|
|
813
|
-
"type-is": "~1.6.18",
|
|
814
|
-
"unpipe": "~1.0.0"
|
|
815
|
-
},
|
|
816
|
-
"engines": {
|
|
817
|
-
"node": ">= 0.8",
|
|
818
|
-
"npm": "1.2.8000 || >= 1.4.16"
|
|
819
|
-
}
|
|
820
|
-
},
|
|
821
|
-
"node_modules/express/node_modules/body-parser/node_modules/qs": {
|
|
822
|
-
"version": "6.15.2",
|
|
823
|
-
"license": "BSD-3-Clause",
|
|
824
|
-
"dependencies": {
|
|
825
|
-
"side-channel": "^1.1.0"
|
|
826
|
-
},
|
|
827
|
-
"engines": {
|
|
828
|
-
"node": ">=0.6"
|
|
829
|
-
},
|
|
830
|
-
"funding": {
|
|
831
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
832
|
-
}
|
|
833
|
-
},
|
|
834
895
|
"node_modules/express/node_modules/cookie": {
|
|
835
|
-
"version": "0.7.
|
|
896
|
+
"version": "0.7.1",
|
|
836
897
|
"license": "MIT",
|
|
837
898
|
"engines": {
|
|
838
899
|
"node": ">= 0.6"
|
|
@@ -845,51 +906,17 @@
|
|
|
845
906
|
"ms": "2.0.0"
|
|
846
907
|
}
|
|
847
908
|
},
|
|
848
|
-
"node_modules/express/node_modules/iconv-lite": {
|
|
849
|
-
"version": "0.4.24",
|
|
850
|
-
"license": "MIT",
|
|
851
|
-
"dependencies": {
|
|
852
|
-
"safer-buffer": ">= 2.1.2 < 3"
|
|
853
|
-
},
|
|
854
|
-
"engines": {
|
|
855
|
-
"node": ">=0.10.0"
|
|
856
|
-
}
|
|
857
|
-
},
|
|
858
909
|
"node_modules/express/node_modules/ms": {
|
|
859
910
|
"version": "2.0.0",
|
|
860
911
|
"license": "MIT"
|
|
861
912
|
},
|
|
862
|
-
"node_modules/express/node_modules/raw-body": {
|
|
863
|
-
"version": "2.5.3",
|
|
864
|
-
"license": "MIT",
|
|
865
|
-
"dependencies": {
|
|
866
|
-
"bytes": "~3.1.2",
|
|
867
|
-
"http-errors": "~2.0.1",
|
|
868
|
-
"iconv-lite": "~0.4.24",
|
|
869
|
-
"unpipe": "~1.0.0"
|
|
870
|
-
},
|
|
871
|
-
"engines": {
|
|
872
|
-
"node": ">= 0.8"
|
|
873
|
-
}
|
|
874
|
-
},
|
|
875
913
|
"node_modules/express/node_modules/statuses": {
|
|
876
|
-
"version": "2.0.
|
|
914
|
+
"version": "2.0.1",
|
|
877
915
|
"license": "MIT",
|
|
878
916
|
"engines": {
|
|
879
917
|
"node": ">= 0.8"
|
|
880
918
|
}
|
|
881
919
|
},
|
|
882
|
-
"node_modules/express/node_modules/type-is": {
|
|
883
|
-
"version": "1.6.18",
|
|
884
|
-
"license": "MIT",
|
|
885
|
-
"dependencies": {
|
|
886
|
-
"media-typer": "0.3.0",
|
|
887
|
-
"mime-types": "~2.1.24"
|
|
888
|
-
},
|
|
889
|
-
"engines": {
|
|
890
|
-
"node": ">= 0.6"
|
|
891
|
-
}
|
|
892
|
-
},
|
|
893
920
|
"node_modules/extsprintf": {
|
|
894
921
|
"version": "1.4.1",
|
|
895
922
|
"engines": [
|
|
@@ -898,15 +925,15 @@
|
|
|
898
925
|
"license": "MIT"
|
|
899
926
|
},
|
|
900
927
|
"node_modules/finalhandler": {
|
|
901
|
-
"version": "1.3.
|
|
928
|
+
"version": "1.3.1",
|
|
902
929
|
"license": "MIT",
|
|
903
930
|
"dependencies": {
|
|
904
931
|
"debug": "2.6.9",
|
|
905
932
|
"encodeurl": "~2.0.0",
|
|
906
933
|
"escape-html": "~1.0.3",
|
|
907
|
-
"on-finished": "
|
|
934
|
+
"on-finished": "2.4.1",
|
|
908
935
|
"parseurl": "~1.3.3",
|
|
909
|
-
"statuses": "
|
|
936
|
+
"statuses": "2.0.1",
|
|
910
937
|
"unpipe": "~1.0.0"
|
|
911
938
|
},
|
|
912
939
|
"engines": {
|
|
@@ -925,7 +952,7 @@
|
|
|
925
952
|
"license": "MIT"
|
|
926
953
|
},
|
|
927
954
|
"node_modules/finalhandler/node_modules/statuses": {
|
|
928
|
-
"version": "2.0.
|
|
955
|
+
"version": "2.0.1",
|
|
929
956
|
"license": "MIT",
|
|
930
957
|
"engines": {
|
|
931
958
|
"node": ">= 0.8"
|
|
@@ -950,14 +977,14 @@
|
|
|
950
977
|
}
|
|
951
978
|
},
|
|
952
979
|
"node_modules/form-data": {
|
|
953
|
-
"version": "4.0.
|
|
980
|
+
"version": "4.0.6",
|
|
954
981
|
"license": "MIT",
|
|
955
982
|
"dependencies": {
|
|
956
983
|
"asynckit": "^0.4.0",
|
|
957
984
|
"combined-stream": "^1.0.8",
|
|
958
985
|
"es-set-tostringtag": "^2.1.0",
|
|
959
|
-
"hasown": "^2.0.
|
|
960
|
-
"mime-types": "^2.1.
|
|
986
|
+
"hasown": "^2.0.4",
|
|
987
|
+
"mime-types": "^2.1.35"
|
|
961
988
|
},
|
|
962
989
|
"engines": {
|
|
963
990
|
"node": ">= 6"
|
|
@@ -1070,36 +1097,22 @@
|
|
|
1070
1097
|
"node": ">= 0.12"
|
|
1071
1098
|
}
|
|
1072
1099
|
},
|
|
1073
|
-
"node_modules/hdb/node_modules/iconv-lite": {
|
|
1074
|
-
"version": "0.4.24",
|
|
1075
|
-
"license": "MIT",
|
|
1076
|
-
"dependencies": {
|
|
1077
|
-
"safer-buffer": ">= 2.1.2 < 3"
|
|
1078
|
-
},
|
|
1079
|
-
"engines": {
|
|
1080
|
-
"node": ">=0.10.0"
|
|
1081
|
-
}
|
|
1082
|
-
},
|
|
1083
1100
|
"node_modules/http-errors": {
|
|
1084
|
-
"version": "2.0.
|
|
1101
|
+
"version": "2.0.0",
|
|
1085
1102
|
"license": "MIT",
|
|
1086
1103
|
"dependencies": {
|
|
1087
|
-
"depd": "
|
|
1088
|
-
"inherits": "
|
|
1089
|
-
"setprototypeof": "
|
|
1090
|
-
"statuses": "
|
|
1091
|
-
"toidentifier": "
|
|
1104
|
+
"depd": "2.0.0",
|
|
1105
|
+
"inherits": "2.0.4",
|
|
1106
|
+
"setprototypeof": "1.2.0",
|
|
1107
|
+
"statuses": "2.0.1",
|
|
1108
|
+
"toidentifier": "1.0.1"
|
|
1092
1109
|
},
|
|
1093
1110
|
"engines": {
|
|
1094
1111
|
"node": ">= 0.8"
|
|
1095
|
-
},
|
|
1096
|
-
"funding": {
|
|
1097
|
-
"type": "opencollective",
|
|
1098
|
-
"url": "https://opencollective.com/express"
|
|
1099
1112
|
}
|
|
1100
1113
|
},
|
|
1101
1114
|
"node_modules/http-errors/node_modules/statuses": {
|
|
1102
|
-
"version": "2.0.
|
|
1115
|
+
"version": "2.0.1",
|
|
1103
1116
|
"license": "MIT",
|
|
1104
1117
|
"engines": {
|
|
1105
1118
|
"node": ">= 0.8"
|
|
@@ -1124,17 +1137,13 @@
|
|
|
1124
1137
|
}
|
|
1125
1138
|
},
|
|
1126
1139
|
"node_modules/iconv-lite": {
|
|
1127
|
-
"version": "0.
|
|
1140
|
+
"version": "0.4.24",
|
|
1128
1141
|
"license": "MIT",
|
|
1129
1142
|
"dependencies": {
|
|
1130
|
-
"safer-buffer": ">= 2.1.2 < 3
|
|
1143
|
+
"safer-buffer": ">= 2.1.2 < 3"
|
|
1131
1144
|
},
|
|
1132
1145
|
"engines": {
|
|
1133
1146
|
"node": ">=0.10.0"
|
|
1134
|
-
},
|
|
1135
|
-
"funding": {
|
|
1136
|
-
"type": "opencollective",
|
|
1137
|
-
"url": "https://opencollective.com/express"
|
|
1138
1147
|
}
|
|
1139
1148
|
},
|
|
1140
1149
|
"node_modules/inherits": {
|
|
@@ -1225,10 +1234,11 @@
|
|
|
1225
1234
|
"license": "MIT"
|
|
1226
1235
|
},
|
|
1227
1236
|
"node_modules/lru-cache": {
|
|
1228
|
-
"version": "
|
|
1229
|
-
"license": "
|
|
1230
|
-
"
|
|
1231
|
-
"
|
|
1237
|
+
"version": "4.1.5",
|
|
1238
|
+
"license": "ISC",
|
|
1239
|
+
"dependencies": {
|
|
1240
|
+
"pseudomap": "^1.0.2",
|
|
1241
|
+
"yallist": "^2.1.2"
|
|
1232
1242
|
}
|
|
1233
1243
|
},
|
|
1234
1244
|
"node_modules/math-intrinsics": {
|
|
@@ -1270,7 +1280,7 @@
|
|
|
1270
1280
|
}
|
|
1271
1281
|
},
|
|
1272
1282
|
"node_modules/mime-db": {
|
|
1273
|
-
"version": "1.
|
|
1283
|
+
"version": "1.52.0",
|
|
1274
1284
|
"license": "MIT",
|
|
1275
1285
|
"engines": {
|
|
1276
1286
|
"node": ">= 0.6"
|
|
@@ -1286,29 +1296,22 @@
|
|
|
1286
1296
|
"node": ">= 0.6"
|
|
1287
1297
|
}
|
|
1288
1298
|
},
|
|
1289
|
-
"node_modules/mime-types/node_modules/mime-db": {
|
|
1290
|
-
"version": "1.52.0",
|
|
1291
|
-
"license": "MIT",
|
|
1292
|
-
"engines": {
|
|
1293
|
-
"node": ">= 0.6"
|
|
1294
|
-
}
|
|
1295
|
-
},
|
|
1296
1299
|
"node_modules/moment": {
|
|
1297
|
-
"version": "2.
|
|
1300
|
+
"version": "2.29.4",
|
|
1298
1301
|
"license": "MIT",
|
|
1299
1302
|
"engines": {
|
|
1300
1303
|
"node": "*"
|
|
1301
1304
|
}
|
|
1302
1305
|
},
|
|
1303
1306
|
"node_modules/ms": {
|
|
1304
|
-
"version": "2.1.
|
|
1307
|
+
"version": "2.1.2",
|
|
1305
1308
|
"license": "MIT"
|
|
1306
1309
|
},
|
|
1307
1310
|
"node_modules/multiparty": {
|
|
1308
|
-
"version": "4.
|
|
1311
|
+
"version": "4.2.2",
|
|
1309
1312
|
"license": "MIT",
|
|
1310
1313
|
"dependencies": {
|
|
1311
|
-
"http-errors": "
|
|
1314
|
+
"http-errors": "~1.8.0",
|
|
1312
1315
|
"safe-buffer": "5.2.1",
|
|
1313
1316
|
"uid-safe": "2.1.5"
|
|
1314
1317
|
},
|
|
@@ -1316,25 +1319,32 @@
|
|
|
1316
1319
|
"node": ">= 0.10"
|
|
1317
1320
|
}
|
|
1318
1321
|
},
|
|
1322
|
+
"node_modules/multiparty/node_modules/depd": {
|
|
1323
|
+
"version": "1.1.2",
|
|
1324
|
+
"license": "MIT",
|
|
1325
|
+
"engines": {
|
|
1326
|
+
"node": ">= 0.6"
|
|
1327
|
+
}
|
|
1328
|
+
},
|
|
1319
1329
|
"node_modules/multiparty/node_modules/http-errors": {
|
|
1320
|
-
"version": "
|
|
1330
|
+
"version": "1.8.1",
|
|
1321
1331
|
"license": "MIT",
|
|
1322
1332
|
"dependencies": {
|
|
1323
|
-
"depd": "
|
|
1333
|
+
"depd": "~1.1.2",
|
|
1324
1334
|
"inherits": "2.0.4",
|
|
1325
1335
|
"setprototypeof": "1.2.0",
|
|
1326
|
-
"statuses": "
|
|
1336
|
+
"statuses": ">= 1.5.0 < 2",
|
|
1327
1337
|
"toidentifier": "1.0.1"
|
|
1328
1338
|
},
|
|
1329
1339
|
"engines": {
|
|
1330
|
-
"node": ">= 0.
|
|
1340
|
+
"node": ">= 0.6"
|
|
1331
1341
|
}
|
|
1332
1342
|
},
|
|
1333
1343
|
"node_modules/multiparty/node_modules/statuses": {
|
|
1334
|
-
"version": "
|
|
1344
|
+
"version": "1.5.0",
|
|
1335
1345
|
"license": "MIT",
|
|
1336
1346
|
"engines": {
|
|
1337
|
-
"node": ">= 0.
|
|
1347
|
+
"node": ">= 0.6"
|
|
1338
1348
|
}
|
|
1339
1349
|
},
|
|
1340
1350
|
"node_modules/negotiator": {
|
|
@@ -1384,7 +1394,7 @@
|
|
|
1384
1394
|
}
|
|
1385
1395
|
},
|
|
1386
1396
|
"node_modules/nodemailer": {
|
|
1387
|
-
"version": "8.0.
|
|
1397
|
+
"version": "8.0.11",
|
|
1388
1398
|
"license": "MIT-0",
|
|
1389
1399
|
"engines": {
|
|
1390
1400
|
"node": ">=6.0.0"
|
|
@@ -1482,8 +1492,12 @@
|
|
|
1482
1492
|
"node": ">=10"
|
|
1483
1493
|
}
|
|
1484
1494
|
},
|
|
1495
|
+
"node_modules/pseudomap": {
|
|
1496
|
+
"version": "1.0.2",
|
|
1497
|
+
"license": "ISC"
|
|
1498
|
+
},
|
|
1485
1499
|
"node_modules/qs": {
|
|
1486
|
-
"version": "6.
|
|
1500
|
+
"version": "6.15.2",
|
|
1487
1501
|
"license": "BSD-3-Clause",
|
|
1488
1502
|
"dependencies": {
|
|
1489
1503
|
"side-channel": "^1.1.0"
|
|
@@ -1510,16 +1524,16 @@
|
|
|
1510
1524
|
}
|
|
1511
1525
|
},
|
|
1512
1526
|
"node_modules/raw-body": {
|
|
1513
|
-
"version": "
|
|
1527
|
+
"version": "2.5.2",
|
|
1514
1528
|
"license": "MIT",
|
|
1515
1529
|
"dependencies": {
|
|
1516
|
-
"bytes": "
|
|
1517
|
-
"http-errors": "
|
|
1518
|
-
"iconv-lite": "
|
|
1519
|
-
"unpipe": "
|
|
1530
|
+
"bytes": "3.1.2",
|
|
1531
|
+
"http-errors": "2.0.0",
|
|
1532
|
+
"iconv-lite": "0.4.24",
|
|
1533
|
+
"unpipe": "1.0.0"
|
|
1520
1534
|
},
|
|
1521
1535
|
"engines": {
|
|
1522
|
-
"node": ">= 0.
|
|
1536
|
+
"node": ">= 0.8"
|
|
1523
1537
|
}
|
|
1524
1538
|
},
|
|
1525
1539
|
"node_modules/request-stats": {
|
|
@@ -1560,14 +1574,11 @@
|
|
|
1560
1574
|
"license": "MIT"
|
|
1561
1575
|
},
|
|
1562
1576
|
"node_modules/sax": {
|
|
1563
|
-
"version": "1.
|
|
1564
|
-
"license": "
|
|
1565
|
-
"engines": {
|
|
1566
|
-
"node": ">=11.0.0"
|
|
1567
|
-
}
|
|
1577
|
+
"version": "1.4.1",
|
|
1578
|
+
"license": "ISC"
|
|
1568
1579
|
},
|
|
1569
1580
|
"node_modules/semver": {
|
|
1570
|
-
"version": "7.8.
|
|
1581
|
+
"version": "7.8.4",
|
|
1571
1582
|
"license": "ISC",
|
|
1572
1583
|
"bin": {
|
|
1573
1584
|
"semver": "bin/semver.js"
|
|
@@ -1577,22 +1588,22 @@
|
|
|
1577
1588
|
}
|
|
1578
1589
|
},
|
|
1579
1590
|
"node_modules/send": {
|
|
1580
|
-
"version": "0.19.
|
|
1591
|
+
"version": "0.19.0",
|
|
1581
1592
|
"license": "MIT",
|
|
1582
1593
|
"dependencies": {
|
|
1583
1594
|
"debug": "2.6.9",
|
|
1584
1595
|
"depd": "2.0.0",
|
|
1585
1596
|
"destroy": "1.2.0",
|
|
1586
|
-
"encodeurl": "~
|
|
1597
|
+
"encodeurl": "~1.0.2",
|
|
1587
1598
|
"escape-html": "~1.0.3",
|
|
1588
1599
|
"etag": "~1.8.1",
|
|
1589
|
-
"fresh": "
|
|
1590
|
-
"http-errors": "
|
|
1600
|
+
"fresh": "0.5.2",
|
|
1601
|
+
"http-errors": "2.0.0",
|
|
1591
1602
|
"mime": "1.6.0",
|
|
1592
1603
|
"ms": "2.1.3",
|
|
1593
|
-
"on-finished": "
|
|
1604
|
+
"on-finished": "2.4.1",
|
|
1594
1605
|
"range-parser": "~1.2.1",
|
|
1595
|
-
"statuses": "
|
|
1606
|
+
"statuses": "2.0.1"
|
|
1596
1607
|
},
|
|
1597
1608
|
"engines": {
|
|
1598
1609
|
"node": ">= 0.8.0"
|
|
@@ -1609,21 +1620,32 @@
|
|
|
1609
1620
|
"version": "2.0.0",
|
|
1610
1621
|
"license": "MIT"
|
|
1611
1622
|
},
|
|
1623
|
+
"node_modules/send/node_modules/encodeurl": {
|
|
1624
|
+
"version": "1.0.2",
|
|
1625
|
+
"license": "MIT",
|
|
1626
|
+
"engines": {
|
|
1627
|
+
"node": ">= 0.8"
|
|
1628
|
+
}
|
|
1629
|
+
},
|
|
1630
|
+
"node_modules/send/node_modules/ms": {
|
|
1631
|
+
"version": "2.1.3",
|
|
1632
|
+
"license": "MIT"
|
|
1633
|
+
},
|
|
1612
1634
|
"node_modules/send/node_modules/statuses": {
|
|
1613
|
-
"version": "2.0.
|
|
1635
|
+
"version": "2.0.1",
|
|
1614
1636
|
"license": "MIT",
|
|
1615
1637
|
"engines": {
|
|
1616
1638
|
"node": ">= 0.8"
|
|
1617
1639
|
}
|
|
1618
1640
|
},
|
|
1619
1641
|
"node_modules/serve-static": {
|
|
1620
|
-
"version": "1.16.
|
|
1642
|
+
"version": "1.16.2",
|
|
1621
1643
|
"license": "MIT",
|
|
1622
1644
|
"dependencies": {
|
|
1623
1645
|
"encodeurl": "~2.0.0",
|
|
1624
1646
|
"escape-html": "~1.0.3",
|
|
1625
1647
|
"parseurl": "~1.3.3",
|
|
1626
|
-
"send": "
|
|
1648
|
+
"send": "0.19.0"
|
|
1627
1649
|
},
|
|
1628
1650
|
"engines": {
|
|
1629
1651
|
"node": ">= 0.8.0"
|
|
@@ -1634,12 +1656,12 @@
|
|
|
1634
1656
|
"license": "ISC"
|
|
1635
1657
|
},
|
|
1636
1658
|
"node_modules/side-channel": {
|
|
1637
|
-
"version": "1.1.
|
|
1659
|
+
"version": "1.1.1",
|
|
1638
1660
|
"license": "MIT",
|
|
1639
1661
|
"dependencies": {
|
|
1640
1662
|
"es-errors": "^1.3.0",
|
|
1641
|
-
"object-inspect": "^1.13.
|
|
1642
|
-
"side-channel-list": "^1.0.
|
|
1663
|
+
"object-inspect": "^1.13.4",
|
|
1664
|
+
"side-channel-list": "^1.0.1",
|
|
1643
1665
|
"side-channel-map": "^1.0.1",
|
|
1644
1666
|
"side-channel-weakmap": "^1.0.2"
|
|
1645
1667
|
},
|
|
@@ -1713,51 +1735,14 @@
|
|
|
1713
1735
|
"license": "MIT"
|
|
1714
1736
|
},
|
|
1715
1737
|
"node_modules/type-is": {
|
|
1716
|
-
"version": "
|
|
1717
|
-
"license": "MIT",
|
|
1718
|
-
"dependencies": {
|
|
1719
|
-
"content-type": "^2.0.0",
|
|
1720
|
-
"media-typer": "^1.1.0",
|
|
1721
|
-
"mime-types": "^3.0.0"
|
|
1722
|
-
},
|
|
1723
|
-
"engines": {
|
|
1724
|
-
"node": ">= 18"
|
|
1725
|
-
},
|
|
1726
|
-
"funding": {
|
|
1727
|
-
"type": "opencollective",
|
|
1728
|
-
"url": "https://opencollective.com/express"
|
|
1729
|
-
}
|
|
1730
|
-
},
|
|
1731
|
-
"node_modules/type-is/node_modules/content-type": {
|
|
1732
|
-
"version": "2.0.0",
|
|
1733
|
-
"license": "MIT",
|
|
1734
|
-
"engines": {
|
|
1735
|
-
"node": ">=18"
|
|
1736
|
-
},
|
|
1737
|
-
"funding": {
|
|
1738
|
-
"type": "opencollective",
|
|
1739
|
-
"url": "https://opencollective.com/express"
|
|
1740
|
-
}
|
|
1741
|
-
},
|
|
1742
|
-
"node_modules/type-is/node_modules/media-typer": {
|
|
1743
|
-
"version": "1.1.0",
|
|
1744
|
-
"license": "MIT",
|
|
1745
|
-
"engines": {
|
|
1746
|
-
"node": ">= 0.8"
|
|
1747
|
-
}
|
|
1748
|
-
},
|
|
1749
|
-
"node_modules/type-is/node_modules/mime-types": {
|
|
1750
|
-
"version": "3.0.2",
|
|
1738
|
+
"version": "1.6.18",
|
|
1751
1739
|
"license": "MIT",
|
|
1752
1740
|
"dependencies": {
|
|
1753
|
-
"
|
|
1741
|
+
"media-typer": "0.3.0",
|
|
1742
|
+
"mime-types": "~2.1.24"
|
|
1754
1743
|
},
|
|
1755
1744
|
"engines": {
|
|
1756
|
-
"node": ">=
|
|
1757
|
-
},
|
|
1758
|
-
"funding": {
|
|
1759
|
-
"type": "opencollective",
|
|
1760
|
-
"url": "https://opencollective.com/express"
|
|
1745
|
+
"node": ">= 0.6"
|
|
1761
1746
|
}
|
|
1762
1747
|
},
|
|
1763
1748
|
"node_modules/uid-safe": {
|
|
@@ -1784,6 +1769,17 @@
|
|
|
1784
1769
|
"node": ">= 0.4.0"
|
|
1785
1770
|
}
|
|
1786
1771
|
},
|
|
1772
|
+
"node_modules/uuid": {
|
|
1773
|
+
"version": "11.1.1",
|
|
1774
|
+
"funding": [
|
|
1775
|
+
"https://github.com/sponsors/broofa",
|
|
1776
|
+
"https://github.com/sponsors/ctavan"
|
|
1777
|
+
],
|
|
1778
|
+
"license": "MIT",
|
|
1779
|
+
"bin": {
|
|
1780
|
+
"uuid": "dist/esm/bin/uuid"
|
|
1781
|
+
}
|
|
1782
|
+
},
|
|
1787
1783
|
"node_modules/vary": {
|
|
1788
1784
|
"version": "1.1.2",
|
|
1789
1785
|
"license": "MIT",
|
|
@@ -1803,10 +1799,6 @@
|
|
|
1803
1799
|
"node": ">=0.6.0"
|
|
1804
1800
|
}
|
|
1805
1801
|
},
|
|
1806
|
-
"node_modules/verror/node_modules/core-util-is": {
|
|
1807
|
-
"version": "1.0.2",
|
|
1808
|
-
"license": "MIT"
|
|
1809
|
-
},
|
|
1810
1802
|
"node_modules/webidl-conversions": {
|
|
1811
1803
|
"version": "3.0.1",
|
|
1812
1804
|
"license": "BSD-2-Clause"
|
|
@@ -1830,8 +1822,12 @@
|
|
|
1830
1822
|
"node": ">=0.4.0"
|
|
1831
1823
|
}
|
|
1832
1824
|
},
|
|
1825
|
+
"node_modules/yallist": {
|
|
1826
|
+
"version": "2.1.2",
|
|
1827
|
+
"license": "ISC"
|
|
1828
|
+
},
|
|
1833
1829
|
"node_modules/yauzl": {
|
|
1834
|
-
"version": "3.
|
|
1830
|
+
"version": "3.4.0",
|
|
1835
1831
|
"license": "MIT",
|
|
1836
1832
|
"dependencies": {
|
|
1837
1833
|
"pend": "~1.2.0"
|
package/package.json
CHANGED
|
@@ -1,52 +1,60 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/async-xsjs",
|
|
3
3
|
"description": "Compatibility layer to run XS Classic applications on XS Advanced",
|
|
4
|
-
"version": "2.3.
|
|
4
|
+
"version": "2.3.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "git@github.wdf.sap.corp:xs2/async-xsjs.git"
|
|
7
7
|
},
|
|
8
8
|
"license": "SEE LICENSE IN LICENSE file",
|
|
9
9
|
"main": "./lib",
|
|
10
|
+
"overrides": {
|
|
11
|
+
"lodash": "4.18.1",
|
|
12
|
+
"qs": "6.15.2",
|
|
13
|
+
"path-to-regexp": "0.1.13",
|
|
14
|
+
"@sap/instance-manager": {
|
|
15
|
+
"uuid": "11.1.1"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
10
18
|
"dependencies": {
|
|
11
|
-
"@sap/audit-logging": "^
|
|
12
|
-
"@sap/e2e-trace": "^
|
|
13
|
-
"@sap/hana-client": "2.
|
|
19
|
+
"@sap/audit-logging": "^6.3.0",
|
|
20
|
+
"@sap/e2e-trace": "^5.3.0",
|
|
21
|
+
"@sap/hana-client": "2.26.26",
|
|
14
22
|
"@sap/hdbext": "8.1.13",
|
|
15
|
-
"@sap/instance-manager": "
|
|
16
|
-
"@sap/jobs-client": "
|
|
17
|
-
"@sap/logging": "^
|
|
18
|
-
"@sap/node-jwt": "^1.6.
|
|
19
|
-
"@sap/node-vsi": "^1.4.
|
|
20
|
-
"@sap/textbundle": "^
|
|
21
|
-
"@sap/xsenv": "^
|
|
22
|
-
"@sap/xsodata": "
|
|
23
|
-
"@sap/xss-secure": "^
|
|
23
|
+
"@sap/instance-manager": "5.2.3",
|
|
24
|
+
"@sap/jobs-client": "1.8.5",
|
|
25
|
+
"@sap/logging": "^8.3.0",
|
|
26
|
+
"@sap/node-jwt": "^1.6.26",
|
|
27
|
+
"@sap/node-vsi": "^1.4.30",
|
|
28
|
+
"@sap/textbundle": "^5.3.0",
|
|
29
|
+
"@sap/xsenv": "^5.4.0",
|
|
30
|
+
"@sap/xsodata": "8.3.0",
|
|
31
|
+
"@sap/xss-secure": "^5.2.0",
|
|
24
32
|
"@sap/xssec": "^3.6.0",
|
|
25
33
|
"accept-language": "2.0.16",
|
|
26
|
-
"big.js": "
|
|
27
|
-
"body-parser": "
|
|
34
|
+
"big.js": "6.2.2",
|
|
35
|
+
"body-parser": "1.20.3",
|
|
28
36
|
"callsite": "1.0.0",
|
|
29
37
|
"compression": "1.8.1",
|
|
30
38
|
"content-type": "1.0.5",
|
|
31
|
-
"cookie": "1.
|
|
39
|
+
"cookie": "1.0.2",
|
|
32
40
|
"cookie-parser": "1.4.7",
|
|
33
|
-
"express": "4.
|
|
41
|
+
"express": "4.21.2",
|
|
34
42
|
"lodash": "4.18.1",
|
|
35
43
|
"media-typer": "0.3.0",
|
|
36
|
-
"moment": "2.
|
|
37
|
-
"multiparty": "4.
|
|
38
|
-
"nodemailer": "8.0.
|
|
44
|
+
"moment": "2.29.4",
|
|
45
|
+
"multiparty": "4.2.2",
|
|
46
|
+
"nodemailer": "8.0.11",
|
|
39
47
|
"passport": "0.7.0",
|
|
40
48
|
"passport-strategy": "1.0.0",
|
|
41
|
-
"sax": "1.
|
|
49
|
+
"sax": "1.4.1",
|
|
42
50
|
"statuses": "1.2.1",
|
|
43
51
|
"verror": "1.10.1",
|
|
44
|
-
"yauzl": "3.
|
|
52
|
+
"yauzl": "3.4.0",
|
|
45
53
|
"yazl": "2.4.1",
|
|
46
|
-
"axios": "^1.
|
|
54
|
+
"axios": "^1.12.2"
|
|
47
55
|
},
|
|
48
56
|
"engines": {
|
|
49
|
-
"node": "^
|
|
57
|
+
"node": "^18.x || ^20.x || ^22.x"
|
|
50
58
|
},
|
|
51
59
|
"files": [
|
|
52
60
|
"lib",
|