@deepseek-ai/dsh-client-store 0.1.6-alpha.1 → 0.1.7-alpha.1
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/contract.d.ts +2 -3
- package/package.json +3 -3
package/lib/types/contract.d.ts
CHANGED
|
@@ -65,9 +65,8 @@ export interface StoreInstance<T, A extends ActionsDecl<T>> {
|
|
|
65
65
|
*/
|
|
66
66
|
subscribe(fn: () => void): () => void;
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
69
|
-
*
|
|
70
|
-
* must not leave orphaned storage keys behind.
|
|
68
|
+
* Explicitly drop this instance's persisted value.
|
|
69
|
+
* Runtime scope teardown does not call this operation.
|
|
71
70
|
*/
|
|
72
71
|
clearPersisted(): void;
|
|
73
72
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-client-store",
|
|
3
3
|
"description": "React-free observable and snapshot-store contracts with the shared Zustand/Immer engine",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.7-alpha.1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@deepseek-ai/cordis": "^4.0.
|
|
26
|
+
"@deepseek-ai/cordis": "^4.0.3"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"zustand": "~4.4.7",
|
|
30
30
|
"immer": "^10.1.1",
|
|
31
|
-
"@deepseek-ai/cordis": "^4.0.
|
|
31
|
+
"@deepseek-ai/cordis": "^4.0.3"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"lib/index.js",
|