@workflow/world-testing 4.0.1-beta.2 → 4.0.1-beta.21

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 (62) hide show
  1. package/LICENSE.md +201 -21
  2. package/dist/.well-known/workflow/v1/flow.d.ts +3 -0
  3. package/dist/.well-known/workflow/v1/flow.d.ts.map +1 -0
  4. package/dist/.well-known/workflow/v1/flow.js +52694 -0
  5. package/dist/.well-known/workflow/v1/flow.js.map +1 -0
  6. package/dist/.well-known/workflow/v1/manifest.debug.json +75 -0
  7. package/dist/.well-known/workflow/v1/step.d.ts +3 -0
  8. package/dist/.well-known/workflow/v1/step.d.ts.map +1 -0
  9. package/dist/.well-known/workflow/v1/step.js +50773 -0
  10. package/dist/.well-known/workflow/v1/step.js.map +1 -0
  11. package/dist/src/addition.d.mts +2 -0
  12. package/dist/src/addition.d.mts.map +1 -0
  13. package/dist/src/addition.mjs +24 -0
  14. package/dist/src/addition.mjs.map +1 -0
  15. package/dist/src/errors.d.mts +2 -0
  16. package/dist/src/errors.d.mts.map +1 -0
  17. package/dist/src/errors.mjs +31 -0
  18. package/dist/src/errors.mjs.map +1 -0
  19. package/dist/src/hooks.d.mts +2 -0
  20. package/dist/src/hooks.d.mts.map +1 -0
  21. package/dist/src/hooks.mjs +74 -0
  22. package/dist/src/hooks.mjs.map +1 -0
  23. package/dist/src/idempotency.d.mts +2 -0
  24. package/dist/src/idempotency.d.mts.map +1 -0
  25. package/dist/src/idempotency.mjs +25 -0
  26. package/dist/src/idempotency.mjs.map +1 -0
  27. package/dist/src/index.d.mts +2 -0
  28. package/dist/src/index.d.mts.map +1 -0
  29. package/dist/src/index.mjs +13 -0
  30. package/dist/src/index.mjs.map +1 -0
  31. package/dist/src/jsonlines.d.mts +2 -0
  32. package/dist/src/jsonlines.d.mts.map +1 -0
  33. package/dist/src/jsonlines.mjs +32 -0
  34. package/dist/src/jsonlines.mjs.map +1 -0
  35. package/dist/src/null-byte.d.mts +2 -0
  36. package/dist/src/null-byte.d.mts.map +1 -0
  37. package/dist/src/null-byte.mjs +20 -0
  38. package/dist/src/null-byte.mjs.map +1 -0
  39. package/dist/src/server.d.mts +2 -0
  40. package/dist/src/server.d.mts.map +1 -0
  41. package/dist/src/server.mjs +87 -0
  42. package/dist/src/server.mjs.map +1 -0
  43. package/dist/src/util.d.mts +86 -0
  44. package/dist/src/util.d.mts.map +1 -0
  45. package/dist/src/util.mjs +100 -0
  46. package/dist/src/util.mjs.map +1 -0
  47. package/dist/workflows/hooks.d.ts +17 -0
  48. package/dist/workflows/hooks.d.ts.map +1 -0
  49. package/dist/workflows/hooks.js +70 -0
  50. package/dist/workflows/hooks.js.map +1 -0
  51. package/package.json +15 -11
  52. package/CHANGELOG.md +0 -35
  53. package/src/addition.mts +0 -27
  54. package/src/idempotency.mts +0 -30
  55. package/src/index.mts +0 -7
  56. package/src/server.mts +0 -104
  57. package/src/util.mts +0 -99
  58. package/test/embedded.test.ts +0 -3
  59. package/tsconfig.json +0 -11
  60. package/turbo.json +0 -13
  61. package/workflows/addition.ts +0 -16
  62. package/workflows/noop.ts +0 -37
@@ -0,0 +1,75 @@
1
+ {
2
+ "steps": {
3
+ "workflow/dist/internal/builtins.js": {
4
+ "__builtin_response_array_buffer": {
5
+ "stepId": "__builtin_response_array_buffer"
6
+ },
7
+ "__builtin_response_json": {
8
+ "stepId": "__builtin_response_json"
9
+ },
10
+ "__builtin_response_text": {
11
+ "stepId": "__builtin_response_text"
12
+ }
13
+ },
14
+ "workflows/null-byte.ts": {
15
+ "nullByteStep": {
16
+ "stepId": "step//workflows/null-byte.ts//nullByteStep"
17
+ }
18
+ },
19
+ "workflows/addition.ts": {
20
+ "add": {
21
+ "stepId": "step//workflows/addition.ts//add"
22
+ }
23
+ },
24
+ "workflow/dist/stdlib.js": {
25
+ "fetch": {
26
+ "stepId": "step//workflow/dist/stdlib.js//fetch"
27
+ }
28
+ },
29
+ "workflows/noop.ts": {
30
+ "noop": {
31
+ "stepId": "step//workflows/noop.ts//noop"
32
+ }
33
+ },
34
+ "workflows/retriable-and-fatal.ts": {
35
+ "stepThatFails": {
36
+ "stepId": "step//workflows/retriable-and-fatal.ts//stepThatFails"
37
+ },
38
+ "stepThatThrowsRetryableError": {
39
+ "stepId": "step//workflows/retriable-and-fatal.ts//stepThatThrowsRetryableError"
40
+ }
41
+ },
42
+ "workflows/hooks.ts": {
43
+ "writeEvent": {
44
+ "stepId": "step//workflows/hooks.ts//writeEvent"
45
+ }
46
+ }
47
+ },
48
+ "workflows": {
49
+ "workflows/addition.ts": {
50
+ "addition": {
51
+ "workflowId": "workflow//workflows/addition.ts//addition"
52
+ }
53
+ },
54
+ "workflows/hooks.ts": {
55
+ "collectWithHook": {
56
+ "workflowId": "workflow//workflows/hooks.ts//collectWithHook"
57
+ }
58
+ },
59
+ "workflows/noop.ts": {
60
+ "brokenWf": {
61
+ "workflowId": "workflow//workflows/noop.ts//brokenWf"
62
+ }
63
+ },
64
+ "workflows/retriable-and-fatal.ts": {
65
+ "retryableAndFatalErrorWorkflow": {
66
+ "workflowId": "workflow//workflows/retriable-and-fatal.ts//retryableAndFatalErrorWorkflow"
67
+ }
68
+ },
69
+ "workflows/null-byte.ts": {
70
+ "nullByteWorkflow": {
71
+ "workflowId": "workflow//workflows/null-byte.ts//nullByteWorkflow"
72
+ }
73
+ }
74
+ }
75
+ }
@@ -0,0 +1,3 @@
1
+ declare const _exports: any;
2
+ export = _exports;
3
+ //# sourceMappingURL=step.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"step.d.ts","sourceRoot":"","sources":["../../../../.well-known/workflow/v1/step.js"],"names":[],"mappings":""}