diff --git a/src/adapters/node-http/core.ts b/src/adapters/node-http/core.ts index 060c8d2a..93580228 100644 --- a/src/adapters/node-http/core.ts +++ b/src/adapters/node-http/core.ts @@ -79,6 +79,10 @@ export const createOpenApiNodeHttpHandler = < const path = normalizePath(url.pathname); const { procedure, pathInput } = getProcedure(method, path) ?? {}; + if ('params' in req) { + req.params = pathInput ?? {}; + } + let input: any = undefined; let ctx: any = undefined; let data: any = undefined;