@lmctl-ai/lmctl 0.1.2 → 0.1.4
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 +548 -472
- package/dist/cli/schema.sql +1 -1
- package/package.json +2 -2
package/dist/cli/schema.sql
CHANGED
|
@@ -606,7 +606,7 @@ CREATE TABLE IF NOT EXISTS team_connection (
|
|
|
606
606
|
target_name TEXT NOT NULL,
|
|
607
607
|
target_teamfile TEXT NOT NULL,
|
|
608
608
|
created_at TEXT NOT NULL,
|
|
609
|
-
UNIQUE(source_teamfile, target_name)
|
|
609
|
+
UNIQUE(source_teamfile, target_name, target_teamfile)
|
|
610
610
|
);
|
|
611
611
|
|
|
612
612
|
-- One row per request->response exchange
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmctl-ai/lmctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "lmctl — a durable multi-step agent workflow engine and CLI (public preview).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"license": "SEE LICENSE IN LICENSE",
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public",
|
|
26
|
-
"tag": "
|
|
26
|
+
"tag": "latest"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@aws-sdk/client-cognito-identity": "^3.1053.0",
|