@lmzhen/dsh-evolution-state 0.3.15 → 0.3.17
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/index.js +1 -2
- package/lib/types/index.d.ts +0 -1
- package/package.json +8 -8
package/lib/index.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Service } from "@deepseek-ai/cordis";
|
|
2
2
|
import z from "@deepseek-ai/schemastery";
|
|
3
|
-
import { EVOLUTION_DOMAIN, curatorStateSchema, pendingSchema, reviewStateSchema } from "@lmzhen/dsh-evolution-state-domain";
|
|
4
3
|
//#region lib/types/index.js
|
|
5
4
|
/**
|
|
6
5
|
* Durable evolution state consumer.
|
|
@@ -50,4 +49,4 @@ var EvolutionState = class extends Service {
|
|
|
50
49
|
}
|
|
51
50
|
};
|
|
52
51
|
//#endregion
|
|
53
|
-
export {
|
|
52
|
+
export { EvolutionState, EvolutionState as default };
|
package/lib/types/index.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ import { Context, Service } from '@deepseek-ai/cordis';
|
|
|
10
10
|
import type Schema from '@deepseek-ai/schemastery';
|
|
11
11
|
import type { CuratorStateRecord, PendingRecord, PendingStatus, ReviewStateRecord } from '@deepseek-ai/dsh-evolution-state-storage';
|
|
12
12
|
export type { CuratorStateRecord, EvolutionStateStorage, PendingRecord, PendingStatus, ReviewStateRecord, } from '@deepseek-ai/dsh-evolution-state-storage';
|
|
13
|
-
export { curatorStateSchema, EVOLUTION_DOMAIN, pendingSchema, reviewStateSchema, } from '@deepseek-ai/dsh-evolution-state-domain';
|
|
14
13
|
declare module '@deepseek-ai/cordis' {
|
|
15
14
|
interface Context {
|
|
16
15
|
evolutionState: EvolutionState;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-state",
|
|
3
3
|
"description": "Durable evolution state consumer over pluggable storage providers (community build)",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.17",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
|
|
39
39
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
40
40
|
"@deepseek-ai/dsh-storage-domain": "^0.1.1-rc.2",
|
|
41
|
-
"@lmzhen/dsh-evolution-state-storage": "^0.3.
|
|
42
|
-
"@lmzhen/dsh-evolution-state-domain": "^0.3.
|
|
41
|
+
"@lmzhen/dsh-evolution-state-storage": "^0.3.17",
|
|
42
|
+
"@lmzhen/dsh-evolution-state-domain": "^0.3.17"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
|
|
46
46
|
"@deepseek-ai/dsh-storage-domain": "^0.1.1-rc.2",
|
|
47
|
-
"@lmzhen/dsh-evolution-state-storage": "^0.3.
|
|
48
|
-
"@lmzhen/dsh-evolution-state-domain": "^0.3.
|
|
49
|
-
"@lmzhen/dsh-evolution-io": "^0.3.
|
|
50
|
-
"@lmzhen/dsh-evolution-io-node": "^0.3.
|
|
51
|
-
"@lmzhen/dsh-evolution-state-json": "^0.3.
|
|
47
|
+
"@lmzhen/dsh-evolution-state-storage": "^0.3.17",
|
|
48
|
+
"@lmzhen/dsh-evolution-state-domain": "^0.3.17",
|
|
49
|
+
"@lmzhen/dsh-evolution-io": "^0.3.17",
|
|
50
|
+
"@lmzhen/dsh-evolution-io-node": "^0.3.17",
|
|
51
|
+
"@lmzhen/dsh-evolution-state-json": "^0.3.17"
|
|
52
52
|
}
|
|
53
53
|
}
|