@particle-academy/fancy-flow 0.56.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 (38) 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-GB4A7DFM.js → chunk-E3XNFOLI.js} +3 -3
  6. package/dist/{chunk-GB4A7DFM.js.map → chunk-E3XNFOLI.js.map} +1 -1
  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 +25 -0
  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.cjs +25 -0
  29. package/dist/schema.cjs.map +1 -1
  30. package/dist/schema.js +2 -2
  31. package/dist/screens.cjs +25 -0
  32. package/dist/screens.cjs.map +1 -1
  33. package/dist/screens.js +4 -4
  34. package/dist/ux.cjs +25 -0
  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-22OJOD4X.js.map +0 -1
package/dist/screens.js CHANGED
@@ -1,8 +1,8 @@
1
- import { FlowViewer } from './chunk-HMEI2LFU.js';
2
- export { FlowViewer } from './chunk-HMEI2LFU.js';
3
- import './chunk-E3AGYTHP.js';
1
+ import { FlowViewer } from './chunk-UBXRIK5R.js';
2
+ export { FlowViewer } from './chunk-UBXRIK5R.js';
3
+ import './chunk-LUXQXJ4R.js';
4
4
  import './chunk-UEOE6B52.js';
5
- import './chunk-22OJOD4X.js';
5
+ import './chunk-LTUOAFQA.js';
6
6
  import './chunk-F5RPRB7A.js';
7
7
  import './chunk-USL4FMFU.js';
8
8
  import { registerSchemaComponents } from '@particle-academy/fancy-screens';
package/dist/ux.cjs CHANGED
@@ -10037,6 +10037,11 @@ var KINDS = [
10037
10037
  },
10038
10038
  {
10039
10039
  name: "@particle-academy/wait",
10040
+ outputShape: [
10041
+ { path: "waited", type: "string", description: "Which wait mode ran." },
10042
+ { path: "duration", type: "number", description: "How long it waited." },
10043
+ { path: "input", type: "unknown", description: "The value that arrived, carried forward." }
10044
+ ],
10040
10045
  aliases: ["wait", "@fancy/wait"],
10041
10046
  category: "logic",
10042
10047
  label: "Wait",
@@ -10234,6 +10239,11 @@ var KINDS = [
10234
10239
  },
10235
10240
  {
10236
10241
  name: "@particle-academy/llm_router",
10242
+ outputShape: [
10243
+ { path: "route", type: "string", description: "The port the model chose." },
10244
+ { path: "reason", type: "string", description: "Why the model chose it." },
10245
+ { path: "input", type: "unknown", description: "The value that arrived, carried forward." }
10246
+ ],
10237
10247
  // Every id this node has ever shipped under keeps resolving — MOIC's saved
10238
10248
  // flows carry the bare `llm_branch`.
10239
10249
  aliases: ["llm_router", "llm_branch", "@fancy/llm_branch", "@fancy/llm_router"],
@@ -10372,6 +10382,11 @@ var KINDS = [
10372
10382
  },
10373
10383
  {
10374
10384
  name: "@particle-academy/webhook_out",
10385
+ outputShape: [
10386
+ { path: "sent", type: "boolean", description: "True once the request was made." },
10387
+ { path: "status", type: "number", description: "HTTP status, when the transport reported one." },
10388
+ { path: "response", type: "unknown", description: "The response body, when there was one." }
10389
+ ],
10375
10390
  aliases: ["webhook_out", "@fancy/webhook_out"],
10376
10391
  category: "io",
10377
10392
  label: "Send Webhook",
@@ -10409,6 +10424,12 @@ var KINDS = [
10409
10424
  },
10410
10425
  {
10411
10426
  name: "@particle-academy/notify",
10427
+ outputShape: [
10428
+ { path: "sent", type: "boolean", description: "True once the message was handed to the channel." },
10429
+ { path: "channel", type: "string", description: "The channel it went to." },
10430
+ { path: "to", type: "string", description: "The recipient." },
10431
+ { path: "message", type: "string", description: "The rendered message." }
10432
+ ],
10412
10433
  aliases: ["notify", "@fancy/notify"],
10413
10434
  category: "human",
10414
10435
  label: "Notify",
@@ -10444,6 +10465,10 @@ var KINDS = [
10444
10465
  },
10445
10466
  {
10446
10467
  name: "@particle-academy/log",
10468
+ outputShape: [
10469
+ { path: "logged", type: "string", description: "The message that was written." },
10470
+ { path: "level", type: "string", description: "The level it was written at." }
10471
+ ],
10447
10472
  aliases: ["log", "@fancy/log"],
10448
10473
  category: "output",
10449
10474
  label: "Log",