graphai 0.5.4 → 0.5.5

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.
Files changed (2) hide show
  1. package/lib/node.js +1 -1
  2. package/package.json +1 -1
package/lib/node.js CHANGED
@@ -328,7 +328,7 @@ class ComputedNode extends Node {
328
328
  if (this.inputNames) {
329
329
  return [];
330
330
  }
331
- return (this.inputs ?? []).map((key) => previousResults[String(key)]).filter(a => !this.anyInput || a);
331
+ return (this.inputs ?? []).map((key) => previousResults[String(key)]).filter((a) => !this.anyInput || a);
332
332
  }
333
333
  getDebugInfo() {
334
334
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphai",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "description": "Asynchronous data flow execution engine for agentic AI apps.",
5
5
  "main": "lib/index.js",
6
6
  "files": [