cli4ai 1.2.9 → 1.2.11
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/commands/add.js +1 -14
- package/dist/core/config.js +33 -9
- package/dist/core/execute.js +30 -13
- package/dist/core/remote-client.js +48 -13
- package/dist/core/routine-engine.d.ts +1 -0
- package/dist/core/secrets.js +14 -4
- package/dist/dashboard/api/endpoints.js +1 -0
- package/dist/dashboard/db/runs.d.ts +2 -1
- package/dist/dashboard/db/runs.js +8 -3
- package/dist/dashboard/db/schema.d.ts +1 -0
- package/dist/dashboard/db/schema.js +1 -0
- package/{src/dashboard/public/assets/index-pZeAAQwj.js → dist/dashboard/public/assets/index-BKbXA4_4.js} +54 -54
- package/{src → dist}/dashboard/public/index.html +1 -1
- package/package.json +3 -3
- /package/{src → dist}/dashboard/public/assets/index-DN1hIAMO.css +0 -0
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="/ui/favicon.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>cli4ai Dashboard</title>
|
|
8
|
-
<script type="module" crossorigin src="/ui/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/ui/assets/index-BKbXA4_4.js"></script>
|
|
9
9
|
<link rel="stylesheet" crossorigin href="/ui/assets/index-DN1hIAMO.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cli4ai",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.11",
|
|
4
4
|
"description": "The package manager for AI CLI tools - cli4ai.com",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"files": [
|
|
56
56
|
"dist/**/*.js",
|
|
57
57
|
"dist/**/*.d.ts",
|
|
58
|
-
"
|
|
59
|
-
"
|
|
58
|
+
"dist/dashboard/public/**/*",
|
|
59
|
+
"templates/**/*"
|
|
60
60
|
],
|
|
61
61
|
"publishConfig": {
|
|
62
62
|
"access": "public"
|
|
File without changes
|