@revenexx/integrations-node-sdk 0.18.0 → 0.18.1

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/index.d.cts CHANGED
@@ -122,6 +122,14 @@ interface INodeDescription {
122
122
  /** Associated images (screenshots, logos, banners) shipped with the package. */
123
123
  images?: IImage[];
124
124
  inputs: Record<string, IInputPort>;
125
+ /**
126
+ * Output ports the workflow editor wires to downstream nodes. An empty array
127
+ * marks a **terminal node**: the path ends here and no edge may leave it —
128
+ * the mirror image of `inputs: {}` on a trigger. `StopAndErrorNode` is the
129
+ * canonical case; it always throws, so there is no success path to wire, and
130
+ * a port that can never fire would leave a dead handle on the canvas. The
131
+ * key stays required so terminality is declared, not forgotten.
132
+ */
125
133
  outputs: IOutputPort[];
126
134
  config?: IConfigField[];
127
135
  }
package/dist/index.d.ts CHANGED
@@ -122,6 +122,14 @@ interface INodeDescription {
122
122
  /** Associated images (screenshots, logos, banners) shipped with the package. */
123
123
  images?: IImage[];
124
124
  inputs: Record<string, IInputPort>;
125
+ /**
126
+ * Output ports the workflow editor wires to downstream nodes. An empty array
127
+ * marks a **terminal node**: the path ends here and no edge may leave it —
128
+ * the mirror image of `inputs: {}` on a trigger. `StopAndErrorNode` is the
129
+ * canonical case; it always throws, so there is no success path to wire, and
130
+ * a port that can never fire would leave a dead handle on the canvas. The
131
+ * key stays required so terminality is declared, not forgotten.
132
+ */
125
133
  outputs: IOutputPort[];
126
134
  config?: IConfigField[];
127
135
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revenexx/integrations-node-sdk",
3
- "version": "0.18.0",
3
+ "version": "0.18.1",
4
4
  "description": "TypeScript interfaces and utilities for Revenexx integration nodes",
5
5
  "license": "MIT",
6
6
  "author": "revenexx GmbH",