@nsshunt/stsappframework 3.3.125 → 3.3.127
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/package.json +18 -18
- package/types/commonTypes.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nsshunt/stsappframework",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.127",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -35,43 +35,43 @@
|
|
|
35
35
|
"@types/cookie-parser": "^1.4.10",
|
|
36
36
|
"@types/debug": "^4.1.13",
|
|
37
37
|
"@types/express": "^5.0.6",
|
|
38
|
-
"@types/node": "^25.9.
|
|
39
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
40
|
-
"@typescript-eslint/parser": "^8.
|
|
41
|
-
"eslint": "^10.
|
|
42
|
-
"globals": "^17.
|
|
38
|
+
"@types/node": "^25.9.3",
|
|
39
|
+
"@typescript-eslint/eslint-plugin": "^8.65.0",
|
|
40
|
+
"@typescript-eslint/parser": "^8.65.0",
|
|
41
|
+
"eslint": "^10.7.0",
|
|
42
|
+
"globals": "^17.7.0",
|
|
43
43
|
"typescript": "^6.0.3",
|
|
44
|
-
"vite": "^8.
|
|
45
|
-
"vitest": "^4.1.
|
|
44
|
+
"vite": "^8.1.5",
|
|
45
|
+
"vitest": "^4.1.10"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@grpc/grpc-js": "^1.14.4",
|
|
49
49
|
"@grpc/proto-loader": "^0.8.1",
|
|
50
|
-
"@nsshunt/stsconfig": "^1.27.
|
|
51
|
-
"@nsshunt/stsdatamanagement": "^1.18.
|
|
52
|
-
"@nsshunt/stsinstrumentmanagerclient": "^1.0.
|
|
53
|
-
"@nsshunt/stsobservability": "^1.0.
|
|
54
|
-
"@nsshunt/stssocketioutils": "^2.0.
|
|
55
|
-
"@nsshunt/stsutils": "^1.19.
|
|
50
|
+
"@nsshunt/stsconfig": "^1.27.71",
|
|
51
|
+
"@nsshunt/stsdatamanagement": "^1.18.193",
|
|
52
|
+
"@nsshunt/stsinstrumentmanagerclient": "^1.0.38",
|
|
53
|
+
"@nsshunt/stsobservability": "^1.0.164",
|
|
54
|
+
"@nsshunt/stssocketioutils": "^2.0.55",
|
|
55
|
+
"@nsshunt/stsutils": "^1.19.110",
|
|
56
56
|
"@socket.io/cluster-adapter": "^0.3.0",
|
|
57
57
|
"@socket.io/redis-streams-adapter": "^0.3.1",
|
|
58
58
|
"@types/on-headers": "^1.0.4",
|
|
59
59
|
"@types/pidusage": "^2.0.5",
|
|
60
|
-
"axios": "^1.
|
|
60
|
+
"axios": "^1.18.1",
|
|
61
61
|
"chalk": "^5.6.2",
|
|
62
62
|
"cookie-parser": "^1.4.7",
|
|
63
63
|
"cors": "^2.8.6",
|
|
64
64
|
"debug": "^4.4.3",
|
|
65
65
|
"express": "^5.2.1",
|
|
66
66
|
"http-status-codes": "^2.3.0",
|
|
67
|
-
"ioredis": "^5.11.
|
|
67
|
+
"ioredis": "^5.11.1",
|
|
68
68
|
"jayson": "^4.3.0",
|
|
69
69
|
"on-headers": "^1.1.0",
|
|
70
70
|
"pidusage": "^4.0.1",
|
|
71
71
|
"prom-client": "^15.1.3",
|
|
72
72
|
"socket.io": "^4.8.3",
|
|
73
|
-
"socket.io-adapter": "^2.5.
|
|
74
|
-
"systeminformation": "^5.
|
|
73
|
+
"socket.io-adapter": "^2.5.8",
|
|
74
|
+
"systeminformation": "^5.33.1",
|
|
75
75
|
"tiny-emitter": "^2.1.0",
|
|
76
76
|
"winston-transport": "^4.9.0"
|
|
77
77
|
},
|
package/types/commonTypes.d.ts
CHANGED
|
@@ -181,7 +181,7 @@ export interface ProcessOptions {
|
|
|
181
181
|
* Ref: https://stackoverflow.com/questions/21342828/node-express-unix-domain-socket-permissions
|
|
182
182
|
* To setup side car service (per running machine/node)
|
|
183
183
|
* sudo mkdir /var/run/sts
|
|
184
|
-
* sudo chown
|
|
184
|
+
* sudo chown stsuser /var/run/sts
|
|
185
185
|
* In .env file per service
|
|
186
186
|
* PORT=/var/run/sts/stsrest01.sock
|
|
187
187
|
*/
|