@shenghuabi/workflow 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +14 -0
- package/index.js +2078 -0
- package/index.js.map +7 -0
- package/index.mjs +2035 -0
- package/index.mjs.map +7 -0
- package/inline/inline.service.d.ts +8 -0
- package/inline/node/chat/chat.node.define.d.ts +185 -0
- package/inline/node/chat/common.d.ts +2 -0
- package/inline/node/chat/main/index.d.ts +209 -0
- package/inline/node/chat/main/llm.runner.d.ts +41 -0
- package/inline/node/chat/util.d.ts +8 -0
- package/inline/node/chat/webview/index.d.ts +2 -0
- package/inline/node/index.browser.d.ts +2 -0
- package/inline/node/index.node.d.ts +2 -0
- package/inline/node/text/common.d.ts +2 -0
- package/inline/node/text/main/index.d.ts +30 -0
- package/inline/node/text/main/textarea.runner.d.ts +7 -0
- package/inline/node/text/text.node.define.d.ts +6 -0
- package/inline/node/text/webview/index.d.ts +2 -0
- package/module.d.ts +23 -0
- package/package.json +52 -0
- package/plugin/plugin.service.d.ts +7 -0
- package/preset/context-build.service.d.ts +102 -0
- package/preset/inline-build.service.d.ts +11 -0
- package/preset/inline-runner.service.d.ts +16 -0
- package/runner/define.d.ts +12 -0
- package/runner/inline-input-item.runner.d.ts +8 -0
- package/runner/input-params.runner.d.ts +7 -0
- package/runner/iteration-start.runner.d.ts +7 -0
- package/runner/iteration.runner.d.ts +7 -0
- package/runner/parameters.runner.d.ts +10 -0
- package/runner/runner-error.d.ts +12 -0
- package/runner/runner-item.d.ts +35 -0
- package/runner/workflow-runner.service.d.ts +35 -0
- package/share/common/const.d.ts +2 -0
- package/share/common/define.d.ts +71 -0
- package/share/common/examples.define.d.ts +53 -0
- package/share/common/handle.define.d.ts +5 -0
- package/share/common/index.d.ts +5 -0
- package/share/common/inline-template.define.d.ts +15 -0
- package/share/common/llm.define.d.ts +29 -0
- package/share/const.d.ts +5 -0
- package/share/handle-node.d.ts +60 -0
- package/share/index.d.ts +8 -0
- package/share/index.js +336 -0
- package/share/index.js.map +7 -0
- package/share/index.mjs +296 -0
- package/share/index.mjs.map +7 -0
- package/share/type.d.ts +89 -0
- package/share/type2.d.ts +132 -0
- package/share/util/layout.d.ts +2 -0
- package/share/util.d.ts +5 -0
- package/share/workflow.const.d.ts +8 -0
- package/share/workflow.emit.d.ts +9 -0
- package/template-format.service.d.ts +29 -0
- package/test/chat.spec.d.ts +1 -0
- package/test/file.spec.d.ts +1 -0
- package/test/hello.spec.d.ts +1 -0
- package/test/plugin.spec.d.ts +1 -0
- package/token.d.ts +68 -0
- package/type/type.d.ts +5 -0
- package/webview/index.d.ts +1 -0
- package/webview/index.js +399 -0
- package/webview/index.js.map +7 -0
- package/webview/index.mjs +388 -0
- package/webview/index.mjs.map +7 -0
- package/workflow-exec.service.d.ts +41 -0
- package/workflow-file.service.d.ts +9 -0
- package/workflow-parser.service.d.ts +24 -0
- package/workflow-select.service.d.ts +13 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from './workflow-parser.service';
|
|
2
|
+
export * from './workflow-exec.service';
|
|
3
|
+
export * from './token';
|
|
4
|
+
export * from './workflow-select.service';
|
|
5
|
+
export * from './module';
|
|
6
|
+
export * from './runner/runner-item';
|
|
7
|
+
export * from './share/workflow.emit';
|
|
8
|
+
export * from './template-format.service';
|
|
9
|
+
export * from './share';
|
|
10
|
+
export * from './runner/workflow-runner.service';
|
|
11
|
+
export * from './inline/inline.service';
|
|
12
|
+
export * from './plugin/plugin.service';
|
|
13
|
+
export * from './type/type';
|
|
14
|
+
export * from './workflow-file.service';
|