langflower 0.0.1
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 +130 -0
- package/bin/langflower.js +3 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +14 -0
- package/dist/cli.js.map +1 -0
- package/dist/create-fake-skill-case-runner.d.ts +10 -0
- package/dist/create-fake-skill-case-runner.d.ts.map +1 -0
- package/dist/create-fake-skill-case-runner.js +74 -0
- package/dist/create-fake-skill-case-runner.js.map +1 -0
- package/dist/create-fake-skill-case-runner.test.d.ts +2 -0
- package/dist/create-fake-skill-case-runner.test.d.ts.map +1 -0
- package/dist/create-fake-skill-case-runner.test.js +61 -0
- package/dist/create-fake-skill-case-runner.test.js.map +1 -0
- package/dist/eval-command.d.ts +3 -0
- package/dist/eval-command.d.ts.map +1 -0
- package/dist/eval-command.js +67 -0
- package/dist/eval-command.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/start-command.d.ts +6 -0
- package/dist/start-command.d.ts.map +1 -0
- package/dist/start-command.js +111 -0
- package/dist/start-command.js.map +1 -0
- package/dist/start-command.test.d.ts +2 -0
- package/dist/start-command.test.d.ts.map +1 -0
- package/dist/start-command.test.js +18 -0
- package/dist/start-command.test.js.map +1 -0
- package/package.json +38 -0
- package/ui-dist/chunk-EM5IX6SE.js +4 -0
- package/ui-dist/chunk-KBE4AFZR.js +1 -0
- package/ui-dist/index.html +12 -0
- package/ui-dist/main-GNFFCUQS.js +310 -0
- package/ui-dist/polyfills-WLKSPSHJ.js +2 -0
- package/ui-dist/styles-SVUMLEUV.css +1 -0
- package/vendor/common-nodes/dist/ai/build-effective-system-prompt.d.ts +10 -0
- package/vendor/common-nodes/dist/ai/build-effective-system-prompt.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/build-effective-system-prompt.js +22 -0
- package/vendor/common-nodes/dist/ai/build-effective-system-prompt.js.map +1 -0
- package/vendor/common-nodes/dist/ai/chat-completion-stream.d.ts +52 -0
- package/vendor/common-nodes/dist/ai/chat-completion-stream.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/chat-completion-stream.js +2 -0
- package/vendor/common-nodes/dist/ai/chat-completion-stream.js.map +1 -0
- package/vendor/common-nodes/dist/ai/chat-input/node.d.ts +25 -0
- package/vendor/common-nodes/dist/ai/chat-input/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/chat-input/node.js +39 -0
- package/vendor/common-nodes/dist/ai/chat-input/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/critique/node.d.ts +229 -0
- package/vendor/common-nodes/dist/ai/critique/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/critique/node.js +235 -0
- package/vendor/common-nodes/dist/ai/critique/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/default-llm-ports.d.ts +28 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/default-llm-ports.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/default-llm-ports.js +59 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/default-llm-ports.js.map +1 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/define-llm-node.d.ts +45 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/define-llm-node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/define-llm-node.js +48 -0
- package/vendor/common-nodes/dist/ai/define-llm-node/define-llm-node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/fake-llm/node.d.ts +330 -0
- package/vendor/common-nodes/dist/ai/fake-llm/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/fake-llm/node.js +205 -0
- package/vendor/common-nodes/dist/ai/fake-llm/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/fake-mcp-server/node.d.ts +26 -0
- package/vendor/common-nodes/dist/ai/fake-mcp-server/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/fake-mcp-server/node.js +67 -0
- package/vendor/common-nodes/dist/ai/fake-mcp-server/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/fake-tool-registration/node.d.ts +26 -0
- package/vendor/common-nodes/dist/ai/fake-tool-registration/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/fake-tool-registration/node.js +57 -0
- package/vendor/common-nodes/dist/ai/fake-tool-registration/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/filter-enabled-registrations.d.ts +9 -0
- package/vendor/common-nodes/dist/ai/filter-enabled-registrations.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/filter-enabled-registrations.js +18 -0
- package/vendor/common-nodes/dist/ai/filter-enabled-registrations.js.map +1 -0
- package/vendor/common-nodes/dist/ai/flatten-mcp-server-configs.d.ts +7 -0
- package/vendor/common-nodes/dist/ai/flatten-mcp-server-configs.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/flatten-mcp-server-configs.js +21 -0
- package/vendor/common-nodes/dist/ai/flatten-mcp-server-configs.js.map +1 -0
- package/vendor/common-nodes/dist/ai/inventory-tool-round.d.ts +33 -0
- package/vendor/common-nodes/dist/ai/inventory-tool-round.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/inventory-tool-round.js +215 -0
- package/vendor/common-nodes/dist/ai/inventory-tool-round.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-compaction-ui-schema.d.ts +15 -0
- package/vendor/common-nodes/dist/ai/llm-compaction-ui-schema.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-compaction-ui-schema.js +18 -0
- package/vendor/common-nodes/dist/ai/llm-compaction-ui-schema.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/classify-llm-failure.d.ts +3 -0
- package/vendor/common-nodes/dist/ai/llm-loop/classify-llm-failure.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/classify-llm-failure.js +107 -0
- package/vendor/common-nodes/dist/ai/llm-loop/classify-llm-failure.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-reducer.d.ts +3 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-reducer.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-reducer.js +181 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-reducer.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-types.d.ts +91 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-types.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-types.js +21 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-types.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/normalize-llm-recovery-policy.d.ts +3 -0
- package/vendor/common-nodes/dist/ai/llm-loop/normalize-llm-recovery-policy.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/normalize-llm-recovery-policy.js +17 -0
- package/vendor/common-nodes/dist/ai/llm-loop/normalize-llm-recovery-policy.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/normalize-tool-result.d.ts +2 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/normalize-tool-result.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/normalize-tool-result.js +8 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/normalize-tool-result.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/observe-provider-stream.d.ts +38 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/observe-provider-stream.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/observe-provider-stream.js +67 -0
- package/vendor/common-nodes/dist/ai/llm-loop/operators/observe-provider-stream.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-agent-loop.d.ts +30 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-agent-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-agent-loop.js +55 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-agent-loop.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-llm-loop.d.ts +72 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-llm-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-llm-loop.js +463 -0
- package/vendor/common-nodes/dist/ai/llm-loop/run-llm-loop.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-panel-ui-schema.d.ts +95 -0
- package/vendor/common-nodes/dist/ai/llm-panel-ui-schema.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-panel-ui-schema.js +73 -0
- package/vendor/common-nodes/dist/ai/llm-panel-ui-schema.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-recovery-ui-schema.d.ts +32 -0
- package/vendor/common-nodes/dist/ai/llm-recovery-ui-schema.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-recovery-ui-schema.js +37 -0
- package/vendor/common-nodes/dist/ai/llm-recovery-ui-schema.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-role-preset.d.ts +68 -0
- package/vendor/common-nodes/dist/ai/llm-role-preset.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-role-preset.js +178 -0
- package/vendor/common-nodes/dist/ai/llm-role-preset.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-session/run-session-machine.d.ts +18 -0
- package/vendor/common-nodes/dist/ai/llm-session/run-session-machine.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-session/run-session-machine.js +92 -0
- package/vendor/common-nodes/dist/ai/llm-session/run-session-machine.js.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-session-shell.d.ts +140 -0
- package/vendor/common-nodes/dist/ai/llm-session-shell.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/llm-session-shell.js +181 -0
- package/vendor/common-nodes/dist/ai/llm-session-shell.js.map +1 -0
- package/vendor/common-nodes/dist/ai/mcp-server/node.d.ts +26 -0
- package/vendor/common-nodes/dist/ai/mcp-server/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/mcp-server/node.js +68 -0
- package/vendor/common-nodes/dist/ai/mcp-server/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/mcp-server-config.d.ts +16 -0
- package/vendor/common-nodes/dist/ai/mcp-server-config.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/mcp-server-config.js +2 -0
- package/vendor/common-nodes/dist/ai/mcp-server-config.js.map +1 -0
- package/vendor/common-nodes/dist/ai/mcp-tool-id.d.ts +11 -0
- package/vendor/common-nodes/dist/ai/mcp-tool-id.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/mcp-tool-id.js +30 -0
- package/vendor/common-nodes/dist/ai/mcp-tool-id.js.map +1 -0
- package/vendor/common-nodes/dist/ai/merge-tool-inventory.d.ts +10 -0
- package/vendor/common-nodes/dist/ai/merge-tool-inventory.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/merge-tool-inventory.js +26 -0
- package/vendor/common-nodes/dist/ai/merge-tool-inventory.js.map +1 -0
- package/vendor/common-nodes/dist/ai/normalize-max-iterations.d.ts +13 -0
- package/vendor/common-nodes/dist/ai/normalize-max-iterations.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/normalize-max-iterations.js +23 -0
- package/vendor/common-nodes/dist/ai/normalize-max-iterations.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/context-length-error.d.ts +15 -0
- package/vendor/common-nodes/dist/ai/openai/context-length-error.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/context-length-error.js +64 -0
- package/vendor/common-nodes/dist/ai/openai/context-length-error.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/create-chat-completion-stream.d.ts +20 -0
- package/vendor/common-nodes/dist/ai/openai/create-chat-completion-stream.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/create-chat-completion-stream.js +177 -0
- package/vendor/common-nodes/dist/ai/openai/create-chat-completion-stream.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/create-embedding.d.ts +18 -0
- package/vendor/common-nodes/dist/ai/openai/create-embedding.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/create-embedding.js +43 -0
- package/vendor/common-nodes/dist/ai/openai/create-embedding.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/list-provider-models.d.ts +29 -0
- package/vendor/common-nodes/dist/ai/openai/list-provider-models.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/list-provider-models.js +53 -0
- package/vendor/common-nodes/dist/ai/openai/list-provider-models.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/llm-context-compaction.d.ts +32 -0
- package/vendor/common-nodes/dist/ai/openai/llm-context-compaction.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/llm-context-compaction.js +327 -0
- package/vendor/common-nodes/dist/ai/openai/llm-context-compaction.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/normalize-compaction-params.d.ts +15 -0
- package/vendor/common-nodes/dist/ai/openai/normalize-compaction-params.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/normalize-compaction-params.js +22 -0
- package/vendor/common-nodes/dist/ai/openai/normalize-compaction-params.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/prepare-chat-completion.d.ts +29 -0
- package/vendor/common-nodes/dist/ai/openai/prepare-chat-completion.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai/prepare-chat-completion.js +115 -0
- package/vendor/common-nodes/dist/ai/openai/prepare-chat-completion.js.map +1 -0
- package/vendor/common-nodes/dist/ai/openai-llm/node.d.ts +346 -0
- package/vendor/common-nodes/dist/ai/openai-llm/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/openai-llm/node.js +86 -0
- package/vendor/common-nodes/dist/ai/openai-llm/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/path-choice/control-tools.d.ts +21 -0
- package/vendor/common-nodes/dist/ai/path-choice/control-tools.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/path-choice/control-tools.js +71 -0
- package/vendor/common-nodes/dist/ai/path-choice/control-tools.js.map +1 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-path-choice-tool-loop.d.ts +54 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-path-choice-tool-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-path-choice-tool-loop.js +242 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-path-choice-tool-loop.js.map +1 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-reactive-path-choice-loop.d.ts +36 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-reactive-path-choice-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-reactive-path-choice-loop.js +105 -0
- package/vendor/common-nodes/dist/ai/path-choice/run-reactive-path-choice-loop.js.map +1 -0
- package/vendor/common-nodes/dist/ai/resolve-mcp-inventory.d.ts +8 -0
- package/vendor/common-nodes/dist/ai/resolve-mcp-inventory.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/resolve-mcp-inventory.js +43 -0
- package/vendor/common-nodes/dist/ai/resolve-mcp-inventory.js.map +1 -0
- package/vendor/common-nodes/dist/ai/review/node.d.ts +229 -0
- package/vendor/common-nodes/dist/ai/review/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/review/node.js +230 -0
- package/vendor/common-nodes/dist/ai/review/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/review/review-control-tools.d.ts +20 -0
- package/vendor/common-nodes/dist/ai/review/review-control-tools.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/review/review-control-tools.js +70 -0
- package/vendor/common-nodes/dist/ai/review/review-control-tools.js.map +1 -0
- package/vendor/common-nodes/dist/ai/review/run-review-tool-loop.d.ts +44 -0
- package/vendor/common-nodes/dist/ai/review/run-review-tool-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/review/run-review-tool-loop.js +193 -0
- package/vendor/common-nodes/dist/ai/review/run-review-tool-loop.js.map +1 -0
- package/vendor/common-nodes/dist/ai/run-host-services.d.ts +19 -0
- package/vendor/common-nodes/dist/ai/run-host-services.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/run-host-services.js +12 -0
- package/vendor/common-nodes/dist/ai/run-host-services.js.map +1 -0
- package/vendor/common-nodes/dist/ai/run-internal-tool-loop.d.ts +39 -0
- package/vendor/common-nodes/dist/ai/run-internal-tool-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/run-internal-tool-loop.js +138 -0
- package/vendor/common-nodes/dist/ai/run-internal-tool-loop.js.map +1 -0
- package/vendor/common-nodes/dist/ai/scripted-chat-completion-stream.d.ts +18 -0
- package/vendor/common-nodes/dist/ai/scripted-chat-completion-stream.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/scripted-chat-completion-stream.js +62 -0
- package/vendor/common-nodes/dist/ai/scripted-chat-completion-stream.js.map +1 -0
- package/vendor/common-nodes/dist/ai/sub-agent/node.d.ts +389 -0
- package/vendor/common-nodes/dist/ai/sub-agent/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/sub-agent/node.js +289 -0
- package/vendor/common-nodes/dist/ai/sub-agent/node.js.map +1 -0
- package/vendor/common-nodes/dist/ai/sub-agent-protocol.d.ts +40 -0
- package/vendor/common-nodes/dist/ai/sub-agent-protocol.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/sub-agent-protocol.js +44 -0
- package/vendor/common-nodes/dist/ai/sub-agent-protocol.js.map +1 -0
- package/vendor/common-nodes/dist/ai/tool-handler-context.d.ts +4 -0
- package/vendor/common-nodes/dist/ai/tool-handler-context.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/tool-handler-context.js +16 -0
- package/vendor/common-nodes/dist/ai/tool-handler-context.js.map +1 -0
- package/vendor/common-nodes/dist/ai/tool-registration.d.ts +6 -0
- package/vendor/common-nodes/dist/ai/tool-registration.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/tool-registration.js +33 -0
- package/vendor/common-nodes/dist/ai/tool-registration.js.map +1 -0
- package/vendor/common-nodes/dist/ai/wait-for-subagent-result.d.ts +7 -0
- package/vendor/common-nodes/dist/ai/wait-for-subagent-result.d.ts.map +1 -0
- package/vendor/common-nodes/dist/ai/wait-for-subagent-result.js +31 -0
- package/vendor/common-nodes/dist/ai/wait-for-subagent-result.js.map +1 -0
- package/vendor/common-nodes/dist/catalog.d.ts +7 -0
- package/vendor/common-nodes/dist/catalog.d.ts.map +1 -0
- package/vendor/common-nodes/dist/catalog.js +82 -0
- package/vendor/common-nodes/dist/catalog.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/crawl/node.d.ts +104 -0
- package/vendor/common-nodes/dist/crawl/crawl/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/crawl/node.js +121 -0
- package/vendor/common-nodes/dist/crawl/crawl/node.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/crawl-tools/node.d.ts +25 -0
- package/vendor/common-nodes/dist/crawl/crawl-tools/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/crawl-tools/node.js +14 -0
- package/vendor/common-nodes/dist/crawl/crawl-tools/node.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/extract-links/node.d.ts +27 -0
- package/vendor/common-nodes/dist/crawl/extract-links/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/extract-links/node.js +40 -0
- package/vendor/common-nodes/dist/crawl/extract-links/node.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/fetch-url/node.d.ts +61 -0
- package/vendor/common-nodes/dist/crawl/fetch-url/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/fetch-url/node.js +81 -0
- package/vendor/common-nodes/dist/crawl/fetch-url/node.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/html/extract-links.d.ts +3 -0
- package/vendor/common-nodes/dist/crawl/html/extract-links.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/html/extract-links.js +36 -0
- package/vendor/common-nodes/dist/crawl/html/extract-links.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/html/html-to-text.d.ts +3 -0
- package/vendor/common-nodes/dist/crawl/html/html-to-text.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/html/html-to-text.js +36 -0
- package/vendor/common-nodes/dist/crawl/html/html-to-text.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/html/index.d.ts +3 -0
- package/vendor/common-nodes/dist/crawl/html/index.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/html/index.js +3 -0
- package/vendor/common-nodes/dist/crawl/html/index.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/save-page/node.d.ts +26 -0
- package/vendor/common-nodes/dist/crawl/save-page/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/save-page/node.js +64 -0
- package/vendor/common-nodes/dist/crawl/save-page/node.js.map +1 -0
- package/vendor/common-nodes/dist/crawl/tool-defs.d.ts +81 -0
- package/vendor/common-nodes/dist/crawl/tool-defs.d.ts.map +1 -0
- package/vendor/common-nodes/dist/crawl/tool-defs.js +56 -0
- package/vendor/common-nodes/dist/crawl/tool-defs.js.map +1 -0
- package/vendor/common-nodes/dist/flow/checkpoint/node.d.ts +28 -0
- package/vendor/common-nodes/dist/flow/checkpoint/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/checkpoint/node.js +41 -0
- package/vendor/common-nodes/dist/flow/checkpoint/node.js.map +1 -0
- package/vendor/common-nodes/dist/flow/delay/node.d.ts +31 -0
- package/vendor/common-nodes/dist/flow/delay/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/delay/node.js +42 -0
- package/vendor/common-nodes/dist/flow/delay/node.js.map +1 -0
- package/vendor/common-nodes/dist/flow/loop/node.d.ts +27 -0
- package/vendor/common-nodes/dist/flow/loop/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/loop/node.js +46 -0
- package/vendor/common-nodes/dist/flow/loop/node.js.map +1 -0
- package/vendor/common-nodes/dist/flow/map-collect-body.d.ts +22 -0
- package/vendor/common-nodes/dist/flow/map-collect-body.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/map-collect-body.js +74 -0
- package/vendor/common-nodes/dist/flow/map-collect-body.js.map +1 -0
- package/vendor/common-nodes/dist/flow/merge/node.d.ts +22 -0
- package/vendor/common-nodes/dist/flow/merge/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/merge/node.js +25 -0
- package/vendor/common-nodes/dist/flow/merge/node.js.map +1 -0
- package/vendor/common-nodes/dist/flow/repeat/node.d.ts +25 -0
- package/vendor/common-nodes/dist/flow/repeat/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/repeat/node.js +56 -0
- package/vendor/common-nodes/dist/flow/repeat/node.js.map +1 -0
- package/vendor/common-nodes/dist/flow/router/build-router-definition.d.ts +20 -0
- package/vendor/common-nodes/dist/flow/router/build-router-definition.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/router/build-router-definition.js +23 -0
- package/vendor/common-nodes/dist/flow/router/build-router-definition.js.map +1 -0
- package/vendor/common-nodes/dist/flow/router/node.d.ts +22 -0
- package/vendor/common-nodes/dist/flow/router/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/router/node.js +15 -0
- package/vendor/common-nodes/dist/flow/router/node.js.map +1 -0
- package/vendor/common-nodes/dist/flow/router/router-constants.d.ts +3 -0
- package/vendor/common-nodes/dist/flow/router/router-constants.d.ts.map +1 -0
- package/vendor/common-nodes/dist/flow/router/router-constants.js +3 -0
- package/vendor/common-nodes/dist/flow/router/router-constants.js.map +1 -0
- package/vendor/common-nodes/dist/hitl/approval-choice/node.d.ts +23 -0
- package/vendor/common-nodes/dist/hitl/approval-choice/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/hitl/approval-choice/node.js +71 -0
- package/vendor/common-nodes/dist/hitl/approval-choice/node.js.map +1 -0
- package/vendor/common-nodes/dist/hitl/ask-user/node.d.ts +23 -0
- package/vendor/common-nodes/dist/hitl/ask-user/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/hitl/ask-user/node.js +40 -0
- package/vendor/common-nodes/dist/hitl/ask-user/node.js.map +1 -0
- package/vendor/common-nodes/dist/hitl/chat-input/node.d.ts +25 -0
- package/vendor/common-nodes/dist/hitl/chat-input/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/hitl/chat-input/node.js +39 -0
- package/vendor/common-nodes/dist/hitl/chat-input/node.js.map +1 -0
- package/vendor/common-nodes/dist/hitl/hitl-required-role.d.ts +38 -0
- package/vendor/common-nodes/dist/hitl/hitl-required-role.d.ts.map +1 -0
- package/vendor/common-nodes/dist/hitl/hitl-required-role.js +21 -0
- package/vendor/common-nodes/dist/hitl/hitl-required-role.js.map +1 -0
- package/vendor/common-nodes/dist/hitl/review-gate/node.d.ts +22 -0
- package/vendor/common-nodes/dist/hitl/review-gate/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/hitl/review-gate/node.js +60 -0
- package/vendor/common-nodes/dist/hitl/review-gate/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/chunk-text.d.ts +8 -0
- package/vendor/common-nodes/dist/kb/chunk-text.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/chunk-text.js +52 -0
- package/vendor/common-nodes/dist/kb/chunk-text.js.map +1 -0
- package/vendor/common-nodes/dist/kb/cosine.d.ts +3 -0
- package/vendor/common-nodes/dist/kb/cosine.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/cosine.js +21 -0
- package/vendor/common-nodes/dist/kb/cosine.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-apply-curation/node.d.ts +25 -0
- package/vendor/common-nodes/dist/kb/kb-apply-curation/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-apply-curation/node.js +38 -0
- package/vendor/common-nodes/dist/kb/kb-apply-curation/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-contradict/node.d.ts +25 -0
- package/vendor/common-nodes/dist/kb/kb-contradict/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-contradict/node.js +70 -0
- package/vendor/common-nodes/dist/kb/kb-contradict/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-dedupe/node.d.ts +25 -0
- package/vendor/common-nodes/dist/kb/kb-dedupe/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-dedupe/node.js +61 -0
- package/vendor/common-nodes/dist/kb/kb-dedupe/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-delete/node.d.ts +24 -0
- package/vendor/common-nodes/dist/kb/kb-delete/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-delete/node.js +60 -0
- package/vendor/common-nodes/dist/kb/kb-delete/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-embed/node.d.ts +26 -0
- package/vendor/common-nodes/dist/kb/kb-embed/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-embed/node.js +52 -0
- package/vendor/common-nodes/dist/kb/kb-embed/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-ingest/node.d.ts +25 -0
- package/vendor/common-nodes/dist/kb/kb-ingest/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-ingest/node.js +68 -0
- package/vendor/common-nodes/dist/kb/kb-ingest/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-list/node.d.ts +24 -0
- package/vendor/common-nodes/dist/kb/kb-list/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-list/node.js +42 -0
- package/vendor/common-nodes/dist/kb/kb-list/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-paths.d.ts +8 -0
- package/vendor/common-nodes/dist/kb/kb-paths.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-paths.js +19 -0
- package/vendor/common-nodes/dist/kb/kb-paths.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-search/node.d.ts +24 -0
- package/vendor/common-nodes/dist/kb/kb-search/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-search/node.js +60 -0
- package/vendor/common-nodes/dist/kb/kb-search/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-store.d.ts +57 -0
- package/vendor/common-nodes/dist/kb/kb-store.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-store.js +290 -0
- package/vendor/common-nodes/dist/kb/kb-store.js.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-tools/node.d.ts +25 -0
- package/vendor/common-nodes/dist/kb/kb-tools/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/kb-tools/node.js +14 -0
- package/vendor/common-nodes/dist/kb/kb-tools/node.js.map +1 -0
- package/vendor/common-nodes/dist/kb/local-embed.d.ts +9 -0
- package/vendor/common-nodes/dist/kb/local-embed.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/local-embed.js +41 -0
- package/vendor/common-nodes/dist/kb/local-embed.js.map +1 -0
- package/vendor/common-nodes/dist/kb/parse-string-list.d.ts +3 -0
- package/vendor/common-nodes/dist/kb/parse-string-list.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/parse-string-list.js +25 -0
- package/vendor/common-nodes/dist/kb/parse-string-list.js.map +1 -0
- package/vendor/common-nodes/dist/kb/tool-defs.d.ts +85 -0
- package/vendor/common-nodes/dist/kb/tool-defs.d.ts.map +1 -0
- package/vendor/common-nodes/dist/kb/tool-defs.js +67 -0
- package/vendor/common-nodes/dist/kb/tool-defs.js.map +1 -0
- package/vendor/common-nodes/dist/logic/assert/node.d.ts +25 -0
- package/vendor/common-nodes/dist/logic/assert/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/assert/node.js +50 -0
- package/vendor/common-nodes/dist/logic/assert/node.js.map +1 -0
- package/vendor/common-nodes/dist/logic/compare/evaluate-compare.d.ts +29 -0
- package/vendor/common-nodes/dist/logic/compare/evaluate-compare.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/compare/evaluate-compare.js +61 -0
- package/vendor/common-nodes/dist/logic/compare/evaluate-compare.js.map +1 -0
- package/vendor/common-nodes/dist/logic/compare/node.d.ts +112 -0
- package/vendor/common-nodes/dist/logic/compare/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/compare/node.js +40 -0
- package/vendor/common-nodes/dist/logic/compare/node.js.map +1 -0
- package/vendor/common-nodes/dist/logic/gate/node.d.ts +22 -0
- package/vendor/common-nodes/dist/logic/gate/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/gate/node.js +35 -0
- package/vendor/common-nodes/dist/logic/gate/node.js.map +1 -0
- package/vendor/common-nodes/dist/logic/if/node.d.ts +22 -0
- package/vendor/common-nodes/dist/logic/if/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/if/node.js +40 -0
- package/vendor/common-nodes/dist/logic/if/node.js.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/build-switch-definition.d.ts +18 -0
- package/vendor/common-nodes/dist/logic/switch/build-switch-definition.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/build-switch-definition.js +30 -0
- package/vendor/common-nodes/dist/logic/switch/build-switch-definition.js.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/node.d.ts +92 -0
- package/vendor/common-nodes/dist/logic/switch/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/node.js +69 -0
- package/vendor/common-nodes/dist/logic/switch/node.js.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/switch-constants.d.ts +16 -0
- package/vendor/common-nodes/dist/logic/switch/switch-constants.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/switch-constants.js +25 -0
- package/vendor/common-nodes/dist/logic/switch/switch-constants.js.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/switch-rules.d.ts +7 -0
- package/vendor/common-nodes/dist/logic/switch/switch-rules.d.ts.map +1 -0
- package/vendor/common-nodes/dist/logic/switch/switch-rules.js +44 -0
- package/vendor/common-nodes/dist/logic/switch/switch-rules.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-handle.d.ts +13 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-handle.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-handle.js +65 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-handle.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-transport.d.ts +14 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-transport.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-transport.js +56 -0
- package/vendor/common-nodes/dist/mcp/build-mcp-transport.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/collect-mcp-tool-registrations.d.ts +7 -0
- package/vendor/common-nodes/dist/mcp/collect-mcp-tool-registrations.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/collect-mcp-tool-registrations.js +19 -0
- package/vendor/common-nodes/dist/mcp/collect-mcp-tool-registrations.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/create-system-mcp-transports.d.ts +48 -0
- package/vendor/common-nodes/dist/mcp/create-system-mcp-transports.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/create-system-mcp-transports.js +124 -0
- package/vendor/common-nodes/dist/mcp/create-system-mcp-transports.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-handles.d.ts +7 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-handles.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-handles.js +22 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-handles.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-server-configs.d.ts +7 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-server-configs.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-server-configs.js +21 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-server-configs.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-transports.d.ts +7 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-transports.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-transports.js +22 -0
- package/vendor/common-nodes/dist/mcp/flatten-mcp-transports.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/format-mcp-connect-error.d.ts +10 -0
- package/vendor/common-nodes/dist/mcp/format-mcp-connect-error.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/format-mcp-connect-error.js +18 -0
- package/vendor/common-nodes/dist/mcp/format-mcp-connect-error.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-http/node.d.ts +26 -0
- package/vendor/common-nodes/dist/mcp/mcp-http/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-http/node.js +112 -0
- package/vendor/common-nodes/dist/mcp/mcp-http/node.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-server/node.d.ts +26 -0
- package/vendor/common-nodes/dist/mcp/mcp-server/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-server/node.js +68 -0
- package/vendor/common-nodes/dist/mcp/mcp-server/node.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-server-config.d.ts +2 -0
- package/vendor/common-nodes/dist/mcp/mcp-server-config.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-server-config.js +2 -0
- package/vendor/common-nodes/dist/mcp/mcp-server-config.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-stdio/node.d.ts +26 -0
- package/vendor/common-nodes/dist/mcp/mcp-stdio/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/mcp-stdio/node.js +101 -0
- package/vendor/common-nodes/dist/mcp/mcp-stdio/node.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/resolve-agent-mcp-inventory.d.ts +13 -0
- package/vendor/common-nodes/dist/mcp/resolve-agent-mcp-inventory.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/resolve-agent-mcp-inventory.js +17 -0
- package/vendor/common-nodes/dist/mcp/resolve-agent-mcp-inventory.js.map +1 -0
- package/vendor/common-nodes/dist/mcp/resolve-mcp-inventory.d.ts +8 -0
- package/vendor/common-nodes/dist/mcp/resolve-mcp-inventory.d.ts.map +1 -0
- package/vendor/common-nodes/dist/mcp/resolve-mcp-inventory.js +43 -0
- package/vendor/common-nodes/dist/mcp/resolve-mcp-inventory.js.map +1 -0
- package/vendor/common-nodes/dist/memory/memory/node.d.ts +79 -0
- package/vendor/common-nodes/dist/memory/memory/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/memory/memory/node.js +76 -0
- package/vendor/common-nodes/dist/memory/memory/node.js.map +1 -0
- package/vendor/common-nodes/dist/memory/memory-tools/node.d.ts +25 -0
- package/vendor/common-nodes/dist/memory/memory-tools/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/memory/memory-tools/node.js +14 -0
- package/vendor/common-nodes/dist/memory/memory-tools/node.js.map +1 -0
- package/vendor/common-nodes/dist/memory/tool-defs.d.ts +48 -0
- package/vendor/common-nodes/dist/memory/tool-defs.d.ts.map +1 -0
- package/vendor/common-nodes/dist/memory/tool-defs.js +45 -0
- package/vendor/common-nodes/dist/memory/tool-defs.js.map +1 -0
- package/vendor/common-nodes/dist/obsidian/build-moc/node.d.ts +26 -0
- package/vendor/common-nodes/dist/obsidian/build-moc/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/obsidian/build-moc/node.js +52 -0
- package/vendor/common-nodes/dist/obsidian/build-moc/node.js.map +1 -0
- package/vendor/common-nodes/dist/obsidian/build-moc.d.ts +13 -0
- package/vendor/common-nodes/dist/obsidian/build-moc.d.ts.map +1 -0
- package/vendor/common-nodes/dist/obsidian/build-moc.js +57 -0
- package/vendor/common-nodes/dist/obsidian/build-moc.js.map +1 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter/node.d.ts +27 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter/node.js +66 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter/node.js.map +1 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter.d.ts +26 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter.d.ts.map +1 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter.js +142 -0
- package/vendor/common-nodes/dist/obsidian/frontmatter.js.map +1 -0
- package/vendor/common-nodes/dist/obsidian/wikilink-rewrite/node.d.ts +26 -0
- package/vendor/common-nodes/dist/obsidian/wikilink-rewrite/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/obsidian/wikilink-rewrite/node.js +51 -0
- package/vendor/common-nodes/dist/obsidian/wikilink-rewrite/node.js.map +1 -0
- package/vendor/common-nodes/dist/obsidian/wikilinks.d.ts +22 -0
- package/vendor/common-nodes/dist/obsidian/wikilinks.d.ts.map +1 -0
- package/vendor/common-nodes/dist/obsidian/wikilinks.js +84 -0
- package/vendor/common-nodes/dist/obsidian/wikilinks.js.map +1 -0
- package/vendor/common-nodes/dist/output/finish/node.d.ts +22 -0
- package/vendor/common-nodes/dist/output/finish/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/output/finish/node.js +23 -0
- package/vendor/common-nodes/dist/output/finish/node.js.map +1 -0
- package/vendor/common-nodes/dist/output/preview/node.d.ts +22 -0
- package/vendor/common-nodes/dist/output/preview/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/output/preview/node.js +42 -0
- package/vendor/common-nodes/dist/output/preview/node.js.map +1 -0
- package/vendor/common-nodes/dist/primitives/boolean/node.d.ts +22 -0
- package/vendor/common-nodes/dist/primitives/boolean/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/primitives/boolean/node.js +26 -0
- package/vendor/common-nodes/dist/primitives/boolean/node.js.map +1 -0
- package/vendor/common-nodes/dist/primitives/number/node.d.ts +22 -0
- package/vendor/common-nodes/dist/primitives/number/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/primitives/number/node.js +26 -0
- package/vendor/common-nodes/dist/primitives/number/node.js.map +1 -0
- package/vendor/common-nodes/dist/primitives/string/node.d.ts +22 -0
- package/vendor/common-nodes/dist/primitives/string/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/primitives/string/node.js +26 -0
- package/vendor/common-nodes/dist/primitives/string/node.js.map +1 -0
- package/vendor/common-nodes/dist/resolve-workflow-node-definition.d.ts +8 -0
- package/vendor/common-nodes/dist/resolve-workflow-node-definition.d.ts.map +1 -0
- package/vendor/common-nodes/dist/resolve-workflow-node-definition.js +4 -0
- package/vendor/common-nodes/dist/resolve-workflow-node-definition.js.map +1 -0
- package/vendor/common-nodes/dist/text/append-file/node.d.ts +25 -0
- package/vendor/common-nodes/dist/text/append-file/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/text/append-file/node.js +61 -0
- package/vendor/common-nodes/dist/text/append-file/node.js.map +1 -0
- package/vendor/common-nodes/dist/text/concat/node.d.ts +22 -0
- package/vendor/common-nodes/dist/text/concat/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/text/concat/node.js +35 -0
- package/vendor/common-nodes/dist/text/concat/node.js.map +1 -0
- package/vendor/common-nodes/dist/text/read-file/node.d.ts +25 -0
- package/vendor/common-nodes/dist/text/read-file/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/text/read-file/node.js +52 -0
- package/vendor/common-nodes/dist/text/read-file/node.js.map +1 -0
- package/vendor/common-nodes/dist/text/write-file/node.d.ts +24 -0
- package/vendor/common-nodes/dist/text/write-file/node.d.ts.map +1 -0
- package/vendor/common-nodes/dist/text/write-file/node.js +53 -0
- package/vendor/common-nodes/dist/text/write-file/node.js.map +1 -0
- package/vendor/common-nodes/dist/tools/collect-agent-tool-handles.d.ts +13 -0
- package/vendor/common-nodes/dist/tools/collect-agent-tool-handles.d.ts.map +1 -0
- package/vendor/common-nodes/dist/tools/collect-agent-tool-handles.js +51 -0
- package/vendor/common-nodes/dist/tools/collect-agent-tool-handles.js.map +1 -0
- package/vendor/common-nodes/dist/tools/filter-enabled-registrations.d.ts +9 -0
- package/vendor/common-nodes/dist/tools/filter-enabled-registrations.d.ts.map +1 -0
- package/vendor/common-nodes/dist/tools/filter-enabled-registrations.js +18 -0
- package/vendor/common-nodes/dist/tools/filter-enabled-registrations.js.map +1 -0
- package/vendor/common-nodes/dist/tools/inventory-tool-round.d.ts +30 -0
- package/vendor/common-nodes/dist/tools/inventory-tool-round.d.ts.map +1 -0
- package/vendor/common-nodes/dist/tools/inventory-tool-round.js +172 -0
- package/vendor/common-nodes/dist/tools/inventory-tool-round.js.map +1 -0
- package/vendor/common-nodes/dist/tools/merge-tool-inventory.d.ts +10 -0
- package/vendor/common-nodes/dist/tools/merge-tool-inventory.d.ts.map +1 -0
- package/vendor/common-nodes/dist/tools/merge-tool-inventory.js +26 -0
- package/vendor/common-nodes/dist/tools/merge-tool-inventory.js.map +1 -0
- package/vendor/common-nodes/dist/tools/run-internal-tool-loop.d.ts +55 -0
- package/vendor/common-nodes/dist/tools/run-internal-tool-loop.d.ts.map +1 -0
- package/vendor/common-nodes/dist/tools/run-internal-tool-loop.js +360 -0
- package/vendor/common-nodes/dist/tools/run-internal-tool-loop.js.map +1 -0
- package/vendor/common-nodes/dist/tools/tool-registration.d.ts +6 -0
- package/vendor/common-nodes/dist/tools/tool-registration.d.ts.map +1 -0
- package/vendor/common-nodes/dist/tools/tool-registration.js +33 -0
- package/vendor/common-nodes/dist/tools/tool-registration.js.map +1 -0
- package/vendor/common-nodes/package.json +48 -0
- package/vendor/compiler/dist/bundle-pack.d.ts +18 -0
- package/vendor/compiler/dist/bundle-pack.d.ts.map +1 -0
- package/vendor/compiler/dist/bundle-pack.js +93 -0
- package/vendor/compiler/dist/bundle-pack.js.map +1 -0
- package/vendor/compiler/dist/cache-key.d.ts +5 -0
- package/vendor/compiler/dist/cache-key.d.ts.map +1 -0
- package/vendor/compiler/dist/cache-key.js +31 -0
- package/vendor/compiler/dist/cache-key.js.map +1 -0
- package/vendor/compiler/dist/compile-project-nodes.d.ts +14 -0
- package/vendor/compiler/dist/compile-project-nodes.d.ts.map +1 -0
- package/vendor/compiler/dist/compile-project-nodes.js +115 -0
- package/vendor/compiler/dist/compile-project-nodes.js.map +1 -0
- package/vendor/compiler/dist/compile-types.d.ts +23 -0
- package/vendor/compiler/dist/compile-types.d.ts.map +1 -0
- package/vendor/compiler/dist/compile-types.js +2 -0
- package/vendor/compiler/dist/compile-types.js.map +1 -0
- package/vendor/compiler/dist/discover-packs.d.ts +7 -0
- package/vendor/compiler/dist/discover-packs.d.ts.map +1 -0
- package/vendor/compiler/dist/discover-packs.js +94 -0
- package/vendor/compiler/dist/discover-packs.js.map +1 -0
- package/vendor/compiler/dist/format-compilation-errors.d.ts +18 -0
- package/vendor/compiler/dist/format-compilation-errors.d.ts.map +1 -0
- package/vendor/compiler/dist/format-compilation-errors.js +63 -0
- package/vendor/compiler/dist/format-compilation-errors.js.map +1 -0
- package/vendor/compiler/dist/resolve-host-types.d.ts +18 -0
- package/vendor/compiler/dist/resolve-host-types.d.ts.map +1 -0
- package/vendor/compiler/dist/resolve-host-types.js +164 -0
- package/vendor/compiler/dist/resolve-host-types.js.map +1 -0
- package/vendor/compiler/dist/typecheck-pack.d.ts +21 -0
- package/vendor/compiler/dist/typecheck-pack.d.ts.map +1 -0
- package/vendor/compiler/dist/typecheck-pack.js +103 -0
- package/vendor/compiler/dist/typecheck-pack.js.map +1 -0
- package/vendor/compiler/dist/validate-default-export.d.ts +10 -0
- package/vendor/compiler/dist/validate-default-export.d.ts.map +1 -0
- package/vendor/compiler/dist/validate-default-export.js +41 -0
- package/vendor/compiler/dist/validate-default-export.js.map +1 -0
- package/vendor/compiler/dist/write-compilation-errors.d.ts +5 -0
- package/vendor/compiler/dist/write-compilation-errors.d.ts.map +1 -0
- package/vendor/compiler/dist/write-compilation-errors.js +28 -0
- package/vendor/compiler/dist/write-compilation-errors.js.map +1 -0
- package/vendor/compiler/package.json +26 -0
- package/vendor/eval/dist/eval-pack-types.d.ts +15 -0
- package/vendor/eval/dist/eval-pack-types.d.ts.map +1 -0
- package/vendor/eval/dist/eval-pack-types.js +2 -0
- package/vendor/eval/dist/eval-pack-types.js.map +1 -0
- package/vendor/eval/dist/load-pack.d.ts +6 -0
- package/vendor/eval/dist/load-pack.d.ts.map +1 -0
- package/vendor/eval/dist/load-pack.js +98 -0
- package/vendor/eval/dist/load-pack.js.map +1 -0
- package/vendor/eval/dist/load-skill-via-read.d.ts +7 -0
- package/vendor/eval/dist/load-skill-via-read.d.ts.map +1 -0
- package/vendor/eval/dist/load-skill-via-read.js +15 -0
- package/vendor/eval/dist/load-skill-via-read.js.map +1 -0
- package/vendor/eval/dist/run-eval-suite.d.ts +47 -0
- package/vendor/eval/dist/run-eval-suite.d.ts.map +1 -0
- package/vendor/eval/dist/run-eval-suite.js +91 -0
- package/vendor/eval/dist/run-eval-suite.js.map +1 -0
- package/vendor/eval/dist/score-case.d.ts +3 -0
- package/vendor/eval/dist/score-case.d.ts.map +1 -0
- package/vendor/eval/dist/score-case.js +11 -0
- package/vendor/eval/dist/score-case.js.map +1 -0
- package/vendor/eval/package.json +21 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/default-llm-ports.d.ts +30 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/default-llm-ports.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/default-llm-ports.js +85 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/default-llm-ports.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/define-llm-node.d.ts +50 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/define-llm-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/define-llm-node.js +51 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/define-llm-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm-inventory-wire.d.ts +5 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm-inventory-wire.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm-inventory-wire.js +5 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm-inventory-wire.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm.d.ts +3 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/llm.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/steer-control.d.ts +22 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/steer-control.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/steer-control.js +24 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/steer-control.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/define-mcp.d.ts +50 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/define-mcp.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/define-mcp.js +60 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/define-mcp.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-handle.d.ts +16 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-handle.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-handle.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-handle.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-server-config.d.ts +17 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-server-config.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-server-config.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-server-config.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-transport.d.ts +20 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-transport.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-transport.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp-transport.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp.d.ts +3 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-mcp/mcp.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-node/define-node.d.ts +35 -0
- package/vendor/node-sdk/dist/node-factory/define-node/define-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-node/define-node.js +100 -0
- package/vendor/node-sdk/dist/node-factory/define-node/define-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-node/test/samples/gate-node.d.ts +25 -0
- package/vendor/node-sdk/dist/node-factory/define-node/test/samples/gate-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-node/test/samples/gate-node.js +23 -0
- package/vendor/node-sdk/dist/node-factory/define-node/test/samples/gate-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/chat-completion-stream.d.ts +50 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/chat-completion-stream.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/chat-completion-stream.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/chat-completion-stream.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/crawl-context.d.ts +22 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/crawl-context.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/crawl-context.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/crawl-context.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/create-embedding.d.ts +6 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/create-embedding.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/create-embedding.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/create-embedding.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ctx-error.d.ts +9 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ctx-error.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ctx-error.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ctx-error.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-reactive-node.d.ts +45 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-reactive-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-reactive-node.js +72 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-reactive-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-tool-registrations.d.ts +52 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-tool-registrations.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-tool-registrations.js +52 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/define-tool-registrations.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/hitl-config.d.ts +59 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/hitl-config.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/hitl-config.js +8 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/hitl-config.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/io-helpers.d.ts +137 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/io-helpers.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/io-helpers.js +79 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/io-helpers.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/kb-context.d.ts +111 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/kb-context.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/kb-context.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/kb-context.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/memory-context.d.ts +12 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/memory-context.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/memory-context.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/memory-context.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/port-meta.d.ts +29 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/port-meta.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/port-meta.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/port-meta.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-files-context.d.ts +10 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-files-context.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-files-context.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-files-context.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-harness.d.ts +56 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-harness.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-harness.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/project-harness.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/agent-node.d.ts +34 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/agent-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/agent-node.js +61 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/agent-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/combine-node.d.ts +34 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/combine-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/combine-node.js +27 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/combine-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/constant-node.d.ts +34 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/constant-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/constant-node.js +22 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/constant-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/delay-node.d.ts +34 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/delay-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/delay-node.js +26 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/delay-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/finish-node.d.ts +22 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/finish-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/finish-node.js +22 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/finish-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/hitl-node.d.ts +26 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/hitl-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/hitl-node.js +44 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/hitl-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/join-node.d.ts +34 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/join-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/join-node.js +32 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/join-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/preview-node.d.ts +22 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/preview-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/preview-node.js +20 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/preview-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/router-node.d.ts +23 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/router-node.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/router-node.js +13 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/test/samples/router-node.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/tool-registration.d.ts +36 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/tool-registration.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/tool-registration.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/tool-registration.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/types.d.ts +127 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/types.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/types.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/types.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ui-schema-inference.d.ts +33 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ui-schema-inference.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ui-schema-inference.js +18 -0
- package/vendor/node-sdk/dist/node-factory/define-reactive-node/ui-schema-inference.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/define-tool-registrations.d.ts +52 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/define-tool-registrations.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/define-tool-registrations.js +51 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/define-tool-registrations.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-handle.d.ts +24 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-handle.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-handle.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-handle.js.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-registration.d.ts +46 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-registration.d.ts.map +1 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-registration.js +2 -0
- package/vendor/node-sdk/dist/node-factory/define-tool-registrations/tool-registration.js.map +1 -0
- package/vendor/node-sdk/package.json +32 -0
- package/vendor/runtime/dist/bypass-ports.d.ts +51 -0
- package/vendor/runtime/dist/bypass-ports.d.ts.map +1 -0
- package/vendor/runtime/dist/bypass-ports.js +115 -0
- package/vendor/runtime/dist/bypass-ports.js.map +1 -0
- package/vendor/runtime/dist/normalize-port-error-value.d.ts +11 -0
- package/vendor/runtime/dist/normalize-port-error-value.d.ts.map +1 -0
- package/vendor/runtime/dist/normalize-port-error-value.js +79 -0
- package/vendor/runtime/dist/normalize-port-error-value.js.map +1 -0
- package/vendor/runtime/dist/port-meta.d.ts +17 -0
- package/vendor/runtime/dist/port-meta.d.ts.map +1 -0
- package/vendor/runtime/dist/port-meta.js +18 -0
- package/vendor/runtime/dist/port-meta.js.map +1 -0
- package/vendor/runtime/dist/runtime-editor.d.ts +46 -0
- package/vendor/runtime/dist/runtime-editor.d.ts.map +1 -0
- package/vendor/runtime/dist/runtime-editor.js +426 -0
- package/vendor/runtime/dist/runtime-editor.js.map +1 -0
- package/vendor/runtime/dist/runtime-helpers.d.ts +20 -0
- package/vendor/runtime/dist/runtime-helpers.d.ts.map +1 -0
- package/vendor/runtime/dist/runtime-helpers.js +162 -0
- package/vendor/runtime/dist/runtime-helpers.js.map +1 -0
- package/vendor/runtime/dist/runtime-runner.d.ts +71 -0
- package/vendor/runtime/dist/runtime-runner.d.ts.map +1 -0
- package/vendor/runtime/dist/runtime-runner.js +733 -0
- package/vendor/runtime/dist/runtime-runner.js.map +1 -0
- package/vendor/runtime/dist/runtime.d.ts +16 -0
- package/vendor/runtime/dist/runtime.d.ts.map +1 -0
- package/vendor/runtime/dist/runtime.js +15 -0
- package/vendor/runtime/dist/runtime.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/agent-node.d.ts +16 -0
- package/vendor/runtime/dist/testing/nodes/agent-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/agent-node.js +69 -0
- package/vendor/runtime/dist/testing/nodes/agent-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/combine-node.d.ts +10 -0
- package/vendor/runtime/dist/testing/nodes/combine-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/combine-node.js +44 -0
- package/vendor/runtime/dist/testing/nodes/combine-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/constant-node.d.ts +8 -0
- package/vendor/runtime/dist/testing/nodes/constant-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/constant-node.js +22 -0
- package/vendor/runtime/dist/testing/nodes/constant-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/delay-node.d.ts +16 -0
- package/vendor/runtime/dist/testing/nodes/delay-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/delay-node.js +72 -0
- package/vendor/runtime/dist/testing/nodes/delay-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/finish-node.d.ts +7 -0
- package/vendor/runtime/dist/testing/nodes/finish-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/finish-node.js +29 -0
- package/vendor/runtime/dist/testing/nodes/finish-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/hitl-node.d.ts +14 -0
- package/vendor/runtime/dist/testing/nodes/hitl-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/hitl-node.js +50 -0
- package/vendor/runtime/dist/testing/nodes/hitl-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/join-node.d.ts +13 -0
- package/vendor/runtime/dist/testing/nodes/join-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/join-node.js +33 -0
- package/vendor/runtime/dist/testing/nodes/join-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/merge-node.d.ts +12 -0
- package/vendor/runtime/dist/testing/nodes/merge-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/merge-node.js +32 -0
- package/vendor/runtime/dist/testing/nodes/merge-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/preview-node.d.ts +7 -0
- package/vendor/runtime/dist/testing/nodes/preview-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/preview-node.js +28 -0
- package/vendor/runtime/dist/testing/nodes/preview-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/pushable-node.d.ts +15 -0
- package/vendor/runtime/dist/testing/nodes/pushable-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/pushable-node.js +30 -0
- package/vendor/runtime/dist/testing/nodes/pushable-node.js.map +1 -0
- package/vendor/runtime/dist/testing/nodes/router-node.d.ts +9 -0
- package/vendor/runtime/dist/testing/nodes/router-node.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/nodes/router-node.js +14 -0
- package/vendor/runtime/dist/testing/nodes/router-node.js.map +1 -0
- package/vendor/runtime/dist/testing/readOutputValue.d.ts +3 -0
- package/vendor/runtime/dist/testing/readOutputValue.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/readOutputValue.js +5 -0
- package/vendor/runtime/dist/testing/readOutputValue.js.map +1 -0
- package/vendor/runtime/dist/testing/workflows/workflow-events.d.ts +21 -0
- package/vendor/runtime/dist/testing/workflows/workflow-events.d.ts.map +1 -0
- package/vendor/runtime/dist/testing/workflows/workflow-events.js +78 -0
- package/vendor/runtime/dist/testing/workflows/workflow-events.js.map +1 -0
- package/vendor/runtime/dist/types.d.ts +402 -0
- package/vendor/runtime/dist/types.d.ts.map +1 -0
- package/vendor/runtime/dist/types.js +2 -0
- package/vendor/runtime/dist/types.js.map +1 -0
- package/vendor/runtime/package.json +24 -0
- package/vendor/server/dist/bootstrap/copy-force.d.ts +8 -0
- package/vendor/server/dist/bootstrap/copy-force.d.ts.map +1 -0
- package/vendor/server/dist/bootstrap/copy-force.js +19 -0
- package/vendor/server/dist/bootstrap/copy-force.js.map +1 -0
- package/vendor/server/dist/bootstrap/copy-if-missing.d.ts +8 -0
- package/vendor/server/dist/bootstrap/copy-if-missing.d.ts.map +1 -0
- package/vendor/server/dist/bootstrap/copy-if-missing.js +33 -0
- package/vendor/server/dist/bootstrap/copy-if-missing.js.map +1 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.d.ts +18 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.d.ts.map +1 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.js +75 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.js.map +1 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.test.d.ts +2 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.test.d.ts.map +1 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.test.js +20 -0
- package/vendor/server/dist/bootstrap/project-bootstrap.service.test.js.map +1 -0
- package/vendor/server/dist/bootstrap/resolve-skeleton-root.d.ts +9 -0
- package/vendor/server/dist/bootstrap/resolve-skeleton-root.d.ts.map +1 -0
- package/vendor/server/dist/bootstrap/resolve-skeleton-root.js +35 -0
- package/vendor/server/dist/bootstrap/resolve-skeleton-root.js.map +1 -0
- package/vendor/server/dist/bootstrap/seed-skeleton.d.ts +16 -0
- package/vendor/server/dist/bootstrap/seed-skeleton.d.ts.map +1 -0
- package/vendor/server/dist/bootstrap/seed-skeleton.js +55 -0
- package/vendor/server/dist/bootstrap/seed-skeleton.js.map +1 -0
- package/vendor/server/dist/bridge/attach-langflower-bridge.d.ts +17 -0
- package/vendor/server/dist/bridge/attach-langflower-bridge.d.ts.map +1 -0
- package/vendor/server/dist/bridge/attach-langflower-bridge.js +68 -0
- package/vendor/server/dist/bridge/attach-langflower-bridge.js.map +1 -0
- package/vendor/server/dist/bridge/bind-llm-context.d.ts +14 -0
- package/vendor/server/dist/bridge/bind-llm-context.d.ts.map +1 -0
- package/vendor/server/dist/bridge/bind-llm-context.js +31 -0
- package/vendor/server/dist/bridge/bind-llm-context.js.map +1 -0
- package/vendor/server/dist/bridge/bridge-outbound.d.ts +5 -0
- package/vendor/server/dist/bridge/bridge-outbound.d.ts.map +1 -0
- package/vendor/server/dist/bridge/bridge-outbound.js +15 -0
- package/vendor/server/dist/bridge/bridge-outbound.js.map +1 -0
- package/vendor/server/dist/bridge/build-execution-context.d.ts +29 -0
- package/vendor/server/dist/bridge/build-execution-context.d.ts.map +1 -0
- package/vendor/server/dist/bridge/build-execution-context.js +171 -0
- package/vendor/server/dist/bridge/build-execution-context.js.map +1 -0
- package/vendor/server/dist/bridge/build-execution-context.test.d.ts +2 -0
- package/vendor/server/dist/bridge/build-execution-context.test.d.ts.map +1 -0
- package/vendor/server/dist/bridge/build-execution-context.test.js +126 -0
- package/vendor/server/dist/bridge/build-execution-context.test.js.map +1 -0
- package/vendor/server/dist/bridge/build-langflower-config-snapshot.d.ts +7 -0
- package/vendor/server/dist/bridge/build-langflower-config-snapshot.d.ts.map +1 -0
- package/vendor/server/dist/bridge/build-langflower-config-snapshot.js +18 -0
- package/vendor/server/dist/bridge/build-langflower-config-snapshot.js.map +1 -0
- package/vendor/server/dist/bridge/client-index.d.ts +6 -0
- package/vendor/server/dist/bridge/client-index.d.ts.map +1 -0
- package/vendor/server/dist/bridge/client-index.js +17 -0
- package/vendor/server/dist/bridge/client-index.js.map +1 -0
- package/vendor/server/dist/bridge/emit-bootstrap.d.ts +14 -0
- package/vendor/server/dist/bridge/emit-bootstrap.d.ts.map +1 -0
- package/vendor/server/dist/bridge/emit-bootstrap.js +75 -0
- package/vendor/server/dist/bridge/emit-bootstrap.js.map +1 -0
- package/vendor/server/dist/bridge/forward-runner-event.d.ts +5 -0
- package/vendor/server/dist/bridge/forward-runner-event.d.ts.map +1 -0
- package/vendor/server/dist/bridge/forward-runner-event.js +18 -0
- package/vendor/server/dist/bridge/forward-runner-event.js.map +1 -0
- package/vendor/server/dist/bridge/forward-runner-event.test.d.ts +2 -0
- package/vendor/server/dist/bridge/forward-runner-event.test.d.ts.map +1 -0
- package/vendor/server/dist/bridge/forward-runner-event.test.js +91 -0
- package/vendor/server/dist/bridge/forward-runner-event.test.js.map +1 -0
- package/vendor/server/dist/bridge/inbound-guards.d.ts +3 -0
- package/vendor/server/dist/bridge/inbound-guards.d.ts.map +1 -0
- package/vendor/server/dist/bridge/inbound-guards.js +5 -0
- package/vendor/server/dist/bridge/inbound-guards.js.map +1 -0
- package/vendor/server/dist/bridge/langflower-bridge.types.d.ts +5 -0
- package/vendor/server/dist/bridge/langflower-bridge.types.d.ts.map +1 -0
- package/vendor/server/dist/bridge/langflower-bridge.types.js +2 -0
- package/vendor/server/dist/bridge/langflower-bridge.types.js.map +1 -0
- package/vendor/server/dist/bridge/push-models-catalog.d.ts +13 -0
- package/vendor/server/dist/bridge/push-models-catalog.d.ts.map +1 -0
- package/vendor/server/dist/bridge/push-models-catalog.js +32 -0
- package/vendor/server/dist/bridge/push-models-catalog.js.map +1 -0
- package/vendor/server/dist/bridge/same-canvas-viewport.d.ts +4 -0
- package/vendor/server/dist/bridge/same-canvas-viewport.d.ts.map +1 -0
- package/vendor/server/dist/bridge/same-canvas-viewport.js +6 -0
- package/vendor/server/dist/bridge/same-canvas-viewport.js.map +1 -0
- package/vendor/server/dist/bridge/wire-config-handlers.d.ts +5 -0
- package/vendor/server/dist/bridge/wire-config-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-config-handlers.js +22 -0
- package/vendor/server/dist/bridge/wire-config-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-custom-palette-handlers.d.ts +5 -0
- package/vendor/server/dist/bridge/wire-custom-palette-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-custom-palette-handlers.js +11 -0
- package/vendor/server/dist/bridge/wire-custom-palette-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-editor-handlers.d.ts +6 -0
- package/vendor/server/dist/bridge/wire-editor-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-editor-handlers.js +202 -0
- package/vendor/server/dist/bridge/wire-editor-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-models-handlers.d.ts +5 -0
- package/vendor/server/dist/bridge/wire-models-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-models-handlers.js +23 -0
- package/vendor/server/dist/bridge/wire-models-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-palette-handlers.d.ts +5 -0
- package/vendor/server/dist/bridge/wire-palette-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-palette-handlers.js +10 -0
- package/vendor/server/dist/bridge/wire-palette-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-project-bootstrap-handlers.d.ts +10 -0
- package/vendor/server/dist/bridge/wire-project-bootstrap-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-project-bootstrap-handlers.js +64 -0
- package/vendor/server/dist/bridge/wire-project-bootstrap-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-runner-handlers.d.ts +11 -0
- package/vendor/server/dist/bridge/wire-runner-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-runner-handlers.js +294 -0
- package/vendor/server/dist/bridge/wire-runner-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wire-workflow-handlers.d.ts +6 -0
- package/vendor/server/dist/bridge/wire-workflow-handlers.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wire-workflow-handlers.js +208 -0
- package/vendor/server/dist/bridge/wire-workflow-handlers.js.map +1 -0
- package/vendor/server/dist/bridge/wrap-builtin-tool-handles.d.ts +8 -0
- package/vendor/server/dist/bridge/wrap-builtin-tool-handles.d.ts.map +1 -0
- package/vendor/server/dist/bridge/wrap-builtin-tool-handles.js +34 -0
- package/vendor/server/dist/bridge/wrap-builtin-tool-handles.js.map +1 -0
- package/vendor/server/dist/checkpoint/list-resumable-checkpoints.d.ts +5 -0
- package/vendor/server/dist/checkpoint/list-resumable-checkpoints.d.ts.map +1 -0
- package/vendor/server/dist/checkpoint/list-resumable-checkpoints.js +12 -0
- package/vendor/server/dist/checkpoint/list-resumable-checkpoints.js.map +1 -0
- package/vendor/server/dist/checkpoint/resolve-checkpoint-boundary.d.ts +12 -0
- package/vendor/server/dist/checkpoint/resolve-checkpoint-boundary.d.ts.map +1 -0
- package/vendor/server/dist/checkpoint/resolve-checkpoint-boundary.js +32 -0
- package/vendor/server/dist/checkpoint/resolve-checkpoint-boundary.js.map +1 -0
- package/vendor/server/dist/checkpoint/run-checkpoint-session.d.ts +42 -0
- package/vendor/server/dist/checkpoint/run-checkpoint-session.d.ts.map +1 -0
- package/vendor/server/dist/checkpoint/run-checkpoint-session.js +170 -0
- package/vendor/server/dist/checkpoint/run-checkpoint-session.js.map +1 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.d.ts +24 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.d.ts.map +1 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.js +178 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.js.map +1 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.test.d.ts +2 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.test.d.ts.map +1 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.test.js +60 -0
- package/vendor/server/dist/checkpoint/workflow-checkpoint-store.test.js.map +1 -0
- package/vendor/server/dist/config/config.service.d.ts +10 -0
- package/vendor/server/dist/config/config.service.d.ts.map +1 -0
- package/vendor/server/dist/config/config.service.js +32 -0
- package/vendor/server/dist/config/config.service.js.map +1 -0
- package/vendor/server/dist/config/langflower-config.service.d.ts +34 -0
- package/vendor/server/dist/config/langflower-config.service.d.ts.map +1 -0
- package/vendor/server/dist/config/langflower-config.service.js +338 -0
- package/vendor/server/dist/config/langflower-config.service.js.map +1 -0
- package/vendor/server/dist/config/langflower-config.service.test.d.ts +2 -0
- package/vendor/server/dist/config/langflower-config.service.test.d.ts.map +1 -0
- package/vendor/server/dist/config/langflower-config.service.test.js +111 -0
- package/vendor/server/dist/config/langflower-config.service.test.js.map +1 -0
- package/vendor/server/dist/config/redact-langflower-config.d.ts +9 -0
- package/vendor/server/dist/config/redact-langflower-config.d.ts.map +1 -0
- package/vendor/server/dist/config/redact-langflower-config.js +43 -0
- package/vendor/server/dist/config/redact-langflower-config.js.map +1 -0
- package/vendor/server/dist/config/redact-langflower-config.test.d.ts +2 -0
- package/vendor/server/dist/config/redact-langflower-config.test.d.ts.map +1 -0
- package/vendor/server/dist/config/redact-langflower-config.test.js +69 -0
- package/vendor/server/dist/config/redact-langflower-config.test.js.map +1 -0
- package/vendor/server/dist/config/resolve-global-langflower-config-path.d.ts +6 -0
- package/vendor/server/dist/config/resolve-global-langflower-config-path.d.ts.map +1 -0
- package/vendor/server/dist/config/resolve-global-langflower-config-path.js +19 -0
- package/vendor/server/dist/config/resolve-global-langflower-config-path.js.map +1 -0
- package/vendor/server/dist/config/resolve-provider-credentials.d.ts +21 -0
- package/vendor/server/dist/config/resolve-provider-credentials.d.ts.map +1 -0
- package/vendor/server/dist/config/resolve-provider-credentials.js +60 -0
- package/vendor/server/dist/config/resolve-provider-credentials.js.map +1 -0
- package/vendor/server/dist/config/resolve-provider-credentials.test.d.ts +2 -0
- package/vendor/server/dist/config/resolve-provider-credentials.test.d.ts.map +1 -0
- package/vendor/server/dist/config/resolve-provider-credentials.test.js +63 -0
- package/vendor/server/dist/config/resolve-provider-credentials.test.js.map +1 -0
- package/vendor/server/dist/crawl/create-crawl-context.d.ts +6 -0
- package/vendor/server/dist/crawl/create-crawl-context.d.ts.map +1 -0
- package/vendor/server/dist/crawl/create-crawl-context.js +33 -0
- package/vendor/server/dist/crawl/create-crawl-context.js.map +1 -0
- package/vendor/server/dist/crawl/create-crawl-context.test.d.ts +2 -0
- package/vendor/server/dist/crawl/create-crawl-context.test.d.ts.map +1 -0
- package/vendor/server/dist/crawl/create-crawl-context.test.js +30 -0
- package/vendor/server/dist/crawl/create-crawl-context.test.js.map +1 -0
- package/vendor/server/dist/crawl/create-web-fetch.d.ts +12 -0
- package/vendor/server/dist/crawl/create-web-fetch.d.ts.map +1 -0
- package/vendor/server/dist/crawl/create-web-fetch.js +128 -0
- package/vendor/server/dist/crawl/create-web-fetch.js.map +1 -0
- package/vendor/server/dist/crawl/create-web-fetch.test.d.ts +2 -0
- package/vendor/server/dist/crawl/create-web-fetch.test.d.ts.map +1 -0
- package/vendor/server/dist/crawl/create-web-fetch.test.js +43 -0
- package/vendor/server/dist/crawl/create-web-fetch.test.js.map +1 -0
- package/vendor/server/dist/crawl/ssrf-guard.d.ts +13 -0
- package/vendor/server/dist/crawl/ssrf-guard.d.ts.map +1 -0
- package/vendor/server/dist/crawl/ssrf-guard.js +117 -0
- package/vendor/server/dist/crawl/ssrf-guard.js.map +1 -0
- package/vendor/server/dist/crawl/ssrf-guard.test.d.ts +2 -0
- package/vendor/server/dist/crawl/ssrf-guard.test.d.ts.map +1 -0
- package/vendor/server/dist/crawl/ssrf-guard.test.js +46 -0
- package/vendor/server/dist/crawl/ssrf-guard.test.js.map +1 -0
- package/vendor/server/dist/create-server.d.ts +11 -0
- package/vendor/server/dist/create-server.d.ts.map +1 -0
- package/vendor/server/dist/create-server.js +43 -0
- package/vendor/server/dist/create-server.js.map +1 -0
- package/vendor/server/dist/harness/pending-permission-asks.d.ts +15 -0
- package/vendor/server/dist/harness/pending-permission-asks.d.ts.map +1 -0
- package/vendor/server/dist/harness/pending-permission-asks.js +46 -0
- package/vendor/server/dist/harness/pending-permission-asks.js.map +1 -0
- package/vendor/server/dist/harness/permission.d.ts +23 -0
- package/vendor/server/dist/harness/permission.d.ts.map +1 -0
- package/vendor/server/dist/harness/permission.js +31 -0
- package/vendor/server/dist/harness/permission.js.map +1 -0
- package/vendor/server/dist/harness/permission.test.d.ts +2 -0
- package/vendor/server/dist/harness/permission.test.d.ts.map +1 -0
- package/vendor/server/dist/harness/permission.test.js +50 -0
- package/vendor/server/dist/harness/permission.test.js.map +1 -0
- package/vendor/server/dist/index.d.ts +4 -0
- package/vendor/server/dist/index.d.ts.map +1 -0
- package/vendor/server/dist/index.js +4 -0
- package/vendor/server/dist/index.js.map +1 -0
- package/vendor/server/dist/kb/chunk-text.d.ts +8 -0
- package/vendor/server/dist/kb/chunk-text.d.ts.map +1 -0
- package/vendor/server/dist/kb/chunk-text.js +52 -0
- package/vendor/server/dist/kb/chunk-text.js.map +1 -0
- package/vendor/server/dist/kb/cosine.d.ts +3 -0
- package/vendor/server/dist/kb/cosine.d.ts.map +1 -0
- package/vendor/server/dist/kb/cosine.js +21 -0
- package/vendor/server/dist/kb/cosine.js.map +1 -0
- package/vendor/server/dist/kb/create-kb-context.d.ts +6 -0
- package/vendor/server/dist/kb/create-kb-context.d.ts.map +1 -0
- package/vendor/server/dist/kb/create-kb-context.js +46 -0
- package/vendor/server/dist/kb/create-kb-context.js.map +1 -0
- package/vendor/server/dist/kb/kb-paths.d.ts +8 -0
- package/vendor/server/dist/kb/kb-paths.d.ts.map +1 -0
- package/vendor/server/dist/kb/kb-paths.js +19 -0
- package/vendor/server/dist/kb/kb-paths.js.map +1 -0
- package/vendor/server/dist/kb/kb-store.d.ts +41 -0
- package/vendor/server/dist/kb/kb-store.d.ts.map +1 -0
- package/vendor/server/dist/kb/kb-store.js +250 -0
- package/vendor/server/dist/kb/kb-store.js.map +1 -0
- package/vendor/server/dist/kb/kb-store.test.d.ts +2 -0
- package/vendor/server/dist/kb/kb-store.test.d.ts.map +1 -0
- package/vendor/server/dist/kb/kb-store.test.js +94 -0
- package/vendor/server/dist/kb/kb-store.test.js.map +1 -0
- package/vendor/server/dist/kb/local-embed.d.ts +8 -0
- package/vendor/server/dist/kb/local-embed.d.ts.map +1 -0
- package/vendor/server/dist/kb/local-embed.js +41 -0
- package/vendor/server/dist/kb/local-embed.js.map +1 -0
- package/vendor/server/dist/listen-http-server.d.ts +7 -0
- package/vendor/server/dist/listen-http-server.d.ts.map +1 -0
- package/vendor/server/dist/listen-http-server.js +19 -0
- package/vendor/server/dist/listen-http-server.js.map +1 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.d.ts +8 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.d.ts.map +1 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.js +125 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.js.map +1 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.test.d.ts +2 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.test.d.ts.map +1 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.test.js +72 -0
- package/vendor/server/dist/llm/create-chat-completion-stream.test.js.map +1 -0
- package/vendor/server/dist/llm/create-embedding.d.ts +9 -0
- package/vendor/server/dist/llm/create-embedding.d.ts.map +1 -0
- package/vendor/server/dist/llm/create-embedding.js +51 -0
- package/vendor/server/dist/llm/create-embedding.js.map +1 -0
- package/vendor/server/dist/llm/list-provider-models.d.ts +29 -0
- package/vendor/server/dist/llm/list-provider-models.d.ts.map +1 -0
- package/vendor/server/dist/llm/list-provider-models.js +55 -0
- package/vendor/server/dist/llm/list-provider-models.js.map +1 -0
- package/vendor/server/dist/llm/list-provider-models.test.d.ts +2 -0
- package/vendor/server/dist/llm/list-provider-models.test.d.ts.map +1 -0
- package/vendor/server/dist/llm/list-provider-models.test.js +97 -0
- package/vendor/server/dist/llm/list-provider-models.test.js.map +1 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.d.ts +21 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.d.ts.map +1 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.js +167 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.js.map +1 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.test.d.ts +2 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.test.d.ts.map +1 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.test.js +69 -0
- package/vendor/server/dist/mcp/create-mcp-runtime.test.js.map +1 -0
- package/vendor/server/dist/mcp/mcp-stdio-client.d.ts +32 -0
- package/vendor/server/dist/mcp/mcp-stdio-client.d.ts.map +1 -0
- package/vendor/server/dist/mcp/mcp-stdio-client.js +183 -0
- package/vendor/server/dist/mcp/mcp-stdio-client.js.map +1 -0
- package/vendor/server/dist/mcp/mcp-tool-id.d.ts +5 -0
- package/vendor/server/dist/mcp/mcp-tool-id.d.ts.map +1 -0
- package/vendor/server/dist/mcp/mcp-tool-id.js +5 -0
- package/vendor/server/dist/mcp/mcp-tool-id.js.map +1 -0
- package/vendor/server/dist/mcp/openai-mcp-tool-loop.test.d.ts +2 -0
- package/vendor/server/dist/mcp/openai-mcp-tool-loop.test.d.ts.map +1 -0
- package/vendor/server/dist/mcp/openai-mcp-tool-loop.test.js +189 -0
- package/vendor/server/dist/mcp/openai-mcp-tool-loop.test.js.map +1 -0
- package/vendor/server/dist/mcp/wrap-harness-with-mcp.d.ts +5 -0
- package/vendor/server/dist/mcp/wrap-harness-with-mcp.d.ts.map +1 -0
- package/vendor/server/dist/mcp/wrap-harness-with-mcp.js +14 -0
- package/vendor/server/dist/mcp/wrap-harness-with-mcp.js.map +1 -0
- package/vendor/server/dist/palette/custom-node-registry.d.ts +11 -0
- package/vendor/server/dist/palette/custom-node-registry.d.ts.map +1 -0
- package/vendor/server/dist/palette/custom-node-registry.js +20 -0
- package/vendor/server/dist/palette/custom-node-registry.js.map +1 -0
- package/vendor/server/dist/palette/custom-palette.service.d.ts +13 -0
- package/vendor/server/dist/palette/custom-palette.service.d.ts.map +1 -0
- package/vendor/server/dist/palette/custom-palette.service.js +64 -0
- package/vendor/server/dist/palette/custom-palette.service.js.map +1 -0
- package/vendor/server/dist/palette/palette.service.d.ts +14 -0
- package/vendor/server/dist/palette/palette.service.d.ts.map +1 -0
- package/vendor/server/dist/palette/palette.service.js +17 -0
- package/vendor/server/dist/palette/palette.service.js.map +1 -0
- package/vendor/server/dist/server-context.d.ts +19 -0
- package/vendor/server/dist/server-context.d.ts.map +1 -0
- package/vendor/server/dist/server-context.js +30 -0
- package/vendor/server/dist/server-context.js.map +1 -0
- package/vendor/server/dist/session/build-selected-node-payload.d.ts +10 -0
- package/vendor/server/dist/session/build-selected-node-payload.d.ts.map +1 -0
- package/vendor/server/dist/session/build-selected-node-payload.js +21 -0
- package/vendor/server/dist/session/build-selected-node-payload.js.map +1 -0
- package/vendor/server/dist/session/build-session-bootstrap.d.ts +6 -0
- package/vendor/server/dist/session/build-session-bootstrap.d.ts.map +1 -0
- package/vendor/server/dist/session/build-session-bootstrap.js +14 -0
- package/vendor/server/dist/session/build-session-bootstrap.js.map +1 -0
- package/vendor/server/dist/session/clear-feed-while-running.test.d.ts +2 -0
- package/vendor/server/dist/session/clear-feed-while-running.test.d.ts.map +1 -0
- package/vendor/server/dist/session/clear-feed-while-running.test.js +41 -0
- package/vendor/server/dist/session/clear-feed-while-running.test.js.map +1 -0
- package/vendor/server/dist/session/langflower-session.d.ts +32 -0
- package/vendor/server/dist/session/langflower-session.d.ts.map +1 -0
- package/vendor/server/dist/session/langflower-session.js +83 -0
- package/vendor/server/dist/session/langflower-session.js.map +1 -0
- package/vendor/server/dist/skills/is-safe-skill-id.d.ts +3 -0
- package/vendor/server/dist/skills/is-safe-skill-id.d.ts.map +1 -0
- package/vendor/server/dist/skills/is-safe-skill-id.js +8 -0
- package/vendor/server/dist/skills/is-safe-skill-id.js.map +1 -0
- package/vendor/server/dist/skills/list-skills.d.ts +3 -0
- package/vendor/server/dist/skills/list-skills.d.ts.map +1 -0
- package/vendor/server/dist/skills/list-skills.js +37 -0
- package/vendor/server/dist/skills/list-skills.js.map +1 -0
- package/vendor/server/dist/skills/list-skills.test.d.ts +2 -0
- package/vendor/server/dist/skills/list-skills.test.d.ts.map +1 -0
- package/vendor/server/dist/skills/list-skills.test.js +46 -0
- package/vendor/server/dist/skills/list-skills.test.js.map +1 -0
- package/vendor/server/dist/skills/parse-skill-markdown.d.ts +8 -0
- package/vendor/server/dist/skills/parse-skill-markdown.d.ts.map +1 -0
- package/vendor/server/dist/skills/parse-skill-markdown.js +51 -0
- package/vendor/server/dist/skills/parse-skill-markdown.js.map +1 -0
- package/vendor/server/dist/skills/parse-skill-markdown.test.d.ts +2 -0
- package/vendor/server/dist/skills/parse-skill-markdown.test.d.ts.map +1 -0
- package/vendor/server/dist/skills/parse-skill-markdown.test.js +33 -0
- package/vendor/server/dist/skills/parse-skill-markdown.test.js.map +1 -0
- package/vendor/server/dist/skills/read-agents-markdown.d.ts +3 -0
- package/vendor/server/dist/skills/read-agents-markdown.d.ts.map +1 -0
- package/vendor/server/dist/skills/read-agents-markdown.js +14 -0
- package/vendor/server/dist/skills/read-agents-markdown.js.map +1 -0
- package/vendor/server/dist/skills/read-skill-markdown.d.ts +3 -0
- package/vendor/server/dist/skills/read-skill-markdown.d.ts.map +1 -0
- package/vendor/server/dist/skills/read-skill-markdown.js +18 -0
- package/vendor/server/dist/skills/read-skill-markdown.js.map +1 -0
- package/vendor/server/dist/skills/read-skill-markdown.test.d.ts +2 -0
- package/vendor/server/dist/skills/read-skill-markdown.test.d.ts.map +1 -0
- package/vendor/server/dist/skills/read-skill-markdown.test.js +31 -0
- package/vendor/server/dist/skills/read-skill-markdown.test.js.map +1 -0
- package/vendor/server/dist/skills/with-skills-catalog.d.ts +4 -0
- package/vendor/server/dist/skills/with-skills-catalog.d.ts.map +1 -0
- package/vendor/server/dist/skills/with-skills-catalog.js +7 -0
- package/vendor/server/dist/skills/with-skills-catalog.js.map +1 -0
- package/vendor/server/dist/skills/with-skills-catalog.test.d.ts +2 -0
- package/vendor/server/dist/skills/with-skills-catalog.test.d.ts.map +1 -0
- package/vendor/server/dist/skills/with-skills-catalog.test.js +40 -0
- package/vendor/server/dist/skills/with-skills-catalog.test.js.map +1 -0
- package/vendor/server/dist/utils/parse-jsonc.d.ts +3 -0
- package/vendor/server/dist/utils/parse-jsonc.d.ts.map +1 -0
- package/vendor/server/dist/utils/parse-jsonc.js +8 -0
- package/vendor/server/dist/utils/parse-jsonc.js.map +1 -0
- package/vendor/server/dist/workflow/activate-workflow-in-session.d.ts +15 -0
- package/vendor/server/dist/workflow/activate-workflow-in-session.d.ts.map +1 -0
- package/vendor/server/dist/workflow/activate-workflow-in-session.js +26 -0
- package/vendor/server/dist/workflow/activate-workflow-in-session.js.map +1 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.d.ts +58 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.d.ts.map +1 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.js +493 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.js.map +1 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.test.d.ts +2 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.test.js +397 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.test.js.map +1 -0
- package/vendor/server/dist/workflow/bind-workflow-graph.d.ts +11 -0
- package/vendor/server/dist/workflow/bind-workflow-graph.d.ts.map +1 -0
- package/vendor/server/dist/workflow/bind-workflow-graph.js +16 -0
- package/vendor/server/dist/workflow/bind-workflow-graph.js.map +1 -0
- package/vendor/server/dist/workflow/build-save-current-payload.d.ts +4 -0
- package/vendor/server/dist/workflow/build-save-current-payload.d.ts.map +1 -0
- package/vendor/server/dist/workflow/build-save-current-payload.js +18 -0
- package/vendor/server/dist/workflow/build-save-current-payload.js.map +1 -0
- package/vendor/server/dist/workflow/build-save-current-payload.test.d.ts +2 -0
- package/vendor/server/dist/workflow/build-save-current-payload.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/build-save-current-payload.test.js +44 -0
- package/vendor/server/dist/workflow/build-save-current-payload.test.js.map +1 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.d.ts +9 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.d.ts.map +1 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.js +33 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.js.map +1 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.test.d.ts +2 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.test.js +72 -0
- package/vendor/server/dist/workflow/copy-workflow-to-session.test.js.map +1 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.d.ts +5 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.d.ts.map +1 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.js +35 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.js.map +1 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.test.d.ts +2 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.test.js +54 -0
- package/vendor/server/dist/workflow/create-empty-workflow-in-session.test.js.map +1 -0
- package/vendor/server/dist/workflow/load-workflow-into-session.d.ts +5 -0
- package/vendor/server/dist/workflow/load-workflow-into-session.d.ts.map +1 -0
- package/vendor/server/dist/workflow/load-workflow-into-session.js +12 -0
- package/vendor/server/dist/workflow/load-workflow-into-session.js.map +1 -0
- package/vendor/server/dist/workflow/rename-active-workflow.d.ts +15 -0
- package/vendor/server/dist/workflow/rename-active-workflow.d.ts.map +1 -0
- package/vendor/server/dist/workflow/rename-active-workflow.js +61 -0
- package/vendor/server/dist/workflow/rename-active-workflow.js.map +1 -0
- package/vendor/server/dist/workflow/rename-active-workflow.test.d.ts +2 -0
- package/vendor/server/dist/workflow/rename-active-workflow.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/rename-active-workflow.test.js +111 -0
- package/vendor/server/dist/workflow/rename-active-workflow.test.js.map +1 -0
- package/vendor/server/dist/workflow/repro-bypass.test.d.ts +2 -0
- package/vendor/server/dist/workflow/repro-bypass.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/repro-bypass.test.js +63 -0
- package/vendor/server/dist/workflow/repro-bypass.test.js.map +1 -0
- package/vendor/server/dist/workflow/workflow-document.d.ts +22 -0
- package/vendor/server/dist/workflow/workflow-document.d.ts.map +1 -0
- package/vendor/server/dist/workflow/workflow-document.js +59 -0
- package/vendor/server/dist/workflow/workflow-document.js.map +1 -0
- package/vendor/server/dist/workflow/workflow-id.d.ts +3 -0
- package/vendor/server/dist/workflow/workflow-id.d.ts.map +1 -0
- package/vendor/server/dist/workflow/workflow-id.js +20 -0
- package/vendor/server/dist/workflow/workflow-id.js.map +1 -0
- package/vendor/server/dist/workflow/workflow-id.test.d.ts +2 -0
- package/vendor/server/dist/workflow/workflow-id.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/workflow-id.test.js +23 -0
- package/vendor/server/dist/workflow/workflow-id.test.js.map +1 -0
- package/vendor/server/dist/workflow/workflow-persisted-inputs.d.ts +14 -0
- package/vendor/server/dist/workflow/workflow-persisted-inputs.d.ts.map +1 -0
- package/vendor/server/dist/workflow/workflow-persisted-inputs.js +70 -0
- package/vendor/server/dist/workflow/workflow-persisted-inputs.js.map +1 -0
- package/vendor/server/dist/workflow/workflow.service.d.ts +35 -0
- package/vendor/server/dist/workflow/workflow.service.d.ts.map +1 -0
- package/vendor/server/dist/workflow/workflow.service.js +126 -0
- package/vendor/server/dist/workflow/workflow.service.js.map +1 -0
- package/vendor/server/dist/workflow/workflow.service.test.d.ts +2 -0
- package/vendor/server/dist/workflow/workflow.service.test.d.ts.map +1 -0
- package/vendor/server/dist/workflow/workflow.service.test.js +57 -0
- package/vendor/server/dist/workflow/workflow.service.test.js.map +1 -0
- package/vendor/server/package.json +35 -0
- package/vendor/server/skeleton/instructions.md +41 -0
- package/vendor/server/skeleton/nodes/my-nodes/README.md +212 -0
- package/vendor/server/skeleton/nodes/my-nodes/git-diff-tool.ts +73 -0
- package/vendor/server/skeleton/nodes/my-nodes/git-diff.ts +46 -0
- package/vendor/server/skeleton/nodes/my-nodes/package.json +11 -0
- package/vendor/server/skeleton/nodes/my-nodes/review-gate.ts +106 -0
- package/vendor/server/skeleton/nodes/my-nodes/tsconfig.json +13 -0
- package/vendor/server/skeleton/skills/langflower-helper/SKILL.md +210 -0
- package/vendor/server/skeleton/skills/langflower-helper/architecture.md +96 -0
- package/vendor/server/skeleton/skills/langflower-helper/layout.md +51 -0
- package/vendor/server/skeleton/skills/langflower-node-writer/SKILL.md +56 -0
- package/vendor/server/skeleton/workflows/advanced-coder.json +343 -0
- package/vendor/server/skeleton/workflows/agents-dialog.json +134 -0
- package/vendor/server/skeleton/workflows/kb-create.json +262 -0
- package/vendor/server/skeleton/workflows/kb-navigate.json +149 -0
- package/vendor/server/skeleton/workflows/node-writer.json +81 -0
- package/vendor/server/skeleton/workflows/simple-coder.json +157 -0
- package/vendor/server/skeleton/workflows/starter.json +81 -0
- package/vendor/shared/dist/checkpoint/json-value.d.ts +8 -0
- package/vendor/shared/dist/checkpoint/json-value.d.ts.map +1 -0
- package/vendor/shared/dist/checkpoint/json-value.js +53 -0
- package/vendor/shared/dist/checkpoint/json-value.js.map +1 -0
- package/vendor/shared/dist/checkpoint/json-value.test.d.ts +2 -0
- package/vendor/shared/dist/checkpoint/json-value.test.d.ts.map +1 -0
- package/vendor/shared/dist/checkpoint/json-value.test.js +23 -0
- package/vendor/shared/dist/checkpoint/json-value.test.js.map +1 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.d.ts +12 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.d.ts.map +1 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.js +18 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.js.map +1 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.test.d.ts +2 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.test.d.ts.map +1 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.test.js +55 -0
- package/vendor/shared/dist/checkpoint/workflow-fingerprint.test.js.map +1 -0
- package/vendor/shared/dist/constants/defaults.d.ts +17 -0
- package/vendor/shared/dist/constants/defaults.d.ts.map +1 -0
- package/vendor/shared/dist/constants/defaults.js +26 -0
- package/vendor/shared/dist/constants/defaults.js.map +1 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.d.ts +17 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.d.ts.map +1 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.js +48 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.js.map +1 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.test.d.ts +2 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.test.d.ts.map +1 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.test.js +44 -0
- package/vendor/shared/dist/execution/derive-run-settle-outcome.test.js.map +1 -0
- package/vendor/shared/dist/langflower-bus-config.d.ts +424 -0
- package/vendor/shared/dist/langflower-bus-config.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-bus-config.js +574 -0
- package/vendor/shared/dist/langflower-bus-config.js.map +1 -0
- package/vendor/shared/dist/langflower-config/mcp-tool-id.d.ts +24 -0
- package/vendor/shared/dist/langflower-config/mcp-tool-id.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/mcp-tool-id.js +44 -0
- package/vendor/shared/dist/langflower-config/mcp-tool-id.js.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.d.ts +7 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.js +19 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.js.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.test.d.ts +2 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.test.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.test.js +33 -0
- package/vendor/shared/dist/langflower-config/merge-langflower-config-layers.test.js.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.d.ts +8 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.js +18 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.js.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.test.d.ts +2 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.test.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.test.js +23 -0
- package/vendor/shared/dist/langflower-config/merge-provider-model-options.test.js.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.d.ts +19 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.js +62 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.js.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.test.d.ts +2 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.test.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.test.js +38 -0
- package/vendor/shared/dist/langflower-config/resolve-ui-schema-options.test.js.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.d.ts +41 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.js +134 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.js.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.test.d.ts +2 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.test.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.test.js +224 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.test.js.map +1 -0
- package/vendor/shared/dist/langflower-ws-waits.d.ts +64 -0
- package/vendor/shared/dist/langflower-ws-waits.d.ts.map +1 -0
- package/vendor/shared/dist/langflower-ws-waits.js +122 -0
- package/vendor/shared/dist/langflower-ws-waits.js.map +1 -0
- package/vendor/shared/dist/langflower.d.ts +26 -0
- package/vendor/shared/dist/langflower.d.ts.map +1 -0
- package/vendor/shared/dist/langflower.js +11 -0
- package/vendor/shared/dist/langflower.js.map +1 -0
- package/vendor/shared/dist/types/config.d.ts +5 -0
- package/vendor/shared/dist/types/config.d.ts.map +1 -0
- package/vendor/shared/dist/types/config.js +2 -0
- package/vendor/shared/dist/types/config.js.map +1 -0
- package/vendor/shared/dist/types/langflower-bootstrap.d.ts +61 -0
- package/vendor/shared/dist/types/langflower-bootstrap.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-bootstrap.js +2 -0
- package/vendor/shared/dist/types/langflower-bootstrap.js.map +1 -0
- package/vendor/shared/dist/types/langflower-config.d.ts +182 -0
- package/vendor/shared/dist/types/langflower-config.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-config.js +2 -0
- package/vendor/shared/dist/types/langflower-config.js.map +1 -0
- package/vendor/shared/dist/types/langflower-custom-palette.d.ts +22 -0
- package/vendor/shared/dist/types/langflower-custom-palette.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-custom-palette.js +2 -0
- package/vendor/shared/dist/types/langflower-custom-palette.js.map +1 -0
- package/vendor/shared/dist/types/langflower-editor.d.ts +78 -0
- package/vendor/shared/dist/types/langflower-editor.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-editor.js +2 -0
- package/vendor/shared/dist/types/langflower-editor.js.map +1 -0
- package/vendor/shared/dist/types/langflower-palette.d.ts +25 -0
- package/vendor/shared/dist/types/langflower-palette.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-palette.js +2 -0
- package/vendor/shared/dist/types/langflower-palette.js.map +1 -0
- package/vendor/shared/dist/types/langflower-project-bootstrap.d.ts +12 -0
- package/vendor/shared/dist/types/langflower-project-bootstrap.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-project-bootstrap.js +2 -0
- package/vendor/shared/dist/types/langflower-project-bootstrap.js.map +1 -0
- package/vendor/shared/dist/types/langflower-server.d.ts +5 -0
- package/vendor/shared/dist/types/langflower-server.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-server.js +2 -0
- package/vendor/shared/dist/types/langflower-server.js.map +1 -0
- package/vendor/shared/dist/types/langflower-workflow.d.ts +125 -0
- package/vendor/shared/dist/types/langflower-workflow.d.ts.map +1 -0
- package/vendor/shared/dist/types/langflower-workflow.js +13 -0
- package/vendor/shared/dist/types/langflower-workflow.js.map +1 -0
- package/vendor/shared/dist/types/workflow-checkpoint.d.ts +61 -0
- package/vendor/shared/dist/types/workflow-checkpoint.d.ts.map +1 -0
- package/vendor/shared/dist/types/workflow-checkpoint.js +10 -0
- package/vendor/shared/dist/types/workflow-checkpoint.js.map +1 -0
- package/vendor/shared/package.json +74 -0
- package/vendor/tools/dist/builtin-schemas.d.ts +10 -0
- package/vendor/tools/dist/builtin-schemas.d.ts.map +1 -0
- package/vendor/tools/dist/builtin-schemas.js +144 -0
- package/vendor/tools/dist/builtin-schemas.js.map +1 -0
- package/vendor/tools/dist/builtins/apply-post-process.d.ts +2 -0
- package/vendor/tools/dist/builtins/apply-post-process.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/apply-post-process.js +10 -0
- package/vendor/tools/dist/builtins/apply-post-process.js.map +1 -0
- package/vendor/tools/dist/builtins/args.d.ts +4 -0
- package/vendor/tools/dist/builtins/args.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/args.js +15 -0
- package/vendor/tools/dist/builtins/args.js.map +1 -0
- package/vendor/tools/dist/builtins/bash/tool.d.ts +26 -0
- package/vendor/tools/dist/builtins/bash/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/bash/tool.js +73 -0
- package/vendor/tools/dist/builtins/bash/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/catalog.d.ts +229 -0
- package/vendor/tools/dist/builtins/catalog.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/catalog.js +25 -0
- package/vendor/tools/dist/builtins/catalog.js.map +1 -0
- package/vendor/tools/dist/builtins/create/tool.d.ts +26 -0
- package/vendor/tools/dist/builtins/create/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/create/tool.js +57 -0
- package/vendor/tools/dist/builtins/create/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/delete/tool.d.ts +22 -0
- package/vendor/tools/dist/builtins/delete/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/delete/tool.js +45 -0
- package/vendor/tools/dist/builtins/delete/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/edit/tool.d.ts +30 -0
- package/vendor/tools/dist/builtins/edit/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/edit/tool.js +69 -0
- package/vendor/tools/dist/builtins/edit/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/fence.d.ts +5 -0
- package/vendor/tools/dist/builtins/fence.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/fence.js +7 -0
- package/vendor/tools/dist/builtins/fence.js.map +1 -0
- package/vendor/tools/dist/builtins/glob/tool.d.ts +34 -0
- package/vendor/tools/dist/builtins/glob/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/glob/tool.js +78 -0
- package/vendor/tools/dist/builtins/glob/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/grep/tool.d.ts +37 -0
- package/vendor/tools/dist/builtins/grep/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/grep/tool.js +99 -0
- package/vendor/tools/dist/builtins/grep/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/read/tool.d.ts +42 -0
- package/vendor/tools/dist/builtins/read/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/read/tool.js +97 -0
- package/vendor/tools/dist/builtins/read/tool.js.map +1 -0
- package/vendor/tools/dist/builtins/types.d.ts +15 -0
- package/vendor/tools/dist/builtins/types.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/types.js +2 -0
- package/vendor/tools/dist/builtins/types.js.map +1 -0
- package/vendor/tools/dist/builtins/walk-files.d.ts +3 -0
- package/vendor/tools/dist/builtins/walk-files.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/walk-files.js +47 -0
- package/vendor/tools/dist/builtins/walk-files.js.map +1 -0
- package/vendor/tools/dist/builtins/write/tool.d.ts +26 -0
- package/vendor/tools/dist/builtins/write/tool.d.ts.map +1 -0
- package/vendor/tools/dist/builtins/write/tool.js +41 -0
- package/vendor/tools/dist/builtins/write/tool.js.map +1 -0
- package/vendor/tools/dist/create-crawl-context.d.ts +23 -0
- package/vendor/tools/dist/create-crawl-context.d.ts.map +1 -0
- package/vendor/tools/dist/create-crawl-context.js +35 -0
- package/vendor/tools/dist/create-crawl-context.js.map +1 -0
- package/vendor/tools/dist/create-memory-context.d.ts +12 -0
- package/vendor/tools/dist/create-memory-context.d.ts.map +1 -0
- package/vendor/tools/dist/create-memory-context.js +84 -0
- package/vendor/tools/dist/create-memory-context.js.map +1 -0
- package/vendor/tools/dist/create-project-files-context.d.ts +20 -0
- package/vendor/tools/dist/create-project-files-context.d.ts.map +1 -0
- package/vendor/tools/dist/create-project-files-context.js +76 -0
- package/vendor/tools/dist/create-project-files-context.js.map +1 -0
- package/vendor/tools/dist/create-project-harness.d.ts +34 -0
- package/vendor/tools/dist/create-project-harness.d.ts.map +1 -0
- package/vendor/tools/dist/create-project-harness.js +62 -0
- package/vendor/tools/dist/create-project-harness.js.map +1 -0
- package/vendor/tools/dist/create-web-fetch.d.ts +28 -0
- package/vendor/tools/dist/create-web-fetch.d.ts.map +1 -0
- package/vendor/tools/dist/create-web-fetch.js +165 -0
- package/vendor/tools/dist/create-web-fetch.js.map +1 -0
- package/vendor/tools/dist/domain/args.d.ts +4 -0
- package/vendor/tools/dist/domain/args.d.ts.map +1 -0
- package/vendor/tools/dist/domain/args.js +23 -0
- package/vendor/tools/dist/domain/args.js.map +1 -0
- package/vendor/tools/dist/domain/create-domain-handlers.d.ts +22 -0
- package/vendor/tools/dist/domain/create-domain-handlers.d.ts.map +1 -0
- package/vendor/tools/dist/domain/create-domain-handlers.js +223 -0
- package/vendor/tools/dist/domain/create-domain-handlers.js.map +1 -0
- package/vendor/tools/dist/domain/domain-tool-configs.d.ts +29 -0
- package/vendor/tools/dist/domain/domain-tool-configs.d.ts.map +1 -0
- package/vendor/tools/dist/domain/domain-tool-configs.js +300 -0
- package/vendor/tools/dist/domain/domain-tool-configs.js.map +1 -0
- package/vendor/tools/dist/domain/html.d.ts +5 -0
- package/vendor/tools/dist/domain/html.d.ts.map +1 -0
- package/vendor/tools/dist/domain/html.js +69 -0
- package/vendor/tools/dist/domain/html.js.map +1 -0
- package/vendor/tools/dist/domain/run-bfs-crawl.d.ts +58 -0
- package/vendor/tools/dist/domain/run-bfs-crawl.d.ts.map +1 -0
- package/vendor/tools/dist/domain/run-bfs-crawl.js +113 -0
- package/vendor/tools/dist/domain/run-bfs-crawl.js.map +1 -0
- package/vendor/tools/dist/gate-tool-call.d.ts +18 -0
- package/vendor/tools/dist/gate-tool-call.d.ts.map +1 -0
- package/vendor/tools/dist/gate-tool-call.js +36 -0
- package/vendor/tools/dist/gate-tool-call.js.map +1 -0
- package/vendor/tools/dist/gitignore.d.ts +5 -0
- package/vendor/tools/dist/gitignore.d.ts.map +1 -0
- package/vendor/tools/dist/gitignore.js +95 -0
- package/vendor/tools/dist/gitignore.js.map +1 -0
- package/vendor/tools/dist/handlers.d.ts +16 -0
- package/vendor/tools/dist/handlers.d.ts.map +1 -0
- package/vendor/tools/dist/handlers.js +367 -0
- package/vendor/tools/dist/handlers.js.map +1 -0
- package/vendor/tools/dist/harness-types.d.ts +32 -0
- package/vendor/tools/dist/harness-types.d.ts.map +1 -0
- package/vendor/tools/dist/harness-types.js +5 -0
- package/vendor/tools/dist/harness-types.js.map +1 -0
- package/vendor/tools/dist/kb/chunk-text.d.ts +8 -0
- package/vendor/tools/dist/kb/chunk-text.d.ts.map +1 -0
- package/vendor/tools/dist/kb/chunk-text.js +52 -0
- package/vendor/tools/dist/kb/chunk-text.js.map +1 -0
- package/vendor/tools/dist/kb/cosine.d.ts +3 -0
- package/vendor/tools/dist/kb/cosine.d.ts.map +1 -0
- package/vendor/tools/dist/kb/cosine.js +21 -0
- package/vendor/tools/dist/kb/cosine.js.map +1 -0
- package/vendor/tools/dist/kb/create-kb-context.d.ts +62 -0
- package/vendor/tools/dist/kb/create-kb-context.d.ts.map +1 -0
- package/vendor/tools/dist/kb/create-kb-context.js +78 -0
- package/vendor/tools/dist/kb/create-kb-context.js.map +1 -0
- package/vendor/tools/dist/kb/kb-curation.d.ts +69 -0
- package/vendor/tools/dist/kb/kb-curation.d.ts.map +1 -0
- package/vendor/tools/dist/kb/kb-curation.js +364 -0
- package/vendor/tools/dist/kb/kb-curation.js.map +1 -0
- package/vendor/tools/dist/kb/kb-paths.d.ts +8 -0
- package/vendor/tools/dist/kb/kb-paths.d.ts.map +1 -0
- package/vendor/tools/dist/kb/kb-paths.js +19 -0
- package/vendor/tools/dist/kb/kb-paths.js.map +1 -0
- package/vendor/tools/dist/kb/kb-store.d.ts +41 -0
- package/vendor/tools/dist/kb/kb-store.d.ts.map +1 -0
- package/vendor/tools/dist/kb/kb-store.js +246 -0
- package/vendor/tools/dist/kb/kb-store.js.map +1 -0
- package/vendor/tools/dist/kb/local-embed.d.ts +8 -0
- package/vendor/tools/dist/kb/local-embed.d.ts.map +1 -0
- package/vendor/tools/dist/kb/local-embed.js +41 -0
- package/vendor/tools/dist/kb/local-embed.js.map +1 -0
- package/vendor/tools/dist/mcp/build-mcp-handle.d.ts +30 -0
- package/vendor/tools/dist/mcp/build-mcp-handle.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/build-mcp-handle.js +65 -0
- package/vendor/tools/dist/mcp/build-mcp-handle.js.map +1 -0
- package/vendor/tools/dist/mcp/create-mcp-runtime.d.ts +29 -0
- package/vendor/tools/dist/mcp/create-mcp-runtime.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/create-mcp-runtime.js +161 -0
- package/vendor/tools/dist/mcp/create-mcp-runtime.js.map +1 -0
- package/vendor/tools/dist/mcp/create-system-mcp-handles.d.ts +50 -0
- package/vendor/tools/dist/mcp/create-system-mcp-handles.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/create-system-mcp-handles.js +124 -0
- package/vendor/tools/dist/mcp/create-system-mcp-handles.js.map +1 -0
- package/vendor/tools/dist/mcp/env-with-shell-com-spec.d.ts +6 -0
- package/vendor/tools/dist/mcp/env-with-shell-com-spec.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/env-with-shell-com-spec.js +19 -0
- package/vendor/tools/dist/mcp/env-with-shell-com-spec.js.map +1 -0
- package/vendor/tools/dist/mcp/format-mcp-connect-error.d.ts +10 -0
- package/vendor/tools/dist/mcp/format-mcp-connect-error.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/format-mcp-connect-error.js +14 -0
- package/vendor/tools/dist/mcp/format-mcp-connect-error.js.map +1 -0
- package/vendor/tools/dist/mcp/mcp-client-types.d.ts +18 -0
- package/vendor/tools/dist/mcp/mcp-client-types.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/mcp-client-types.js +2 -0
- package/vendor/tools/dist/mcp/mcp-client-types.js.map +1 -0
- package/vendor/tools/dist/mcp/mcp-http-client.d.ts +32 -0
- package/vendor/tools/dist/mcp/mcp-http-client.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/mcp-http-client.js +244 -0
- package/vendor/tools/dist/mcp/mcp-http-client.js.map +1 -0
- package/vendor/tools/dist/mcp/mcp-stdio-client.d.ts +20 -0
- package/vendor/tools/dist/mcp/mcp-stdio-client.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/mcp-stdio-client.js +187 -0
- package/vendor/tools/dist/mcp/mcp-stdio-client.js.map +1 -0
- package/vendor/tools/dist/mcp/mcp-stdio-frame-parser.d.ts +8 -0
- package/vendor/tools/dist/mcp/mcp-stdio-frame-parser.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/mcp-stdio-frame-parser.js +78 -0
- package/vendor/tools/dist/mcp/mcp-stdio-frame-parser.js.map +1 -0
- package/vendor/tools/dist/mcp/mcp-tool-id.d.ts +26 -0
- package/vendor/tools/dist/mcp/mcp-tool-id.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/mcp-tool-id.js +46 -0
- package/vendor/tools/dist/mcp/mcp-tool-id.js.map +1 -0
- package/vendor/tools/dist/mcp/require-mcp-server-name.d.ts +6 -0
- package/vendor/tools/dist/mcp/require-mcp-server-name.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/require-mcp-server-name.js +23 -0
- package/vendor/tools/dist/mcp/require-mcp-server-name.js.map +1 -0
- package/vendor/tools/dist/mcp/resolve-shell-option.d.ts +6 -0
- package/vendor/tools/dist/mcp/resolve-shell-option.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/resolve-shell-option.js +19 -0
- package/vendor/tools/dist/mcp/resolve-shell-option.js.map +1 -0
- package/vendor/tools/dist/mcp/wrap-harness-with-mcp.d.ts +5 -0
- package/vendor/tools/dist/mcp/wrap-harness-with-mcp.d.ts.map +1 -0
- package/vendor/tools/dist/mcp/wrap-harness-with-mcp.js +27 -0
- package/vendor/tools/dist/mcp/wrap-harness-with-mcp.js.map +1 -0
- package/vendor/tools/dist/memory/atomic-write.d.ts +5 -0
- package/vendor/tools/dist/memory/atomic-write.d.ts.map +1 -0
- package/vendor/tools/dist/memory/atomic-write.js +19 -0
- package/vendor/tools/dist/memory/atomic-write.js.map +1 -0
- package/vendor/tools/dist/memory/create-memory-store.d.ts +22 -0
- package/vendor/tools/dist/memory/create-memory-store.d.ts.map +1 -0
- package/vendor/tools/dist/memory/create-memory-store.js +204 -0
- package/vendor/tools/dist/memory/create-memory-store.js.map +1 -0
- package/vendor/tools/dist/memory/markdown-sections.d.ts +23 -0
- package/vendor/tools/dist/memory/markdown-sections.d.ts.map +1 -0
- package/vendor/tools/dist/memory/markdown-sections.js +70 -0
- package/vendor/tools/dist/memory/markdown-sections.js.map +1 -0
- package/vendor/tools/dist/memory/memory-paths.d.ts +10 -0
- package/vendor/tools/dist/memory/memory-paths.d.ts.map +1 -0
- package/vendor/tools/dist/memory/memory-paths.js +29 -0
- package/vendor/tools/dist/memory/memory-paths.js.map +1 -0
- package/vendor/tools/dist/path-sandbox.d.ts +22 -0
- package/vendor/tools/dist/path-sandbox.d.ts.map +1 -0
- package/vendor/tools/dist/path-sandbox.js +97 -0
- package/vendor/tools/dist/path-sandbox.js.map +1 -0
- package/vendor/tools/dist/permission.d.ts +46 -0
- package/vendor/tools/dist/permission.d.ts.map +1 -0
- package/vendor/tools/dist/permission.js +172 -0
- package/vendor/tools/dist/permission.js.map +1 -0
- package/vendor/tools/dist/post-process.d.ts +10 -0
- package/vendor/tools/dist/post-process.d.ts.map +1 -0
- package/vendor/tools/dist/post-process.js +37 -0
- package/vendor/tools/dist/post-process.js.map +1 -0
- package/vendor/tools/dist/ssrf-guard.d.ts +23 -0
- package/vendor/tools/dist/ssrf-guard.d.ts.map +1 -0
- package/vendor/tools/dist/ssrf-guard.js +120 -0
- package/vendor/tools/dist/ssrf-guard.js.map +1 -0
- package/vendor/tools/package.json +73 -0
- package/vendor/websocket-bridge/dist/bridge-codec.d.ts +3 -0
- package/vendor/websocket-bridge/dist/bridge-codec.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-codec.js +27 -0
- package/vendor/websocket-bridge/dist/bridge-codec.js.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-frame.d.ts +12 -0
- package/vendor/websocket-bridge/dist/bridge-frame.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-frame.js +25 -0
- package/vendor/websocket-bridge/dist/bridge-frame.js.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-guards.d.ts +5 -0
- package/vendor/websocket-bridge/dist/bridge-guards.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-guards.js +18 -0
- package/vendor/websocket-bridge/dist/bridge-guards.js.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-subjects.d.ts +11 -0
- package/vendor/websocket-bridge/dist/bridge-subjects.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-subjects.js +39 -0
- package/vendor/websocket-bridge/dist/bridge-subjects.js.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-types.d.ts +91 -0
- package/vendor/websocket-bridge/dist/bridge-types.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/bridge-types.js +3 -0
- package/vendor/websocket-bridge/dist/bridge-types.js.map +1 -0
- package/vendor/websocket-bridge/dist/create-client.d.ts +6 -0
- package/vendor/websocket-bridge/dist/create-client.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/create-client.js +153 -0
- package/vendor/websocket-bridge/dist/create-client.js.map +1 -0
- package/vendor/websocket-bridge/dist/create-server.d.ts +9 -0
- package/vendor/websocket-bridge/dist/create-server.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/create-server.js +129 -0
- package/vendor/websocket-bridge/dist/create-server.js.map +1 -0
- package/vendor/websocket-bridge/dist/testing/expect-type.d.ts +4 -0
- package/vendor/websocket-bridge/dist/testing/expect-type.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/testing/expect-type.js +4 -0
- package/vendor/websocket-bridge/dist/testing/expect-type.js.map +1 -0
- package/vendor/websocket-bridge/dist/testing/sample-diagram-ws-config.d.ts +28 -0
- package/vendor/websocket-bridge/dist/testing/sample-diagram-ws-config.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/testing/sample-diagram-ws-config.js +13 -0
- package/vendor/websocket-bridge/dist/testing/sample-diagram-ws-config.js.map +1 -0
- package/vendor/websocket-bridge/dist/testing/sample-ping-ws-config.d.ts +18 -0
- package/vendor/websocket-bridge/dist/testing/sample-ping-ws-config.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/testing/sample-ping-ws-config.js +11 -0
- package/vendor/websocket-bridge/dist/testing/sample-ping-ws-config.js.map +1 -0
- package/vendor/websocket-bridge/dist/testing/transport-test-helpers.d.ts +7 -0
- package/vendor/websocket-bridge/dist/testing/transport-test-helpers.d.ts.map +1 -0
- package/vendor/websocket-bridge/dist/testing/transport-test-helpers.js +35 -0
- package/vendor/websocket-bridge/dist/testing/transport-test-helpers.js.map +1 -0
- package/vendor/websocket-bridge/package.json +26 -0
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
import type { StatefulConnection, StatefulObservable } from '@rx-evo/stateful-observable';
|
|
2
|
+
import type { Observable } from 'rxjs';
|
|
3
|
+
import type { GraphCluster } from './runtime-helpers.js';
|
|
4
|
+
export type RuntimeWireType = string & {
|
|
5
|
+
__brand: 'RuntimeWireType';
|
|
6
|
+
};
|
|
7
|
+
export type NodeId = string & {
|
|
8
|
+
readonly __brand: 'NodeId';
|
|
9
|
+
};
|
|
10
|
+
export type EdgeId = string & {
|
|
11
|
+
readonly __brand: 'EdgeId';
|
|
12
|
+
};
|
|
13
|
+
export type RunId = string & {
|
|
14
|
+
readonly __brand: 'RunId';
|
|
15
|
+
};
|
|
16
|
+
type RuntimeInputPortMode = 'single' | 'merge' | 'combine' | 'zip' | 'bypass';
|
|
17
|
+
/**
|
|
18
|
+
* Typed metadata attached to every `statefulConnection` / `statefulObservable`
|
|
19
|
+
* via the `meta` field. Replaces the old string-encoding scheme.
|
|
20
|
+
*/
|
|
21
|
+
export type PortMeta = {
|
|
22
|
+
readonly dir: 'in' | 'out';
|
|
23
|
+
/** Port id (e.g. `"value"`, `"lines"`). */
|
|
24
|
+
readonly portId: string | symbol;
|
|
25
|
+
/** Wire type (e.g. `"string"`, `"dynamic"`, `"any"`). */
|
|
26
|
+
readonly wireType: string | symbol;
|
|
27
|
+
/** Input port cardinality — `undefined` for outputs. */
|
|
28
|
+
readonly mode?: RuntimeInputPortMode;
|
|
29
|
+
/** Passthrough source input port id — `undefined` for non-passthrough outputs. */
|
|
30
|
+
readonly fromInput?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Design-time default for an **unconnected** input. Applied by the runner at
|
|
33
|
+
* `start` / `startNode` when no edge targets the port (see
|
|
34
|
+
* `applyPortDefaults`). Server may also persist the same value in
|
|
35
|
+
* `node.inputs` for the canvas.
|
|
36
|
+
*/
|
|
37
|
+
readonly defaultValue?: unknown;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Extract the `meta` type carried by a {@link StatefulObservable} /
|
|
41
|
+
* {@link StatefulConnection} — the serializable descriptor attached via the
|
|
42
|
+
* `meta` option, as opposed to the live stream itself.
|
|
43
|
+
*/
|
|
44
|
+
export type MetaFromStatefulObservable<T extends StatefulObservable<unknown, unknown, unknown>> = T extends StatefulObservable<unknown, unknown, infer Meta> ? Meta : never;
|
|
45
|
+
/**
|
|
46
|
+
* v2 runtime contracts — **execution only**.
|
|
47
|
+
*
|
|
48
|
+
* Responsibilities of `@langflower/runtime` (this module):
|
|
49
|
+
* - Wire node ports and run reactive handlers (StatefulObservable graph).
|
|
50
|
+
* - Minimal edge validation on {@link RuntimeEditor.addEdge} (port existence,
|
|
51
|
+
* wire-type compatibility). The same rules are duplicated in UI
|
|
52
|
+
* and `@langflower/server` on purpose — each layer must fail fast without
|
|
53
|
+
* depending on the others.
|
|
54
|
+
*
|
|
55
|
+
* **Out of scope** (handled by `@langflower/server` or later phases):
|
|
56
|
+
* - `WorkflowGraph` → {@link RuntimeNode} factory (isolated runtime first)
|
|
57
|
+
* - `defineNode` / sync lift adapters
|
|
58
|
+
* - HITL / chat semantics — server marks which ports are HITL and maps
|
|
59
|
+
* {@link RuntimeRunnerEvent} (+ user replies as seed) to chat / WS protocol
|
|
60
|
+
* - runId persistence, harness, LLM, filesystem
|
|
61
|
+
*
|
|
62
|
+
* **Server telemetry:** subscribe to {@link RuntimeRunner.events$} and
|
|
63
|
+
* translate frames to WebSocket; runtime does not speak WS.
|
|
64
|
+
*
|
|
65
|
+
* Phase 1 builds an **isolated runtime** — nodes wired manually in tests,
|
|
66
|
+
* no Langflower workflow loader yet.
|
|
67
|
+
*
|
|
68
|
+
* ## Status lifecycle
|
|
69
|
+
* - {@link RuntimeRunner.start} / {@link RuntimeRunner.startNode} → `'running'`
|
|
70
|
+
* - Run stays `'running'` until {@link RuntimeRunner.interrupt} or a
|
|
71
|
+
* {@link RuntimeNode.stopsRun} node emits on a watched output port
|
|
72
|
+
* - `events$` `kind: 'done'` → `'idle'` (empty graph instant completion,
|
|
73
|
+
* or finish node — see {@link ./ADR.md})
|
|
74
|
+
* - {@link RuntimeRunner.interrupt} → `'stopped'` (edits allowed; next start → `'running'`)
|
|
75
|
+
*
|
|
76
|
+
* ## Errors
|
|
77
|
+
* Node handlers surface failures via RxJS / `StatefulObservable` (`catchError`,
|
|
78
|
+
* port `error$`). Runner telemetry emits `output-emitted` with `state: 'error'`
|
|
79
|
+
* on the source; wiring then drops `ResponseError` so edges do not cascade
|
|
80
|
+
* error chrome to downstream nodes.
|
|
81
|
+
*
|
|
82
|
+
* ## Run scope
|
|
83
|
+
* - {@link RuntimeRunner.start} — wire every cluster that does **not** contain a
|
|
84
|
+
* {@link RuntimeNode.chatEntry} node; run until interrupt or a
|
|
85
|
+
* {@link RuntimeNode.stopsRun} finish node.
|
|
86
|
+
* - {@link RuntimeRunner.startNode} — wire only the weakly connected cluster
|
|
87
|
+
* containing `nodeId`; orphan nodes on the canvas are ignored.
|
|
88
|
+
* - Chat-entry clusters start via {@link RuntimeRunnerApi.pushIntoInput}.
|
|
89
|
+
* - **Empty graph:** instant `done` → `idle` so the editor unlocks.
|
|
90
|
+
*
|
|
91
|
+
* ## Multi-input ports
|
|
92
|
+
* Fan-in cardinality is encoded on {@link PortMeta.mode} (`merge`, `combine`,
|
|
93
|
+
* `zip`, bypass slots, …), not in connection name strings.
|
|
94
|
+
*
|
|
95
|
+
* Merge/combine/zip inputs receive ordered upstreams: runtime sorts edges by
|
|
96
|
+
* `toPort[1]` (slot index), combines their outputs, and connects the result
|
|
97
|
+
* to `inputs[portId]`.
|
|
98
|
+
*
|
|
99
|
+
* **`mode: 'merge'` limitation (blocked on `@rx-evo`):** fan-in forwards
|
|
100
|
+
* success `value$` only. Loading / error / inactive from sources are dropped
|
|
101
|
+
* until the library exports a merge-of-`raw$` (or `fillStatefulObservable`).
|
|
102
|
+
* See BUG-2026-07-15c. Do not rely on merge for full `ResponseWithStatus`
|
|
103
|
+
* forwarding.
|
|
104
|
+
*
|
|
105
|
+
* ## Input vs output ports
|
|
106
|
+
* `inputs` expose {@link StatefulConnection} — runtime wires edges with
|
|
107
|
+
* `connect(source)` on {@link RuntimeRunner.start} and `disconnect()` on
|
|
108
|
+
* {@link RuntimeRunner.interrupt}. Seeds use `connect(of(value))` on open slots.
|
|
109
|
+
* `outputs` expose {@link StatefulObservable} (read side) for telemetry and
|
|
110
|
+
* optional {@link RuntimeNode.stopsRun} completion.
|
|
111
|
+
*/
|
|
112
|
+
export type RuntimeRunnerStatus = 'idle' | 'running' | 'stopped';
|
|
113
|
+
export type RuntimePortSignalState = 'pending' | 'value' | 'error';
|
|
114
|
+
export type RuntimeOutputEmittedEvent = {
|
|
115
|
+
readonly kind: 'output-emitted';
|
|
116
|
+
readonly runId: RunId;
|
|
117
|
+
readonly nodeId: NodeId;
|
|
118
|
+
readonly portId: string | symbol;
|
|
119
|
+
readonly portIdx: number;
|
|
120
|
+
readonly edgeIds: EdgeId[];
|
|
121
|
+
readonly state: RuntimePortSignalState;
|
|
122
|
+
readonly value: unknown;
|
|
123
|
+
};
|
|
124
|
+
export type RuntimeInputReceivedEvent = {
|
|
125
|
+
readonly kind: 'input-received';
|
|
126
|
+
readonly runId: RunId;
|
|
127
|
+
readonly nodeId: NodeId;
|
|
128
|
+
readonly portId: string | symbol;
|
|
129
|
+
readonly portIdx: number;
|
|
130
|
+
readonly edgeIds: EdgeId[];
|
|
131
|
+
readonly state: RuntimePortSignalState;
|
|
132
|
+
readonly value: unknown;
|
|
133
|
+
};
|
|
134
|
+
export type RuntimeRunnerEvent = RuntimeOutputEmittedEvent | RuntimeInputReceivedEvent | {
|
|
135
|
+
/**
|
|
136
|
+
* Run ended naturally — sets {@link RuntimeRunnerStatus} to `'idle'`.
|
|
137
|
+
*
|
|
138
|
+
* Emitted when:
|
|
139
|
+
* - the graph is **empty** on {@link RuntimeRunner.start}, or
|
|
140
|
+
* - a node with {@link RuntimeNode.stopsRun} emits on a watched output.
|
|
141
|
+
*
|
|
142
|
+
* Otherwise the run stays `'running'` until
|
|
143
|
+
* {@link RuntimeRunner.interrupt}.
|
|
144
|
+
*/
|
|
145
|
+
readonly kind: 'done';
|
|
146
|
+
readonly runId: RunId;
|
|
147
|
+
};
|
|
148
|
+
/** Seed value pushed into an input port slot on {@link RuntimeRunner.start}. */
|
|
149
|
+
export type RuntimeSeedPortValue = {
|
|
150
|
+
readonly portId: string | symbol;
|
|
151
|
+
/** Multi-input slot index (`0` for single-slot ports). */
|
|
152
|
+
readonly slotIndex: number;
|
|
153
|
+
readonly value: unknown;
|
|
154
|
+
};
|
|
155
|
+
/**
|
|
156
|
+
* Durable-resume overlay for {@link RuntimeRunnerApi.resume}.
|
|
157
|
+
*
|
|
158
|
+
* Completed nodes are not re-activated: edges into them are skipped, and their
|
|
159
|
+
* last output values are re-emitted from snapshots as edge sources.
|
|
160
|
+
*/
|
|
161
|
+
export type RuntimeResumeOptions = {
|
|
162
|
+
readonly runId?: RunId;
|
|
163
|
+
readonly completedNodeIds: readonly NodeId[];
|
|
164
|
+
/**
|
|
165
|
+
* Last successful output values keyed by `nodeId` → `portId` (string ports
|
|
166
|
+
* only). Required for every outgoing edge from a completed node.
|
|
167
|
+
*/
|
|
168
|
+
readonly outputSnapshots: Readonly<Record<string, Readonly<Record<string, unknown>>>>;
|
|
169
|
+
readonly initialPayload?: Readonly<Record<string, ReadonlyArray<RuntimeSeedPortValue>>>;
|
|
170
|
+
};
|
|
171
|
+
export type RuntimeNode = {
|
|
172
|
+
readonly nodeId: NodeId;
|
|
173
|
+
/**
|
|
174
|
+
* Input ports — {@link StatefulConnection} relays.
|
|
175
|
+
*
|
|
176
|
+
* On run start the runner calls `connect(upstreamOutput)` per edge; on
|
|
177
|
+
* interrupt it calls `disconnect()`. Open slots may be seeded with
|
|
178
|
+
* `connect(of(value))`.
|
|
179
|
+
*
|
|
180
|
+
* Port metadata lives on `connection.meta` as {@link PortMeta}.
|
|
181
|
+
*/
|
|
182
|
+
readonly inputs: Record<string | symbol, StatefulConnection<unknown, unknown, PortMeta>>;
|
|
183
|
+
/**
|
|
184
|
+
* Output ports of the node.
|
|
185
|
+
*
|
|
186
|
+
* Port metadata lives on `output.meta` as {@link PortMeta}.
|
|
187
|
+
*/
|
|
188
|
+
readonly outputs: Record<string | symbol, StatefulObservable<unknown, unknown, PortMeta>>;
|
|
189
|
+
/**
|
|
190
|
+
* Router bypass base port ids → wire types (factory metadata).
|
|
191
|
+
*
|
|
192
|
+
* Runtime materializes each key as a multi-input base port. Channel outputs
|
|
193
|
+
* such as `ch` and `ch@1` are slot-specific views over that base input.
|
|
194
|
+
* Identity conversions (edge tuple ↔ output/checkpoint id ↔ SlotKey) live
|
|
195
|
+
* in `bypass-ports.ts` — do not invent ad-hoc `@` encodings elsewhere.
|
|
196
|
+
*/
|
|
197
|
+
readonly bypassPorts: Record<string, RuntimeWireType>;
|
|
198
|
+
/**
|
|
199
|
+
* Materialized bypass slot connections — created dynamically by
|
|
200
|
+
* {@link RuntimeEditor.addNode} from {@link bypassPorts} metadata.
|
|
201
|
+
*
|
|
202
|
+
* Each key maps to an array of independent {@link StatefulConnection}s,
|
|
203
|
+
* one per slot. Array index equals slot index (edge/SlotKey form).
|
|
204
|
+
* Outputs-map / checkpoint keys use `bypassOutputPortId` (`ch` / `ch@n`).
|
|
205
|
+
* Each connection serves as both input (`.connect()`) and output (`.value$`).
|
|
206
|
+
*/
|
|
207
|
+
readonly bypassConnections?: Record<string, readonly StatefulConnection<unknown, unknown, PortMeta>[]>;
|
|
208
|
+
/**
|
|
209
|
+
* When `true`, the first **value** emission on any watched output port
|
|
210
|
+
* ends the run (`done` → `idle`). Used by finish / sink nodes.
|
|
211
|
+
*/
|
|
212
|
+
readonly stopsRun?: boolean;
|
|
213
|
+
/**
|
|
214
|
+
* Chat-entry source — clusters containing this node are omitted from
|
|
215
|
+
* {@link RuntimeRunnerApi.start}. Start those clusters via
|
|
216
|
+
* {@link RuntimeRunnerApi.pushIntoInput} (composer) instead.
|
|
217
|
+
*/
|
|
218
|
+
readonly chatEntry?: boolean;
|
|
219
|
+
/**
|
|
220
|
+
* Declares handler contract: at most one output value per input
|
|
221
|
+
* activation (e.g. constant, delay). Runtime does not enforce this —
|
|
222
|
+
* metadata for factories and tests.
|
|
223
|
+
*/
|
|
224
|
+
readonly emitOncePerActivation?: boolean;
|
|
225
|
+
/**
|
|
226
|
+
* Seeded snapshot node — emits cached outputs without re-execution.
|
|
227
|
+
* Server skips running/completed telemetry for these nodes.
|
|
228
|
+
*/
|
|
229
|
+
readonly skipExecutionTelemetry?: boolean;
|
|
230
|
+
};
|
|
231
|
+
export type RuntimeEdge = {
|
|
232
|
+
readonly edgeId: EdgeId;
|
|
233
|
+
readonly fromNodeId: NodeId;
|
|
234
|
+
readonly fromPort: [string, number];
|
|
235
|
+
readonly toNodeId: NodeId;
|
|
236
|
+
readonly toPort: [string, number];
|
|
237
|
+
};
|
|
238
|
+
/** {@link RuntimeRunner} / {@link RuntimeFacade} construction options. */
|
|
239
|
+
export type RuntimeOptions = {
|
|
240
|
+
/**
|
|
241
|
+
* When `true`, retain every {@link RuntimeRunnerEvent} in
|
|
242
|
+
* {@link RuntimeRunner.eventLog} for server-side feed replay.
|
|
243
|
+
*/
|
|
244
|
+
readonly log?: boolean;
|
|
245
|
+
};
|
|
246
|
+
export type RuntimeEditorApi = {
|
|
247
|
+
/**
|
|
248
|
+
* Register a node and its port observables (handler already bound).
|
|
249
|
+
*
|
|
250
|
+
* NodeId exist => node being added from serizlized workflow
|
|
251
|
+
* NodeId does not exist => new node from UI
|
|
252
|
+
*
|
|
253
|
+
* Must fail while {@link RuntimeRunnerApi.status$} is `'running'`.
|
|
254
|
+
*
|
|
255
|
+
* return false while running or node cant be added
|
|
256
|
+
*/
|
|
257
|
+
addNode(node: Omit<RuntimeNode, 'nodeId'> & Partial<Pick<RuntimeNode, 'nodeId'>>): RuntimeNode | false;
|
|
258
|
+
/**
|
|
259
|
+
* Connect two ports. Returns false if the edge already exists or validation
|
|
260
|
+
* fails (unknown node/port, slot out of range, wire-type mismatch).
|
|
261
|
+
* Router bypass lanes use the same rules — their portIds live in
|
|
262
|
+
* `inputs` / `outputs`; passthrough semantics belong in the node definition.
|
|
263
|
+
*
|
|
264
|
+
* Must fail while {@link RuntimeRunnerApi.status$} is `'running'`.
|
|
265
|
+
*
|
|
266
|
+
* return false while running or node cant be added
|
|
267
|
+
*/
|
|
268
|
+
addEdge(edge: Omit<RuntimeEdge, 'edgeId'>, options?: {
|
|
269
|
+
readonly edgeId?: EdgeId;
|
|
270
|
+
}): RuntimeEdge | false;
|
|
271
|
+
/**
|
|
272
|
+
* Replace the edge on {@link RuntimeEdge.toPort} with `edge`.
|
|
273
|
+
*
|
|
274
|
+
* Returns the replaced edge on success; `false` when the target port is
|
|
275
|
+
* free, the request duplicates an existing edge, validation fails, or the
|
|
276
|
+
* graph is locked. Does not cascade-remove other edges.
|
|
277
|
+
*/
|
|
278
|
+
replaceEdge(edge: Omit<RuntimeEdge, 'edgeId'>): RuntimeEdge | false;
|
|
279
|
+
/** Must fail while runner status is `'running'`.
|
|
280
|
+
*
|
|
281
|
+
* return false while running or node not found
|
|
282
|
+
*/
|
|
283
|
+
removeNode(nodeId: NodeId): RuntimeNode | false;
|
|
284
|
+
/** Must fail while runner status is `'running'`.
|
|
285
|
+
* return removed nodes or empty array
|
|
286
|
+
*/
|
|
287
|
+
removeEdge(edgeId: EdgeId): RuntimeNode[];
|
|
288
|
+
getNode(nodeId: NodeId): RuntimeNode | false;
|
|
289
|
+
getEdge(edgeId: EdgeId): RuntimeEdge | false;
|
|
290
|
+
getNodes(): RuntimeNode[];
|
|
291
|
+
getEdges(): RuntimeEdge[];
|
|
292
|
+
/** For serialization; graph must be idle or stopped. */
|
|
293
|
+
getAll(): {
|
|
294
|
+
nodes: RuntimeNode[];
|
|
295
|
+
edges: RuntimeEdge[];
|
|
296
|
+
};
|
|
297
|
+
/** Ready-to-use calculated graph clusters. Recalculated after graph edits. */
|
|
298
|
+
allClusters: readonly GraphCluster[];
|
|
299
|
+
/** Resolve the ready cluster containing `nodeId`. */
|
|
300
|
+
getClusterByNodeId(nodeId: NodeId): GraphCluster;
|
|
301
|
+
};
|
|
302
|
+
export type RuntimeRunnerApi = {
|
|
303
|
+
/**
|
|
304
|
+
* Wire every cluster that does not contain a {@link RuntimeNode.chatEntry}
|
|
305
|
+
* node, seed source inputs, set status to `'running'`.
|
|
306
|
+
*
|
|
307
|
+
* Chat-entry clusters are omitted — start them via
|
|
308
|
+
* {@link RuntimeRunnerApi.pushIntoInput}. When every cluster is chat-entry
|
|
309
|
+
* (or the graph is empty), returns `false` / instant `done` respectively.
|
|
310
|
+
*
|
|
311
|
+
* Run stays `'running'` until {@link RuntimeRunnerApi.interrupt} or a
|
|
312
|
+
* {@link RuntimeNode.stopsRun} node emits. Empty graph emits instant `done`.
|
|
313
|
+
*
|
|
314
|
+
* Throws if status is already `'running'`.
|
|
315
|
+
*
|
|
316
|
+
* @returns runId — correlates {@link RuntimeRunnerEvent} for the server
|
|
317
|
+
* adapter; runtime does not persist runs.
|
|
318
|
+
*/
|
|
319
|
+
start(initialPayload?: Readonly<Record<string, ReadonlyArray<RuntimeSeedPortValue>>>, runId?: RunId): RunId | false;
|
|
320
|
+
/**
|
|
321
|
+
* Run-from-node: wire the weakly connected cluster containing `nodeId`
|
|
322
|
+
* (orphan nodes elsewhere on the canvas are not wired).
|
|
323
|
+
*
|
|
324
|
+
* Run stays `'running'` until {@link RuntimeRunnerApi.interrupt} or a
|
|
325
|
+
* {@link RuntimeNode.stopsRun} node in scope emits.
|
|
326
|
+
*
|
|
327
|
+
* Throws if status is already `'running'`.
|
|
328
|
+
*
|
|
329
|
+
* Flow: `RuntimeEditorApi.getClusterByNodeId(nodeId)` -> internal runner
|
|
330
|
+
* `runScope` (cluster node/edge sets).
|
|
331
|
+
*
|
|
332
|
+
* @returns runId — same semantics as {@link RuntimeRunnerApi.start}.
|
|
333
|
+
*/
|
|
334
|
+
startNode(nodeId: NodeId, initialPayload?: Readonly<Record<string, ReadonlyArray<RuntimeSeedPortValue>>>, runId?: RunId): RunId | false;
|
|
335
|
+
/**
|
|
336
|
+
* Resume a stopped run: wire the full graph, skip completed nodes, and
|
|
337
|
+
* replay their output snapshots into downstream edges.
|
|
338
|
+
*
|
|
339
|
+
* Returns `false` when already `'running'`. Throws when a completed node's
|
|
340
|
+
* outgoing edge lacks a string-port snapshot.
|
|
341
|
+
*/
|
|
342
|
+
resume(options: RuntimeResumeOptions): RunId | false;
|
|
343
|
+
/**
|
|
344
|
+
* Push a value into an input port for HITL-style entry.
|
|
345
|
+
*
|
|
346
|
+
* If the runner is idle or stopped, this starts the weakly connected
|
|
347
|
+
* cluster containing `nodeId`, like {@link RuntimeRunnerApi.startNode}, then
|
|
348
|
+
* delivers `payload` to the requested single input port. If a run is already
|
|
349
|
+
* active, the value is delivered only when `nodeId` is inside that run scope.
|
|
350
|
+
*
|
|
351
|
+
* Returns the active `runId` when the payload was accepted, or `false` when
|
|
352
|
+
* the target node/port is missing, out of scope, multi-input, or already
|
|
353
|
+
* occupied by an edge/seed.
|
|
354
|
+
*/
|
|
355
|
+
pushIntoInput(cfg: {
|
|
356
|
+
nodeId: NodeId;
|
|
357
|
+
portId: string;
|
|
358
|
+
payload: unknown;
|
|
359
|
+
}): RunId | false;
|
|
360
|
+
/**
|
|
361
|
+
* Unsubscribe wired edges, set status to `'stopped'`.
|
|
362
|
+
* Does not dispose the editor graph.
|
|
363
|
+
*/
|
|
364
|
+
interrupt(reason: 'cancel'): void;
|
|
365
|
+
/**
|
|
366
|
+
* End the active run with `done` when execution cannot reach a
|
|
367
|
+
* {@link RuntimeNode.stopsRun} node (e.g. upstream failures).
|
|
368
|
+
*/
|
|
369
|
+
completeRun(): void;
|
|
370
|
+
/**
|
|
371
|
+
* Drop every recorded frame from {@link RuntimeRunner.eventLog} so the
|
|
372
|
+
* server can rebuild an empty `executionFeed.snapshot`. No-op when the
|
|
373
|
+
* runner was not constructed with `{ log: true }` (the shared empty log
|
|
374
|
+
* is never mutated).
|
|
375
|
+
*/
|
|
376
|
+
clearEventLog(): void;
|
|
377
|
+
dispose(): void;
|
|
378
|
+
/**
|
|
379
|
+
* `'idle'` — no active run, or natural completion (`done`); edits allowed.
|
|
380
|
+
* `'running'` — active run; {@link RuntimeEditorApi} mutations must be rejected.
|
|
381
|
+
* `'stopped'` — cancelled via {@link RuntimeRunnerApi.interrupt}; edits allowed.
|
|
382
|
+
*/
|
|
383
|
+
readonly status$: Observable<RuntimeRunnerStatus>;
|
|
384
|
+
/** Synchronous snapshot of {@link status$} (latest emission). */
|
|
385
|
+
readonly status: RuntimeRunnerStatus;
|
|
386
|
+
/**
|
|
387
|
+
* Live port telemetry for the active run (`runId` on each frame).
|
|
388
|
+
* **Hot only** — subscribers receive events emitted after subscribe;
|
|
389
|
+
* no replay of past frames.
|
|
390
|
+
*
|
|
391
|
+
* `@langflower/server` subscribes at run start and maps to WebSocket
|
|
392
|
+
* execution events.
|
|
393
|
+
*/
|
|
394
|
+
readonly events$: Observable<RuntimeRunnerEvent>;
|
|
395
|
+
/**
|
|
396
|
+
* In-memory run event log when {@link RuntimeRunner} is constructed with
|
|
397
|
+
* `{ log: true }`. Used by `@langflower/server` for feed replay.
|
|
398
|
+
*/
|
|
399
|
+
readonly eventLog: readonly RuntimeRunnerEvent[];
|
|
400
|
+
};
|
|
401
|
+
export {};
|
|
402
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@langflower/runtime",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/runtime.js",
|
|
6
|
+
"types": "./dist/runtime.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/runtime.d.ts",
|
|
10
|
+
"import": "./dist/runtime.js"
|
|
11
|
+
},
|
|
12
|
+
"./port-meta": {
|
|
13
|
+
"types": "./dist/port-meta.d.ts",
|
|
14
|
+
"import": "./dist/port-meta.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@rx-evo/stateful-observable": "^0.5.2",
|
|
19
|
+
"rxjs": "^7.8.1"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
]
|
|
24
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/** Overwrite a single file from source (creates parent dirs). */
|
|
2
|
+
export declare const copyFileForce: (sourcePath: string, destinationPath: string) => Promise<void>;
|
|
3
|
+
/**
|
|
4
|
+
* Recursively copy a directory, overwriting files that exist in source.
|
|
5
|
+
* Extra files already under destination are left in place.
|
|
6
|
+
*/
|
|
7
|
+
export declare const copyDirForce: (sourceDir: string, destinationDir: string) => Promise<void>;
|
|
8
|
+
//# sourceMappingURL=copy-force.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"copy-force.d.ts","sourceRoot":"","sources":["../../src/bootstrap/copy-force.ts"],"names":[],"mappings":"AAGA,iEAAiE;AACjE,eAAO,MAAM,aAAa,GACzB,YAAY,MAAM,EAClB,iBAAiB,MAAM,KACrB,OAAO,CAAC,IAAI,CAGd,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,GACxB,WAAW,MAAM,EACjB,gBAAgB,MAAM,KACpB,OAAO,CAAC,IAAI,CAMd,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import fs from 'node:fs/promises';
|
|
2
|
+
import path from 'node:path';
|
|
3
|
+
/** Overwrite a single file from source (creates parent dirs). */
|
|
4
|
+
export const copyFileForce = async (sourcePath, destinationPath) => {
|
|
5
|
+
await fs.mkdir(path.dirname(destinationPath), { recursive: true });
|
|
6
|
+
await fs.copyFile(sourcePath, destinationPath);
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Recursively copy a directory, overwriting files that exist in source.
|
|
10
|
+
* Extra files already under destination are left in place.
|
|
11
|
+
*/
|
|
12
|
+
export const copyDirForce = async (sourceDir, destinationDir) => {
|
|
13
|
+
await fs.mkdir(destinationDir, { recursive: true });
|
|
14
|
+
await fs.cp(sourceDir, destinationDir, {
|
|
15
|
+
recursive: true,
|
|
16
|
+
force: true,
|
|
17
|
+
});
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=copy-force.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"copy-force.js","sourceRoot":"","sources":["../../src/bootstrap/copy-force.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAClC,OAAO,IAAI,MAAM,WAAW,CAAC;AAE7B,iEAAiE;AACjE,MAAM,CAAC,MAAM,aAAa,GAAG,KAAK,EACjC,UAAkB,EAClB,eAAuB,EACP,EAAE;IAClB,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IACnE,MAAM,EAAE,CAAC,QAAQ,CAAC,UAAU,EAAE,eAAe,CAAC,CAAC;AAChD,CAAC,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,YAAY,GAAG,KAAK,EAChC,SAAiB,EACjB,cAAsB,EACN,EAAE;IAClB,MAAM,EAAE,CAAC,KAAK,CAAC,cAAc,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IACpD,MAAM,EAAE,CAAC,EAAE,CAAC,SAAS,EAAE,cAAc,EAAE;QACtC,SAAS,EAAE,IAAI;QACf,KAAK,EAAE,IAAI;KACX,CAAC,CAAC;AACJ,CAAC,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/** Copy a single file when the destination path does not exist. */
|
|
2
|
+
export declare const copyFileIfMissing: (sourcePath: string, destinationPath: string) => Promise<void>;
|
|
3
|
+
/**
|
|
4
|
+
* Recursively copy a directory when the destination directory does not exist.
|
|
5
|
+
* Existence of the destination path (even empty) skips the copy — no overwrite.
|
|
6
|
+
*/
|
|
7
|
+
export declare const copyDirIfMissing: (sourceDir: string, destinationDir: string) => Promise<void>;
|
|
8
|
+
//# sourceMappingURL=copy-if-missing.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"copy-if-missing.d.ts","sourceRoot":"","sources":["../../src/bootstrap/copy-if-missing.ts"],"names":[],"mappings":"AAYA,mEAAmE;AACnE,eAAO,MAAM,iBAAiB,GAC7B,YAAY,MAAM,EAClB,iBAAiB,MAAM,KACrB,OAAO,CAAC,IAAI,CAOd,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gBAAgB,GAC5B,WAAW,MAAM,EACjB,gBAAgB,MAAM,KACpB,OAAO,CAAC,IAAI,CASd,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import fs from 'node:fs/promises';
|
|
2
|
+
import path from 'node:path';
|
|
3
|
+
const pathExists = async (targetPath) => {
|
|
4
|
+
try {
|
|
5
|
+
await fs.access(targetPath);
|
|
6
|
+
return true;
|
|
7
|
+
}
|
|
8
|
+
catch {
|
|
9
|
+
return false;
|
|
10
|
+
}
|
|
11
|
+
};
|
|
12
|
+
/** Copy a single file when the destination path does not exist. */
|
|
13
|
+
export const copyFileIfMissing = async (sourcePath, destinationPath) => {
|
|
14
|
+
if (await pathExists(destinationPath)) {
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
await fs.mkdir(path.dirname(destinationPath), { recursive: true });
|
|
18
|
+
await fs.copyFile(sourcePath, destinationPath);
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* Recursively copy a directory when the destination directory does not exist.
|
|
22
|
+
* Existence of the destination path (even empty) skips the copy — no overwrite.
|
|
23
|
+
*/
|
|
24
|
+
export const copyDirIfMissing = async (sourceDir, destinationDir) => {
|
|
25
|
+
if (await pathExists(destinationDir)) {
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
await fs.cp(sourceDir, destinationDir, {
|
|
29
|
+
recursive: true,
|
|
30
|
+
errorOnExist: true,
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
//# sourceMappingURL=copy-if-missing.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"copy-if-missing.js","sourceRoot":"","sources":["../../src/bootstrap/copy-if-missing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAClC,OAAO,IAAI,MAAM,WAAW,CAAC;AAE7B,MAAM,UAAU,GAAG,KAAK,EAAE,UAAkB,EAAoB,EAAE;IACjE,IAAI,CAAC;QACJ,MAAM,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;QAC5B,OAAO,IAAI,CAAC;IACb,CAAC;IAAC,MAAM,CAAC;QACR,OAAO,KAAK,CAAC;IACd,CAAC;AACF,CAAC,CAAC;AAEF,mEAAmE;AACnE,MAAM,CAAC,MAAM,iBAAiB,GAAG,KAAK,EACrC,UAAkB,EAClB,eAAuB,EACP,EAAE;IAClB,IAAI,MAAM,UAAU,CAAC,eAAe,CAAC,EAAE,CAAC;QACvC,OAAO;IACR,CAAC;IAED,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IACnE,MAAM,EAAE,CAAC,QAAQ,CAAC,UAAU,EAAE,eAAe,CAAC,CAAC;AAChD,CAAC,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,KAAK,EACpC,SAAiB,EACjB,cAAsB,EACN,EAAE;IAClB,IAAI,MAAM,UAAU,CAAC,cAAc,CAAC,EAAE,CAAC;QACtC,OAAO;IACR,CAAC;IAED,MAAM,EAAE,CAAC,EAAE,CAAC,SAAS,EAAE,cAAc,EAAE;QACtC,SAAS,EAAE,IAAI;QACf,YAAY,EAAE,IAAI;KAClB,CAAC,CAAC;AACJ,CAAC,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { type SeedSkeletonMode, type SeedSkeletonResult } from './seed-skeleton.js';
|
|
2
|
+
export type BootstrapProjectOptions = {
|
|
3
|
+
readonly mode?: SeedSkeletonMode;
|
|
4
|
+
/** When false, skip seeding skeleton `my-nodes`. Default true. */
|
|
5
|
+
readonly seedCustomNodes?: boolean;
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* Seed `.langflower/` from the packaged skeleton.
|
|
9
|
+
*
|
|
10
|
+
* - `create` (default): first-run layout — mkdir, create-if-missing configs,
|
|
11
|
+
* copy-if-missing skeleton content (all workflows).
|
|
12
|
+
* - `force`: overwrite skeleton templates; never writes `langflower.jsonc`
|
|
13
|
+
* and never overwrites an existing `config.json`.
|
|
14
|
+
*/
|
|
15
|
+
export declare function bootstrapProject(projectDir: string, options?: BootstrapProjectOptions): Promise<SeedSkeletonResult>;
|
|
16
|
+
/** True when the project already has a `.langflower` directory. */
|
|
17
|
+
export declare const hasLangflowerProject: (projectDir: string) => Promise<boolean>;
|
|
18
|
+
//# sourceMappingURL=project-bootstrap.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"project-bootstrap.service.d.ts","sourceRoot":"","sources":["../../src/bootstrap/project-bootstrap.service.ts"],"names":[],"mappings":"AAIA,OAAO,EAEN,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,MAAM,oBAAoB,CAAC;AAI5B,MAAM,MAAM,uBAAuB,GAAG;IACrC,QAAQ,CAAC,IAAI,CAAC,EAAE,gBAAgB,CAAC;IACjC,kEAAkE;IAClE,QAAQ,CAAC,eAAe,CAAC,EAAE,OAAO,CAAC;CACnC,CAAC;AAsDF;;;;;;;GAOG;AACH,wBAAsB,gBAAgB,CACrC,UAAU,EAAE,MAAM,EAClB,OAAO,GAAE,uBAA4B,GACnC,OAAO,CAAC,kBAAkB,CAAC,CAsB7B;AAED,mEAAmE;AACnE,eAAO,MAAM,oBAAoB,GAChC,YAAY,MAAM,KAChB,OAAO,CAAC,OAAO,CASjB,CAAC"}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { DEFAULT_CONFIG } from '@langflower/shared/constants/defaults.js';
|
|
2
|
+
import fs from 'node:fs/promises';
|
|
3
|
+
import path from 'node:path';
|
|
4
|
+
import { resolveSkeletonRoot } from './resolve-skeleton-root.js';
|
|
5
|
+
import { seedSkeletonContent, } from './seed-skeleton.js';
|
|
6
|
+
const FIRST_RUN_WORKFLOW_ID = 'starter';
|
|
7
|
+
const pathExists = async (targetPath) => {
|
|
8
|
+
try {
|
|
9
|
+
await fs.access(targetPath);
|
|
10
|
+
return true;
|
|
11
|
+
}
|
|
12
|
+
catch {
|
|
13
|
+
return false;
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const ensureLangflowerDirs = async (langflowerDir) => {
|
|
17
|
+
await fs.mkdir(path.join(langflowerDir, 'workflows'), { recursive: true });
|
|
18
|
+
await fs.mkdir(path.join(langflowerDir, 'nodes'), { recursive: true });
|
|
19
|
+
await fs.mkdir(path.join(langflowerDir, 'skills'), { recursive: true });
|
|
20
|
+
};
|
|
21
|
+
const writeConfigIfMissing = async (langflowerDir, projectDir) => {
|
|
22
|
+
const configPath = path.join(langflowerDir, 'config.json');
|
|
23
|
+
if (await pathExists(configPath)) {
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
await fs.writeFile(configPath, `${JSON.stringify({ ...DEFAULT_CONFIG, projectDir }, null, 2)}\n`, 'utf8');
|
|
27
|
+
};
|
|
28
|
+
const writeLangflowerJsoncIfMissing = async (langflowerDir) => {
|
|
29
|
+
const langflowerConfigPath = path.join(langflowerDir, 'langflower.jsonc');
|
|
30
|
+
if (await pathExists(langflowerConfigPath)) {
|
|
31
|
+
return;
|
|
32
|
+
}
|
|
33
|
+
await fs.writeFile(langflowerConfigPath, `${JSON.stringify({ currentWorkflowId: FIRST_RUN_WORKFLOW_ID, provider: {} }, null, 2)}\n`, 'utf8');
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Seed `.langflower/` from the packaged skeleton.
|
|
37
|
+
*
|
|
38
|
+
* - `create` (default): first-run layout — mkdir, create-if-missing configs,
|
|
39
|
+
* copy-if-missing skeleton content (all workflows).
|
|
40
|
+
* - `force`: overwrite skeleton templates; never writes `langflower.jsonc`
|
|
41
|
+
* and never overwrites an existing `config.json`.
|
|
42
|
+
*/
|
|
43
|
+
export async function bootstrapProject(projectDir, options = {}) {
|
|
44
|
+
const mode = options.mode ?? 'create';
|
|
45
|
+
const resolved = path.resolve(projectDir);
|
|
46
|
+
const langflowerDir = path.join(resolved, '.langflower');
|
|
47
|
+
await ensureLangflowerDirs(langflowerDir);
|
|
48
|
+
if (mode === 'create') {
|
|
49
|
+
await writeConfigIfMissing(langflowerDir, resolved);
|
|
50
|
+
await writeLangflowerJsoncIfMissing(langflowerDir);
|
|
51
|
+
}
|
|
52
|
+
else if (!(await pathExists(path.join(langflowerDir, 'config.json')))) {
|
|
53
|
+
// Force reseed on a broken project may still need tool config.
|
|
54
|
+
await writeConfigIfMissing(langflowerDir, resolved);
|
|
55
|
+
}
|
|
56
|
+
const skeletonRoot = await resolveSkeletonRoot();
|
|
57
|
+
return seedSkeletonContent(skeletonRoot, langflowerDir, {
|
|
58
|
+
mode,
|
|
59
|
+
...(options.seedCustomNodes !== undefined
|
|
60
|
+
? { seedCustomNodes: options.seedCustomNodes }
|
|
61
|
+
: {}),
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
/** True when the project already has a `.langflower` directory. */
|
|
65
|
+
export const hasLangflowerProject = async (projectDir) => {
|
|
66
|
+
const langflowerDir = path.join(path.resolve(projectDir), '.langflower');
|
|
67
|
+
try {
|
|
68
|
+
const stat = await fs.stat(langflowerDir);
|
|
69
|
+
return stat.isDirectory();
|
|
70
|
+
}
|
|
71
|
+
catch {
|
|
72
|
+
return false;
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
//# sourceMappingURL=project-bootstrap.service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"project-bootstrap.service.js","sourceRoot":"","sources":["../../src/bootstrap/project-bootstrap.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"project-bootstrap.service.test.d.ts","sourceRoot":"","sources":["../../src/bootstrap/project-bootstrap.service.test.ts"],"names":[],"mappings":""}
|