@nocobase/plugin-workflow-notification 2.1.0-alpha.46 → 2.1.0-alpha.47

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.
@@ -10,9 +10,9 @@
10
10
  module.exports = {
11
11
  "react": "18.2.0",
12
12
  "@ant-design/icons": "5.6.1",
13
- "@nocobase/plugin-workflow": "2.1.0-alpha.46",
14
- "@nocobase/plugin-notification-manager": "2.1.0-alpha.46",
15
- "@nocobase/client": "2.1.0-alpha.46",
13
+ "@nocobase/plugin-workflow": "2.1.0-alpha.47",
14
+ "@nocobase/plugin-notification-manager": "2.1.0-alpha.47",
15
+ "@nocobase/client": "2.1.0-alpha.47",
16
16
  "react-i18next": "11.18.6",
17
- "@nocobase/server": "2.1.0-alpha.46"
17
+ "@nocobase/server": "2.1.0-alpha.47"
18
18
  };
@@ -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-06-04T11:31:39.943Z"}
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-06-08T04:03:18.002Z"}
@@ -60,10 +60,7 @@ class NotificationInstruction_default extends import_plugin_workflow.Instruction
60
60
  const notificationServer = this.workflow.pm.get(import_plugin_notification_manager.default);
61
61
  try {
62
62
  processor.logger.info(`notification (#${node.id}) queued for delivery.`);
63
- const result = await notificationServer.send({
64
- ...sendParams,
65
- transaction: processor.mainTransaction
66
- });
63
+ const result = await notificationServer.send(sendParams);
67
64
  return {
68
65
  status: result.status === "success" || ignoreFail ? import_plugin_workflow.JOB_STATUS.RESOLVED : import_plugin_workflow.JOB_STATUS.FAILED,
69
66
  result
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "description": "Send notification in workflow.",
7
7
  "description.ru-RU": "Отправляет уведомления в рамках рабочего процесса.",
8
8
  "description.zh-CN": "可用于在工作流中发送各类通知。",
9
- "version": "2.1.0-alpha.46",
9
+ "version": "2.1.0-alpha.47",
10
10
  "license": "Apache-2.0",
11
11
  "main": "./dist/server/index.js",
12
12
  "homepage": "https://docs.nocobase.com/handbook/workflow-smtp-mailer",
@@ -28,5 +28,5 @@
28
28
  "keywords": [
29
29
  "Workflow"
30
30
  ],
31
- "gitHead": "42b269944cdd1908d7a848c0af4936fe94c03bb7"
31
+ "gitHead": "66196b57f9043ea0ac6ebdafbc732bfb98af1396"
32
32
  }