@lmzhen/dsh-evolution-state-domain 0.3.19 → 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.
@@ -5,11 +5,11 @@
5
5
  * DSH storage-domain data form: schema-validated, change-emitting, durable KV
6
6
  * with whatever backend the domain facility routes (`json`, `sqlite`, remote
7
7
  * RPC, …). The provider is one of several implementations of the same seam.
8
- * @module @deepseek-ai/dsh-evolution-state-domain
8
+ * @module @lmzhen/dsh-evolution-state-domain
9
9
  */
10
10
  import type { Context } from '@deepseek-ai/cordis';
11
11
  import { z } from 'zod';
12
- import { type CuratorStateRecord, type PendingRecord, type ReviewStateRecord } from '@deepseek-ai/dsh-evolution-state-storage';
12
+ import { type CuratorStateRecord, type PendingRecord, type ReviewStateRecord } from '@lmzhen/dsh-evolution-state-storage';
13
13
  export declare const name = "evolution-state-domain";
14
14
  export declare const inject: string[];
15
15
  export declare const reviewStateSchema: z.ZodObject<{
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-state-domain",
3
3
  "description": "storage-domain provider for evolution state (community build)",
4
- "version": "0.3.19",
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": {
@@ -38,11 +36,11 @@
38
36
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
39
37
  "@deepseek-ai/cordis": "^4.0.1",
40
38
  "@deepseek-ai/dsh-storage-domain": "^0.1.1-rc.2",
41
- "@lmzhen/dsh-evolution-state-storage": "^0.3.19"
39
+ "@lmzhen/dsh-evolution-state-storage": "^0.3.21"
42
40
  },
43
41
  "devDependencies": {
44
42
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
45
43
  "@deepseek-ai/dsh-storage-domain": "^0.1.1-rc.2",
46
- "@lmzhen/dsh-evolution-state-storage": "^0.3.19"
44
+ "@lmzhen/dsh-evolution-state-storage": "^0.3.21"
47
45
  }
48
46
  }