trpc openapi does not work on app router

Subscription types are not inferred while queries and mutations are working fine

How are thrown (unhandled) exceptions safe to pass?
Canary useUtils and createTRPCQueryUtils type not callable
useUtils
or createTRPCQueryUtils
and getting the following type error:
```
This expression is not callable.
Not all constituents of type '(DecorateRouter & { [x: string]: (DecorateRouter & ...) | DecorateProcedure<_trpc_server_dist_core_procedure.QueryProcedure<{ input: void; output: { isAuthenticated: boolean; isAdmin: boolean; }; }>, _trpc_server_dist_core_procedure.QueryProcedure<{ input: void; output: { ...; }; }>>; }) | DecorateProcedure<...> | (...' are callable.
Type 'DecorateRouter & { [x: string]: (DecorateRouter & ...) | DecorateProcedure<_trpc_server_dist_core_procedure.QueryProcedure<{ input: void; output: { isAuthenticated: boolean; isAdmin: boolean; }; }>, _trpc_server_dist_core_procedure.QueryProcedure<{ input: void; output: { ...; }; }>>; }' has no call signatures....Modify mutation error messages?
server-side helpers doesnt work with `Hydrate` and `QueryClient`
Unable to mock unstable_batchStreamLink network response
batchHttpLink
previously and mocking the following API route worked perfectly:
```
const deleteOrganization = page.route(endpointPath("authed.organization.delete"), (route) =>
route.fulfill({...
Using trpc with fastify server and nextjs client
I can't mutate or query in SvelteKit
TRPCError class, public readonly cause?: Error; this line should have override function
public readonly cause?: Error;
to public override readonly cause?: Error;
fixes the problem the problem but i am doing that in node_modules which is not how this gets resolved,
how do i resolve this?...Why do people use SplitLink? (http + websocket)
TRPC with middly middleware on lambda
tRPC on Vercel Serverless without Next?
/api
folder. The @trpc/next
adapter seems to be based on the path expansion properties of next ( /api/[trpc]
), so I'm not what the best strategy is for using tRPC in a non-next project on vercel. I had a look at the vercel-edge-runtime example but that seems to be at a lower level (using the raw edge-runtime
package) than what the vercel platform expects in the /api folder. If anyone has...Errors while running mutations when deploying CT3A using SST

Keep suspense on SSR
How to properly type function arguments for procedures?
trpc/react-query
I'm trying to understand how to create a function that receives a procedure and it's input as arguments, so that I can then use that procedure reference to call useQuery
and getQueryKey
within the function:
```...How Do I Ban Users & Invalidate Their JWT Tokens?