@serve.zone/dcrouter 11.3.0 → 11.5.0

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/ts/readme.md CHANGED
@@ -37,7 +37,7 @@ const router = new DcRouter({
37
37
  });
38
38
 
39
39
  await router.start();
40
- // OpsServer dashboard at http://localhost:3000
40
+ // OpsServer dashboard at http://localhost:3000 (configurable via opsServerPort)
41
41
 
42
42
  // Graceful shutdown
43
43
  await router.stop();
@@ -71,7 +71,10 @@ ts/
71
71
  │ ├── email.handler.ts # Email operations
72
72
  │ ├── certificate.handler.ts # Certificate management
73
73
  │ ├── radius.handler.ts # RADIUS management
74
- └── remoteingress.handler.ts # Remote ingress edge + token management
74
+ ├── remoteingress.handler.ts # Remote ingress edge + token management
75
+ │ ├── route-management.handler.ts # Programmatic route CRUD
76
+ │ ├── api-token.handler.ts # API token management
77
+ │ └── security.handler.ts # Security metrics + connections
75
78
  ├── radius/ # RADIUS server integration
76
79
  ├── remoteingress/ # Remote ingress hub integration
77
80
  │ ├── classes.remoteingress-manager.ts # Edge CRUD + port derivation
@@ -7,7 +7,7 @@ const STORAGE_PREFIX = '/remote-ingress/';
7
7
  /**
8
8
  * Flatten a port range (number | number[] | Array<{from, to}>) to a sorted unique number array.
9
9
  */
10
- function extractPorts(portRange: number | number[] | Array<{ from: number; to: number }>): number[] {
10
+ function extractPorts(portRange: number | Array<number | { from: number; to: number }>): number[] {
11
11
  const ports = new Set<number>();
12
12
  if (typeof portRange === 'number') {
13
13
  ports.add(portRange);
@@ -271,7 +271,7 @@ Use of these trademarks must comply with Task Venture Capital GmbH's Trademark G
271
271
 
272
272
  ### Company Information
273
273
 
274
- Task Venture Capital GmbH
274
+ Task Venture Capital GmbH
275
275
  Registered at District Court Bremen HRB 35230 HB, Germany
276
276
 
277
277
  For any legal inquiries or further information, please contact us via email at hello@task.vc.
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/dcrouter',
6
- version: '11.3.0',
6
+ version: '11.5.0',
7
7
  description: 'A multifaceted routing service handling mail and SMS delivery functions.'
8
8
  }
package/ts_web/readme.md CHANGED
@@ -249,7 +249,7 @@ Use of these trademarks must comply with Task Venture Capital GmbH's Trademark G
249
249
 
250
250
  ### Company Information
251
251
 
252
- Task Venture Capital GmbH
252
+ Task Venture Capital GmbH
253
253
  Registered at District Court Bremen HRB 35230 HB, Germany
254
254
 
255
255
  For any legal inquiries or further information, please contact us via email at hello@task.vc.