@tanstack/query-core 4.29.14 → 4.29.15

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/query-core",
3
- "version": "4.29.14",
3
+ "version": "4.29.15",
4
4
  "description": "The framework agnostic core that powers TanStack Query",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
package/src/index.ts CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  export { CancelledError } from './retryer'
4
4
  export { QueryCache } from './queryCache'
5
+ export type { QueryCacheNotifyEvent } from './queryCache'
5
6
  export { QueryClient } from './queryClient'
6
7
  export { QueryObserver } from './queryObserver'
7
8
  export { QueriesObserver } from './queriesObserver'
package/src/queryCache.ts CHANGED
@@ -63,7 +63,7 @@ interface NotifyEventQueryObserverOptionsUpdated extends NotifyEvent {
63
63
  observer: QueryObserver<any, any, any, any, any>
64
64
  }
65
65
 
66
- type QueryCacheNotifyEvent =
66
+ export type QueryCacheNotifyEvent =
67
67
  | NotifyEventQueryAdded
68
68
  | NotifyEventQueryRemoved
69
69
  | NotifyEventQueryUpdated