@serve.zone/dcrouter 13.41.1 → 13.42.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/deno.json +3 -3
- package/dist_serve/bundle.js +1025 -983
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/config/classes.db-seeder.js +29 -2
- package/dist_ts/config/classes.reference-resolver.d.ts +5 -0
- package/dist_ts/config/classes.reference-resolver.js +79 -15
- package/dist_ts/config/classes.route-config-manager.d.ts +5 -1
- package/dist_ts/config/classes.route-config-manager.js +136 -6
- package/dist_ts/config/classes.source-policy-compiler.d.ts +35 -0
- package/dist_ts/config/classes.source-policy-compiler.js +497 -0
- package/dist_ts/config/index.d.ts +1 -0
- package/dist_ts/config/index.js +2 -1
- package/dist_ts_interfaces/data/route-management.d.ts +39 -0
- package/dist_ts_interfaces/data/route-management.js +65 -1
- package/dist_ts_migrations/index.js +67 -1
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/network/ops-view-routes.d.ts +2 -0
- package/dist_ts_web/elements/network/ops-view-routes.js +237 -11
- package/dist_ts_web/elements/network/ops-view-sourceprofiles.js +42 -5
- package/package.json +4 -4
- package/readme.md +74 -0
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/config/classes.db-seeder.ts +28 -1
- package/ts/config/classes.reference-resolver.ts +94 -14
- package/ts/config/classes.route-config-manager.ts +162 -5
- package/ts/config/classes.source-policy-compiler.ts +614 -0
- package/ts/config/index.ts +1 -0
- package/ts/readme.md +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/network/ops-view-routes.ts +257 -10
- package/ts_web/elements/network/ops-view-sourceprofiles.ts +41 -4
package/deno.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serve.zone/dcrouter",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.42.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.
|
|
34
|
+
"@push.rocks/smartproxy": "npm:@push.rocks/smartproxy@^27.12.3",
|
|
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.
|
|
43
|
+
"@serve.zone/remoteingress": "npm:@serve.zone/remoteingress@^4.22.4",
|
|
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",
|