@particle-academy/fancy-flow 0.47.1 → 0.48.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/{chunk-7DTUZUTB.js → chunk-54SN6LML.js} +3 -3
- package/dist/{chunk-7DTUZUTB.js.map → chunk-54SN6LML.js.map} +1 -1
- package/dist/{chunk-E6T3FZZP.js → chunk-6HGXAU5L.js} +3 -3
- package/dist/{chunk-E6T3FZZP.js.map → chunk-6HGXAU5L.js.map} +1 -1
- package/dist/{chunk-KTGXZBUM.js → chunk-ACGCHWCM.js} +3 -3
- package/dist/{chunk-KTGXZBUM.js.map → chunk-ACGCHWCM.js.map} +1 -1
- package/dist/{chunk-UVP43XU2.js → chunk-FCCGV52I.js} +4 -4
- package/dist/{chunk-UVP43XU2.js.map → chunk-FCCGV52I.js.map} +1 -1
- package/dist/{chunk-DRRZEAYB.js → chunk-HHGU7JXJ.js} +3 -3
- package/dist/{chunk-DRRZEAYB.js.map → chunk-HHGU7JXJ.js.map} +1 -1
- package/dist/{chunk-MJ3A3TAI.js → chunk-M7H3ASBI.js} +6 -3
- package/dist/chunk-M7H3ASBI.js.map +1 -0
- package/dist/connectors.cjs +95 -0
- package/dist/connectors.cjs.map +1 -0
- package/dist/connectors.d.cts +122 -0
- package/dist/connectors.d.ts +122 -0
- package/dist/connectors.js +90 -0
- package/dist/connectors.js.map +1 -0
- package/dist/durable.cjs +4 -1
- package/dist/durable.cjs.map +1 -1
- package/dist/durable.js +1 -1
- package/dist/engine.cjs +4 -1
- package/dist/engine.cjs.map +1 -1
- package/dist/engine.js +3 -3
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +11 -11
- package/dist/registry.cjs +4 -1
- package/dist/registry.cjs.map +1 -1
- package/dist/registry.js +2 -2
- package/dist/runtime.cjs +4 -1
- package/dist/runtime.cjs.map +1 -1
- package/dist/runtime.js +3 -3
- package/dist/schema.cjs +4 -1
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.js +2 -2
- package/dist/screens.cjs +4 -1
- package/dist/screens.cjs.map +1 -1
- package/dist/screens.js +4 -4
- package/dist/ux.cjs +4 -1
- package/dist/ux.cjs.map +1 -1
- package/dist/ux.js +1 -1
- package/package.json +11 -1
- package/dist/chunk-MJ3A3TAI.js.map +0 -1
package/dist/engine.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { runCohort } from './chunk-
|
|
1
|
+
export { runCohort } from './chunk-54SN6LML.js';
|
|
2
2
|
import { decodePause } from './chunk-UEOE6B52.js';
|
|
3
3
|
export { LEGACY_PAUSE_PREFIXES, PAUSE_PREFIX, decodePause, encodePause, isPause, pauseForHuman } from './chunk-UEOE6B52.js';
|
|
4
|
-
import { runFlow, getNodeKind, resolveNodePorts } from './chunk-
|
|
5
|
-
export { RunIdentity, defaultConfigFor, escapeSegment, getNodeKind, kindIds, listNodeKinds, registerNodeKind, resolveKindId, runFlow, validateConfig } from './chunk-
|
|
4
|
+
import { runFlow, getNodeKind, resolveNodePorts } from './chunk-M7H3ASBI.js';
|
|
5
|
+
export { RunIdentity, defaultConfigFor, escapeSegment, getNodeKind, kindIds, listNodeKinds, registerNodeKind, resolveKindId, runFlow, validateConfig } from './chunk-M7H3ASBI.js';
|
|
6
6
|
import './chunk-F5RPRB7A.js';
|
|
7
7
|
import { isResolutionFailure, registerLlmClient, registerWorkflowResolver } from './chunk-USL4FMFU.js';
|
|
8
8
|
|
package/dist/index.cjs
CHANGED
|
@@ -11241,7 +11241,10 @@ function collectInputs(node, incoming, portValues, initial) {
|
|
|
11241
11241
|
function pickExecutor(executors, node) {
|
|
11242
11242
|
if (executors[node.id]) return executors[node.id];
|
|
11243
11243
|
if (node.type && executors[node.type]) return executors[node.type];
|
|
11244
|
-
const
|
|
11244
|
+
const declared = node.data?.kind;
|
|
11245
|
+
const kindName = typeof declared === "string" && declared !== "" ? declared : node.type;
|
|
11246
|
+
if (kindName && kindName !== node.type && executors[kindName]) return executors[kindName];
|
|
11247
|
+
const kind = kindName ? getNodeKind(kindName) : null;
|
|
11245
11248
|
if (kind) {
|
|
11246
11249
|
for (const id2 of kindIds(kind)) {
|
|
11247
11250
|
if (executors[id2]) return executors[id2];
|