@ekhein/sekiro-node-client 2.1.8 → 2.1.9
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/main.js +1 -1
- package/package.json +4 -1
package/dist/main.js
CHANGED
|
@@ -9,7 +9,7 @@ class SekiroClient {
|
|
|
9
9
|
logger = new logger_util_1.Logger();
|
|
10
10
|
handlers = new Map();
|
|
11
11
|
ws = new Map();
|
|
12
|
-
constructor(concurrency = 1, group = process.env.namespace, wsURL = process.env.
|
|
12
|
+
constructor(concurrency = 1, group = process.env.namespace, wsURL = process.env.SEKIRO_WS) {
|
|
13
13
|
for (let i = 0; i < concurrency; i++) {
|
|
14
14
|
const register = new URL("/business-demo/register", wsURL);
|
|
15
15
|
const clientId = (0, crypto_1.randomUUID)().replace(/-/g, "");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ekhein/sekiro-node-client",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "ekhein",
|
|
6
6
|
"main": "./dist/main.js",
|
|
@@ -21,5 +21,8 @@
|
|
|
21
21
|
"@types/node": "^22.15.18",
|
|
22
22
|
"tsx": "^4.19.4",
|
|
23
23
|
"typescript": "^5.8.3"
|
|
24
|
+
},
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
24
27
|
}
|
|
25
28
|
}
|