Hi, Is it possible to get the request context inside a middleware somehow? I'm trying to migrate a Express Based API ```typescript const t = initTRPC.context<Context>().create(); const useAuthentication = t.middleware(({ next, ctx }) => { const token = ctx.req.headers['authorization'] }) ```