@mastra/tanstack-start 0.2.23-alpha.0 → 0.2.23-alpha.1

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.
Files changed (2) hide show
  1. package/README.md +2 -7
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -36,13 +36,8 @@ createStartRouteHandler({
36
36
 
37
37
  ## Documentation
38
38
 
39
- `createStartRouteHandler()` returns GET, POST, PUT, DELETE, PATCH, OPTIONS, and HEAD handlers compatible with TanStack Start's server route API. It lazily initializes the underlying Hono adapter on the first request and forwards the standard Web `Request` to the Mastra server.
40
-
41
- The adapter reads custom API routes, per-route authentication, MCP settings, and `bodySizeLimit` from the Mastra server configuration. Request bodies default to a 4.5 MB limit when no application-specific value is configured.
42
-
43
- Use `tools` to register additional server tools. The `prefix` defaults to `/api` and must match the path before the `$` splat route. Authentication and each custom route's `requiresAuth` value are passed to the common Mastra server adapter.
44
-
45
- A2A operations use an in-memory task store. Keep the target TanStack Start deployment's process lifecycle in mind when relying on task state across separate requests or replicas.
39
+ - [TanStack Start reference](https://mastra.ai/reference/server/tanstack-start-adapter)
40
+ - [Guide](https://mastra.ai/integrations/frameworks/tanstack-start)
46
41
 
47
42
  ## Changelog
48
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/tanstack-start",
3
- "version": "0.2.23-alpha.0",
3
+ "version": "0.2.23-alpha.1",
4
4
  "description": "Mastra TanStack Start server adapter — drop your Mastra instance into a TanStack Start app",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,8 +20,8 @@
20
20
  },
21
21
  "license": "Apache-2.0",
22
22
  "dependencies": {
23
- "@mastra/server": "1.64.1-alpha.0",
24
- "@mastra/hono": "1.7.7-alpha.0"
23
+ "@mastra/server": "1.65.0-alpha.1",
24
+ "@mastra/hono": "1.7.7-alpha.1"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "22.20.1",
@@ -30,9 +30,9 @@
30
30
  "tsdown": "0.22.9",
31
31
  "typescript": "^7.0.2",
32
32
  "vitest": "4.1.10",
33
- "@internal/types-builder": "0.0.105",
34
33
  "@internal/lint": "0.0.130",
35
- "@mastra/core": "1.64.1-alpha.0"
34
+ "@mastra/core": "1.65.0-alpha.1",
35
+ "@internal/types-builder": "0.0.105"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "@mastra/core": ">=1.50.0-0 <2.0.0-0",