@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/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-
|
|
3
|
+
import { getNodeKind, runFlow, resolveKindId, kindIds, RunIdentity } from './chunk-LTUOAFQA.js';
|
|
4
4
|
import './chunk-F5RPRB7A.js';
|
|
5
5
|
import './chunk-USL4FMFU.js';
|
|
6
6
|
|
package/dist/engine.cjs
CHANGED
|
@@ -9647,6 +9647,11 @@ var KINDS = [
|
|
|
9647
9647
|
},
|
|
9648
9648
|
{
|
|
9649
9649
|
name: "@particle-academy/wait",
|
|
9650
|
+
outputShape: [
|
|
9651
|
+
{ path: "waited", type: "string", description: "Which wait mode ran." },
|
|
9652
|
+
{ path: "duration", type: "number", description: "How long it waited." },
|
|
9653
|
+
{ path: "input", type: "unknown", description: "The value that arrived, carried forward." }
|
|
9654
|
+
],
|
|
9650
9655
|
aliases: ["wait", "@fancy/wait"],
|
|
9651
9656
|
category: "logic",
|
|
9652
9657
|
label: "Wait",
|
|
@@ -9844,6 +9849,11 @@ var KINDS = [
|
|
|
9844
9849
|
},
|
|
9845
9850
|
{
|
|
9846
9851
|
name: "@particle-academy/llm_router",
|
|
9852
|
+
outputShape: [
|
|
9853
|
+
{ path: "route", type: "string", description: "The port the model chose." },
|
|
9854
|
+
{ path: "reason", type: "string", description: "Why the model chose it." },
|
|
9855
|
+
{ path: "input", type: "unknown", description: "The value that arrived, carried forward." }
|
|
9856
|
+
],
|
|
9847
9857
|
// Every id this node has ever shipped under keeps resolving — MOIC's saved
|
|
9848
9858
|
// flows carry the bare `llm_branch`.
|
|
9849
9859
|
aliases: ["llm_router", "llm_branch", "@fancy/llm_branch", "@fancy/llm_router"],
|
|
@@ -9982,6 +9992,11 @@ var KINDS = [
|
|
|
9982
9992
|
},
|
|
9983
9993
|
{
|
|
9984
9994
|
name: "@particle-academy/webhook_out",
|
|
9995
|
+
outputShape: [
|
|
9996
|
+
{ path: "sent", type: "boolean", description: "True once the request was made." },
|
|
9997
|
+
{ path: "status", type: "number", description: "HTTP status, when the transport reported one." },
|
|
9998
|
+
{ path: "response", type: "unknown", description: "The response body, when there was one." }
|
|
9999
|
+
],
|
|
9985
10000
|
aliases: ["webhook_out", "@fancy/webhook_out"],
|
|
9986
10001
|
category: "io",
|
|
9987
10002
|
label: "Send Webhook",
|
|
@@ -10019,6 +10034,12 @@ var KINDS = [
|
|
|
10019
10034
|
},
|
|
10020
10035
|
{
|
|
10021
10036
|
name: "@particle-academy/notify",
|
|
10037
|
+
outputShape: [
|
|
10038
|
+
{ path: "sent", type: "boolean", description: "True once the message was handed to the channel." },
|
|
10039
|
+
{ path: "channel", type: "string", description: "The channel it went to." },
|
|
10040
|
+
{ path: "to", type: "string", description: "The recipient." },
|
|
10041
|
+
{ path: "message", type: "string", description: "The rendered message." }
|
|
10042
|
+
],
|
|
10022
10043
|
aliases: ["notify", "@fancy/notify"],
|
|
10023
10044
|
category: "human",
|
|
10024
10045
|
label: "Notify",
|
|
@@ -10054,6 +10075,10 @@ var KINDS = [
|
|
|
10054
10075
|
},
|
|
10055
10076
|
{
|
|
10056
10077
|
name: "@particle-academy/log",
|
|
10078
|
+
outputShape: [
|
|
10079
|
+
{ path: "logged", type: "string", description: "The message that was written." },
|
|
10080
|
+
{ path: "level", type: "string", description: "The level it was written at." }
|
|
10081
|
+
],
|
|
10057
10082
|
aliases: ["log", "@fancy/log"],
|
|
10058
10083
|
category: "output",
|
|
10059
10084
|
label: "Log",
|