@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/registry.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { ANY_PORT_TYPE, RegistryNode, buildNodeTypes, createConnectionValidator, defaultPortCompatibility } from './chunk-
|
|
1
|
+
export { ANY_PORT_TYPE, RegistryNode, buildNodeTypes, createConnectionValidator, defaultPortCompatibility } from './chunk-LUXQXJ4R.js';
|
|
2
2
|
export { LEGACY_PAUSE_PREFIXES, PAUSE_PREFIX, decodePause, encodePause, isPause, pauseForHuman } from './chunk-UEOE6B52.js';
|
|
3
|
-
export { BUILTIN_KINDS, DEFAULT_MAX_DEPTH, categoryAccent, clearNodeKindOverrides, declaredRoutes, defaultConfigFor, ensureBuiltinKinds, getNodeKind, kindIds, listNodeKinds, llmRouterExecutor as llmBranchExecutor, llmRouterExecutor, nodeConfig, onNodeKindsChanged, overrideNodeKind, registerBuiltinKinds, registerNodeKind, resolveFallbackPort, resolveKindId, resolveNodePorts, resolvePortSpec, subflowExecutor, subflowMode, subflowPorts, validateConfig } from './chunk-
|
|
3
|
+
export { BUILTIN_KINDS, DEFAULT_MAX_DEPTH, categoryAccent, clearNodeKindOverrides, declaredRoutes, defaultConfigFor, ensureBuiltinKinds, getNodeKind, kindIds, listNodeKinds, llmRouterExecutor as llmBranchExecutor, llmRouterExecutor, nodeConfig, onNodeKindsChanged, overrideNodeKind, registerBuiltinKinds, registerNodeKind, resolveFallbackPort, resolveKindId, resolveNodePorts, resolvePortSpec, subflowExecutor, subflowMode, subflowPorts, validateConfig } from './chunk-LTUOAFQA.js';
|
|
4
4
|
export { RichInputPreview, getRichInputAdapter, isRichInputEnabled, onRichInputAdapterChanged, registerRichInputAdapter } from './chunk-F5RPRB7A.js';
|
|
5
5
|
export { capabilityStatus, getLlmClient, getWorkflowResolver, isResolutionFailure, registerLlmClient, registerWorkflowResolver } from './chunk-USL4FMFU.js';
|
|
6
6
|
//# sourceMappingURL=registry.js.map
|
package/dist/runtime.cjs
CHANGED
|
@@ -9635,6 +9635,11 @@ var KINDS = [
|
|
|
9635
9635
|
},
|
|
9636
9636
|
{
|
|
9637
9637
|
name: "@particle-academy/wait",
|
|
9638
|
+
outputShape: [
|
|
9639
|
+
{ path: "waited", type: "string", description: "Which wait mode ran." },
|
|
9640
|
+
{ path: "duration", type: "number", description: "How long it waited." },
|
|
9641
|
+
{ path: "input", type: "unknown", description: "The value that arrived, carried forward." }
|
|
9642
|
+
],
|
|
9638
9643
|
aliases: ["wait", "@fancy/wait"],
|
|
9639
9644
|
category: "logic",
|
|
9640
9645
|
label: "Wait",
|
|
@@ -9832,6 +9837,11 @@ var KINDS = [
|
|
|
9832
9837
|
},
|
|
9833
9838
|
{
|
|
9834
9839
|
name: "@particle-academy/llm_router",
|
|
9840
|
+
outputShape: [
|
|
9841
|
+
{ path: "route", type: "string", description: "The port the model chose." },
|
|
9842
|
+
{ path: "reason", type: "string", description: "Why the model chose it." },
|
|
9843
|
+
{ path: "input", type: "unknown", description: "The value that arrived, carried forward." }
|
|
9844
|
+
],
|
|
9835
9845
|
// Every id this node has ever shipped under keeps resolving — MOIC's saved
|
|
9836
9846
|
// flows carry the bare `llm_branch`.
|
|
9837
9847
|
aliases: ["llm_router", "llm_branch", "@fancy/llm_branch", "@fancy/llm_router"],
|
|
@@ -9970,6 +9980,11 @@ var KINDS = [
|
|
|
9970
9980
|
},
|
|
9971
9981
|
{
|
|
9972
9982
|
name: "@particle-academy/webhook_out",
|
|
9983
|
+
outputShape: [
|
|
9984
|
+
{ path: "sent", type: "boolean", description: "True once the request was made." },
|
|
9985
|
+
{ path: "status", type: "number", description: "HTTP status, when the transport reported one." },
|
|
9986
|
+
{ path: "response", type: "unknown", description: "The response body, when there was one." }
|
|
9987
|
+
],
|
|
9973
9988
|
aliases: ["webhook_out", "@fancy/webhook_out"],
|
|
9974
9989
|
category: "io",
|
|
9975
9990
|
label: "Send Webhook",
|
|
@@ -10007,6 +10022,12 @@ var KINDS = [
|
|
|
10007
10022
|
},
|
|
10008
10023
|
{
|
|
10009
10024
|
name: "@particle-academy/notify",
|
|
10025
|
+
outputShape: [
|
|
10026
|
+
{ path: "sent", type: "boolean", description: "True once the message was handed to the channel." },
|
|
10027
|
+
{ path: "channel", type: "string", description: "The channel it went to." },
|
|
10028
|
+
{ path: "to", type: "string", description: "The recipient." },
|
|
10029
|
+
{ path: "message", type: "string", description: "The rendered message." }
|
|
10030
|
+
],
|
|
10010
10031
|
aliases: ["notify", "@fancy/notify"],
|
|
10011
10032
|
category: "human",
|
|
10012
10033
|
label: "Notify",
|
|
@@ -10042,6 +10063,10 @@ var KINDS = [
|
|
|
10042
10063
|
},
|
|
10043
10064
|
{
|
|
10044
10065
|
name: "@particle-academy/log",
|
|
10066
|
+
outputShape: [
|
|
10067
|
+
{ path: "logged", type: "string", description: "The message that was written." },
|
|
10068
|
+
{ path: "level", type: "string", description: "The level it was written at." }
|
|
10069
|
+
],
|
|
10045
10070
|
aliases: ["log", "@fancy/log"],
|
|
10046
10071
|
category: "output",
|
|
10047
10072
|
label: "Log",
|