@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.
Files changed (73) hide show
  1. package/index.d.ts +1 -0
  2. package/index.js +794 -918
  3. package/index.js.map +4 -4
  4. package/index.mjs +730 -851
  5. package/index.mjs.map +4 -4
  6. package/inline/inline.service.d.ts +1 -0
  7. package/inline/node/chat/main/index.d.ts +7 -12
  8. package/inline/node/chat/main/runner.d.ts +35 -0
  9. package/inline/node/chat/{chat.node.define.d.ts → node.define.d.ts} +3 -0
  10. package/inline/node/chat/util/useChat.d.ts +31 -0
  11. package/inline/node/index.browser.d.ts +2 -0
  12. package/inline/node/index.node.d.ts +2 -0
  13. package/inline/node/input-params/common.d.ts +2 -0
  14. package/inline/node/input-params/main/index.d.ts +29 -0
  15. package/inline/node/input-params/main/runner.d.ts +5 -0
  16. package/inline/node/input-params/node.define.d.ts +9 -0
  17. package/inline/node/input-params/webview/index.d.ts +2 -0
  18. package/inline/node/iteration/common.d.ts +2 -0
  19. package/inline/node/iteration/main/index.d.ts +29 -0
  20. package/inline/node/iteration/main/iteration-start.runner.d.ts +5 -0
  21. package/inline/node/iteration/main/runner.d.ts +6 -0
  22. package/inline/node/iteration/node.define.d.ts +11 -0
  23. package/inline/node/iteration/webview/index.d.ts +2 -0
  24. package/inline/node/text/main/index.d.ts +6 -11
  25. package/inline/node/text/main/runner.d.ts +14 -0
  26. package/inline/node/text/text.node.define.d.ts +2 -4
  27. package/module.d.ts +1 -3
  28. package/package.json +4 -3
  29. package/plugin/plugin.service.d.ts +1 -0
  30. package/preset/context-build.service.d.ts +2 -50
  31. package/runner/define.d.ts +3 -7
  32. package/runner/runner-item.d.ts +5 -20
  33. package/runner/workflow-runner.service.d.ts +9 -17
  34. package/share/common/const.d.ts +3 -2
  35. package/share/common/define.d.ts +3 -10
  36. package/share/const.d.ts +0 -1
  37. package/share/handle-node.d.ts +47 -18
  38. package/share/index.d.ts +0 -1
  39. package/share/index.js +27 -48
  40. package/share/index.js.map +4 -4
  41. package/share/index.mjs +25 -42
  42. package/share/index.mjs.map +3 -3
  43. package/share/type.d.ts +11 -29
  44. package/share/type2.d.ts +4 -8
  45. package/share/workflow.const.d.ts +1 -4
  46. package/test/util/chat-fixture.d.ts +44 -0
  47. package/test/util/text-input/common.d.ts +2 -0
  48. package/test/util/text-input/main/index.d.ts +25 -0
  49. package/test/util/text-input/main/runner.d.ts +6 -0
  50. package/test/util/text-input/text.node.define.d.ts +4 -0
  51. package/token.d.ts +8 -6
  52. package/type/type.d.ts +1 -1
  53. package/util/serialize-text-template.d.ts +16 -0
  54. package/webview/index.js +128 -41
  55. package/webview/index.js.map +4 -4
  56. package/webview/index.mjs +127 -43
  57. package/webview/index.mjs.map +4 -4
  58. package/workflow-exec.service.d.ts +14 -24
  59. package/workflow-parser.service.d.ts +0 -1
  60. package/inline/node/chat/main/llm.runner.d.ts +0 -41
  61. package/inline/node/text/main/textarea.runner.d.ts +0 -7
  62. package/preset/inline-build.service.d.ts +0 -11
  63. package/preset/inline-runner.service.d.ts +0 -16
  64. package/runner/inline-input-item.runner.d.ts +0 -8
  65. package/runner/input-params.runner.d.ts +0 -7
  66. package/runner/iteration-start.runner.d.ts +0 -7
  67. package/runner/iteration.runner.d.ts +0 -7
  68. package/runner/parameters.runner.d.ts +0 -10
  69. package/share/util.d.ts +0 -5
  70. package/test/chat.spec.d.ts +0 -1
  71. package/test/file.spec.d.ts +0 -1
  72. package/test/hello.spec.d.ts +0 -1
  73. package/test/plugin.spec.d.ts +0 -1
package/index.d.ts CHANGED
@@ -12,3 +12,4 @@ export * from './inline/inline.service';
12
12
  export * from './plugin/plugin.service';
13
13
  export * from './type/type';
14
14
  export * from './workflow-file.service';
15
+ export * from './util/serialize-text-template';