@hostwebhook/node-types 1.55.0 → 1.55.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/ui.js +8 -2
- package/package.json +1 -1
package/dist/ui.js
CHANGED
|
@@ -8,10 +8,16 @@ exports.PREFIX_TO_TYPE = exports.NODE_UI = void 0;
|
|
|
8
8
|
exports.resolveNodeId = resolveNodeId;
|
|
9
9
|
exports.NODE_UI = {
|
|
10
10
|
// ── Source nodes ──
|
|
11
|
+
// Una fuente arranca el flujo: `fromNodes: false` significa que nada puede
|
|
12
|
+
// conectarse HACIA ella, y por eso su DTO en la API tampoco declara
|
|
13
|
+
// `inputNodes`. Expone un único punto de salida, `right-out`. El de abajo se
|
|
14
|
+
// retiró porque no aportaba una segunda semántica — sólo una segunda diana
|
|
15
|
+
// donde soltar aristas. `router` sí conserva el suyo: ahí, abajo significa
|
|
16
|
+
// "por regla".
|
|
11
17
|
webhook: { fromNodes: true, toNodes: true, isSource: true },
|
|
12
|
-
scheduledWorkflow: { fromNodes: false, toNodes: true, isSource: true, outputHandles: ['right'
|
|
18
|
+
scheduledWorkflow: { fromNodes: false, toNodes: true, isSource: true, outputHandles: ['right'], dotHandles: { output: ['right-out'] } },
|
|
13
19
|
chatTrigger: { fromNodes: false, toNodes: true, isSource: true, outputHandles: ['right'], dotHandles: { output: ['right-out'] } },
|
|
14
|
-
trigger: { fromNodes: false, toNodes: true, isSource: true, outputHandles: ['right'
|
|
20
|
+
trigger: { fromNodes: false, toNodes: true, isSource: true, outputHandles: ['right'], dotHandles: { output: ['right-out'] } },
|
|
15
21
|
// Voice Agent: dynamicOutputs=true tells NodeShell to derive ONE
|
|
16
22
|
// output handle per non-disabled `entity.tools[i].name`. The
|
|
17
23
|
// `right-out` fallback handle is rendered when the agent has zero
|
package/package.json
CHANGED