@nocobase/plugin-workflow-parallel 0.19.0-alpha.2 → 0.19.0-alpha.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/externalVersion.js
CHANGED
|
@@ -2,8 +2,8 @@ module.exports = {
|
|
|
2
2
|
"react": "18.2.0",
|
|
3
3
|
"antd": "5.12.8",
|
|
4
4
|
"@ant-design/icons": "5.2.6",
|
|
5
|
-
"@nocobase/client": "0.19.0-alpha.
|
|
6
|
-
"@nocobase/plugin-workflow": "0.19.0-alpha.
|
|
5
|
+
"@nocobase/client": "0.19.0-alpha.4",
|
|
6
|
+
"@nocobase/plugin-workflow": "0.19.0-alpha.4",
|
|
7
7
|
"react-i18next": "11.18.6",
|
|
8
|
-
"@nocobase/server": "0.19.0-alpha.
|
|
8
|
+
"@nocobase/server": "0.19.0-alpha.4"
|
|
9
9
|
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Parallel branch": "병렬 분기",
|
|
3
|
+
"Run multiple branch processes in parallel.": "여러 분기 프로세스를 병렬로 실행합니다.",
|
|
4
|
+
"Add branch": "분기 추가",
|
|
5
|
+
"All succeeded": "모두 성공",
|
|
6
|
+
"Any succeeded": "어떤 것이든 성공",
|
|
7
|
+
"Any succeeded or failed": "어떤 것이든 성공 또는 실패",
|
|
8
|
+
"Continue after all branches succeeded": "모든 분기가 성공한 후 계속",
|
|
9
|
+
"Continue after any branch succeeded": "어떤 분기가든 성공한 후 계속",
|
|
10
|
+
"Continue after any branch succeeded, or exit after any branch failed.": "어떤 분기든 성공하면 계속 진행하거나 어떤 분기든 실패하면 종료합니다."
|
|
11
|
+
}
|
|
@@ -80,6 +80,7 @@ class ParallelInstruction_default extends import_plugin_workflow.Instruction {
|
|
|
80
80
|
status: import_plugin_workflow.JOB_STATUS.PENDING,
|
|
81
81
|
result: Array(branches.length).fill(null),
|
|
82
82
|
nodeId: node.id,
|
|
83
|
+
nodeKey: node.key,
|
|
83
84
|
upstreamId: (prevJob == null ? void 0 : prevJob.id) ?? null
|
|
84
85
|
});
|
|
85
86
|
const { mode = PARALLEL_MODE.ALL } = node.config;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"displayName.zh-CN": "工作流:并行分支节点",
|
|
5
5
|
"description": "Could be used for parallel execution of branch processes in the workflow.",
|
|
6
6
|
"description.zh-CN": "用于在工作流中需要并行执行的分支流程。",
|
|
7
|
-
"version": "0.19.0-alpha.
|
|
7
|
+
"version": "0.19.0-alpha.4",
|
|
8
8
|
"license": "AGPL-3.0",
|
|
9
9
|
"main": "./dist/server/index.js",
|
|
10
10
|
"devDependencies": {
|
|
@@ -20,5 +20,5 @@
|
|
|
20
20
|
"@nocobase/server": "0.x",
|
|
21
21
|
"@nocobase/test": "0.x"
|
|
22
22
|
},
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "9583023f7bea828da5192384a5c002782c341b65"
|
|
24
24
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Parallel branch": "병렬 분기",
|
|
3
|
+
"Run multiple branch processes in parallel.": "여러 분기 프로세스를 병렬로 실행합니다.",
|
|
4
|
+
"Add branch": "분기 추가",
|
|
5
|
+
"All succeeded": "모두 성공",
|
|
6
|
+
"Any succeeded": "어떤 것이든 성공",
|
|
7
|
+
"Any succeeded or failed": "어떤 것이든 성공 또는 실패",
|
|
8
|
+
"Continue after all branches succeeded": "모든 분기가 성공한 후 계속",
|
|
9
|
+
"Continue after any branch succeeded": "어떤 분기가든 성공한 후 계속",
|
|
10
|
+
"Continue after any branch succeeded, or exit after any branch failed.": "어떤 분기든 성공하면 계속 진행하거나 어떤 분기든 실패하면 종료합니다."
|
|
11
|
+
}
|