heimdall-api-platform 1.0.42 → 1.0.44
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/dist/lib/clients/http-client.js +1 -1
- package/dist/lib/commons-cache.js +1 -1
- package/dist/lib/commons-const.js +1 -1
- package/dist/lib/commons-elasticsearch.js +1 -1
- package/dist/lib/commons-errors.js +1 -1
- package/dist/lib/commons-opensearch.js +1 -1
- package/dist/lib/commons-splunk.js +1 -1
- package/dist/lib/commons-util.js +1 -1
- package/dist/lib/default-routes-docs.js +1 -1
- package/dist/lib/default-routes-pos.js +1 -1
- package/dist/lib/default-routes-pre.js +1 -1
- package/dist/lib/environment.js +1 -1
- package/dist/lib/factory/api-gateway.js +1 -1
- package/dist/lib/factory/client-factory.js +1 -1
- package/dist/lib/factory/function-factory.js +1 -1
- package/dist/lib/factory/operation-flow-factory.js +1 -1
- package/dist/lib/factory/server-factory.js +1 -1
- package/dist/lib/factory/transformation-function-factory.js +1 -1
- package/dist/lib/handle-route.js +1 -1
- package/dist/lib/index.js +1 -1
- package/dist/lib/jwt-util.js +1 -1
- package/dist/lib/license/license-service.js +1 -1
- package/dist/lib/models/base-context.js +1 -1
- package/dist/lib/models/elastic-index-data.js +1 -1
- package/dist/lib/models/flow-context.js +1 -1
- package/dist/lib/models/flow-indexed.js +1 -1
- package/dist/lib/models/operation-function-indexed.js +1 -1
- package/dist/lib/models/operation-function-transformation-indexed.js +1 -1
- package/dist/lib/models/operation-http-indexed.js +1 -1
- package/dist/lib/models/operation-mock-indexed.js +1 -1
- package/dist/lib/models/route-context.js +1 -1
- package/dist/lib/models/security-route.js +1 -1
- package/dist/lib/models/service-context.js +1 -1
- package/dist/lib/models/service-group.js +1 -1
- package/dist/lib/models/service-route.js +1 -1
- package/dist/lib/models/splunk-data.js +1 -1
- package/dist/lib/operations/abstract-operation.js +1 -1
- package/dist/lib/operations/function.js +1 -1
- package/dist/lib/operations/http.js +1 -1
- package/dist/lib/operations/mock.js +1 -1
- package/dist/lib/operations/monitor-check.js +1 -1
- package/dist/lib/orchestration-flow.js +1 -1
- package/dist/lib/router.js +1 -1
- package/dist/lib/security-validation.js +1 -1
- package/dist/lib/services/server.js +1 -1
- package/dist/lib/services/template-monitorcheck-route.js +1 -1
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heimdall-api-platform",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.44",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/lib/index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -9,8 +9,9 @@
|
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
11
|
"prestart": "npm install",
|
|
12
|
-
"test": "
|
|
13
|
-
"test:watch": "
|
|
12
|
+
"test": "jest",
|
|
13
|
+
"test:watch": "jest --watch",
|
|
14
|
+
"test:coverage": "jest --coverage",
|
|
14
15
|
"clean": "rimraf dist",
|
|
15
16
|
"start": "node server.js",
|
|
16
17
|
"build": "npm run clean && node obfuscate-and-prepare.js",
|
|
@@ -41,20 +42,20 @@
|
|
|
41
42
|
"cookie-parser": "^1.4.6",
|
|
42
43
|
"cors": "^2.8.5",
|
|
43
44
|
"dotenv": "^17.2.0",
|
|
44
|
-
"express": "^
|
|
45
|
+
"express": "^5.2.1",
|
|
45
46
|
"express-basic-auth": "^1.2.1",
|
|
46
47
|
"express-throttle": "^2.0.0",
|
|
47
48
|
"form-data": "^4.0.2",
|
|
48
|
-
"helmet": "^
|
|
49
|
+
"helmet": "^8.1.0",
|
|
49
50
|
"http-errors": "^2.0.0",
|
|
50
51
|
"jsonwebtoken": "^9.0.1",
|
|
51
52
|
"morgan": "^1.10.0",
|
|
52
|
-
"multer": "^
|
|
53
|
+
"multer": "^2.0.2",
|
|
53
54
|
"node-cache": "^5.1.2",
|
|
54
55
|
"object-hash": "^1.1.8",
|
|
55
56
|
"pseudomap": "^1.0.2",
|
|
56
57
|
"r7insight_node": "^3.3.1",
|
|
57
|
-
"redis": "^
|
|
58
|
+
"redis": "^5.10.0",
|
|
58
59
|
"redis-rate-limiter": "^1.2.0",
|
|
59
60
|
"step": "^1.0.0",
|
|
60
61
|
"underscore": "^1.9.1",
|
|
@@ -67,7 +68,7 @@
|
|
|
67
68
|
"devDependencies": {
|
|
68
69
|
"@vercel/ncc": "^0.38.3",
|
|
69
70
|
"javascript-obfuscator": "^4.1.1",
|
|
70
|
-
"
|
|
71
|
+
"jest": "^30.2.0",
|
|
71
72
|
"nodemon": "^3.1.9",
|
|
72
73
|
"rimraf": "^6.0.1"
|
|
73
74
|
}
|