@umituz/react-native-storage 2.6.4 → 2.6.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-storage",
3
- "version": "2.6.4",
3
+ "version": "2.6.5",
4
4
  "description": "Unified storage solution with AsyncStorage persistence, Zustand state management, and in-memory caching for React Native",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
package/src/index.ts CHANGED
@@ -102,6 +102,13 @@ export type {
102
102
 
103
103
  export { createStore } from './domain/factories/StoreFactory';
104
104
 
105
+ // =============================================================================
106
+ // ZUSTAND - Type Re-exports for Compatibility
107
+ // =============================================================================
108
+
109
+ export type { StoreApi, UseBoundStore } from 'zustand';
110
+ export type { StateCreator, StoreMutatorIdentifier } from 'zustand/vanilla';
111
+
105
112
  // =============================================================================
106
113
  // APPLICATION LAYER - Ports
107
114
  // =============================================================================