@trpc/next 10.12.0 → 10.13.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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +12 -11
- package/src/createTRPCNext.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -165,7 +165,7 @@ function withTRPC(opts) {
|
|
|
165
165
|
};
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
-
/* istanbul ignore file */ // We're testing this through E2E-testing
|
|
168
|
+
/* istanbul ignore file -- @preserve */ // We're testing this through E2E-testing
|
|
169
169
|
function createTRPCNext(opts) {
|
|
170
170
|
const hooks = shared.createHooksInternal({
|
|
171
171
|
unstable_overrides: opts.unstable_overrides
|
package/dist/index.mjs
CHANGED
|
@@ -156,7 +156,7 @@ function withTRPC(opts) {
|
|
|
156
156
|
};
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
-
/* istanbul ignore file */ // We're testing this through E2E-testing
|
|
159
|
+
/* istanbul ignore file -- @preserve */ // We're testing this through E2E-testing
|
|
160
160
|
function createTRPCNext(opts) {
|
|
161
161
|
const hooks = createHooksInternal({
|
|
162
162
|
unstable_overrides: opts.unstable_overrides
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trpc/next",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.13.1",
|
|
4
4
|
"description": "tRPC Next lib",
|
|
5
5
|
"author": "KATT",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
],
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"@tanstack/react-query": "^4.3.8",
|
|
47
|
-
"@trpc/client": "10.
|
|
48
|
-
"@trpc/react-query": "
|
|
49
|
-
"@trpc/server": "10.
|
|
50
|
-
"next": "
|
|
47
|
+
"@trpc/client": "10.13.1",
|
|
48
|
+
"@trpc/react-query": "10.13.0",
|
|
49
|
+
"@trpc/server": "10.13.1",
|
|
50
|
+
"next": "^13.0.0",
|
|
51
51
|
"react": ">=16.8.0",
|
|
52
52
|
"react-dom": ">=16.8.0"
|
|
53
53
|
},
|
|
@@ -56,22 +56,23 @@
|
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@tanstack/react-query": "^4.3.8",
|
|
59
|
-
"@trpc/client": "10.
|
|
60
|
-
"@trpc/react-query": "^10.
|
|
61
|
-
"@trpc/server": "10.
|
|
59
|
+
"@trpc/client": "10.13.1",
|
|
60
|
+
"@trpc/react-query": "^10.13.1",
|
|
61
|
+
"@trpc/server": "10.13.1",
|
|
62
62
|
"@types/express": "^4.17.12",
|
|
63
63
|
"@types/node": "^18.7.20",
|
|
64
|
+
"@types/react": "^18.0.9",
|
|
64
65
|
"eslint": "^8.30.0",
|
|
65
66
|
"express": "^4.17.1",
|
|
66
|
-
"next": "^13.
|
|
67
|
+
"next": "^13.2.1",
|
|
67
68
|
"react": "^18.2.0",
|
|
68
69
|
"react-dom": "^18.2.0",
|
|
69
70
|
"rollup": "^2.79.1",
|
|
70
|
-
"tsx": "^3.
|
|
71
|
+
"tsx": "^3.12.3",
|
|
71
72
|
"zod": "^3.0.0"
|
|
72
73
|
},
|
|
73
74
|
"publishConfig": {
|
|
74
75
|
"access": "public"
|
|
75
76
|
},
|
|
76
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "861a1f60359e1a5dffbcbfa6c0e55f4944138a25"
|
|
77
78
|
}
|
package/src/createTRPCNext.tsx
CHANGED