@opentrust/dashboard 7.3.16 → 7.3.17
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/dist/routes/commands.js +1 -1
- package/package.json +3 -3
- package/public/assets/index-CsaCaL1R.js +353 -0
- package/public/assets/index-CsaCaL1R.js.map +1 -0
- package/public/assets/{index-WH1q0VNo.css → index-DocVDeFd.css} +1 -1
- package/public/index.html +2 -2
- package/public/assets/index-21v8SsP2.js +0 -348
- package/public/assets/index-21v8SsP2.js.map +0 -1
package/dist/routes/commands.js
CHANGED
|
@@ -2,7 +2,7 @@ import { Router } from "express";
|
|
|
2
2
|
import { db, commandQueries } from "@opentrust/db";
|
|
3
3
|
const cmds = commandQueries(db);
|
|
4
4
|
export const commandsRouter = Router();
|
|
5
|
-
const VALID_TYPES = ["install_skill", "install_custom_skill", "uninstall_skill", "update_config"];
|
|
5
|
+
const VALID_TYPES = ["install_skill", "install_custom_skill", "uninstall_skill", "install_plugin", "uninstall_plugin", "update_config"];
|
|
6
6
|
// POST /api/commands — Create a command for an agent
|
|
7
7
|
commandsRouter.post("/", async (req, res, next) => {
|
|
8
8
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentrust/dashboard",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.17",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "OpenTrust Dashboard — management panel for AI Agent security (API + embedded web)",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"morgan": "^1.10.0",
|
|
20
20
|
"nodemailer": "^8.0.1",
|
|
21
21
|
"zod": "^3.23.0",
|
|
22
|
-
"@opentrust/
|
|
23
|
-
"@opentrust/
|
|
22
|
+
"@opentrust/db": "7.3.17",
|
|
23
|
+
"@opentrust/shared": "7.3.17"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/cors": "^2.8.17",
|