@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 +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
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
|
}
|