const client = (yield* HttpClient.HttpClient).pipe(HttpClient.filterStatusOk) doesn't show very useful error messages on fail. They error just says non 2xx status code, the status code and that's all. I would like to have also the response details. Message if any and any other useful information the server may return. According to my investigation, it is not possible to "embed" this behavior into the client, you need to do that in a per request basis. Is this true? Is it really not possible to surface this information from the client itself by default?