@particle-academy/fancy-flow 0.55.0 → 0.57.0

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 (41) hide show
  1. package/dist/{chunk-KP4TBF3A.js → chunk-45SSUYW7.js} +3 -3
  2. package/dist/{chunk-KP4TBF3A.js.map → chunk-45SSUYW7.js.map} +1 -1
  3. package/dist/{chunk-L4QAAGLV.js → chunk-4X3DPRVD.js} +3 -3
  4. package/dist/{chunk-L4QAAGLV.js.map → chunk-4X3DPRVD.js.map} +1 -1
  5. package/dist/{chunk-YVLOLS25.js → chunk-E3XNFOLI.js} +20 -5
  6. package/dist/chunk-E3XNFOLI.js.map +1 -0
  7. package/dist/{chunk-22OJOD4X.js → chunk-LTUOAFQA.js} +27 -2
  8. package/dist/chunk-LTUOAFQA.js.map +1 -0
  9. package/dist/{chunk-E3AGYTHP.js → chunk-LUXQXJ4R.js} +3 -3
  10. package/dist/{chunk-E3AGYTHP.js.map → chunk-LUXQXJ4R.js.map} +1 -1
  11. package/dist/{chunk-HMEI2LFU.js → chunk-UBXRIK5R.js} +4 -4
  12. package/dist/{chunk-HMEI2LFU.js.map → chunk-UBXRIK5R.js.map} +1 -1
  13. package/dist/durable.cjs +25 -0
  14. package/dist/durable.cjs.map +1 -1
  15. package/dist/durable.js +1 -1
  16. package/dist/engine.cjs +25 -0
  17. package/dist/engine.cjs.map +1 -1
  18. package/dist/engine.js +3 -3
  19. package/dist/index.cjs +42 -2
  20. package/dist/index.cjs.map +1 -1
  21. package/dist/index.js +11 -11
  22. package/dist/registry.cjs +25 -0
  23. package/dist/registry.cjs.map +1 -1
  24. package/dist/registry.js +2 -2
  25. package/dist/runtime.cjs +25 -0
  26. package/dist/runtime.cjs.map +1 -1
  27. package/dist/runtime.js +3 -3
  28. package/dist/schema/index.d.cts +29 -5
  29. package/dist/schema/index.d.ts +29 -5
  30. package/dist/schema.cjs +42 -2
  31. package/dist/schema.cjs.map +1 -1
  32. package/dist/schema.js +2 -2
  33. package/dist/screens.cjs +25 -0
  34. package/dist/screens.cjs.map +1 -1
  35. package/dist/screens.js +4 -4
  36. package/dist/ux.cjs +25 -0
  37. package/dist/ux.cjs.map +1 -1
  38. package/dist/ux.js +1 -1
  39. package/package.json +1 -1
  40. package/dist/chunk-22OJOD4X.js.map +0 -1
  41. package/dist/chunk-YVLOLS25.js.map +0 -1
package/dist/schema.js CHANGED
@@ -1,5 +1,5 @@
1
- export { WORKFLOW_SCHEMA_URL, WORKFLOW_SCHEMA_VERSION, exportWorkflow, importWorkflow, migrateSchema, workflowToBlob } from './chunk-YVLOLS25.js';
2
- import './chunk-22OJOD4X.js';
1
+ export { WORKFLOW_SCHEMA_URL, WORKFLOW_SCHEMA_VERSION, exportWorkflow, importWorkflow, migrateSchema, workflowToBlob } from './chunk-E3XNFOLI.js';
2
+ import './chunk-LTUOAFQA.js';
3
3
  import './chunk-F5RPRB7A.js';
4
4
  import './chunk-USL4FMFU.js';
5
5
  //# sourceMappingURL=schema.js.map
package/dist/screens.cjs CHANGED
@@ -10221,6 +10221,11 @@ var KINDS = [
10221
10221
  },
10222
10222
  {
10223
10223
  name: "@particle-academy/wait",
10224
+ outputShape: [
10225
+ { path: "waited", type: "string", description: "Which wait mode ran." },
10226
+ { path: "duration", type: "number", description: "How long it waited." },
10227
+ { path: "input", type: "unknown", description: "The value that arrived, carried forward." }
10228
+ ],
10224
10229
  aliases: ["wait", "@fancy/wait"],
10225
10230
  category: "logic",
10226
10231
  label: "Wait",
@@ -10418,6 +10423,11 @@ var KINDS = [
10418
10423
  },
10419
10424
  {
10420
10425
  name: "@particle-academy/llm_router",
10426
+ outputShape: [
10427
+ { path: "route", type: "string", description: "The port the model chose." },
10428
+ { path: "reason", type: "string", description: "Why the model chose it." },
10429
+ { path: "input", type: "unknown", description: "The value that arrived, carried forward." }
10430
+ ],
10421
10431
  // Every id this node has ever shipped under keeps resolving — MOIC's saved
10422
10432
  // flows carry the bare `llm_branch`.
10423
10433
  aliases: ["llm_router", "llm_branch", "@fancy/llm_branch", "@fancy/llm_router"],
@@ -10556,6 +10566,11 @@ var KINDS = [
10556
10566
  },
10557
10567
  {
10558
10568
  name: "@particle-academy/webhook_out",
10569
+ outputShape: [
10570
+ { path: "sent", type: "boolean", description: "True once the request was made." },
10571
+ { path: "status", type: "number", description: "HTTP status, when the transport reported one." },
10572
+ { path: "response", type: "unknown", description: "The response body, when there was one." }
10573
+ ],
10559
10574
  aliases: ["webhook_out", "@fancy/webhook_out"],
10560
10575
  category: "io",
10561
10576
  label: "Send Webhook",
@@ -10593,6 +10608,12 @@ var KINDS = [
10593
10608
  },
10594
10609
  {
10595
10610
  name: "@particle-academy/notify",
10611
+ outputShape: [
10612
+ { path: "sent", type: "boolean", description: "True once the message was handed to the channel." },
10613
+ { path: "channel", type: "string", description: "The channel it went to." },
10614
+ { path: "to", type: "string", description: "The recipient." },
10615
+ { path: "message", type: "string", description: "The rendered message." }
10616
+ ],
10596
10617
  aliases: ["notify", "@fancy/notify"],
10597
10618
  category: "human",
10598
10619
  label: "Notify",
@@ -10628,6 +10649,10 @@ var KINDS = [
10628
10649
  },
10629
10650
  {
10630
10651
  name: "@particle-academy/log",
10652
+ outputShape: [
10653
+ { path: "logged", type: "string", description: "The message that was written." },
10654
+ { path: "level", type: "string", description: "The level it was written at." }
10655
+ ],
10631
10656
  aliases: ["log", "@fancy/log"],
10632
10657
  category: "output",
10633
10658
  label: "Log",