From 9d41e51f1bfb6e20d47ecfce39f98abe1cc209db Mon Sep 17 00:00:00 2001 From: Ander Date: Fri, 21 Aug 2026 12:27:42 +0200 Subject: [PATCH] Fix brand casing (Zenrows, not ZenRows) in Adaptive Stealth Mode docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per commit 9f1f00c6d: user-facing prose spells the brand "Zenrows" (capital Z, lowercase r). The ASM feature (mode: "auto") was added after the earlier casing sweep had already run, so this specific new prose in the README and the ZenRowsConfig.mode JSDoc was never checked. Same miss found and fixed in zenrows-python-sdk's #14 and zenrows-go-sdk's Mode type doc — this text was evidently reused across SDKs during the ASM port. Class/export names (ZenRows, ZenRowsBatchClient, ZenRowsConfig) stay unchanged — those are published identifiers, not prose. --- README.md | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f4f9e0e..1bfacd5 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Sending headers to the target URL will overwrite our defaults. Be careful when d ### Adaptive Stealth Mode -Set `mode: "auto"` to let ZenRows pick the request configuration for you — it starts with the cheapest viable setup and escalates to `js_render`/`premium_proxy` only when the target needs it, billing only for the configuration that succeeds. +Set `mode: "auto"` to let Zenrows pick the request configuration for you — it starts with the cheapest viable setup and escalates to `js_render`/`premium_proxy` only when the target needs it, billing only for the configuration that succeeds. ```javascript const response = await client.get(url, { mode: "auto" }); diff --git a/src/index.ts b/src/index.ts index 1f55804..72e82ed 100644 --- a/src/index.ts +++ b/src/index.ts @@ -35,7 +35,7 @@ interface ClientConfig { retries?: number; } export interface ZenRowsConfig { - /** Set to "auto" to enable Adaptive Stealth Mode — ZenRows starts with the cheapest + /** Set to "auto" to enable Adaptive Stealth Mode — Zenrows starts with the cheapest * viable request configuration and escalates to js_render/premium_proxy only when the * target needs it, billing only for the configuration that succeeds. */ mode?: "auto";