@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.
- package/.smartconfig.json +32 -10
- package/dist_serve/bundle.js +609 -592
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/classes.dcrouter.d.ts +7 -0
- package/dist_ts/classes.dcrouter.js +12 -2
- package/dist_ts/config/classes.route-config-manager.js +8 -7
- package/dist_ts/opsserver/classes.opsserver.js +4 -1
- package/dist_ts/opsserver/handlers/admin.handler.d.ts +21 -6
- package/dist_ts/opsserver/handlers/admin.handler.js +188 -29
- package/dist_ts/opsserver/handlers/target-profile.handler.js +3 -1
- package/dist_ts/opsserver/handlers/users.handler.js +2 -2
- package/dist_ts/plugins.d.ts +2 -0
- package/dist_ts/plugins.js +4 -1
- package/dist_ts/vpn/classes.vpn-manager.d.ts +2 -0
- package/dist_ts/vpn/classes.vpn-manager.js +41 -20
- package/dist_ts_interfaces/requests/admin.d.ts +38 -0
- package/dist_ts_interfaces/requests/users.d.ts +2 -5
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/appstate.d.ts +17 -0
- package/dist_ts_web/appstate.js +27 -1
- package/dist_ts_web/elements/ops-dashboard.d.ts +4 -0
- package/dist_ts_web/elements/ops-dashboard.js +100 -3
- package/package.json +27 -34
- package/readme.md +15 -3
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/classes.dcrouter.ts +20 -1
- package/ts/config/classes.route-config-manager.ts +8 -6
- package/ts/opsserver/classes.opsserver.ts +3 -0
- package/ts/opsserver/handlers/admin.handler.ts +244 -32
- package/ts/opsserver/handlers/target-profile.handler.ts +2 -0
- package/ts/opsserver/handlers/users.handler.ts +1 -1
- package/ts/plugins.ts +7 -0
- package/ts/readme.md +1 -1
- package/ts/vpn/classes.vpn-manager.ts +56 -25
- package/ts_apiclient/readme.md +4 -4
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/appstate.ts +49 -0
- package/ts_web/elements/ops-dashboard.ts +100 -0
- 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": [
|
|
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
|
-
"
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
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": [
|
|
87
|
+
"registries": [
|
|
88
|
+
"code.foss.global"
|
|
89
|
+
],
|
|
72
90
|
"registryRepoMap": {
|
|
73
91
|
"code.foss.global": "serve.zone/dcrouter"
|
|
74
92
|
},
|
|
75
|
-
"platforms": [
|
|
76
|
-
|
|
77
|
-
|
|
93
|
+
"platforms": [
|
|
94
|
+
"linux/amd64",
|
|
95
|
+
"linux/arm64"
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
"@ship.zone/szci": {}
|
|
99
|
+
}
|