@particle-academy/fancy-flow 0.51.0 → 0.51.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.
Files changed (38) hide show
  1. package/dist/{chunk-XCT2CJ5O.js → chunk-4GO2CHAY.js} +20 -5
  2. package/dist/chunk-4GO2CHAY.js.map +1 -0
  3. package/dist/{chunk-7XTTXMGB.js → chunk-OECW2E5D.js} +4 -4
  4. package/dist/{chunk-7XTTXMGB.js.map → chunk-OECW2E5D.js.map} +1 -1
  5. package/dist/{chunk-HXGGCMR7.js → chunk-OK7KJLWA.js} +3 -3
  6. package/dist/{chunk-HXGGCMR7.js.map → chunk-OK7KJLWA.js.map} +1 -1
  7. package/dist/{chunk-6AI6CBNL.js → chunk-RSRXKZ52.js} +3 -3
  8. package/dist/{chunk-6AI6CBNL.js.map → chunk-RSRXKZ52.js.map} +1 -1
  9. package/dist/{chunk-LH76EIFL.js → chunk-SPINP4EJ.js} +3 -3
  10. package/dist/{chunk-LH76EIFL.js.map → chunk-SPINP4EJ.js.map} +1 -1
  11. package/dist/{chunk-SKEZ5AGI.js → chunk-VUU3CDBT.js} +3 -3
  12. package/dist/{chunk-SKEZ5AGI.js.map → chunk-VUU3CDBT.js.map} +1 -1
  13. package/dist/durable.cjs +18 -3
  14. package/dist/durable.cjs.map +1 -1
  15. package/dist/durable.js +1 -1
  16. package/dist/engine.cjs +18 -3
  17. package/dist/engine.cjs.map +1 -1
  18. package/dist/engine.js +3 -3
  19. package/dist/index.cjs +18 -3
  20. package/dist/index.cjs.map +1 -1
  21. package/dist/index.js +11 -11
  22. package/dist/registry.cjs +18 -3
  23. package/dist/registry.cjs.map +1 -1
  24. package/dist/registry.js +2 -2
  25. package/dist/runtime.cjs +18 -3
  26. package/dist/runtime.cjs.map +1 -1
  27. package/dist/runtime.js +3 -3
  28. package/dist/schema.cjs +18 -3
  29. package/dist/schema.cjs.map +1 -1
  30. package/dist/schema.js +2 -2
  31. package/dist/screens.cjs +18 -3
  32. package/dist/screens.cjs.map +1 -1
  33. package/dist/screens.js +4 -4
  34. package/dist/ux.cjs +18 -3
  35. package/dist/ux.cjs.map +1 -1
  36. package/dist/ux.js +1 -1
  37. package/package.json +1 -1
  38. package/dist/chunk-XCT2CJ5O.js.map +0 -1
package/dist/durable.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { truthy } from './chunk-BHM5HGXH.js';
2
2
  import { pauseForHuman, decodePause } from './chunk-UEOE6B52.js';
3
- import { getNodeKind, runFlow, resolveKindId, kindIds, RunIdentity } from './chunk-XCT2CJ5O.js';
3
+ import { getNodeKind, runFlow, resolveKindId, kindIds, RunIdentity } from './chunk-4GO2CHAY.js';
4
4
  import './chunk-F5RPRB7A.js';
5
5
  import './chunk-USL4FMFU.js';
6
6
 
package/dist/engine.cjs CHANGED
@@ -10455,7 +10455,8 @@ async function runFlow(graph, executors, onEvent = () => {
10455
10455
  const inputs = collectInputs(node, incoming, portValues, initialInputs, props, declaresProps);
10456
10456
  const exec = pickExecutor(executors, node);
10457
10457
  if (!exec) {
10458
- const msg = `No executor registered for kind=${node.type}`;
10458
+ const tried = executorLookupIds(node);
10459
+ const msg = `No executor registered for kind=${node.type} \u2014 tried ${tried.map((id2) => `"${id2}"`).join(", ")} and the wildcard "*". Key your registry by one of those.`;
10459
10460
  errors.push(msg);
10460
10461
  onEvent({ type: "node-status", nodeId: node.id, status: "error", text: msg });
10461
10462
  onEvent({ type: "log", nodeId: node.id, level: "error", message: msg });
@@ -10548,14 +10549,28 @@ function collectInputs(node, incoming, portValues, initial, props, declaresProps
10548
10549
  if (declaresProps) inputs.$props = props;
10549
10550
  return inputs;
10550
10551
  }
10552
+ function executorLookupIds(node) {
10553
+ const ids = [node.id];
10554
+ if (node.type) ids.push(node.type);
10555
+ const declared = node.data?.kind;
10556
+ const kindName2 = typeof declared === "string" && declared !== "" ? declared : node.type;
10557
+ if (kindName2 && kindName2 !== node.type) ids.push(kindName2);
10558
+ for (const name of [kindName2, node.type]) {
10559
+ const kind = name ? getNodeKind(name) : null;
10560
+ if (!kind) continue;
10561
+ for (const id2 of kindIds(kind)) ids.push(id2);
10562
+ }
10563
+ return [...new Set(ids)];
10564
+ }
10551
10565
  function pickExecutor(executors, node) {
10552
10566
  if (executors[node.id]) return executors[node.id];
10553
10567
  if (node.type && executors[node.type]) return executors[node.type];
10554
10568
  const declared = node.data?.kind;
10555
10569
  const kindName2 = typeof declared === "string" && declared !== "" ? declared : node.type;
10556
10570
  if (kindName2 && kindName2 !== node.type && executors[kindName2]) return executors[kindName2];
10557
- const kind = kindName2 ? getNodeKind(kindName2) : null;
10558
- if (kind) {
10571
+ for (const name of [kindName2, node.type]) {
10572
+ const kind = name ? getNodeKind(name) : null;
10573
+ if (!kind) continue;
10559
10574
  for (const id2 of kindIds(kind)) {
10560
10575
  if (executors[id2]) return executors[id2];
10561
10576
  }