@tanstack/start-client-core 1.132.6 → 1.132.10

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.
@@ -10,7 +10,7 @@ export { TSS_FORMDATA_CONTEXT, TSS_SERVER_FUNCTION, X_TSS_SERIALIZED, } from './
10
10
  export type * from './serverRoute.js';
11
11
  export type * from './startEntry.js';
12
12
  export { createStart } from './createStart.js';
13
- export type { AnyStartInstance, AnyStartInstanceOptions } from './createStart.js';
13
+ export type { AnyStartInstance, AnyStartInstanceOptions, StartInstance, } from './createStart.js';
14
14
  export type { Register } from '@tanstack/router-core';
15
15
  export { getRouterInstance } from './getRouterInstance.js';
16
16
  export { getDefaultSerovalPlugins } from './getDefaultSerovalPlugins.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/start-client-core",
3
- "version": "1.132.6",
3
+ "version": "1.132.10",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -60,8 +60,8 @@
60
60
  "seroval": "^1.3.2",
61
61
  "tiny-invariant": "^1.3.3",
62
62
  "tiny-warning": "^1.0.3",
63
- "@tanstack/router-core": "1.132.6",
64
- "@tanstack/start-storage-context": "1.132.6"
63
+ "@tanstack/router-core": "1.132.7",
64
+ "@tanstack/start-storage-context": "1.132.7"
65
65
  },
66
66
  "scripts": {}
67
67
  }
package/src/index.tsx CHANGED
@@ -79,7 +79,11 @@ export type * from './serverRoute'
79
79
  export type * from './startEntry'
80
80
 
81
81
  export { createStart } from './createStart'
82
- export type { AnyStartInstance, AnyStartInstanceOptions } from './createStart'
82
+ export type {
83
+ AnyStartInstance,
84
+ AnyStartInstanceOptions,
85
+ StartInstance,
86
+ } from './createStart'
83
87
  export type { Register } from '@tanstack/router-core'
84
88
 
85
89
  export { getRouterInstance } from './getRouterInstance'