@particle-academy/fancy-flow 0.59.0 → 0.64.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/{HumanPrompt-Bw09OyS3.d.ts → HumanPrompt-BKThiyjB.d.ts} +1 -1
- package/dist/{HumanPrompt-DV5-xnDa.d.cts → HumanPrompt-Bpp3JiVH.d.cts} +1 -1
- package/dist/{chunk-M7M6GLFV.js → chunk-5H54OTKT.js} +3 -3
- package/dist/{chunk-M7M6GLFV.js.map → chunk-5H54OTKT.js.map} +1 -1
- package/dist/chunk-77V4QC6Y.js +54 -0
- package/dist/chunk-77V4QC6Y.js.map +1 -0
- package/dist/{chunk-MX4SJDNI.js → chunk-EO6444T2.js} +4 -4
- package/dist/{chunk-MX4SJDNI.js.map → chunk-EO6444T2.js.map} +1 -1
- package/dist/{chunk-HBE4LVPX.js → chunk-JF6WCRBU.js} +9 -7
- package/dist/chunk-JF6WCRBU.js.map +1 -0
- package/dist/{chunk-LGLOBK6Q.js → chunk-MBVX4ZRB.js} +3 -3
- package/dist/{chunk-LGLOBK6Q.js.map → chunk-MBVX4ZRB.js.map} +1 -1
- package/dist/{chunk-A3TLZS5B.js → chunk-RIAFHQT5.js} +3 -3
- package/dist/{chunk-A3TLZS5B.js.map → chunk-RIAFHQT5.js.map} +1 -1
- package/dist/{chunk-BHM5HGXH.js → chunk-UM4C46AF.js} +38 -14
- package/dist/chunk-UM4C46AF.js.map +1 -0
- package/dist/{chunk-FGYG5JVW.js → chunk-W5DPKJY4.js} +5 -3
- package/dist/chunk-W5DPKJY4.js.map +1 -0
- package/dist/connectors.d.cts +1 -1
- package/dist/connectors.d.ts +1 -1
- package/dist/durable.cjs +7 -5
- package/dist/durable.cjs.map +1 -1
- package/dist/durable.js +2 -2
- package/dist/engine.cjs +189 -29
- package/dist/engine.cjs.map +1 -1
- package/dist/engine.d.cts +67 -5
- package/dist/engine.d.ts +67 -5
- package/dist/engine.js +7 -5
- package/dist/engine.js.map +1 -1
- package/dist/expr-BfXDrs4H.d.cts +149 -0
- package/dist/expr-BfXDrs4H.d.ts +149 -0
- package/dist/fields/react-fancy.d.cts +2 -2
- package/dist/fields/react-fancy.d.ts +2 -2
- package/dist/index.cjs +94 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -84
- package/dist/index.d.ts +7 -84
- package/dist/index.js +13 -12
- package/dist/index.js.map +1 -1
- package/dist/registry/index.d.cts +3 -3
- package/dist/registry/index.d.ts +3 -3
- package/dist/{registry-1qhmRtvC.d.cts → registry-CntAdUcY.d.cts} +1 -1
- package/dist/{registry-D2qocEsY.d.ts → registry-DYoV-MQi.d.ts} +1 -1
- package/dist/registry.cjs +7 -5
- package/dist/registry.cjs.map +1 -1
- package/dist/registry.js +2 -2
- package/dist/runtime.cjs +7 -5
- package/dist/runtime.cjs.map +1 -1
- package/dist/runtime.js +3 -3
- package/dist/schema.cjs +57 -5
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.js +3 -2
- package/dist/screens.cjs +7 -5
- package/dist/screens.cjs.map +1 -1
- package/dist/screens.js +4 -4
- package/dist/{types-CLSUZW8c.d.ts → types-Ckhz-YwC.d.ts} +7 -2
- package/dist/{types-BLVpNNLN.d.cts → types-D71SKA5A.d.cts} +7 -2
- package/dist/ux.cjs +7 -5
- package/dist/ux.cjs.map +1 -1
- package/dist/ux.d.cts +1 -1
- package/dist/ux.d.ts +1 -1
- package/dist/ux.js +1 -1
- package/package.json +2 -2
- package/dist/chunk-BHM5HGXH.js.map +0 -1
- package/dist/chunk-FGYG5JVW.js.map +0 -1
- package/dist/chunk-HBE4LVPX.js.map +0 -1
|
@@ -9648,7 +9648,7 @@ function activatedPorts(node, result) {
|
|
|
9648
9648
|
return { ports: [r.__port], value: r.value };
|
|
9649
9649
|
}
|
|
9650
9650
|
if (typeof r.branch === "string") {
|
|
9651
|
-
return { ports: [r.branch], value: r.value
|
|
9651
|
+
return { ports: [r.branch], value: Object.prototype.hasOwnProperty.call(r, "value") ? r.value : r };
|
|
9652
9652
|
}
|
|
9653
9653
|
}
|
|
9654
9654
|
const kind = getNodeKind(node.data?.kind ?? node.type ?? "") ?? void 0;
|
|
@@ -9810,8 +9810,9 @@ var KINDS = [
|
|
|
9810
9810
|
// ───────────── Triggers ─────────────
|
|
9811
9811
|
{
|
|
9812
9812
|
name: "@particle-academy/manual_trigger",
|
|
9813
|
-
//
|
|
9814
|
-
|
|
9813
|
+
// Returns the raw inputs MAP, not the `in` port -- flat at an entry
|
|
9814
|
+
// point, port-keyed the moment the node has an inbound edge.
|
|
9815
|
+
emits: "input-map-merged",
|
|
9815
9816
|
aliases: ["manual_trigger", "@fancy/manual_trigger"],
|
|
9816
9817
|
category: "trigger",
|
|
9817
9818
|
label: "Manual",
|
|
@@ -9844,8 +9845,9 @@ var KINDS = [
|
|
|
9844
9845
|
{ path: "cron", type: "string", description: "The cron expression that fired." },
|
|
9845
9846
|
{ path: "timezone", type: "string", description: "The timezone it was evaluated in." }
|
|
9846
9847
|
],
|
|
9847
|
-
//
|
|
9848
|
-
|
|
9848
|
+
// Merges $ctx->inputs ITSELF beside cron/timezone -- the MAP, whose
|
|
9849
|
+
// shape depends on position, not each port's payload the way `merge` does.
|
|
9850
|
+
emits: "input-map-merged",
|
|
9849
9851
|
aliases: ["schedule_trigger", "@fancy/schedule_trigger"],
|
|
9850
9852
|
category: "trigger",
|
|
9851
9853
|
label: "Schedule",
|
|
@@ -10904,5 +10906,5 @@ function LaneNodeInner(props) {
|
|
|
10904
10906
|
var LaneNode = memo(LaneNodeInner);
|
|
10905
10907
|
|
|
10906
10908
|
export { BUILTIN_KINDS, Background, BackgroundVariant, Controls, DEFAULT_MAX_DEPTH, FlowEditorProvider, Handle, LaneNode, MiniMap, NodeResizer, NodeToolbar, NoteNode, Position, ReactFlowProvider, RunIdentity, ViewportPortal, addEdge2 as addEdge, applyEdgeChanges, applyNodeChanges, categoryAccent, clearNodeKindOverrides, declaredRoutes, defaultConfigFor, ensureBuiltinKinds, escapeSegment, getNodeKind, humanInputFields, index, kindIds, listNodeKinds, llmRouterExecutor, nodeConfig, onNodeKindsChanged, overrideNodeKind, reconnectEdge2 as reconnectEdge, registerBuiltinKinds, registerNodeKind, resolveFallbackPort, resolveKindId, resolveNodePorts, resolvePortSpec, runFlow, subflowExecutor, subflowMode, subflowPorts, useFlowEditor, useFlowEditorOptional, useReactFlow, validateConfig };
|
|
10907
|
-
//# sourceMappingURL=chunk-
|
|
10908
|
-
//# sourceMappingURL=chunk-
|
|
10909
|
+
//# sourceMappingURL=chunk-JF6WCRBU.js.map
|
|
10910
|
+
//# sourceMappingURL=chunk-JF6WCRBU.js.map
|