@tanstack/query-persist-client-core 5.0.0-alpha.23 → 5.0.0-alpha.26

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.
@@ -1 +1,2 @@
1
1
  export {};
2
+ //# sourceMappingURL=persist.test.d.ts.map
@@ -5,3 +5,4 @@ export declare function createQueryClient(config?: QueryClientConfig): QueryClie
5
5
  export declare function sleep(timeout: number): Promise<void>;
6
6
  export declare const createMockPersister: () => Persister;
7
7
  export declare const createSpyablePersister: () => Persister;
8
+ //# sourceMappingURL=utils.d.ts.map
@@ -1,2 +1,3 @@
1
1
  export * from './persist';
2
2
  export * from './retryStrategies';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -56,3 +56,4 @@ export declare function persistQueryClientSubscribe(props: PersistedQueryClientS
56
56
  * Restores persisted data to QueryCache and persists further changes.
57
57
  */
58
58
  export declare function persistQueryClient(props: PersistQueryClientOptions): [() => void, Promise<void>];
59
+ //# sourceMappingURL=persist.d.ts.map
@@ -5,3 +5,4 @@ export declare type PersistRetryer = (props: {
5
5
  errorCount: number;
6
6
  }) => PersistedClient | undefined;
7
7
  export declare const removeOldestQuery: PersistRetryer;
8
+ //# sourceMappingURL=retryStrategies.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/query-persist-client-core",
3
- "version": "5.0.0-alpha.23",
3
+ "version": "5.0.0-alpha.26",
4
4
  "description": "Set of utilities for interacting with persisters, which can save your queryClient for later use",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -28,7 +28,7 @@
28
28
  "src"
29
29
  ],
30
30
  "dependencies": {
31
- "@tanstack/query-core": "5.0.0-alpha.23"
31
+ "@tanstack/query-core": "5.0.0-alpha.26"
32
32
  },
33
33
  "scripts": {
34
34
  "clean": "rimraf ./build",