the firewall rule API is currently a compatability layer that creates Custom Rules, the firewall rul
the firewall rule API is currently a compatability layer that creates Custom Rules, the firewall rule API will be removed on 2024-05-01







const res = await fetch(`/api/something`, { method: "POST" });
const stream = res.body?.getReader();
while (true) {
if (!stream) {
// break
}
const { done, value } = await stream.read();
if (!value) break;
updateProgress(value);
if (done) break;
}