@bsb/syslog 9.1.2 → 9.6.12

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.
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "pluginName": "service-syslog-server",
3
- "version": "9.0.0",
4
3
  "events": {
5
4
  "onMessage": {
6
5
  "type": "fire-and-forget",
@@ -8,7 +7,7 @@
8
7
  "description": "Syslog message received from client",
9
8
  "inputSchema": {
10
9
  "anyvaliVersion": "1.0",
11
- "schemaVersion": "1",
10
+ "schemaVersion": "1.1",
12
11
  "root": {
13
12
  "kind": "object",
14
13
  "properties": {
@@ -47,5 +46,49 @@
47
46
  "outputSchema": null
48
47
  }
49
48
  },
49
+ "version": "9.6.12",
50
+ "configSchema": {
51
+ "anyvaliVersion": "1.0",
52
+ "schemaVersion": "1.1",
53
+ "root": {
54
+ "kind": "object",
55
+ "properties": {
56
+ "port": {
57
+ "kind": "int32",
58
+ "min": 1,
59
+ "max": 65535,
60
+ "default": 514,
61
+ "metadata": {
62
+ "description": "UDP port the syslog server listens on"
63
+ }
64
+ },
65
+ "address": {
66
+ "kind": "string",
67
+ "default": "0.0.0.0",
68
+ "metadata": {
69
+ "description": "Network address the syslog server binds to"
70
+ }
71
+ },
72
+ "exclusive": {
73
+ "kind": "bool",
74
+ "default": false,
75
+ "metadata": {
76
+ "description": "Whether the server requests exclusive address binding"
77
+ }
78
+ }
79
+ },
80
+ "required": [
81
+ "port",
82
+ "address",
83
+ "exclusive"
84
+ ],
85
+ "unknownKeys": "strip",
86
+ "metadata": {
87
+ "description": "Syslog server plugin configuration"
88
+ }
89
+ },
90
+ "definitions": {},
91
+ "extensions": {}
92
+ },
50
93
  "pluginType": "service"
51
94
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "service-syslog-server",
3
3
  "name": "service-syslog-server",
4
- "version": "9.0.0",
4
+ "version": "9.6.12",
5
5
  "description": "Syslog server service plugin that receives messages and emits events",
6
6
  "category": "service",
7
7
  "tags": [
@@ -10,7 +10,58 @@
10
10
  "service",
11
11
  "events"
12
12
  ],
13
- "documentation": [],
13
+ "documentation": [
14
+ "./docs/syslog-server.md"
15
+ ],
14
16
  "dependencies": [],
15
- "image": "./assets/syslog-icon.png"
17
+ "author": {
18
+ "name": "BetterCorp (PTY) Ltd",
19
+ "email": "ninja@bettercorp.dev",
20
+ "url": "https://bettercorp.dev/"
21
+ },
22
+ "license": "(AGPL-3.0-only OR Commercial)",
23
+ "image": "./assets/syslog-icon.png",
24
+ "configSchema": {
25
+ "anyvaliVersion": "1.0",
26
+ "schemaVersion": "1.1",
27
+ "root": {
28
+ "kind": "object",
29
+ "properties": {
30
+ "port": {
31
+ "kind": "int32",
32
+ "min": 1,
33
+ "max": 65535,
34
+ "default": 514,
35
+ "metadata": {
36
+ "description": "UDP port the syslog server listens on"
37
+ }
38
+ },
39
+ "address": {
40
+ "kind": "string",
41
+ "default": "0.0.0.0",
42
+ "metadata": {
43
+ "description": "Network address the syslog server binds to"
44
+ }
45
+ },
46
+ "exclusive": {
47
+ "kind": "bool",
48
+ "default": false,
49
+ "metadata": {
50
+ "description": "Whether the server requests exclusive address binding"
51
+ }
52
+ }
53
+ },
54
+ "required": [
55
+ "port",
56
+ "address",
57
+ "exclusive"
58
+ ],
59
+ "unknownKeys": "strip",
60
+ "metadata": {
61
+ "description": "Syslog server plugin configuration"
62
+ }
63
+ },
64
+ "definitions": {},
65
+ "extensions": {}
66
+ }
16
67
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bsb/syslog",
3
- "version": "9.1.2",
3
+ "version": "9.6.12",
4
4
  "type": "module",
5
5
  "license": "(AGPL-3.0-only OR Commercial)",
6
6
  "author": {
@@ -39,21 +39,21 @@
39
39
  "prepublishOnly": "npm run build"
40
40
  },
41
41
  "peerDependencies": {
42
- "@bsb/base": "^9.0.0"
42
+ "@bsb/base": "^9.6.12"
43
43
  },
44
44
  "dependencies": {
45
- "@anyvali/js": "^0.2.0",
45
+ "anyvali": "^1.0.6",
46
46
  "syslog-client": "^1.1.1",
47
47
  "syslog-server": "^1.0.1"
48
48
  },
49
49
  "devDependencies": {
50
- "@bsb/base": "^9.0.0",
51
- "@types/node": "^25.0.0",
52
- "mocha": "^11.0.0",
53
- "typescript": "^5.9.0"
50
+ "@bsb/base": "^9.6.12",
51
+ "@types/node": "^25.6.0",
52
+ "mocha": "^11.7.6",
53
+ "typescript": "^6.0.3"
54
54
  },
55
55
  "engines": {
56
- "node": ">=23.0.0",
56
+ "node": ">=24.0.0",
57
57
  "npm": ">=11.0.0"
58
58
  },
59
59
  "homepage": "https://io.bsbcode.dev/packages/nodejs/@bsb/syslog"