@umituz/react-native-tanstack 1.2.2 → 1.2.3
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/package.json +2 -1
- package/src/types/global.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-tanstack",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "TanStack Query configuration and utilities for React Native apps - Pre-configured QueryClient with AsyncStorage persistence",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@react-native-async-storage/async-storage": ">=1.19.0",
|
|
33
|
+
"@tanstack/query-async-storage-persister": "^5.66.7",
|
|
33
34
|
"@tanstack/react-query": ">=5.0.0",
|
|
34
35
|
"@tanstack/react-query-persist-client": ">=5.0.0",
|
|
35
36
|
"react": ">=18.2.0",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
declare var __DEV__: boolean;
|