@elevasis/sdk 1.43.0 → 1.44.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.
- package/dist/cli.cjs +3733 -3255
- package/dist/index.d.ts +744 -582
- package/dist/index.js +3833 -3355
- package/dist/node/index.d.ts +626 -483
- package/dist/test-utils/index.d.ts +636 -490
- package/dist/test-utils/index.js +1123 -318
- package/dist/types/worker/index.d.ts +4 -1
- package/dist/worker/index.js +770 -298
- package/package.json +3 -3
- package/reference/sdk/resources/index.mdx +46 -11
- package/reference/sdk/resources/types.mdx +14 -14
|
@@ -15,7 +15,10 @@
|
|
|
15
15
|
* parentExecutionId?, executionDepth }
|
|
16
16
|
* Worker -> Parent: { type: 'result', status, output?, memorySnapshot?, error?, logs, metrics: { durationMs } }
|
|
17
17
|
*
|
|
18
|
-
* Parent -> Worker: { type: 'abort' }
|
|
18
|
+
* Parent -> Worker: { type: 'abort', reason? } (graceful abort before terminate;
|
|
19
|
+
* reason carries AbortSignal.reason
|
|
20
|
+
* across the boundary -- see N6, agent-
|
|
21
|
+
* framework-round-3.mdx)
|
|
19
22
|
*
|
|
20
23
|
* Worker -> Parent: { type: 'log', entry: { level, message, timestamp, executionId, context? } }
|
|
21
24
|
*
|