@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.
Files changed (70) hide show
  1. package/index.d.ts +14 -0
  2. package/index.js +2078 -0
  3. package/index.js.map +7 -0
  4. package/index.mjs +2035 -0
  5. package/index.mjs.map +7 -0
  6. package/inline/inline.service.d.ts +8 -0
  7. package/inline/node/chat/chat.node.define.d.ts +185 -0
  8. package/inline/node/chat/common.d.ts +2 -0
  9. package/inline/node/chat/main/index.d.ts +209 -0
  10. package/inline/node/chat/main/llm.runner.d.ts +41 -0
  11. package/inline/node/chat/util.d.ts +8 -0
  12. package/inline/node/chat/webview/index.d.ts +2 -0
  13. package/inline/node/index.browser.d.ts +2 -0
  14. package/inline/node/index.node.d.ts +2 -0
  15. package/inline/node/text/common.d.ts +2 -0
  16. package/inline/node/text/main/index.d.ts +30 -0
  17. package/inline/node/text/main/textarea.runner.d.ts +7 -0
  18. package/inline/node/text/text.node.define.d.ts +6 -0
  19. package/inline/node/text/webview/index.d.ts +2 -0
  20. package/module.d.ts +23 -0
  21. package/package.json +52 -0
  22. package/plugin/plugin.service.d.ts +7 -0
  23. package/preset/context-build.service.d.ts +102 -0
  24. package/preset/inline-build.service.d.ts +11 -0
  25. package/preset/inline-runner.service.d.ts +16 -0
  26. package/runner/define.d.ts +12 -0
  27. package/runner/inline-input-item.runner.d.ts +8 -0
  28. package/runner/input-params.runner.d.ts +7 -0
  29. package/runner/iteration-start.runner.d.ts +7 -0
  30. package/runner/iteration.runner.d.ts +7 -0
  31. package/runner/parameters.runner.d.ts +10 -0
  32. package/runner/runner-error.d.ts +12 -0
  33. package/runner/runner-item.d.ts +35 -0
  34. package/runner/workflow-runner.service.d.ts +35 -0
  35. package/share/common/const.d.ts +2 -0
  36. package/share/common/define.d.ts +71 -0
  37. package/share/common/examples.define.d.ts +53 -0
  38. package/share/common/handle.define.d.ts +5 -0
  39. package/share/common/index.d.ts +5 -0
  40. package/share/common/inline-template.define.d.ts +15 -0
  41. package/share/common/llm.define.d.ts +29 -0
  42. package/share/const.d.ts +5 -0
  43. package/share/handle-node.d.ts +60 -0
  44. package/share/index.d.ts +8 -0
  45. package/share/index.js +336 -0
  46. package/share/index.js.map +7 -0
  47. package/share/index.mjs +296 -0
  48. package/share/index.mjs.map +7 -0
  49. package/share/type.d.ts +89 -0
  50. package/share/type2.d.ts +132 -0
  51. package/share/util/layout.d.ts +2 -0
  52. package/share/util.d.ts +5 -0
  53. package/share/workflow.const.d.ts +8 -0
  54. package/share/workflow.emit.d.ts +9 -0
  55. package/template-format.service.d.ts +29 -0
  56. package/test/chat.spec.d.ts +1 -0
  57. package/test/file.spec.d.ts +1 -0
  58. package/test/hello.spec.d.ts +1 -0
  59. package/test/plugin.spec.d.ts +1 -0
  60. package/token.d.ts +68 -0
  61. package/type/type.d.ts +5 -0
  62. package/webview/index.d.ts +1 -0
  63. package/webview/index.js +399 -0
  64. package/webview/index.js.map +7 -0
  65. package/webview/index.mjs +388 -0
  66. package/webview/index.mjs.map +7 -0
  67. package/workflow-exec.service.d.ts +41 -0
  68. package/workflow-file.service.d.ts +9 -0
  69. package/workflow-parser.service.d.ts +24 -0
  70. 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';