@shenghuabi/workflow 1.1.4 → 1.1.6
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/index.d.ts +1 -0
- package/index.js +794 -918
- package/index.js.map +4 -4
- package/index.mjs +730 -851
- package/index.mjs.map +4 -4
- package/inline/inline.service.d.ts +1 -0
- package/inline/node/chat/main/index.d.ts +7 -12
- package/inline/node/chat/main/runner.d.ts +35 -0
- package/inline/node/chat/{chat.node.define.d.ts → node.define.d.ts} +3 -0
- package/inline/node/chat/util/useChat.d.ts +31 -0
- package/inline/node/index.browser.d.ts +2 -0
- package/inline/node/index.node.d.ts +2 -0
- package/inline/node/input-params/common.d.ts +2 -0
- package/inline/node/input-params/main/index.d.ts +29 -0
- package/inline/node/input-params/main/runner.d.ts +5 -0
- package/inline/node/input-params/node.define.d.ts +9 -0
- package/inline/node/input-params/webview/index.d.ts +2 -0
- package/inline/node/iteration/common.d.ts +2 -0
- package/inline/node/iteration/main/index.d.ts +29 -0
- package/inline/node/iteration/main/iteration-start.runner.d.ts +5 -0
- package/inline/node/iteration/main/runner.d.ts +6 -0
- package/inline/node/iteration/node.define.d.ts +11 -0
- package/inline/node/iteration/webview/index.d.ts +2 -0
- package/inline/node/text/main/index.d.ts +6 -11
- package/inline/node/text/main/runner.d.ts +14 -0
- package/inline/node/text/text.node.define.d.ts +2 -4
- package/module.d.ts +1 -3
- package/package.json +4 -3
- package/plugin/plugin.service.d.ts +1 -0
- package/preset/context-build.service.d.ts +2 -50
- package/runner/define.d.ts +3 -7
- package/runner/runner-item.d.ts +5 -20
- package/runner/workflow-runner.service.d.ts +9 -17
- package/share/common/const.d.ts +3 -2
- package/share/common/define.d.ts +3 -10
- package/share/const.d.ts +0 -1
- package/share/handle-node.d.ts +47 -18
- package/share/index.d.ts +0 -1
- package/share/index.js +27 -48
- package/share/index.js.map +4 -4
- package/share/index.mjs +25 -42
- package/share/index.mjs.map +3 -3
- package/share/type.d.ts +11 -29
- package/share/type2.d.ts +4 -8
- package/share/workflow.const.d.ts +1 -4
- package/test/util/chat-fixture.d.ts +44 -0
- package/test/util/text-input/common.d.ts +2 -0
- package/test/util/text-input/main/index.d.ts +25 -0
- package/test/util/text-input/main/runner.d.ts +6 -0
- package/test/util/text-input/text.node.define.d.ts +4 -0
- package/token.d.ts +8 -6
- package/type/type.d.ts +1 -1
- package/util/serialize-text-template.d.ts +16 -0
- package/webview/index.js +128 -41
- package/webview/index.js.map +4 -4
- package/webview/index.mjs +127 -43
- package/webview/index.mjs.map +4 -4
- package/workflow-exec.service.d.ts +14 -24
- package/workflow-parser.service.d.ts +0 -1
- package/inline/node/chat/main/llm.runner.d.ts +0 -41
- package/inline/node/text/main/textarea.runner.d.ts +0 -7
- package/preset/inline-build.service.d.ts +0 -11
- package/preset/inline-runner.service.d.ts +0 -16
- package/runner/inline-input-item.runner.d.ts +0 -8
- package/runner/input-params.runner.d.ts +0 -7
- package/runner/iteration-start.runner.d.ts +0 -7
- package/runner/iteration.runner.d.ts +0 -7
- package/runner/parameters.runner.d.ts +0 -10
- package/share/util.d.ts +0 -5
- package/test/chat.spec.d.ts +0 -1
- package/test/file.spec.d.ts +0 -1
- package/test/hello.spec.d.ts +0 -1
- package/test/plugin.spec.d.ts +0 -1
package/index.d.ts
CHANGED