@lmzhen/dsh-evolution-approval 0.3.20 → 0.3.21

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.
@@ -7,11 +7,11 @@
7
7
  * registry replays the exact mutation without passing through the gate a
8
8
  * second time. Resolved records are KEPT as audit history.
9
9
  *
10
- * @module @deepseek-ai/dsh-evolution-approval
10
+ * @module @lmzhen/dsh-evolution-approval
11
11
  */
12
12
  import { Context, Service } from '@deepseek-ai/cordis';
13
13
  import type Schema from '@deepseek-ai/schemastery';
14
- import type { PendingKind, PendingRecord, PendingStatus } from '@deepseek-ai/dsh-evolution-state-storage';
14
+ import type { PendingKind, PendingRecord, PendingStatus } from '@lmzhen/dsh-evolution-state-storage';
15
15
  export type { PendingKind, PendingRecord, PendingStatus };
16
16
  export type WriteRunner = (args: unknown) => Promise<{
17
17
  ok: boolean;
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.20",
4
+ "version": "0.3.21",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -25,10 +25,8 @@
25
25
  "./package.json": "./package.json"
26
26
  },
27
27
  "files": [
28
- "lib/index.js",
29
- "lib/invariant.js",
30
- "lib/types/**/*.d.ts",
31
- "lib/types/invariant.d.ts"
28
+ "lib/*.js",
29
+ "lib/types/**/*.d.ts"
32
30
  ],
33
31
  "license": "MIT",
34
32
  "dependencies": {
@@ -37,15 +35,15 @@
37
35
  "peerDependencies": {
38
36
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
39
37
  "@deepseek-ai/cordis": "^4.0.1",
40
- "@lmzhen/dsh-evolution-state-storage": "^0.3.20",
41
- "@lmzhen/dsh-evolution-state": "^0.3.20"
38
+ "@lmzhen/dsh-evolution-state-storage": "^0.3.21",
39
+ "@lmzhen/dsh-evolution-state": "^0.3.21"
42
40
  },
43
41
  "devDependencies": {
44
42
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
45
- "@lmzhen/dsh-evolution-state-storage": "^0.3.20",
46
- "@lmzhen/dsh-evolution-state": "^0.3.20",
47
- "@lmzhen/dsh-evolution-io": "^0.3.20",
48
- "@lmzhen/dsh-evolution-io-node": "^0.3.20",
49
- "@lmzhen/dsh-evolution-state-json": "^0.3.20"
43
+ "@lmzhen/dsh-evolution-state-storage": "^0.3.21",
44
+ "@lmzhen/dsh-evolution-state": "^0.3.21",
45
+ "@lmzhen/dsh-evolution-io": "^0.3.21",
46
+ "@lmzhen/dsh-evolution-io-node": "^0.3.21",
47
+ "@lmzhen/dsh-evolution-state-json": "^0.3.21"
50
48
  }
51
49
  }