@nocobase/plugin-workflow 0.17.0-alpha.7 → 0.18.0-alpha.8
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/client/index.d.ts +8 -0
- package/dist/client/index.js +30 -30
- package/dist/client/nodes/calculation.d.ts +7 -2
- package/dist/client/nodes/index.d.ts +10 -5
- package/dist/client/triggers/collection.d.ts +0 -1
- package/dist/client/triggers/index.d.ts +2 -3
- package/dist/client/triggers/schedule/index.d.ts +0 -1
- package/dist/client/variable.d.ts +15 -14
- package/dist/externalVersion.js +17 -16
- package/dist/locale/en-US.json +1 -1
- package/dist/locale/es-ES.json +1 -1
- package/dist/locale/fr-FR.json +1 -1
- package/dist/locale/pt-BR.json +1 -1
- package/dist/locale/zh-CN.json +3 -1
- package/dist/node_modules/cron-parser/package.json +1 -1
- package/dist/node_modules/lru-cache/package.json +1 -1
- package/dist/server/Plugin.d.ts +10 -11
- package/dist/server/Plugin.js +105 -69
- package/dist/server/Processor.d.ts +9 -5
- package/dist/server/Processor.js +10 -35
- package/dist/server/actions/workflows.js +4 -4
- package/dist/server/collections/executions.js +0 -5
- package/dist/server/collections/workflows.js +0 -5
- package/dist/server/constants.d.ts +17 -22
- package/dist/server/constants.js +0 -7
- package/dist/server/instructions/CalculationInstruction.d.ts +4 -2
- package/dist/server/instructions/CalculationInstruction.js +2 -10
- package/dist/server/instructions/ConditionInstruction.d.ts +10 -2
- package/dist/server/instructions/ConditionInstruction.js +7 -0
- package/dist/server/instructions/CreateInstruction.d.ts +1 -1
- package/dist/server/instructions/CreateInstruction.js +4 -4
- package/dist/server/instructions/DestroyInstruction.d.ts +1 -1
- package/dist/server/instructions/DestroyInstruction.js +2 -2
- package/dist/server/instructions/QueryInstruction.d.ts +4 -1
- package/dist/server/instructions/QueryInstruction.js +2 -2
- package/dist/server/instructions/UpdateInstruction.d.ts +1 -1
- package/dist/server/instructions/UpdateInstruction.js +2 -2
- package/dist/server/instructions/index.d.ts +9 -6
- package/dist/server/instructions/index.js +2 -2
- package/dist/server/migrations/20230612021134-manual-collection-block.js +1 -0
- package/dist/server/triggers/CollectionTrigger.js +3 -3
- package/dist/server/triggers/ScheduleTrigger.d.ts +1 -1
- package/dist/server/triggers/ScheduleTrigger.js +14 -14
- package/dist/server/triggers/index.d.ts +2 -2
- package/dist/server/triggers/index.js +2 -2
- package/dist/server/types/Execution.d.ts +0 -2
- package/dist/server/types/Workflow.d.ts +0 -1
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -4,9 +4,12 @@
|
|
|
4
4
|
"displayName.zh-CN": "工作流",
|
|
5
5
|
"description": "A powerful workflow plugin designed to support business process management and automation.",
|
|
6
6
|
"description.zh-CN": "工作流插件,为业务流程管理和自动化提供支持。",
|
|
7
|
-
"version": "0.
|
|
7
|
+
"version": "0.18.0-alpha.8",
|
|
8
8
|
"license": "AGPL-3.0",
|
|
9
9
|
"main": "./dist/server/index.js",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@nocobase/plugin-workflow-test": "0.18.0-alpha.8"
|
|
12
|
+
},
|
|
10
13
|
"devDependencies": {
|
|
11
14
|
"@ant-design/icons": "5.x",
|
|
12
15
|
"@formily/antd-v5": "1.x",
|
|
@@ -24,8 +27,7 @@
|
|
|
24
27
|
"react-i18next": "^11.15.1",
|
|
25
28
|
"react-js-cron": "^3.1.0",
|
|
26
29
|
"react-router-dom": "^6.11.2",
|
|
27
|
-
"sequelize": "^6.26.0"
|
|
28
|
-
"winston": "^3.8.2"
|
|
30
|
+
"sequelize": "^6.26.0"
|
|
29
31
|
},
|
|
30
32
|
"peerDependencies": {
|
|
31
33
|
"@nocobase/actions": "0.x",
|
|
@@ -36,11 +38,10 @@
|
|
|
36
38
|
"@nocobase/plugin-collection-manager": "0.x",
|
|
37
39
|
"@nocobase/plugin-error-handler": "0.x",
|
|
38
40
|
"@nocobase/plugin-users": "0.x",
|
|
39
|
-
"@nocobase/plugin-workflow-test": ">=0.17.0-alpha.3",
|
|
40
41
|
"@nocobase/resourcer": "0.x",
|
|
41
42
|
"@nocobase/server": "0.x",
|
|
42
43
|
"@nocobase/test": "0.x",
|
|
43
44
|
"@nocobase/utils": "0.x"
|
|
44
45
|
},
|
|
45
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "727d42f6f14e5f863831da3dbf3255ba1165b567"
|
|
46
47
|
}
|