@workflow/world-testing 4.0.1-beta.36 → 4.0.1-beta.37
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/dist/.well-known/workflow/v1/flow.js +381 -189
- package/dist/.well-known/workflow/v1/flow.js.map +1 -1
- package/dist/.well-known/workflow/v1/manifest.debug.json +25 -25
- package/dist/.well-known/workflow/v1/step.js +334 -145
- package/dist/.well-known/workflow/v1/step.js.map +1 -1
- package/dist/src/idempotency.mjs +2 -2
- package/dist/src/idempotency.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -1,16 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"steps": {
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"stepId": "step//
|
|
3
|
+
"workflows/null-byte.ts": {
|
|
4
|
+
"nullByteStep": {
|
|
5
|
+
"stepId": "step//workflows/null-byte.ts//nullByteStep"
|
|
6
6
|
}
|
|
7
7
|
},
|
|
8
|
-
"workflows/
|
|
9
|
-
"
|
|
10
|
-
"stepId": "step//workflows/
|
|
11
|
-
},
|
|
12
|
-
"stepThatThrowsRetryableError": {
|
|
13
|
-
"stepId": "step//workflows/retriable-and-fatal.ts//stepThatThrowsRetryableError"
|
|
8
|
+
"workflows/addition.ts": {
|
|
9
|
+
"add": {
|
|
10
|
+
"stepId": "step//workflows/addition.ts//add"
|
|
14
11
|
}
|
|
15
12
|
},
|
|
16
13
|
"workflow/dist/internal/builtins.js": {
|
|
@@ -24,9 +21,12 @@
|
|
|
24
21
|
"stepId": "__builtin_response_text"
|
|
25
22
|
}
|
|
26
23
|
},
|
|
27
|
-
"workflows/
|
|
28
|
-
"
|
|
29
|
-
"stepId": "step//workflows/
|
|
24
|
+
"workflows/retriable-and-fatal.ts": {
|
|
25
|
+
"stepThatFails": {
|
|
26
|
+
"stepId": "step//workflows/retriable-and-fatal.ts//stepThatFails"
|
|
27
|
+
},
|
|
28
|
+
"stepThatThrowsRetryableError": {
|
|
29
|
+
"stepId": "step//workflows/retriable-and-fatal.ts//stepThatThrowsRetryableError"
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"workflows/noop.ts": {
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"stepId": "step//workflows/noop.ts//noop"
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"stepId": "step//
|
|
37
|
+
"workflow/dist/stdlib.js": {
|
|
38
|
+
"fetch": {
|
|
39
|
+
"stepId": "step//workflow/dist/stdlib.js//fetch"
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"workflows/hooks.ts": {
|
|
@@ -46,30 +46,30 @@
|
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
"workflows": {
|
|
49
|
-
"workflows/addition.ts": {
|
|
50
|
-
"addition": {
|
|
51
|
-
"workflowId": "workflow//workflows/addition.ts//addition"
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
49
|
"workflows/retriable-and-fatal.ts": {
|
|
55
50
|
"retryableAndFatalErrorWorkflow": {
|
|
56
51
|
"workflowId": "workflow//workflows/retriable-and-fatal.ts//retryableAndFatalErrorWorkflow"
|
|
57
52
|
}
|
|
58
53
|
},
|
|
54
|
+
"workflows/addition.ts": {
|
|
55
|
+
"addition": {
|
|
56
|
+
"workflowId": "workflow//workflows/addition.ts//addition"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
59
|
"workflows/null-byte.ts": {
|
|
60
60
|
"nullByteWorkflow": {
|
|
61
61
|
"workflowId": "workflow//workflows/null-byte.ts//nullByteWorkflow"
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
|
-
"workflows/hooks.ts": {
|
|
65
|
-
"collectWithHook": {
|
|
66
|
-
"workflowId": "workflow//workflows/hooks.ts//collectWithHook"
|
|
67
|
-
}
|
|
68
|
-
},
|
|
69
64
|
"workflows/noop.ts": {
|
|
70
65
|
"brokenWf": {
|
|
71
66
|
"workflowId": "workflow//workflows/noop.ts//brokenWf"
|
|
72
67
|
}
|
|
68
|
+
},
|
|
69
|
+
"workflows/hooks.ts": {
|
|
70
|
+
"collectWithHook": {
|
|
71
|
+
"workflowId": "workflow//workflows/hooks.ts//collectWithHook"
|
|
72
|
+
}
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
}
|