@lmzhen/dsh-evolution-replay 0.3.20 → 0.3.22
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.
- package/lib/types/index.d.ts +2 -2
- package/package.json +6 -9
package/lib/types/index.d.ts
CHANGED
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
* A/B review policy/prompt changes against real plan outcomes. Durability
|
|
9
9
|
* across restarts is the evolution-activity store's job; this leaderboard is
|
|
10
10
|
* deliberately in-memory.
|
|
11
|
-
* @module @
|
|
11
|
+
* @module @lmzhen/dsh-evolution-replay
|
|
12
12
|
*/
|
|
13
13
|
import type { Context } from '@deepseek-ai/cordis';
|
|
14
14
|
import z from '@deepseek-ai/schemastery';
|
|
15
|
-
import type { EvolutionPlanAppliedEvent } from '@
|
|
15
|
+
import type { EvolutionPlanAppliedEvent } from '@lmzhen/dsh-evolution-core';
|
|
16
16
|
export interface ReplayPlan {
|
|
17
17
|
policyId: string;
|
|
18
18
|
acceptedOps: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-replay",
|
|
3
3
|
"description": "Replay/A-B evaluation primitives for evolution plans (community build)",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.22",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -25,24 +25,21 @@
|
|
|
25
25
|
"./package.json": "./package.json"
|
|
26
26
|
},
|
|
27
27
|
"files": [
|
|
28
|
-
"lib
|
|
29
|
-
"lib/
|
|
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": {
|
|
35
33
|
"@deepseek-ai/schemastery": "^3.18.1",
|
|
36
|
-
"@lmzhen/dsh-evolution-core": "^0.3.
|
|
34
|
+
"@lmzhen/dsh-evolution-core": "^0.3.22"
|
|
37
35
|
},
|
|
38
36
|
"peerDependencies": {
|
|
39
37
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
40
|
-
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2"
|
|
41
|
-
"@deepseek-ai/dsh-session": "^0.1.1-rc.2"
|
|
38
|
+
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2"
|
|
42
39
|
},
|
|
43
40
|
"devDependencies": {
|
|
44
41
|
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
|
|
45
42
|
"@deepseek-ai/dsh-session": "^0.1.1-rc.2",
|
|
46
|
-
"@lmzhen/dsh-evolution-core": "^0.3.
|
|
43
|
+
"@lmzhen/dsh-evolution-core": "^0.3.22"
|
|
47
44
|
}
|
|
48
45
|
}
|