@tanstack/start-client-core 1.132.15 → 1.132.16
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/dist/esm/index.d.ts +1 -1
- package/package.json +3 -3
- package/src/index.tsx +13 -0
package/dist/esm/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ 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';
|
|
5
5
|
export { createServerFn } from './createServerFn.js';
|
|
6
|
-
export { createMiddleware, type IntersectAllValidatorInputs, type IntersectAllValidatorOutputs, type FunctionMiddlewareServerFn, type AnyFunctionMiddleware, type FunctionMiddlewareOptions, type FunctionMiddlewareWithTypes, type FunctionMiddlewareValidator, type FunctionMiddlewareServer, type FunctionMiddlewareAfterClient, type FunctionMiddlewareAfterServer, type FunctionMiddleware, type FunctionMiddlewareClientFnOptions, type FunctionMiddlewareClientFnResult, type FunctionMiddlewareClientNextFn, type FunctionClientResultWithContext, type AssignAllClientContextBeforeNext, type AssignAllMiddleware, type FunctionMiddlewareAfterValidator, type FunctionMiddlewareClientFn, type FunctionMiddlewareServerFnResult, type FunctionMiddlewareClient, type FunctionMiddlewareServerFnOptions, type FunctionMiddlewareServerNextFn, type FunctionServerResultWithContext, type AnyRequestMiddleware, } from './createMiddleware.js';
|
|
6
|
+
export { createMiddleware, type IntersectAllValidatorInputs, type IntersectAllValidatorOutputs, type FunctionMiddlewareServerFn, type AnyFunctionMiddleware, type FunctionMiddlewareOptions, type FunctionMiddlewareWithTypes, type FunctionMiddlewareValidator, type FunctionMiddlewareServer, type FunctionMiddlewareAfterClient, type FunctionMiddlewareAfterServer, type FunctionMiddleware, type FunctionMiddlewareAfterMiddleware, type FunctionMiddlewareClientFnOptions, type FunctionMiddlewareClientFnResult, type FunctionMiddlewareClientNextFn, type FunctionClientResultWithContext, type AssignAllClientContextBeforeNext, type AssignAllMiddleware, type FunctionMiddlewareAfterValidator, type FunctionMiddlewareClientFn, type FunctionMiddlewareServerFnResult, type FunctionMiddlewareClient, type FunctionMiddlewareServerFnOptions, type FunctionMiddlewareServerNextFn, type FunctionServerResultWithContext, type AnyRequestMiddleware, type RequestMiddlewareOptions, type RequestMiddlewareWithTypes, type RequestMiddlewareServer, type RequestMiddlewareAfterServer, type RequestMiddleware, type RequestMiddlewareAfterMiddleware, type RequestServerFn, type RequestMiddlewareServerFnResult, type RequestServerOptions, type RequestServerNextFn, type RequestServerNextFnOptions, type RequestServerResult, } from './createMiddleware.js';
|
|
7
7
|
export type { CompiledFetcherFnOptions, CompiledFetcherFn, Fetcher, RscStream, FetcherData, FetcherBaseOptions, ServerFn, ServerFnCtx, MiddlewareFn, ServerFnMiddlewareOptions, ServerFnMiddlewareResult, ServerFnBuilder, ServerFnBaseOptions, NextFn, Method, OptionalFetcher, RequiredFetcher, } from './createServerFn.js';
|
|
8
8
|
export { applyMiddleware, execValidator, flattenMiddlewares, executeMiddleware, } from './createServerFn.js';
|
|
9
9
|
export { TSS_FORMDATA_CONTEXT, TSS_SERVER_FUNCTION, X_TSS_SERIALIZED, } from './constants.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/start-client-core",
|
|
3
|
-
"version": "1.132.
|
|
3
|
+
"version": "1.132.16",
|
|
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.3.2",
|
|
67
67
|
"tiny-invariant": "^1.3.3",
|
|
68
68
|
"tiny-warning": "^1.0.3",
|
|
69
|
-
"@tanstack/
|
|
70
|
-
"@tanstack/
|
|
69
|
+
"@tanstack/start-storage-context": "1.132.7",
|
|
70
|
+
"@tanstack/router-core": "1.132.7"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {}
|
|
73
73
|
}
|
package/src/index.tsx
CHANGED
|
@@ -27,6 +27,7 @@ export {
|
|
|
27
27
|
type FunctionMiddlewareAfterClient,
|
|
28
28
|
type FunctionMiddlewareAfterServer,
|
|
29
29
|
type FunctionMiddleware,
|
|
30
|
+
type FunctionMiddlewareAfterMiddleware,
|
|
30
31
|
type FunctionMiddlewareClientFnOptions,
|
|
31
32
|
type FunctionMiddlewareClientFnResult,
|
|
32
33
|
type FunctionMiddlewareClientNextFn,
|
|
@@ -41,6 +42,18 @@ export {
|
|
|
41
42
|
type FunctionMiddlewareServerNextFn,
|
|
42
43
|
type FunctionServerResultWithContext,
|
|
43
44
|
type AnyRequestMiddleware,
|
|
45
|
+
type RequestMiddlewareOptions,
|
|
46
|
+
type RequestMiddlewareWithTypes,
|
|
47
|
+
type RequestMiddlewareServer,
|
|
48
|
+
type RequestMiddlewareAfterServer,
|
|
49
|
+
type RequestMiddleware,
|
|
50
|
+
type RequestMiddlewareAfterMiddleware,
|
|
51
|
+
type RequestServerFn,
|
|
52
|
+
type RequestMiddlewareServerFnResult,
|
|
53
|
+
type RequestServerOptions,
|
|
54
|
+
type RequestServerNextFn,
|
|
55
|
+
type RequestServerNextFnOptions,
|
|
56
|
+
type RequestServerResult,
|
|
44
57
|
} from './createMiddleware'
|
|
45
58
|
export type {
|
|
46
59
|
CompiledFetcherFnOptions,
|