platform-bun and HttpClient? Looks like bun hasn't implemented this on their agent implementation. It is implemented on https.request though (cert, key, ca options).HttpClient/HttpClientRequest spec, I couldn't see a way to pass platform specific options. I only see those options for agents. Was hopeful HttpClientRequest.modify might provide the hook needed, but looking at the source, it filters to only known options.fromAgent in @effect/platform-node/src/internal/httpClient.ts which is not ideal. Not sure if there is a place for a HttpClientRequest.unsafeModify or something to help bridge the gap for platform specific options outside of using an agent?