@lmzhen/dsh-evolution-state-json 0.3.24 → 0.3.25

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 (2) hide show
  1. package/lib/index.js +1 -3
  2. package/package.json +6 -6
package/lib/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import z from "@deepseek-ai/schemastery";
2
2
  import { evolutionHome, makeSerialQueue, transactIo } from "@lmzhen/dsh-evolution-core";
3
- import { CLAIM_EXPIRY_MS, canClaimPending, canResolvePending, releasedStatus } from "@lmzhen/dsh-evolution-state-storage";
3
+ import { canClaimPending, canResolvePending, releasedStatus } from "@lmzhen/dsh-evolution-state-storage";
4
4
  import { join } from "node:path";
5
5
  //#region lib/types/index.js
6
6
  /**
@@ -193,8 +193,6 @@ function apply(ctx, rawConfig) {
193
193
  const record = map[id] ?? null;
194
194
  if (record === null || !canClaimPending(record.status)) return map;
195
195
  const now = Date.now();
196
- const claimedAt = typeof record.claimedAt === "string" ? Date.parse(record.claimedAt) : 0;
197
- if (record.claimedBy !== void 0 && Number.isFinite(claimedAt) && now - claimedAt < CLAIM_EXPIRY_MS) return map;
198
196
  slot.claimed = {
199
197
  ...record,
200
198
  status: "executing",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-state-json",
3
3
  "description": "JSON-file evolution state provider over the IO seam (community build)",
4
- "version": "0.3.24",
4
+ "version": "0.3.25",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -31,17 +31,17 @@
31
31
  "license": "MIT",
32
32
  "dependencies": {
33
33
  "@deepseek-ai/schemastery": "^3.18.1",
34
- "@lmzhen/dsh-evolution-core": "^0.3.24"
34
+ "@lmzhen/dsh-evolution-core": "^0.3.25"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
38
38
  "@deepseek-ai/cordis": "^4.0.1",
39
- "@lmzhen/dsh-evolution-io": "^0.3.24",
40
- "@lmzhen/dsh-evolution-state-storage": "^0.3.24"
39
+ "@lmzhen/dsh-evolution-io": "^0.3.25",
40
+ "@lmzhen/dsh-evolution-state-storage": "^0.3.25"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
44
- "@lmzhen/dsh-evolution-io": "^0.3.24",
45
- "@lmzhen/dsh-evolution-state-storage": "^0.3.24"
44
+ "@lmzhen/dsh-evolution-io": "^0.3.25",
45
+ "@lmzhen/dsh-evolution-state-storage": "^0.3.25"
46
46
  }
47
47
  }