@trpc/next 11.4.4-canary.7 → 11.4.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.
@@ -0,0 +1 @@
1
+ export * from '../../dist/app-dir/client';
@@ -0,0 +1 @@
1
+ module.exports = require('../../dist/app-dir/client');
@@ -0,0 +1 @@
1
+ export * from '../../../dist/app-dir/links/nextCache';
@@ -0,0 +1 @@
1
+ module.exports = require('../../../dist/app-dir/links/nextCache');
@@ -0,0 +1 @@
1
+ export * from '../../../dist/app-dir/links/nextHttp';
@@ -0,0 +1 @@
1
+ module.exports = require('../../../dist/app-dir/links/nextHttp');
@@ -0,0 +1 @@
1
+ export * from '../../dist/app-dir/server';
@@ -0,0 +1 @@
1
+ module.exports = require('../../dist/app-dir/server');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@trpc/next",
4
- "version": "11.4.4-canary.7+b4523adde",
4
+ "version": "11.4.4",
5
5
  "description": "The tRPC Next.js library",
6
6
  "author": "KATT",
7
7
  "license": "MIT",
@@ -26,8 +26,9 @@
26
26
  "scripts": {
27
27
  "build": "tsdown",
28
28
  "dev": "tsdown --watch",
29
- "ts-watch": "tsc --project tsconfig.watch.json --watch",
30
- "lint": "eslint --cache src"
29
+ "ts-watch": "tsc --watch",
30
+ "lint": "eslint --cache src",
31
+ "typecheck": "tsc --noEmit"
31
32
  },
32
33
  "exports": {
33
34
  "./package.json": "./package.json",
@@ -104,9 +105,9 @@
104
105
  ],
105
106
  "peerDependencies": {
106
107
  "@tanstack/react-query": "^5.59.15",
107
- "@trpc/client": "11.4.4-canary.7+b4523adde",
108
- "@trpc/react-query": "11.4.4-canary.7+b4523adde",
109
- "@trpc/server": "11.4.4-canary.7+b4523adde",
108
+ "@trpc/client": "11.4.4",
109
+ "@trpc/react-query": "11.4.4",
110
+ "@trpc/server": "11.4.4",
110
111
  "next": "*",
111
112
  "react": ">=16.8.0",
112
113
  "react-dom": ">=16.8.0",
@@ -122,9 +123,9 @@
122
123
  },
123
124
  "devDependencies": {
124
125
  "@tanstack/react-query": "^5.80.3",
125
- "@trpc/client": "11.4.4-canary.7+b4523adde",
126
- "@trpc/react-query": "11.4.4-canary.7+b4523adde",
127
- "@trpc/server": "11.4.4-canary.7+b4523adde",
126
+ "@trpc/client": "11.4.4",
127
+ "@trpc/react-query": "11.4.4",
128
+ "@trpc/server": "11.4.4",
128
129
  "@types/express": "^5.0.0",
129
130
  "@types/node": "^22.13.5",
130
131
  "@types/react": "^19.1.0",
@@ -136,7 +137,7 @@
136
137
  "react": "^19.1.0",
137
138
  "react-dom": "^19.1.0",
138
139
  "tsdown": "0.12.7",
139
- "typescript": "^5.8.2",
140
+ "typescript": "^5.9.2",
140
141
  "zod": "^3.25.51"
141
142
  },
142
143
  "publishConfig": {
@@ -145,5 +146,5 @@
145
146
  "funding": [
146
147
  "https://trpc.io/sponsor"
147
148
  ],
148
- "gitHead": "b4523adde43d683792d2e850c39a1e5bfd21db1a"
149
+ "gitHead": "1876ecd7a151252548f2e1ddcee945dedfca17a1"
149
150
  }
@@ -0,0 +1 @@
1
+ export * from '../dist/ssrPrepass';
@@ -0,0 +1 @@
1
+ module.exports = require('../dist/ssrPrepass');