runwork 0.16.1 → 0.17.1
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/bundled-types/core-scheduler.d.ts +7 -0
- package/dist/index.js +1126 -259
- package/package.json +1 -1
|
@@ -58,6 +58,13 @@ export interface JobRunRecord {
|
|
|
58
58
|
completedAt?: number;
|
|
59
59
|
result?: JobResult;
|
|
60
60
|
error?: string;
|
|
61
|
+
/**
|
|
62
|
+
* Stack trace of the failure. Stored because the error MESSAGE alone made
|
|
63
|
+
* the 2026-07 "Could not serialize object of type ..." production failures
|
|
64
|
+
* undiagnosable: the message names the workerd serializer, not the framework
|
|
65
|
+
* call site that hit it (AGENTCLI-6).
|
|
66
|
+
*/
|
|
67
|
+
errorStack?: string;
|
|
61
68
|
}
|
|
62
69
|
export interface ScheduleState {
|
|
63
70
|
name: string;
|