@ricsam/r5d-worker 0.0.121 → 0.0.123

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.
@@ -16,6 +16,14 @@ export declare class WorkerRecoveryStore {
16
16
  requestId: string;
17
17
  }): "new" | "duplicate" | "unknown" | "conflict";
18
18
  isUnknown(requestId: string): boolean;
19
+ /**
20
+ * Re-admit an operation whose crash outcome is unknown so it can run again
21
+ * and record a result. Only a branch deletion qualifies: it is idempotent
22
+ * for its exact incarnation (durable tombstone plus incarnation preflight),
23
+ * so a rerun converges on the same outcome. Every other unknown operation
24
+ * keeps the no-replay invariant.
25
+ */
26
+ readmitUnknownBranchDeletion(requestId: string): boolean;
19
27
  unknown(requestId: string): void;
20
28
  unknownRun(runId: string): void;
21
29
  record(message: Message): Message;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-worker",
3
- "version": "0.0.121",
3
+ "version": "0.0.123",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/main.cjs",
6
6
  "module": "./dist/mjs/main.mjs",