Hooks
This hook is called after the route's handler is called and before the response is validated.
Inside this hook, the context has a new property, response, which is the value returned by the route's handler.
You can use this hook to modify the response value before it is validated.
;
You can short-circuit the request life cycle by returning a Response object. All subsequent hooks and handlers will be skipped (except for onGlobalAfterResponse).
;