@serve.zone/dcrouter 13.40.2 → 13.41.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 (34) hide show
  1. package/deno.json +3 -3
  2. package/dist_serve/bundle.js +590 -546
  3. package/dist_ts/00_commitinfo_data.js +1 -1
  4. package/dist_ts/classes.dcrouter.d.ts +15 -0
  5. package/dist_ts/classes.dcrouter.js +156 -36
  6. package/dist_ts/db/documents/classes.remote-ingress-hub-settings.doc.d.ts +10 -0
  7. package/dist_ts/db/documents/classes.remote-ingress-hub-settings.doc.js +88 -0
  8. package/dist_ts/db/documents/index.d.ts +1 -0
  9. package/dist_ts/db/documents/index.js +2 -1
  10. package/dist_ts/opsserver/handlers/config.handler.js +2 -2
  11. package/dist_ts/opsserver/handlers/remoteingress.handler.js +71 -55
  12. package/dist_ts/remoteingress/classes.remoteingress-manager.d.ts +12 -2
  13. package/dist_ts/remoteingress/classes.remoteingress-manager.js +136 -3
  14. package/dist_ts/remoteingress/classes.tunnel-manager.d.ts +2 -0
  15. package/dist_ts/remoteingress/classes.tunnel-manager.js +45 -13
  16. package/dist_ts_interfaces/data/remoteingress.d.ts +5 -0
  17. package/dist_ts_interfaces/requests/remoteingress.d.ts +30 -1
  18. package/dist_ts_web/00_commitinfo_data.js +1 -1
  19. package/dist_ts_web/appstate.d.ts +4 -0
  20. package/dist_ts_web/appstate.js +30 -2
  21. package/dist_ts_web/elements/network/ops-view-remoteingress.d.ts +4 -0
  22. package/dist_ts_web/elements/network/ops-view-remoteingress.js +148 -1
  23. package/package.json +3 -3
  24. package/ts/00_commitinfo_data.ts +1 -1
  25. package/ts/classes.dcrouter.ts +178 -38
  26. package/ts/db/documents/classes.remote-ingress-hub-settings.doc.ts +29 -0
  27. package/ts/db/documents/index.ts +1 -0
  28. package/ts/opsserver/handlers/config.handler.ts +1 -1
  29. package/ts/opsserver/handlers/remoteingress.handler.ts +97 -74
  30. package/ts/remoteingress/classes.remoteingress-manager.ts +172 -3
  31. package/ts/remoteingress/classes.tunnel-manager.ts +41 -14
  32. package/ts_web/00_commitinfo_data.ts +1 -1
  33. package/ts_web/appstate.ts +41 -1
  34. package/ts_web/elements/network/ops-view-remoteingress.ts +164 -0
package/deno.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/dcrouter",
3
- "version": "13.40.2",
3
+ "version": "13.41.0",
4
4
  "exports": "./binary/dcrouter.ts",
5
5
  "compile": {
6
6
  "include": [
@@ -31,7 +31,7 @@
31
31
  "@push.rocks/smartnetwork": "npm:@push.rocks/smartnetwork@^4.7.2",
32
32
  "@push.rocks/smartpath": "npm:@push.rocks/smartpath@^6.0.0",
33
33
  "@push.rocks/smartpromise": "npm:@push.rocks/smartpromise@^4.2.4",
34
- "@push.rocks/smartproxy": "npm:@push.rocks/smartproxy@^27.12.1",
34
+ "@push.rocks/smartproxy": "npm:@push.rocks/smartproxy@^27.12.2",
35
35
  "@push.rocks/smartradius": "npm:@push.rocks/smartradius@^1.1.2",
36
36
  "@push.rocks/smartrequest": "npm:@push.rocks/smartrequest@^5.0.3",
37
37
  "@push.rocks/smartrx": "npm:@push.rocks/smartrx@^3.0.10",
@@ -40,7 +40,7 @@
40
40
  "@push.rocks/smartvpn": "npm:@push.rocks/smartvpn@1.20.0",
41
41
  "@push.rocks/taskbuffer": "npm:@push.rocks/taskbuffer@^8.0.2",
42
42
  "@serve.zone/interfaces": "npm:@serve.zone/interfaces@^5.8.0",
43
- "@serve.zone/remoteingress": "npm:@serve.zone/remoteingress@^4.22.2",
43
+ "@serve.zone/remoteingress": "npm:@serve.zone/remoteingress@^4.22.3",
44
44
  "@tsclass/tsclass": "npm:@tsclass/tsclass@^9.5.1",
45
45
  "lru-cache": "npm:lru-cache@^11.4.0",
46
46
  "qrcode": "npm:qrcode@^1.5.4",