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