@deepseek-ai/dsh-client-store 0.1.6-alpha.1 → 0.1.6-alpha.2

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.
@@ -65,9 +65,8 @@ export interface StoreInstance<T, A extends ActionsDecl<T>> {
65
65
  */
66
66
  subscribe(fn: () => void): () => void;
67
67
  /**
68
- * Drop this instance's persisted value (no-op for non-persist specs). The
69
- * framework calls it when the owning scope dies for good — a pruned session
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.6-alpha.1",
4
+ "version": "0.1.6-alpha.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },