@lmzhen/dsh-evolution-approval 0.3.27 → 0.3.29

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 +2 -2
  2. package/package.json +8 -8
package/lib/index.js CHANGED
@@ -136,7 +136,7 @@ var EvolutionApproval = class extends Service {
136
136
  };
137
137
  return {
138
138
  ok: false,
139
- message: `Pending write "${id}" is already being resolved by another writer.`
139
+ message: `Pending write "${id}" is not in the pending window (rotated or resolved).`
140
140
  };
141
141
  }
142
142
  const resolution = await this.state().tryResolvePending(id, "rejected");
@@ -185,7 +185,7 @@ var EvolutionApproval = class extends Service {
185
185
  };
186
186
  return {
187
187
  ok: false,
188
- message: `Pending write "${id}" is already being resolved by another writer.`
188
+ message: `Pending write "${id}" is not in the pending window (rotated or resolved).`
189
189
  };
190
190
  }
191
191
  const runner = this.runners.get(record.kind);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-approval",
3
3
  "description": "Stage/pending approval service for Hermes-style self-evolution writes (community build)",
4
- "version": "0.3.27",
4
+ "version": "0.3.29",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -35,15 +35,15 @@
35
35
  "peerDependencies": {
36
36
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
37
37
  "@deepseek-ai/cordis": "^4.0.1",
38
- "@lmzhen/dsh-evolution-state-storage": "^0.3.27",
39
- "@lmzhen/dsh-evolution-state": "^0.3.27"
38
+ "@lmzhen/dsh-evolution-state-storage": "^0.3.29",
39
+ "@lmzhen/dsh-evolution-state": "^0.3.29"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
43
- "@lmzhen/dsh-evolution-state-storage": "^0.3.27",
44
- "@lmzhen/dsh-evolution-state": "^0.3.27",
45
- "@lmzhen/dsh-evolution-io": "^0.3.27",
46
- "@lmzhen/dsh-evolution-io-node": "^0.3.27",
47
- "@lmzhen/dsh-evolution-state-json": "^0.3.27"
43
+ "@lmzhen/dsh-evolution-state-storage": "^0.3.29",
44
+ "@lmzhen/dsh-evolution-state": "^0.3.29",
45
+ "@lmzhen/dsh-evolution-io": "^0.3.29",
46
+ "@lmzhen/dsh-evolution-io-node": "^0.3.29",
47
+ "@lmzhen/dsh-evolution-state-json": "^0.3.29"
48
48
  }
49
49
  }