@nocobase/plugin-workflow-delay 2.3.0-alpha.1 → 3.0.0-alpha.2
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
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
|
-
"@nocobase/client": "
|
|
12
|
-
"@nocobase/plugin-workflow": "
|
|
11
|
+
"@nocobase/client": "3.0.0-alpha.2",
|
|
12
|
+
"@nocobase/plugin-workflow": "3.0.0-alpha.2",
|
|
13
13
|
"react": "18.2.0",
|
|
14
14
|
"@ant-design/icons": "5.6.1",
|
|
15
|
-
"@nocobase/flow-engine": "
|
|
16
|
-
"@nocobase/client-v2": "
|
|
15
|
+
"@nocobase/flow-engine": "3.0.0-alpha.2",
|
|
16
|
+
"@nocobase/client-v2": "3.0.0-alpha.2",
|
|
17
17
|
"react-i18next": "11.18.6",
|
|
18
|
-
"@nocobase/server": "
|
|
18
|
+
"@nocobase/server": "3.0.0-alpha.2",
|
|
19
19
|
"antd": "5.24.2"
|
|
20
20
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"joi","description":"Object schema validation","version":"17.13.3","repository":"git://github.com/hapijs/joi","main":"lib/index.js","types":"lib/index.d.ts","browser":"dist/joi-browser.min.js","files":["lib/**/*","dist/*"],"keywords":["schema","validation"],"dependencies":{"@hapi/hoek":"^9.3.0","@hapi/topo":"^5.1.0","@sideway/address":"^4.1.5","@sideway/formula":"^3.0.1","@sideway/pinpoint":"^2.0.0"},"devDependencies":{"@hapi/bourne":"2.x.x","@hapi/code":"8.x.x","@hapi/joi-legacy-test":"npm:@hapi/joi@15.x.x","@hapi/lab":"^25.1.3","@types/node":"^14.18.63","typescript":"4.3.x"},"scripts":{"prepublishOnly":"cd browser && npm install && npm run build","test":"lab -t 100 -a @hapi/code -L -Y","test-cov-html":"lab -r html -o coverage.html -a @hapi/code"},"license":"BSD-3-Clause","_lastModified":"2026-07-
|
|
1
|
+
{"name":"joi","description":"Object schema validation","version":"17.13.3","repository":"git://github.com/hapijs/joi","main":"lib/index.js","types":"lib/index.d.ts","browser":"dist/joi-browser.min.js","files":["lib/**/*","dist/*"],"keywords":["schema","validation"],"dependencies":{"@hapi/hoek":"^9.3.0","@hapi/topo":"^5.1.0","@sideway/address":"^4.1.5","@sideway/formula":"^3.0.1","@sideway/pinpoint":"^2.0.0"},"devDependencies":{"@hapi/bourne":"2.x.x","@hapi/code":"8.x.x","@hapi/joi-legacy-test":"npm:@hapi/joi@15.x.x","@hapi/lab":"^25.1.3","@types/node":"^14.18.63","typescript":"4.3.x"},"scripts":{"prepublishOnly":"cd browser && npm install && npm run build","test":"lab -t 100 -a @hapi/code -L -Y","test-cov-html":"lab -r html -o coverage.html -a @hapi/code"},"license":"BSD-3-Clause","_lastModified":"2026-07-30T05:58:52.244Z"}
|
|
@@ -107,7 +107,8 @@ class DelayInstruction_default extends import_plugin_workflow.Instruction {
|
|
|
107
107
|
job.execution = await job.getExecution();
|
|
108
108
|
}
|
|
109
109
|
if (job.execution.status === import_plugin_workflow.EXECUTION_STATUS.STARTED) {
|
|
110
|
-
this.workflow.resume(job)
|
|
110
|
+
await this.workflow.resume(job).catch(() => {
|
|
111
|
+
});
|
|
111
112
|
}
|
|
112
113
|
const idStr = job.id.toString();
|
|
113
114
|
if (this.timers.get(idStr)) {
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"description": "Could be used in workflow parallel branch for waiting other branches.",
|
|
7
7
|
"description.ru-RU": "Может использоваться в параллельных ветках рабочего процесса для ожидания завершения других веток.",
|
|
8
8
|
"description.zh-CN": "可用于工作流并行分支中等待其他分支执行完成。",
|
|
9
|
-
"version": "
|
|
9
|
+
"version": "3.0.0-alpha.2",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"main": "./dist/server/index.js",
|
|
12
12
|
"homepage": "https://docs.nocobase.com/handbook/workflow-delay",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@nocobase/server": "2.x",
|
|
27
27
|
"@nocobase/test": "2.x"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "a3faea21082b30989301de04591ee1b91fd4e6a5",
|
|
30
30
|
"keywords": [
|
|
31
31
|
"Workflow"
|
|
32
32
|
]
|