I am following Linear's official SDK webhook docs for Express. The example does const handler = webhookClient.createHandler(); app.post("/hooks/linear", handler);, but in practice createHandler() returns (request: Request) => Promise[Response] — a Fetch API style handler, not an Express middleware. Plugging it into app.post directly does not work. Is the docs example wrong?