digitalsee-ai-flow-cli 0.7.24-beta.3 → 0.9.10-beta
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/flow/node.js +1 -1
- package/package.json +13 -13
- package/pnpm-workspace.yaml +3 -0
|
@@ -220,7 +220,7 @@ function registerFlowNode(flowCmd) {
|
|
|
220
220
|
const trigger = options.trigger || options.node_type === 'StartEventNode' || false;
|
|
221
221
|
let action;
|
|
222
222
|
try {
|
|
223
|
-
action = await (0, node_1.getActionDetail)(
|
|
223
|
+
action = await (0, node_1.getActionDetail)(actionId);
|
|
224
224
|
}
|
|
225
225
|
catch {
|
|
226
226
|
// 获取失败则回退到列表查找
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "digitalsee-ai-flow-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.10-beta",
|
|
4
4
|
"description": "AI Flow CLI - manage connection flows and node configurations",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -14,25 +14,25 @@
|
|
|
14
14
|
"prepublishOnly": "npm run build"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"axios": "^1.
|
|
17
|
+
"axios": "^1.20.0",
|
|
18
18
|
"chalk": "^4.1.2",
|
|
19
19
|
"commander": "^12.1.0",
|
|
20
20
|
"form-data": "^4.0.6",
|
|
21
|
-
"ws": "^8.21.
|
|
21
|
+
"ws": "^8.21.3"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@commitlint/cli": "^21.
|
|
25
|
-
"@commitlint/config-conventional": "^21.
|
|
26
|
-
"@types/node": "^20.
|
|
24
|
+
"@commitlint/cli": "^21.2.2",
|
|
25
|
+
"@commitlint/config-conventional": "^21.2.2",
|
|
26
|
+
"@types/node": "^20.19.43",
|
|
27
27
|
"@types/ws": "^8.18.1",
|
|
28
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
29
|
-
"@typescript-eslint/parser": "^8.
|
|
30
|
-
"eslint": "^10.
|
|
28
|
+
"@typescript-eslint/eslint-plugin": "^8.70.0",
|
|
29
|
+
"@typescript-eslint/parser": "^8.70.0",
|
|
30
|
+
"eslint": "^10.10.0",
|
|
31
31
|
"eslint-config-prettier": "^10.1.8",
|
|
32
32
|
"husky": "^9.1.7",
|
|
33
|
-
"lint-staged": "^17.0
|
|
34
|
-
"prettier": "^3.
|
|
35
|
-
"typescript": "^5.
|
|
36
|
-
"vitest": "^4.1.
|
|
33
|
+
"lint-staged": "^17.5.0",
|
|
34
|
+
"prettier": "^3.9.6",
|
|
35
|
+
"typescript": "^5.9.3",
|
|
36
|
+
"vitest": "^4.1.11"
|
|
37
37
|
}
|
|
38
38
|
}
|