lua-cli 3.32.3 → 3.32.4
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/api-exports.d.ts +5 -3
- package/dist/api-exports.js +634 -297
- package/dist/api-exports.js.map +1 -1
- package/dist/index.js +1443 -923
- package/dist/index.js.map +1 -1
- package/dist/workflow-builder.d.ts +5 -3
- package/dist/workflow-builder.js +426 -256
- package/dist/workflow-builder.js.map +1 -1
- package/docs/README.md +2 -2
- package/docs/api/LuaWorkflow.md +1 -1
- package/docs/workflows/approvals.md +2 -0
- package/docs/workflows/recovery.md +1 -1
- package/docs/workflows/schedules.md +13 -4
- package/package.json +4 -4
- package/template/examples/workflows/research-brief.ts +29 -16
- package/template/package.json +1 -1
|
@@ -103,9 +103,11 @@ declare interface BuiltWorkflow {
|
|
|
103
103
|
/**
|
|
104
104
|
* A container arm: a `StepRef` — a `createStep` object, or a string naming an entry declared elsewhere in the chain
|
|
105
105
|
* (`agentStep` / `specialistStep` / `toolStep` / `workflow`, and since LUA-684 `approval` / `waitForSignal`, so an
|
|
106
|
-
* approval can run concurrently with another row) — or
|
|
107
|
-
*
|
|
108
|
-
*
|
|
106
|
+
* approval can run concurrently with another row) — or the two-element pair `[mapConfig, stepRef]`: the step runs
|
|
107
|
+
* with the map as its own `input` (LUA-780 — a `parallel` arm only; a `foreach` / `loop` body receives its item /
|
|
108
|
+
* the previous output and refuses the pair, `mapping-placement`, unless the target is a `.workflow()` node, whose
|
|
109
|
+
* `input` is the child run's). A HITL arm takes the previous output as its payload, so it never heads a
|
|
110
|
+
* `[map, step]` pair, and a `loop` body cannot be one until the engine proves it (`node-type-unsupported-in-container`).
|
|
109
111
|
*/
|
|
110
112
|
export declare type ContainerArm = StepRef | [LuaMapConfig, StepRef];
|
|
111
113
|
|