@workglow/task-graph 0.2.14 → 0.2.16

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 (69) hide show
  1. package/dist/__tests__/public-exports.test.d.ts +7 -0
  2. package/dist/__tests__/public-exports.test.d.ts.map +1 -0
  3. package/dist/browser.js +879 -374
  4. package/dist/browser.js.map +22 -13
  5. package/dist/bun.js +879 -374
  6. package/dist/bun.js.map +22 -13
  7. package/dist/common.d.ts +4 -0
  8. package/dist/common.d.ts.map +1 -1
  9. package/dist/node.js +879 -374
  10. package/dist/node.js.map +22 -13
  11. package/dist/task/EntitlementEnforcer.d.ts.map +1 -1
  12. package/dist/task/IteratorTask.d.ts +1 -1
  13. package/dist/task/IteratorTask.d.ts.map +1 -1
  14. package/dist/task/ReduceTask.d.ts +1 -0
  15. package/dist/task/ReduceTask.d.ts.map +1 -1
  16. package/dist/task/Task.d.ts +4 -1
  17. package/dist/task/Task.d.ts.map +1 -1
  18. package/dist/task/TaskJSON.d.ts +2 -0
  19. package/dist/task/TaskJSON.d.ts.map +1 -1
  20. package/dist/task/WhileTask.d.ts.map +1 -1
  21. package/dist/task/__tests__/DataflowJson.transforms.test.d.ts +7 -0
  22. package/dist/task/__tests__/DataflowJson.transforms.test.d.ts.map +1 -0
  23. package/dist/task-graph/ConditionalBuilder.d.ts.map +1 -1
  24. package/dist/task-graph/Dataflow.d.ts +41 -1
  25. package/dist/task-graph/Dataflow.d.ts.map +1 -1
  26. package/dist/task-graph/TaskGraphRunner.d.ts.map +1 -1
  27. package/dist/task-graph/TransformRegistry.d.ts +14 -0
  28. package/dist/task-graph/TransformRegistry.d.ts.map +1 -0
  29. package/dist/task-graph/TransformTypes.d.ts +51 -0
  30. package/dist/task-graph/TransformTypes.d.ts.map +1 -0
  31. package/dist/task-graph/Workflow.d.ts +13 -2
  32. package/dist/task-graph/Workflow.d.ts.map +1 -1
  33. package/dist/task-graph/__tests__/Dataflow.streaming.test.d.ts +7 -0
  34. package/dist/task-graph/__tests__/Dataflow.streaming.test.d.ts.map +1 -0
  35. package/dist/task-graph/__tests__/Dataflow.transforms.test.d.ts +7 -0
  36. package/dist/task-graph/__tests__/Dataflow.transforms.test.d.ts.map +1 -0
  37. package/dist/task-graph/__tests__/TaskGraphRunner.transforms.test.d.ts +7 -0
  38. package/dist/task-graph/__tests__/TaskGraphRunner.transforms.test.d.ts.map +1 -0
  39. package/dist/task-graph/__tests__/TransformRegistry.test.d.ts +6 -0
  40. package/dist/task-graph/__tests__/TransformRegistry.test.d.ts.map +1 -0
  41. package/dist/task-graph/__tests__/transforms/coalesce.test.d.ts +6 -0
  42. package/dist/task-graph/__tests__/transforms/coalesce.test.d.ts.map +1 -0
  43. package/dist/task-graph/__tests__/transforms/date-conversions.test.d.ts +6 -0
  44. package/dist/task-graph/__tests__/transforms/date-conversions.test.d.ts.map +1 -0
  45. package/dist/task-graph/__tests__/transforms/index-access.test.d.ts +6 -0
  46. package/dist/task-graph/__tests__/transforms/index-access.test.d.ts.map +1 -0
  47. package/dist/task-graph/__tests__/transforms/pick.test.d.ts +6 -0
  48. package/dist/task-graph/__tests__/transforms/pick.test.d.ts.map +1 -0
  49. package/dist/task-graph/__tests__/transforms/scalar-conversions.test.d.ts +6 -0
  50. package/dist/task-graph/__tests__/transforms/scalar-conversions.test.d.ts.map +1 -0
  51. package/dist/task-graph/__tests__/transforms/string-casts.test.d.ts +6 -0
  52. package/dist/task-graph/__tests__/transforms/string-casts.test.d.ts.map +1 -0
  53. package/dist/task-graph/autoConnect.d.ts +39 -0
  54. package/dist/task-graph/autoConnect.d.ts.map +1 -0
  55. package/dist/task-graph/transforms/coalesce.d.ts +11 -0
  56. package/dist/task-graph/transforms/coalesce.d.ts.map +1 -0
  57. package/dist/task-graph/transforms/date-conversions.d.ts +12 -0
  58. package/dist/task-graph/transforms/date-conversions.d.ts.map +1 -0
  59. package/dist/task-graph/transforms/index-access.d.ts +11 -0
  60. package/dist/task-graph/transforms/index-access.d.ts.map +1 -0
  61. package/dist/task-graph/transforms/index.d.ts +18 -0
  62. package/dist/task-graph/transforms/index.d.ts.map +1 -0
  63. package/dist/task-graph/transforms/pick.d.ts +11 -0
  64. package/dist/task-graph/transforms/pick.d.ts.map +1 -0
  65. package/dist/task-graph/transforms/scalar-conversions.d.ts +10 -0
  66. package/dist/task-graph/transforms/scalar-conversions.d.ts.map +1 -0
  67. package/dist/task-graph/transforms/string-casts.d.ts +18 -0
  68. package/dist/task-graph/transforms/string-casts.d.ts.map +1 -0
  69. package/package.json +7 -7
package/dist/common.d.ts CHANGED
@@ -16,6 +16,10 @@ export * from "./task-graph/Conversions";
16
16
  export * from "./task-graph/GraphToWorkflowCode";
17
17
  export * from "./task-graph/IWorkflow";
18
18
  export * from "./task-graph/Workflow";
19
+ export * from "./task-graph/TransformRegistry";
20
+ export * from "./task-graph/TransformTypes";
21
+ export * from "./task-graph/transforms";
22
+ export * from "./task-graph/autoConnect";
19
23
  export * from "./task";
20
24
  export * from "./storage/TaskGraphRepository";
21
25
  export * from "./storage/TaskGraphTabularRepository";
@@ -1 +1 @@
1
- {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../src/common.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,uBAAuB,CAAC;AACtC,cAAc,6BAA6B,CAAC;AAE5C,cAAc,oCAAoC,CAAC;AACnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAE7C,cAAc,0BAA0B,CAAC;AACzC,cAAc,kCAAkC,CAAC;AACjD,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AAEtC,cAAc,QAAQ,CAAC;AAEvB,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sCAAsC,CAAC;AACrD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uCAAuC,CAAC"}
1
+ {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../src/common.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,uBAAuB,CAAC;AACtC,cAAc,6BAA6B,CAAC;AAE5C,cAAc,oCAAoC,CAAC;AACnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAE7C,cAAc,0BAA0B,CAAC;AACzC,cAAc,kCAAkC,CAAC;AACjD,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AAEtC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AAEzC,cAAc,QAAQ,CAAC;AAEvB,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sCAAsC,CAAC;AACrD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uCAAuC,CAAC"}