@codemation/core-nodes 0.0.22 → 0.0.25
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/CHANGELOG.md +25 -0
- package/dist/index.cjs +1606 -65
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +191 -29
- package/dist/index.d.ts +191 -29
- package/dist/index.js +1580 -60
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +3 -0
- package/src/nodes/AIAgentConfig.ts +14 -4
- package/src/nodes/AIAgentNode.ts +40 -12
- package/src/nodes/AggregateNode.ts +19 -0
- package/src/nodes/FilterNode.ts +22 -0
- package/src/nodes/MapDataNode.ts +12 -9
- package/src/nodes/SplitNode.ts +26 -0
- package/src/nodes/aggregate.ts +21 -0
- package/src/nodes/filter.ts +23 -0
- package/src/nodes/split.ts +23 -0
- package/src/register.types.ts +6 -0
- package/src/workflowAuthoring/WorkflowBranchBuilder.types.ts +1 -1
- package/src/workflowAuthoring/WorkflowChain.types.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @codemation/core-nodes
|
|
2
2
|
|
|
3
|
+
## 0.0.25
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`bb2b3b8`](https://github.com/MadeRelevant/codemation/commit/bb2b3b89069697c6aa36aac1de7124c5eea65c3e)]:
|
|
8
|
+
- @codemation/core@0.3.0
|
|
9
|
+
|
|
10
|
+
## 0.0.24
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`d3a4321`](https://github.com/MadeRelevant/codemation/commit/d3a4321dc178df51dfd61cc6eb872ccca36bbcdb)]:
|
|
15
|
+
- @codemation/core@0.2.3
|
|
16
|
+
|
|
17
|
+
## 0.0.23
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [#47](https://github.com/MadeRelevant/codemation/pull/47) [`74dc571`](https://github.com/MadeRelevant/codemation/commit/74dc571afb592bd7c05297b25f9f1fb06a46815f) Thanks [@cblokland90](https://github.com/cblokland90)! - Item-node input mapping refinements, `RunQueuePlanner` multi-input merge routing, Split/Filter/Aggregate batch nodes, AIAgent `ItemNode` + optional `mapInput`/`inputSchema`, and documentation updates.
|
|
22
|
+
|
|
23
|
+
- [#47](https://github.com/MadeRelevant/codemation/pull/47) [`74dc571`](https://github.com/MadeRelevant/codemation/commit/74dc571afb592bd7c05297b25f9f1fb06a46815f) Thanks [@cblokland90](https://github.com/cblokland90)! - Add `TWireJson` to `RunnableNodeConfig`, typed `ItemInputMapper<TWire, TIn>` (bivariant for storage), `RunnableNodeWireJson` helper, and align `ChainCursor` / workflow DSL with upstream wire typing. Introduce `ItemInputMapperContext` so `mapInput` receives typed `ctx.data` (`RunDataSnapshot`) for reading any completed upstream node’s outputs.
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [[`74dc571`](https://github.com/MadeRelevant/codemation/commit/74dc571afb592bd7c05297b25f9f1fb06a46815f), [`74dc571`](https://github.com/MadeRelevant/codemation/commit/74dc571afb592bd7c05297b25f9f1fb06a46815f)]:
|
|
26
|
+
- @codemation/core@0.2.2
|
|
27
|
+
|
|
3
28
|
## 0.0.22
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|