@tanstack/start-client-core 1.132.33 → 1.132.37

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.
@@ -19,7 +19,6 @@ type ExtractHandlersContext<THandlers> = THandlers extends (...args: any) => Cus
19
19
  export interface RouteServerOptions<TRegister, TParentRoute extends AnyRoute, TPath extends string, TParams, TLoaderDeps, TLoaderFn, TRouterContext, TRouteContextFn, TBeforeLoadFn, TServerMiddlewares, THandlers> {
20
20
  middleware?: Constrain<TServerMiddlewares, ReadonlyArray<AnyRequestMiddleware>>;
21
21
  handlers?: Constrain<THandlers, Partial<Record<RouteMethod, RouteMethodHandlerFn<TRegister, TParentRoute, TPath, TServerMiddlewares, any, any>>> | ((opts: HandlersFnOpts<TRegister, TParentRoute, TPath, TServerMiddlewares>) => CustomHandlerFunctionsRecord<TRegister, TParentRoute, TPath, TServerMiddlewares, any, any>)>;
22
- test?: (test: Expand<ExtractHandlersContext<THandlers>>) => void;
23
22
  }
24
23
  declare const createHandlersSymbol: unique symbol;
25
24
  type CustomHandlerFunctionsRecord<TRegister, TParentRoute extends AnyRoute, TPath extends string, TServerMiddlewares, TMethodMiddlewares, TServerContext> = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/start-client-core",
3
- "version": "1.132.33",
3
+ "version": "1.132.37",
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/router-core": "1.132.33",
70
- "@tanstack/start-storage-context": "1.132.33"
69
+ "@tanstack/start-storage-context": "1.132.37",
70
+ "@tanstack/router-core": "1.132.37"
71
71
  },
72
72
  "scripts": {}
73
73
  }
@@ -172,7 +172,6 @@ export interface RouteServerOptions<
172
172
  any
173
173
  >)
174
174
  >
175
- test?: (test: Expand<ExtractHandlersContext<THandlers>>) => void
176
175
  }
177
176
 
178
177
  declare const createHandlersSymbol: unique symbol