@trpc/next 11.4.0 → 11.4.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.
- package/app-dir/client/index.d.ts +1 -0
- package/app-dir/client/index.js +1 -0
- package/app-dir/links/nextCache/index.d.ts +1 -0
- package/app-dir/links/nextCache/index.js +1 -0
- package/app-dir/links/nextHttp/index.d.ts +1 -0
- package/app-dir/links/nextHttp/index.js +1 -0
- package/app-dir/server/index.d.ts +1 -0
- package/app-dir/server/index.js +1 -0
- package/package.json +32 -32
- package/ssrPrepass/index.d.ts +1 -0
- package/ssrPrepass/index.js +1 -0
|
@@ -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
|
+
"version": "11.4.1",
|
|
5
5
|
"description": "The tRPC Next.js library",
|
|
6
6
|
"author": "KATT",
|
|
7
7
|
"license": "MIT",
|
|
@@ -33,62 +33,62 @@
|
|
|
33
33
|
"./package.json": "./package.json",
|
|
34
34
|
".": {
|
|
35
35
|
"import": {
|
|
36
|
-
"
|
|
37
|
-
"
|
|
36
|
+
"types": "./dist/index.d.mts",
|
|
37
|
+
"default": "./dist/index.mjs"
|
|
38
38
|
},
|
|
39
39
|
"require": {
|
|
40
|
-
"
|
|
41
|
-
"
|
|
40
|
+
"types": "./dist/index.d.cts",
|
|
41
|
+
"default": "./dist/index.cjs"
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
"./app-dir/client": {
|
|
45
45
|
"import": {
|
|
46
|
-
"
|
|
47
|
-
"
|
|
46
|
+
"types": "./dist/app-dir/client.d.mts",
|
|
47
|
+
"default": "./dist/app-dir/client.mjs"
|
|
48
48
|
},
|
|
49
49
|
"require": {
|
|
50
|
-
"
|
|
51
|
-
"
|
|
50
|
+
"types": "./dist/app-dir/client.d.cts",
|
|
51
|
+
"default": "./dist/app-dir/client.cjs"
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
"./app-dir/links/nextCache": {
|
|
55
55
|
"import": {
|
|
56
|
-
"
|
|
57
|
-
"
|
|
56
|
+
"types": "./dist/app-dir/links/nextCache.d.mts",
|
|
57
|
+
"default": "./dist/app-dir/links/nextCache.mjs"
|
|
58
58
|
},
|
|
59
59
|
"require": {
|
|
60
|
-
"
|
|
61
|
-
"
|
|
60
|
+
"types": "./dist/app-dir/links/nextCache.d.cts",
|
|
61
|
+
"default": "./dist/app-dir/links/nextCache.cjs"
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
"./app-dir/links/nextHttp": {
|
|
65
65
|
"import": {
|
|
66
|
-
"
|
|
67
|
-
"
|
|
66
|
+
"types": "./dist/app-dir/links/nextHttp.d.mts",
|
|
67
|
+
"default": "./dist/app-dir/links/nextHttp.mjs"
|
|
68
68
|
},
|
|
69
69
|
"require": {
|
|
70
|
-
"
|
|
71
|
-
"
|
|
70
|
+
"types": "./dist/app-dir/links/nextHttp.d.cts",
|
|
71
|
+
"default": "./dist/app-dir/links/nextHttp.cjs"
|
|
72
72
|
}
|
|
73
73
|
},
|
|
74
74
|
"./app-dir/server": {
|
|
75
75
|
"import": {
|
|
76
|
-
"
|
|
77
|
-
"
|
|
76
|
+
"types": "./dist/app-dir/server.d.mts",
|
|
77
|
+
"default": "./dist/app-dir/server.mjs"
|
|
78
78
|
},
|
|
79
79
|
"require": {
|
|
80
|
-
"
|
|
81
|
-
"
|
|
80
|
+
"types": "./dist/app-dir/server.d.cts",
|
|
81
|
+
"default": "./dist/app-dir/server.cjs"
|
|
82
82
|
}
|
|
83
83
|
},
|
|
84
84
|
"./ssrPrepass": {
|
|
85
85
|
"import": {
|
|
86
|
-
"
|
|
87
|
-
"
|
|
86
|
+
"types": "./dist/ssrPrepass.d.mts",
|
|
87
|
+
"default": "./dist/ssrPrepass.mjs"
|
|
88
88
|
},
|
|
89
89
|
"require": {
|
|
90
|
-
"
|
|
91
|
-
"
|
|
90
|
+
"types": "./dist/ssrPrepass.d.cts",
|
|
91
|
+
"default": "./dist/ssrPrepass.cjs"
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
},
|
|
@@ -104,9 +104,9 @@
|
|
|
104
104
|
],
|
|
105
105
|
"peerDependencies": {
|
|
106
106
|
"@tanstack/react-query": "^5.59.15",
|
|
107
|
-
"@trpc/client": "11.4.
|
|
108
|
-
"@trpc/react-query": "11.4.
|
|
109
|
-
"@trpc/server": "11.4.
|
|
107
|
+
"@trpc/client": "11.4.1",
|
|
108
|
+
"@trpc/react-query": "11.4.1",
|
|
109
|
+
"@trpc/server": "11.4.1",
|
|
110
110
|
"next": "*",
|
|
111
111
|
"react": ">=16.8.0",
|
|
112
112
|
"react-dom": ">=16.8.0",
|
|
@@ -122,9 +122,9 @@
|
|
|
122
122
|
},
|
|
123
123
|
"devDependencies": {
|
|
124
124
|
"@tanstack/react-query": "^5.80.3",
|
|
125
|
-
"@trpc/client": "11.4.
|
|
126
|
-
"@trpc/react-query": "11.4.
|
|
127
|
-
"@trpc/server": "11.4.
|
|
125
|
+
"@trpc/client": "11.4.1",
|
|
126
|
+
"@trpc/react-query": "11.4.1",
|
|
127
|
+
"@trpc/server": "11.4.1",
|
|
128
128
|
"@types/express": "^5.0.0",
|
|
129
129
|
"@types/node": "^22.13.5",
|
|
130
130
|
"@types/react": "^19.1.0",
|
|
@@ -145,5 +145,5 @@
|
|
|
145
145
|
"funding": [
|
|
146
146
|
"https://trpc.io/sponsor"
|
|
147
147
|
],
|
|
148
|
-
"gitHead": "
|
|
148
|
+
"gitHead": "40025d7df6c0bc9fefe21c9a20969565017be138"
|
|
149
149
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/ssrPrepass';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/ssrPrepass');
|