@tanstack/solid-start-client 1.132.0-alpha.4 → 1.132.0-alpha.8

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,4 +1,4 @@
1
- export { mergeHeaders, createIsomorphicFn, createServerFn, createMiddleware, registerGlobalMiddleware, globalMiddleware, serverOnly, clientOnly, json, createClientRpc, } from '@tanstack/start-client-core';
1
+ export { mergeHeaders, createIsomorphicFn, createServerFn, createMiddleware, registerGlobalMiddleware, globalMiddleware, createServerOnlyFn, createClientOnlyFn, json, createClientRpc, } from '@tanstack/start-client-core';
2
2
  export { type DehydratedRouter, type IsomorphicFn, type ServerOnlyFn, type ClientOnlyFn, type IsomorphicFnBase, type CompiledFetcherFnOptions, type CompiledFetcherFn, type Fetcher, type OptionalFetcher, type RequiredFetcher, type RscStream, type FetcherData, type FetcherBaseOptions, type ServerFn, type ServerFnCtx, type ServerFnResponseType, type JsonResponse, 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 AssignAllServerContext, type FunctionMiddlewareAfterValidator, type FunctionMiddlewareClientFn, type FunctionMiddlewareServerFnResult, type FunctionMiddlewareClient, type FunctionMiddlewareServerFnOptions, type FunctionMiddlewareServerNextFn, type FunctionServerResultWithContext, } from '@tanstack/start-client-core';
3
3
  export { StartClient } from './StartClient.js';
4
4
  export { useServerFn } from './useServerFn.js';
package/dist/esm/index.js CHANGED
@@ -1,18 +1,18 @@
1
- import { clientOnly, createClientRpc, createIsomorphicFn, createMiddleware, createServerFn, globalMiddleware, json, mergeHeaders, registerGlobalMiddleware, serverOnly } from "@tanstack/start-client-core";
1
+ import { createClientOnlyFn, createClientRpc, createIsomorphicFn, createMiddleware, createServerFn, createServerOnlyFn, globalMiddleware, json, mergeHeaders, registerGlobalMiddleware } from "@tanstack/start-client-core";
2
2
  import { StartClient } from "./StartClient.js";
3
3
  import { useServerFn } from "./useServerFn.js";
4
4
  export {
5
5
  StartClient,
6
- clientOnly,
6
+ createClientOnlyFn,
7
7
  createClientRpc,
8
8
  createIsomorphicFn,
9
9
  createMiddleware,
10
10
  createServerFn,
11
+ createServerOnlyFn,
11
12
  globalMiddleware,
12
13
  json,
13
14
  mergeHeaders,
14
15
  registerGlobalMiddleware,
15
- serverOnly,
16
16
  useServerFn
17
17
  };
18
18
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/solid-start-client",
3
- "version": "1.132.0-alpha.4",
3
+ "version": "1.132.0-alpha.8",
4
4
  "description": "Modern and scalable routing for Solid applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -46,9 +46,9 @@
46
46
  "cookie-es": "^1.2.2",
47
47
  "tiny-invariant": "^1.3.3",
48
48
  "tiny-warning": "^1.0.3",
49
- "@tanstack/router-core": "1.132.0-alpha.4",
50
- "@tanstack/solid-router": "1.132.0-alpha.4",
51
- "@tanstack/start-client-core": "1.132.0-alpha.4"
49
+ "@tanstack/solid-router": "1.132.0-alpha.8",
50
+ "@tanstack/start-client-core": "1.132.0-alpha.8",
51
+ "@tanstack/router-core": "1.132.0-alpha.8"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@solidjs/testing-library": "^0.8.10",
package/src/index.tsx CHANGED
@@ -5,8 +5,8 @@ export {
5
5
  createMiddleware,
6
6
  registerGlobalMiddleware,
7
7
  globalMiddleware,
8
- serverOnly,
9
- clientOnly,
8
+ createServerOnlyFn,
9
+ createClientOnlyFn,
10
10
  json,
11
11
  createClientRpc,
12
12
  } from '@tanstack/start-client-core'