@tanstack/start-client-core 1.141.2 → 1.141.4

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 { hydrateStart } from './hydrateStart.js';
2
+ export type * from '@tanstack/router-core/ssr/client';
@@ -1,4 +1,4 @@
1
- export type { DehydratedRouter, JsonResponse, } from '@tanstack/router-core/ssr/client';
1
+ export type { JsonResponse } from '@tanstack/router-core/ssr/client';
2
2
  export { hydrate, json, mergeHeaders } from '@tanstack/router-core/ssr/client';
3
3
  export { createIsomorphicFn, type IsomorphicFn, type ServerOnlyFn, type ClientOnlyFn, type IsomorphicFnBase, } from './createIsomorphicFn.js';
4
4
  export { createServerOnlyFn, createClientOnlyFn } from './envOnly.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/start-client-core",
3
- "version": "1.141.2",
3
+ "version": "1.141.4",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -66,8 +66,8 @@
66
66
  "seroval": "^1.4.0",
67
67
  "tiny-invariant": "^1.3.3",
68
68
  "tiny-warning": "^1.0.3",
69
- "@tanstack/router-core": "1.141.2",
70
- "@tanstack/start-storage-context": "1.141.2"
69
+ "@tanstack/start-storage-context": "1.141.4",
70
+ "@tanstack/router-core": "1.141.4"
71
71
  },
72
72
  "scripts": {
73
73
  "clean": "rimraf ./dist && rimraf ./coverage",
@@ -1 +1,2 @@
1
1
  export { hydrateStart } from './hydrateStart'
2
+ export type * from '@tanstack/router-core/ssr/client'
package/src/index.tsx CHANGED
@@ -1,7 +1,4 @@
1
- export type {
2
- DehydratedRouter,
3
- JsonResponse,
4
- } from '@tanstack/router-core/ssr/client'
1
+ export type { JsonResponse } from '@tanstack/router-core/ssr/client'
5
2
 
6
3
  export { hydrate, json, mergeHeaders } from '@tanstack/router-core/ssr/client'
7
4