@tanstack/query-core 5.0.0-alpha.6 → 5.0.0-alpha.7

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.
@@ -15,5 +15,5 @@ export { isCancelledError } from './retryer';
15
15
  export { dehydrate, hydrate, defaultShouldDehydrateMutation, defaultShouldDehydrateQuery, } from './hydration';
16
16
  export * from './types';
17
17
  export type { Query, QueryState } from './query';
18
- export type { Mutation } from './mutation';
18
+ export type { Mutation, MutationState } from './mutation';
19
19
  export type { DehydrateOptions, DehydratedState, HydrateOptions, ShouldDehydrateMutationFunction, ShouldDehydrateQueryFunction, } from './hydration';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/query-core",
3
- "version": "5.0.0-alpha.6",
3
+ "version": "5.0.0-alpha.7",
4
4
  "description": "The framework agnostic core that powers TanStack Query",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
package/src/index.ts CHANGED
@@ -30,7 +30,7 @@ export {
30
30
  // Types
31
31
  export * from './types'
32
32
  export type { Query, QueryState } from './query'
33
- export type { Mutation } from './mutation'
33
+ export type { Mutation, MutationState } from './mutation'
34
34
  export type {
35
35
  DehydrateOptions,
36
36
  DehydratedState,