@serve.zone/dcrouter 13.28.0 → 13.30.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.
Files changed (39) hide show
  1. package/.smartconfig.json +32 -10
  2. package/dist_serve/bundle.js +609 -592
  3. package/dist_ts/00_commitinfo_data.js +1 -1
  4. package/dist_ts/classes.dcrouter.d.ts +7 -0
  5. package/dist_ts/classes.dcrouter.js +12 -2
  6. package/dist_ts/config/classes.route-config-manager.js +8 -7
  7. package/dist_ts/opsserver/classes.opsserver.js +4 -1
  8. package/dist_ts/opsserver/handlers/admin.handler.d.ts +21 -6
  9. package/dist_ts/opsserver/handlers/admin.handler.js +188 -29
  10. package/dist_ts/opsserver/handlers/target-profile.handler.js +3 -1
  11. package/dist_ts/opsserver/handlers/users.handler.js +2 -2
  12. package/dist_ts/plugins.d.ts +2 -0
  13. package/dist_ts/plugins.js +4 -1
  14. package/dist_ts/vpn/classes.vpn-manager.d.ts +2 -0
  15. package/dist_ts/vpn/classes.vpn-manager.js +41 -20
  16. package/dist_ts_interfaces/requests/admin.d.ts +38 -0
  17. package/dist_ts_interfaces/requests/users.d.ts +2 -5
  18. package/dist_ts_web/00_commitinfo_data.js +1 -1
  19. package/dist_ts_web/appstate.d.ts +17 -0
  20. package/dist_ts_web/appstate.js +27 -1
  21. package/dist_ts_web/elements/ops-dashboard.d.ts +4 -0
  22. package/dist_ts_web/elements/ops-dashboard.js +100 -3
  23. package/package.json +27 -34
  24. package/readme.md +15 -3
  25. package/ts/00_commitinfo_data.ts +1 -1
  26. package/ts/classes.dcrouter.ts +20 -1
  27. package/ts/config/classes.route-config-manager.ts +8 -6
  28. package/ts/opsserver/classes.opsserver.ts +3 -0
  29. package/ts/opsserver/handlers/admin.handler.ts +244 -32
  30. package/ts/opsserver/handlers/target-profile.handler.ts +2 -0
  31. package/ts/opsserver/handlers/users.handler.ts +1 -1
  32. package/ts/plugins.ts +7 -0
  33. package/ts/readme.md +1 -1
  34. package/ts/vpn/classes.vpn-manager.ts +56 -25
  35. package/ts_apiclient/readme.md +4 -4
  36. package/ts_web/00_commitinfo_data.ts +1 -1
  37. package/ts_web/appstate.ts +49 -0
  38. package/ts_web/elements/ops-dashboard.ts +100 -0
  39. package/ts_web/readme.md +5 -3
package/.smartconfig.json CHANGED
@@ -23,11 +23,14 @@
23
23
  "outputMode": "bundle",
24
24
  "bundler": "esbuild",
25
25
  "production": true,
26
- "includeFiles": ["./html/**/*.html"]
26
+ "includeFiles": [
27
+ "./html/**/*.html"
28
+ ]
27
29
  }
28
30
  ]
29
31
  },
30
32
  "@git.zone/cli": {
33
+ "schemaVersion": 2,
31
34
  "projectType": "service",
32
35
  "module": {
33
36
  "githost": "code.foss.global",
@@ -60,18 +63,37 @@
60
63
  ]
61
64
  },
62
65
  "release": {
63
- "registries": [
64
- "https://verdaccio.lossless.digital",
65
- "https://registry.npmjs.org"
66
- ],
67
- "accessLevel": "public"
66
+ "targets": {
67
+ "git": {
68
+ "enabled": true,
69
+ "remote": "origin"
70
+ },
71
+ "npm": {
72
+ "enabled": true,
73
+ "registries": [
74
+ "https://verdaccio.lossless.digital",
75
+ "https://registry.npmjs.org"
76
+ ],
77
+ "accessLevel": "public"
78
+ },
79
+ "docker": {
80
+ "enabled": true,
81
+ "engine": "tsdocker"
82
+ }
83
+ }
68
84
  }
69
85
  },
70
86
  "@git.zone/tsdocker": {
71
- "registries": ["code.foss.global"],
87
+ "registries": [
88
+ "code.foss.global"
89
+ ],
72
90
  "registryRepoMap": {
73
91
  "code.foss.global": "serve.zone/dcrouter"
74
92
  },
75
- "platforms": ["linux/amd64", "linux/arm64"]
76
- }
77
- }
93
+ "platforms": [
94
+ "linux/amd64",
95
+ "linux/arm64"
96
+ ]
97
+ },
98
+ "@ship.zone/szci": {}
99
+ }