@mks2508/coolify-mks-cli-mcp 0.6.2 → 0.6.3
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/cli/index.js +8 -2
- package/package.json +4 -1
package/dist/cli/index.js
CHANGED
|
@@ -14287,8 +14287,14 @@ var dbDeleteCommand = (uuid) => runAction(uuid, "Deleting database", (s, u) => s
|
|
|
14287
14287
|
var dbBackupsCommand = (uuid) => runList("backup(s)", (s) => s.databases.backups(uuid), [
|
|
14288
14288
|
{ header: "UUID", value: (b) => b.uuid },
|
|
14289
14289
|
{ header: "Status", value: (b) => formatStatus(b.status) },
|
|
14290
|
-
{
|
|
14291
|
-
|
|
14290
|
+
{
|
|
14291
|
+
header: "Created",
|
|
14292
|
+
value: (b) => new Date(b.created_at).toLocaleString()
|
|
14293
|
+
},
|
|
14294
|
+
{
|
|
14295
|
+
header: "Size",
|
|
14296
|
+
value: (b) => b.size ? `${(b.size / 1024 / 1024).toFixed(1)}MB` : "-"
|
|
14297
|
+
}
|
|
14292
14298
|
]);
|
|
14293
14299
|
|
|
14294
14300
|
// src/cli/commands/svc.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mks2508/coolify-mks-cli-mcp",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "MCP server and CLI for Coolify deployment management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -69,5 +69,8 @@
|
|
|
69
69
|
},
|
|
70
70
|
"engines": {
|
|
71
71
|
"node": ">=18.0.0"
|
|
72
|
+
},
|
|
73
|
+
"publishConfig": {
|
|
74
|
+
"access": "public"
|
|
72
75
|
}
|
|
73
76
|
}
|