@orpc/trpc 1.13.4 → 1.13.5

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/dist/index.mjs +3 -1
  2. package/package.json +6 -6
package/dist/index.mjs CHANGED
@@ -55,7 +55,9 @@ function toORPCProcedure(procedure) {
55
55
  path: path.join("."),
56
56
  type: procedure._def.type,
57
57
  input: trpcInput,
58
- getRawInput: () => trpcInput
58
+ getRawInput: () => trpcInput,
59
+ // TODO: this should infer from context when using oRPC Batch Plugin
60
+ batchIndex: 0
59
61
  });
60
62
  if (isAsyncIterable(output)) {
61
63
  return mapEventIterator(output[Symbol.asyncIterator](), {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/trpc",
3
3
  "type": "module",
4
- "version": "1.13.4",
4
+ "version": "1.13.5",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.dev",
7
7
  "repository": {
@@ -27,13 +27,13 @@
27
27
  "@trpc/server": ">=11.4.2"
28
28
  },
29
29
  "dependencies": {
30
- "@orpc/shared": "1.13.4",
31
- "@orpc/server": "1.13.4",
32
- "@orpc/client": "1.13.4"
30
+ "@orpc/client": "1.13.5",
31
+ "@orpc/server": "1.13.5",
32
+ "@orpc/shared": "1.13.5"
33
33
  },
34
34
  "devDependencies": {
35
- "@trpc/server": "^11.8.1",
36
- "zod": "^4.3.2"
35
+ "@trpc/server": "^11.10.0",
36
+ "zod": "^4.3.6"
37
37
  },
38
38
  "scripts": {
39
39
  "build": "unbuild",