gsxdsm
13c6d96fe1
FN-6031: add workflow notification nodes
Add workflow notify nodes with templated notification dispatch support.
- add notify node support to workflow IR, engine handlers, and executor wiring
- expose notify node configuration and summaries in the dashboard editor and node metadata
- add regression tests and a published changeset, plus workflow/settings documentation updates
Files changed:
.changeset/fn-6031-notification-node.md | 5 +
docs/settings-reference.md | 6 +-
docs/workflow-steps.md | 10 +-
packages/core/src/__tests__/workflow-ir.test.ts | 59 ++++++++++
packages/core/src/types.ts | 4 +-
packages/core/src/workflow-ir-types.ts | 4 +-
packages/core/src/workflow-ir.ts | 19 +++
packages/dashboard/app/components/WorkflowNodeEditor.tsx | 76 +++++++++++-
packages/dashboard/app/components/__tests__/WorkflowNodeEditor.test.tsx | 61 ++++++++++
packages/dashboard/app/components/__tests__/node-summary.test.ts | 29 +++++
packages/dashboard/app/components/__tests__/workflow-flow-mapping.test.ts | 37 ++++++
packages/dashboard/app/components/nodes/WorkflowNodeTypes.tsx | 7 +-
packages/dashboard/app/components/nodes/node-summary.ts | 5 +
packages/engine/src/__tests__/workflow-node-handlers-notify.test.ts | 131 +++++++++++++++++++++
packages/engine/src/executor.ts | 2 +
packages/engine/src/notification/ntfy-provider.ts | 11 ++
packages/engine/src/notification/webhook-provider.ts | 6 +-
packages/engine/src/workflow-graph-executor.ts | 4 +
packages/engine/src/workflow-graph-task-runner.ts | 4 +
packages/engine/src/workflow-node-handlers.ts | 93 ++++++++++++++-
20 files changed, 560 insertions(+), 13 deletions(-)
Fusion-Task-Id: FN-6031
Fusion-Task-Lineage: ff5c91e2-3872-4264-9c18-5d9e11628f13
2026-06-09 01:57:16 -07:00
..
2026-06-03 09:25:56 -07:00
2026-06-06 00:38:28 -07:00
2026-06-05 00:00:05 -07:00
2026-06-05 00:01:12 -07:00
2026-06-04 23:34:33 -07:00
2026-06-04 23:39:07 -07:00
2026-06-05 03:02:27 -07:00
2026-06-05 02:27:46 -07:00
2026-06-05 00:15:57 -07:00
2026-06-05 00:16:14 -07:00
2026-06-05 03:41:54 -07:00
2026-06-05 03:24:41 -07:00
2026-06-04 23:44:39 -07:00
2026-06-05 00:30:27 -07:00
2026-06-05 01:16:13 -07:00
2026-06-04 23:56:10 -07:00
2026-06-03 14:17:40 -07:00
2026-04-25 09:09:31 -07:00
2026-06-06 06:31:44 -07:00
2026-06-02 18:58:48 -07:00
2026-06-03 15:24:03 -07:00
2026-06-03 08:40:01 -07:00
2026-06-08 12:55:52 -07:00
2026-06-03 19:48:40 -07:00
2026-06-05 11:12:40 +10:00
2026-06-03 07:06:30 -07:00
2026-06-07 23:03:38 -07:00
2026-05-31 20:50:09 -07:00
2026-05-31 21:08:41 -07:00
2026-05-31 23:24:53 -07:00
2026-06-01 01:42:19 -07:00
2026-06-01 13:20:55 -07:00
2026-06-01 13:03:20 -07:00
2026-06-01 13:33:56 -07:00
2026-06-01 14:07:46 -07:00
2026-06-01 16:55:56 -07:00
2026-06-01 17:15:11 -07:00
2026-06-01 17:52:12 -07:00
2026-06-01 01:30:34 -07:00
2026-06-01 01:37:25 -07:00
2026-06-01 04:47:19 -07:00
2026-06-01 05:15:14 -07:00
2026-06-01 03:23:10 -07:00
2026-06-01 05:39:01 -07:00
2026-06-01 07:53:56 -07:00
2026-06-01 09:05:18 -07:00
2026-06-01 08:13:36 -07:00
2026-06-01 19:40:28 -07:00
2026-06-01 16:24:21 -07:00
2026-06-03 09:40:30 -07:00
2026-06-01 18:52:28 -07:00
2026-06-01 23:39:20 -07:00
2026-06-03 19:54:02 -07:00
2026-06-01 23:01:26 -07:00
2026-06-01 23:37:03 -07:00
2026-06-02 00:07:07 -07:00
2026-06-01 23:55:20 -07:00
2026-06-02 07:46:38 -07:00
2026-06-02 09:02:48 -07:00
2026-06-02 10:07:08 -07:00
2026-06-02 10:29:34 -07:00
2026-06-02 12:42:04 -07:00
2026-06-02 14:41:41 -07:00
2026-06-02 17:58:41 -07:00
2026-06-02 18:15:14 -07:00
2026-06-02 15:33:31 -07:00
2026-06-02 18:11:26 -07:00
2026-06-03 13:20:17 -07:00
2026-06-02 18:43:29 -07:00
2026-06-03 01:10:18 -07:00
2026-06-02 21:54:14 -07:00
2026-06-02 18:56:36 -07:00
2026-06-02 23:13:16 -07:00
2026-06-03 13:20:17 -07:00
2026-06-03 15:32:29 -07:00
2026-06-03 17:14:42 -07:00
2026-06-03 15:32:29 -07:00
2026-06-03 22:31:23 -07:00
2026-06-07 18:51:46 -07:00
2026-06-07 18:51:46 -07:00
2026-06-07 18:54:24 -07:00
2026-06-08 10:33:17 -07:00
2026-06-08 13:32:58 -07:00
2026-06-08 13:54:17 -07:00
2026-06-09 01:57:16 -07:00
2026-06-08 15:19:27 -07:00
2026-06-07 18:51:46 -07:00
2026-06-01 08:23:02 -07:00
2026-06-02 14:47:51 -07:00
2026-06-03 22:31:23 -07:00
2026-06-07 18:51:46 -07:00
2026-06-07 20:23:07 -07:00
2026-06-08 13:32:58 -07:00
2026-06-08 13:32:58 -07:00
2026-06-03 10:31:18 -07:00
2026-06-01 21:55:10 -07:00
2026-06-06 00:09:53 -07:00
2026-06-02 18:29:53 -07:00
2026-06-02 09:20:31 -07:00
2026-06-05 00:49:04 -07:00
2026-06-03 08:00:31 -07:00
2026-06-03 07:51:38 -07:00
2026-06-03 10:18:24 -07:00
2026-06-08 07:53:42 -07:00
2026-06-08 07:57:11 -07:00
2026-06-08 13:32:58 -07:00
2026-06-04 13:15:50 -07:00
2026-06-08 18:14:48 -07:00
2026-06-03 13:33:38 -07:00
2026-06-07 23:30:16 -07:00
2026-06-05 00:32:52 -07:00
2026-06-04 08:00:33 -07:00
2026-06-07 21:19:10 -07:00
2026-06-04 21:57:46 -07:00
2026-06-07 23:56:25 -07:00
2026-06-07 22:56:35 -07:00
2026-06-08 19:13:14 -07:00
2026-06-09 00:01:00 -07:00
2026-06-05 01:16:27 -07:00