@trpc/server 10.3.0 → 10.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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -246,7 +246,7 @@ function isPlainObject(obj) {
|
|
|
246
246
|
* @internal
|
|
247
247
|
* Please note, `trpc-openapi` uses this function.
|
|
248
248
|
*/ function createInputMiddleware(parse) {
|
|
249
|
-
const inputMiddleware = async ({ next , rawInput , input
|
|
249
|
+
const inputMiddleware = async ({ next , rawInput , input })=>{
|
|
250
250
|
let parsedInput;
|
|
251
251
|
try {
|
|
252
252
|
parsedInput = await parse(rawInput);
|
package/dist/index.mjs
CHANGED
|
@@ -244,7 +244,7 @@ function isPlainObject(obj) {
|
|
|
244
244
|
* @internal
|
|
245
245
|
* Please note, `trpc-openapi` uses this function.
|
|
246
246
|
*/ function createInputMiddleware(parse) {
|
|
247
|
-
const inputMiddleware = async ({ next , rawInput , input
|
|
247
|
+
const inputMiddleware = async ({ next , rawInput , input })=>{
|
|
248
248
|
let parsedInput;
|
|
249
249
|
try {
|
|
250
250
|
parsedInput = await parse(rawInput);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trpc/server",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.4.1",
|
|
4
4
|
"description": "tRPC Server",
|
|
5
5
|
"author": "KATT",
|
|
6
6
|
"license": "MIT",
|
|
@@ -158,5 +158,5 @@
|
|
|
158
158
|
"yup": "^0.32.8",
|
|
159
159
|
"zod": "^3.0.0"
|
|
160
160
|
},
|
|
161
|
-
"gitHead": "
|
|
161
|
+
"gitHead": "f7f05a2bb803d85465282e9d17e16bae357ab6a8"
|
|
162
162
|
}
|