@koda-sl/baker-cli 0.113.0-dev.78e242dda → 0.113.2
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/README.md +11 -43
- package/canvas/tiktok-captions-composition/index.html +4 -1
- package/canvas/video-overlay-composition/index.html +4 -1
- package/dist/{chunk-26K7V346.js → chunk-7K2YAWUT.js} +106 -7
- package/dist/chunk-7K2YAWUT.js.map +1 -0
- package/dist/cli.js +723 -2081
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.d.ts +2 -0
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-26K7V346.js.map +0 -1
package/dist/engine/index.d.ts
CHANGED
|
@@ -332,6 +332,8 @@ type RunOptions = {
|
|
|
332
332
|
signal?: AbortSignal;
|
|
333
333
|
run_id?: string;
|
|
334
334
|
cache_policy?: "read_write" | "bypass" | "read_only";
|
|
335
|
+
/** Max nodes of one layer in flight at once; invalid or missing → 5. */
|
|
336
|
+
concurrency?: number;
|
|
335
337
|
};
|
|
336
338
|
type EngineOptions = {
|
|
337
339
|
registry: NodeRegistry;
|
package/dist/engine/index.js
CHANGED