@crawlbrulee/sdk 0.9.0 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -16,7 +16,7 @@ this readme covers the sdk itself — the client, the types, and the js-side erg
16
16
  the api behaves — endpoints, parameters, and error semantics — please see our
17
17
  [api docs](https://crawlbrulee.com/docs).
18
18
 
19
- > **status:** v0.9.0 (beta). the api surface is stabilizing — expect minor breaking changes between 0.x releases.
19
+ > **status:** v0.11.0 (beta). the api surface is stabilizing — expect minor breaking changes between 0.x releases.
20
20
 
21
21
  **get a free api key** → [dashboard.crawlbrulee.com](https://dashboard.crawlbrulee.com)
22
22
 
@@ -138,14 +138,20 @@ notes:
138
138
  `response_meta.usage.proxy` reports the tier we resolved and used — never `'auto'`. see
139
139
  [proxies & location](https://crawlbrulee.com/docs/proxies) for what each tier does.
140
140
  - **`screenshot`**: custom `viewport.width`/`height` are integers in `[16, 10000]` and `device_scale_factor` is in
141
- `[1, 4]`; out-of-range values are rejected with a `400`. full capture options:
141
+ `[1, 3]`; out-of-range values are rejected with a `400`. full capture options:
142
142
  [screenshots](https://crawlbrulee.com/docs/scrape/screenshots).
143
143
  - **`extract.images`**: urls preserve their query string and resolve document-relative `src`s against the full page url
144
144
  (browser parity) — the same rules as `links`. every extract field is documented under
145
145
  [extraction](https://crawlbrulee.com/docs/scrape/extraction).
146
- - **`warnings`**: when we complete a scrape but something is worth flagging e.g. `screenshot_truncated` when a long
147
- page exceeded the scrolling-screenshot height cap — the codes land on `page.warnings`. they're stable, so you can switch
148
- on them. fresh scrapes only; cache hits omit warnings.
146
+ - **`warnings`**: when we complete a scrape but something is worth flagging, the codes land on `page.warnings`, in two
147
+ families. capped output: `screenshot_truncated` (a long page exceeded the scrolling-screenshot height cap),
148
+ `links_truncated` (more than 30 000 links), `inline_images_truncated` (more than 10 000 inline images),
149
+ `raw_html_truncated` (more than 10 000 000 characters of body html), and `metadata_truncated` (more than 2 000 000
150
+ characters of `<head>` html, so some metadata may be missing). failed extraction of one section: `links_unavailable`,
151
+ `inline_images_unavailable`, and `metadata_unavailable` — the field comes back omitted or empty while the rest of the
152
+ scrape succeeds, which is how you tell "the page had none" from "we couldn't read them". they're stable, so you can
153
+ switch on them — the union is exported as `ScrapeWarningCode`. warnings are stored with the result, so cache hits and
154
+ async result fetches report them too, filtered to the outputs you asked for.
149
155
  - **`unsupported_fields`**: if you request an extract that doesn't apply to the content type (e.g. `markdown` of a pdf),
150
156
  that field name comes back on `page.unsupported_fields` and the rest of your payload is still returned.
151
157
 
@@ -330,15 +336,16 @@ always verify the signature **before** parsing or trusting the body. the `X-Cwbl
330
336
  every failure raised by the sdk extends [`CrawlbruleeError`](src/errors.ts). typed subclasses are exported for the most actionable
331
337
  cases:
332
338
 
333
- | class | when it's raised |
334
- | ---------------------- | ---------------------------------------------------------------------------------------------------- |
335
- | `AuthenticationError` | 401 / 403 responses (missing, invalid, or unauthorized api key). |
336
- | `RateLimitError` | 429 responses. exposes `retryAfterMs` and `limitedBy` when the server provided them. |
337
- | `UsageAllocationError` | the org's plan limit was hit. exposes `reason` (`credit_limit`, `concurrency_limit`, …) and `usage`. |
338
- | `ValidationError` | 4xx caused by a bad request (`invalid_url`, `url_too_long`, `blocked_url`, …). |
339
- | `NotFoundError` | 404 responses (e.g. unknown async `jobId`). |
340
- | `TransportError` | network failures, aborts, non-json responses, request body read failures. |
341
- | `CrawlbruleeError` | base class used for any other api error. always has `status`, `errorName`, `message`. |
339
+ | class | when it's raised |
340
+ | ------------------------- | ---------------------------------------------------------------------------------------------------- |
341
+ | `AuthenticationError` | 401 / 403 responses (missing, invalid, or unauthorized api key). |
342
+ | `RateLimitError` | 429 responses. exposes `retryAfterMs` and `limitedBy` when the server provided them. |
343
+ | `UsageAllocationError` | the org's plan limit was hit. exposes `reason` (`credit_limit`, `concurrency_limit`, …) and `usage`. |
344
+ | `ValidationError` | 4xx caused by a bad request (`invalid_url`, `url_too_long`, `blocked_url`, …). |
345
+ | `NotFoundError` | 404 responses (e.g. unknown async `jobId`). |
346
+ | `ServiceUnavailableError` | 503 responses (`service_unavailable`). the api is temporarily unavailable — transient, retry it. |
347
+ | `TransportError` | network failures, aborts, non-json responses, request body read failures. |
348
+ | `CrawlbruleeError` | base class — used for any other api error. always has `status`, `errorName`, `message`. |
342
349
 
343
350
  ```ts
344
351
  import { Crawlbrulee, RateLimitError, UsageAllocationError } from '@crawlbrulee/sdk'
@@ -358,6 +365,11 @@ try {
358
365
  }
359
366
  ```
360
367
 
368
+ `RateLimitError` (429) and `ServiceUnavailableError` (503) are the two transient ones — both are worth retrying with
369
+ backoff, and a 429 carries a `retryAfterMs` hint when the server sent one. a 503 means our side couldn't serve the
370
+ request for a moment; it says nothing about your credentials, so it is **not** a reason to rotate your api key. a key
371
+ that is genuinely missing, invalid, or expired comes back as a 401 and raises `AuthenticationError` instead.
372
+
361
373
  for exhaustive branching, switch on `err.errorName` — the literal-typed union is exported as `ApiErrorName`. the
362
374
  `isCrawlbruleeError(err)` type guard narrows an `unknown` to the base error. the api docs carry the canonical
363
375
  [error reference](https://crawlbrulee.com/docs/errors) — every `errorName`, what causes it, and how to recover.
package/dist/index.cjs CHANGED
@@ -12,7 +12,7 @@ const DEFAULT_REQUEST_TIMEOUT_MS = 0;
12
12
  /** Environment variable read by `Crawlbrulee.fromEnv()` to source the API key. */
13
13
  const ENV_API_KEY = "CRAWLBRULEE_API_KEY";
14
14
  /** Identifies the SDK in the `User-Agent` header. Kept in one place for easy bumping. */
15
- const USER_AGENT = "@crawlbrulee/sdk/0.9.0 (node)";
15
+ const USER_AGENT = "@crawlbrulee/sdk/0.11.0 (node)";
16
16
 
17
17
  //#endregion
18
18
  //#region src/errors.ts
@@ -123,6 +123,21 @@ var NotFoundError = class extends CrawlbruleeError {
123
123
  }
124
124
  };
125
125
  /**
126
+ * Raised for 503 responses — the API could not serve the request right now
127
+ * (a transient infrastructure failure, not a problem with your request).
128
+ *
129
+ * This is **retryable**: back off and try again. In particular it is not an
130
+ * authentication failure, so it is never a reason to rotate your API key —
131
+ * a genuinely bad or expired key still comes back as a 401
132
+ * (`invalid_credentials`) and raises {@link AuthenticationError}.
133
+ */
134
+ var ServiceUnavailableError = class extends CrawlbruleeError {
135
+ constructor(message, options) {
136
+ super(message, options);
137
+ this.name = "ServiceUnavailableError";
138
+ }
139
+ };
140
+ /**
126
141
  * Raised when a request cannot be sent or no structured response is parsed.
127
142
  *
128
143
  * The `errorName` discriminates the cause:
@@ -185,6 +200,11 @@ function createApiError(body, status) {
185
200
  errorName: name,
186
201
  response
187
202
  });
203
+ case "service_unavailable": return new ServiceUnavailableError(message, {
204
+ status,
205
+ errorName: name,
206
+ response
207
+ });
188
208
  case "validation_error":
189
209
  case "invalid_url":
190
210
  case "url_too_long":
@@ -212,6 +232,11 @@ function createApiError(body, status) {
212
232
  errorName: name,
213
233
  response
214
234
  });
235
+ if (status === 503) return new ServiceUnavailableError(message, {
236
+ status,
237
+ errorName: name,
238
+ response
239
+ });
215
240
  return new CrawlbruleeError(message, {
216
241
  status,
217
242
  errorName: name,
@@ -857,6 +882,7 @@ exports.DEFAULT_WEBHOOK_TOLERANCE_SECONDS = DEFAULT_WEBHOOK_TOLERANCE_SECONDS;
857
882
  exports.ENV_API_KEY = ENV_API_KEY;
858
883
  exports.NotFoundError = NotFoundError;
859
884
  exports.RateLimitError = RateLimitError;
885
+ exports.ServiceUnavailableError = ServiceUnavailableError;
860
886
  exports.TransportError = TransportError;
861
887
  exports.UsageAllocationError = UsageAllocationError;
862
888
  exports.ValidationError = ValidationError;
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","names":[],"sources":["../src/config.ts","../src/errors.ts","../src/instrumentation.ts","../src/http.ts","../src/client.ts","../src/webhooks.ts"],"sourcesContent":["/**\n * Production base URL of the crawlbrulee API. Used by default when the caller\n * doesn't pass a `baseUrl` to {@link Crawlbrulee}. Local development and\n * staging callers point at their own host via that option.\n */\nexport const DEFAULT_BASE_URL = 'https://api.crawlbrulee.com'\n\n/** Default request timeout when the caller doesn't specify one (0 disables the timeout). */\nexport const DEFAULT_REQUEST_TIMEOUT_MS = 0\n\n/** Environment variable read by `Crawlbrulee.fromEnv()` to source the API key. */\nexport const ENV_API_KEY = 'CRAWLBRULEE_API_KEY'\n\n/** Identifies the SDK in the `User-Agent` header. Kept in one place for easy bumping. */\nexport const USER_AGENT = '@crawlbrulee/sdk/0.9.0 (node)'\n","import type {\n ApiErrorDetails,\n ApiErrorName,\n ApiErrorResponse,\n RateLimitErrorDetails,\n UsageAllocationErrorDetails,\n} from './types/common.js'\n\n/**\n * Base error class for every failure raised by the SDK.\n *\n * Two kinds of failures end up here:\n *\n * 1. **API errors** — the server returned a non-2xx response with a well-formed\n * JSON body. In that case `status`, `errorName` and (sometimes) `details`\n * are populated.\n * 2. **Transport errors** — the request never produced a structured response\n * (network failure, abort, timeout, non-JSON body, etc.). In that case\n * `status` may be `0` and `errorName` is one of the synthetic transport\n * names (`request_timeout`, `client_closed_request`) or `null`.\n *\n * Typed subclasses are exported for the most common cases. To branch on more\n * specific server-side errors, switch on `err.errorName` or use the\n * {@link isCrawlbruleeError} helper.\n */\nexport class CrawlbruleeError extends Error {\n /** HTTP status code; `0` for transport-level failures with no response. */\n readonly status: number\n /** The `name` field from the API error body, or `null` for transport errors. */\n readonly errorName: ApiErrorName | null\n /** Structured detail block from the API error body, if any. */\n readonly details?: ApiErrorDetails\n /** The original parsed error body, when one was received. */\n readonly response?: ApiErrorResponse\n\n constructor(\n message: string,\n options: {\n status: number\n errorName: ApiErrorName | null\n details?: ApiErrorDetails\n response?: ApiErrorResponse\n cause?: unknown\n }\n ) {\n super(message, options.cause !== undefined ? { cause: options.cause } : undefined)\n this.name = 'CrawlbruleeError'\n this.status = options.status\n this.errorName = options.errorName\n this.details = options.details\n this.response = options.response\n }\n}\n\n/** Raised for 401 / 403 responses (missing, invalid, or unauthorized API key). */\nexport class AuthenticationError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'AuthenticationError'\n }\n}\n\n/**\n * Raised for HTTP 429 responses. When the server included a `retry_after_ms`\n * hint in `details` it is surfaced directly on the instance.\n *\n * `errorName` is always the literal `'too_many_requests'` — the SDK normalizes\n * this even when the server returns a 429 with a different `name` field\n * (e.g. a CDN coalescing upstream rate limiting). The original body is still\n * available on `response`.\n */\nexport class RateLimitError extends CrawlbruleeError {\n override readonly errorName: 'too_many_requests'\n /** Suggested delay (ms) before retrying, when the server provided one. */\n readonly retryAfterMs?: number\n /** Which rate limit was tripped (e.g. `org`, `ip`), when provided. */\n readonly limitedBy?: string\n\n constructor(\n message: string,\n options: {\n status: number\n details?: RateLimitErrorDetails\n response?: ApiErrorResponse\n }\n ) {\n super(message, { ...options, errorName: 'too_many_requests', details: options.details })\n this.name = 'RateLimitError'\n this.errorName = 'too_many_requests'\n this.retryAfterMs = options.details?.retry_after_ms\n this.limitedBy = options.details?.limited_by\n }\n}\n\n/**\n * Raised when the API rejects a request because the org's plan limits would\n * be exceeded (credit limit, concurrency cap, overage hard cap, etc.).\n *\n * `errorName` is always the literal `'usage_allocation_error'`.\n */\nexport class UsageAllocationError extends CrawlbruleeError {\n override readonly errorName: 'usage_allocation_error'\n /** Specific reason the allocation was denied. */\n readonly reason: UsageAllocationErrorDetails['reason']\n /** Current usage / limit snapshot at the time of the rejection. */\n readonly usage?: UsageAllocationErrorDetails['details']\n\n constructor(\n message: string,\n options: {\n status: number\n details: UsageAllocationErrorDetails\n response?: ApiErrorResponse\n }\n ) {\n super(message, { ...options, errorName: 'usage_allocation_error' })\n this.name = 'UsageAllocationError'\n this.errorName = 'usage_allocation_error'\n this.reason = options.details.reason\n this.usage = options.details.details\n }\n}\n\n/** Raised for 4xx responses caused by an invalid request shape or arguments. */\nexport class ValidationError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'ValidationError'\n }\n}\n\n/** Raised for 404 responses (e.g. unknown async job ID). */\nexport class NotFoundError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'NotFoundError'\n }\n}\n\n/**\n * Raised when a request cannot be sent or no structured response is parsed.\n *\n * The `errorName` discriminates the cause:\n * - `'request_timeout'` — the per-request timeout fired.\n * - `'client_closed_request'` — the caller's `AbortSignal` fired.\n * - `null` — generic transport failure (network error, non-JSON body, etc.).\n */\nexport class TransportError extends CrawlbruleeError {\n constructor(\n message: string,\n options: {\n status?: number\n errorName?: 'request_timeout' | 'client_closed_request' | null\n cause?: unknown\n } = {}\n ) {\n super(message, {\n status: options.status ?? 0,\n errorName: options.errorName ?? null,\n cause: options.cause,\n })\n this.name = 'TransportError'\n }\n}\n\n/** Narrow `unknown` to the SDK's base error type. */\nexport function isCrawlbruleeError(err: unknown): err is CrawlbruleeError {\n return err instanceof CrawlbruleeError\n}\n\n/**\n * Map an API error body + HTTP status to the most specific error class.\n *\n * Dispatch is **name-first**: the body's `name` field is the most reliable\n * signal of what went wrong. Status code is used only as a fallback when the\n * name is unrecognized (e.g. a CDN-synthesized error). This avoids\n * miscategorizing things like a 403 with `name: 'not_found'` as an auth error.\n *\n * Internal — used by the HTTP layer.\n */\nexport function createApiError(body: ApiErrorResponse, status: number): CrawlbruleeError {\n const { name, message, details } = body\n const response = body\n\n switch (name) {\n case 'too_many_requests':\n return new RateLimitError(message, {\n status,\n details: details?.error_name === 'too_many_requests' ? details : undefined,\n response,\n })\n\n case 'usage_allocation_error': {\n // Without a structured details block we still want a typed error — fall\n // back to a synthetic `internal_error` reason so callers can branch.\n const usageDetails: UsageAllocationErrorDetails =\n details?.error_name === 'usage_allocation_error'\n ? details\n : { error_name: 'usage_allocation_error', reason: 'internal_error' }\n return new UsageAllocationError(message, { status, details: usageDetails, response })\n }\n\n case 'invalid_credentials':\n case 'access_denied':\n return new AuthenticationError(message, { status, errorName: name, response })\n\n case 'not_found':\n return new NotFoundError(message, { status, errorName: name, response })\n\n case 'validation_error':\n case 'invalid_url':\n case 'url_too_long':\n case 'unsupported_url_schema':\n case 'url_credentials_not_supported':\n case 'blocked_url':\n case 'unsupported_content':\n case 'unsupported_screenshot_output':\n return new ValidationError(message, { status, errorName: name, response })\n }\n\n // Name was not specific enough — fall back to status-based heuristics, but\n // never override what the name said. A 429 with an unrecognized name still\n // promotes to RateLimitError (the class invariant normalizes errorName).\n if (status === 429) {\n return new RateLimitError(message, { status, response })\n }\n if (status === 401 || status === 403) {\n return new AuthenticationError(message, { status, errorName: name, response })\n }\n if (status === 404) {\n return new NotFoundError(message, { status, errorName: name, response })\n }\n\n return new CrawlbruleeError(message, { status, errorName: name, details, response })\n}\n","import { DEFAULT_BASE_URL } from './config.js'\nimport { CrawlbruleeError } from './errors.js'\n\n/** Function shape compatible with the global `fetch`. */\nexport type FetchLike = typeof fetch\n\n/**\n * Centralized factory for the low-level dependencies the SDK injects into its\n * HTTP layer. Production code resolves these to the runtime's global `fetch`\n * and the burned-in production base URL; tests stub this module to swap in\n * mocks and alternate hosts.\n *\n * This is internal — it is not exported from the package's public entry. Tests\n * import it from `src/instrumentation.js` directly and use `vi.spyOn` to\n * substitute behavior.\n */\nexport const CwblInstrumentation = {\n /**\n * Resolve the `fetch` implementation the SDK should use. Throws a\n * {@link CrawlbruleeError} if the runtime does not expose a global `fetch`.\n */\n getFetch(): FetchLike {\n const g = globalThis as { fetch?: FetchLike }\n if (typeof g.fetch !== 'function') {\n throw new CrawlbruleeError(\n 'No global fetch is available in this runtime. crawlbrulee requires Node.js 22+, Bun, Deno, or a modern browser/edge runtime.',\n { status: 0, errorName: null }\n )\n }\n return g.fetch.bind(globalThis)\n },\n\n /**\n * Resolve the base URL the SDK should target. Returns the production host by\n * default; tests stub this to point at a mock origin.\n */\n getBaseUrl(): string {\n return DEFAULT_BASE_URL\n },\n}\n","import { DEFAULT_REQUEST_TIMEOUT_MS, USER_AGENT } from './config.js'\nimport { TransportError, createApiError, type CrawlbruleeError } from './errors.js'\nimport { CwblInstrumentation, type FetchLike } from './instrumentation.js'\nimport type { ApiErrorResponse } from './types/common.js'\n\n/** HTTP methods used by the SDK. */\nexport type HttpMethod = 'GET' | 'POST'\n\n/** Options the SDK accepts at construction time for the HTTP layer. */\nexport interface HttpClientOptions {\n /** API key sent as `Authorization: Bearer <key>`. */\n apiKey: string\n /**\n * Override the base URL. Trailing slashes are stripped. Falls back to\n * {@link CwblInstrumentation.getBaseUrl} (which resolves to the production\n * host) when unset.\n */\n baseUrl?: string\n /**\n * Per-request timeout in milliseconds. Pass `0` (or omit) to disable the\n * timeout entirely.\n */\n timeoutMs?: number\n}\n\n/** Per-call overrides accepted on every resource method. */\nexport interface RequestOptions {\n /** Abort the request when this signal fires. Composable with the timeout. */\n signal?: AbortSignal\n /**\n * Override the constructor-level `timeoutMs` for this call. Pass `0` to\n * disable the timeout for this call.\n */\n timeoutMs?: number\n}\n\ninterface SendArgs extends RequestOptions {\n method: HttpMethod\n path: string\n body?: unknown\n}\n\ninterface ComposedSignal {\n signal: AbortSignal | undefined\n /** Returns `true` if the abort was triggered by the per-request timeout. */\n timedOut: () => boolean\n /** Releases the timer and any listeners attached to the caller's signal. */\n cleanup: () => void\n}\n\n/**\n * Minimal `fetch`-based HTTP layer used by {@link Crawlbrulee}. Handles:\n *\n * - URL composition (joining `baseUrl` and path safely).\n * - JSON serialization and parsing.\n * - The `Authorization: Bearer …` header.\n * - Composing the caller's `AbortSignal` with an internal timeout signal. The\n * timeout covers the WHOLE request, including the response body read — not\n * just the time-to-headers.\n * - Mapping non-2xx responses to typed `CrawlbruleeError` subclasses via\n * {@link createApiError}.\n *\n * The base URL and `fetch` implementation are sourced from\n * {@link CwblInstrumentation} at construction time so tests can stub the\n * module.\n */\nexport class HttpClient {\n readonly baseUrl: string\n private readonly apiKey: string\n private readonly fetch: FetchLike\n private readonly timeoutMs: number\n\n constructor(options: HttpClientOptions) {\n this.baseUrl = stripTrailingSlash(options.baseUrl ?? CwblInstrumentation.getBaseUrl())\n this.apiKey = options.apiKey\n this.fetch = CwblInstrumentation.getFetch()\n this.timeoutMs = options.timeoutMs ?? DEFAULT_REQUEST_TIMEOUT_MS\n }\n\n /** Send a `GET` request and parse the response as `T`. */\n get<T>(path: string, options?: RequestOptions): Promise<T> {\n return this.send<T>({ method: 'GET', path, ...options })\n }\n\n /** Send a `POST` request with a JSON body and parse the response as `T`. */\n post<T>(path: string, body: unknown, options?: RequestOptions): Promise<T> {\n return this.send<T>({ method: 'POST', path, body, ...options })\n }\n\n private async send<T>(args: SendArgs): Promise<T> {\n const url = this.buildUrl(args.path)\n const headers = this.buildHeaders(args)\n const body = args.body === undefined ? undefined : JSON.stringify(args.body)\n const composed = this.composeSignal(args.signal, args.timeoutMs)\n\n try {\n let res: Response\n try {\n res = await this.fetch(url, {\n method: args.method,\n headers,\n body,\n signal: composed.signal,\n })\n } catch (cause: unknown) {\n throw abortOrNetworkError(cause, composed.timedOut(), args.timeoutMs ?? this.timeoutMs)\n }\n\n let text: string\n try {\n text = await res.text()\n } catch (cause: unknown) {\n if (isAbortError(cause)) {\n throw abortOrNetworkError(cause, composed.timedOut(), args.timeoutMs ?? this.timeoutMs)\n }\n throw new TransportError(`Failed to read response body (status ${res.status}).`, {\n status: res.status,\n cause,\n })\n }\n\n const parsed = parseJsonOrThrow(text, res.status)\n if (!res.ok) throw toApiError(parsed, res.status, text)\n return parsed as T\n } finally {\n composed.cleanup()\n }\n }\n\n private buildUrl(path: string): string {\n if (!path.startsWith('/')) {\n throw new TypeError(`crawlbrulee SDK: path must start with '/' (received '${path}')`)\n }\n return `${this.baseUrl}${path}`\n }\n\n private buildHeaders(args: SendArgs): Record<string, string> {\n const headers: Record<string, string> = {\n accept: 'application/json',\n 'user-agent': USER_AGENT,\n authorization: `Bearer ${this.apiKey}`,\n }\n if (args.body !== undefined) headers['content-type'] = 'application/json'\n return headers\n }\n\n /**\n * Build a single `AbortSignal` that fires when either the caller-supplied\n * signal aborts OR the per-request timeout elapses. The returned `cleanup`\n * callback MUST be invoked on every exit path so we don't leak timers or\n * dead listeners on long-lived caller signals.\n */\n private composeSignal(\n callerSignal: AbortSignal | undefined,\n overrideTimeoutMs: number | undefined\n ): ComposedSignal {\n const timeoutMs = overrideTimeoutMs ?? this.timeoutMs\n const hasTimeout = Number.isFinite(timeoutMs) && timeoutMs > 0\n\n if (!hasTimeout && !callerSignal) {\n return { signal: undefined, timedOut: () => false, cleanup: () => {} }\n }\n\n if (!hasTimeout) {\n return { signal: callerSignal, timedOut: () => false, cleanup: () => {} }\n }\n\n const controller = new AbortController()\n let didTimeout = false\n const timer = setTimeout(() => {\n didTimeout = true\n controller.abort(new Error('request_timeout'))\n }, timeoutMs)\n\n let onCallerAbort: (() => void) | undefined\n if (callerSignal) {\n if (callerSignal.aborted) {\n clearTimeout(timer)\n controller.abort(callerSignal.reason)\n } else {\n onCallerAbort = () => {\n clearTimeout(timer)\n controller.abort(callerSignal.reason)\n }\n callerSignal.addEventListener('abort', onCallerAbort, { once: true })\n }\n }\n\n const cleanup = () => {\n clearTimeout(timer)\n if (onCallerAbort && callerSignal) {\n callerSignal.removeEventListener('abort', onCallerAbort)\n }\n }\n\n return { signal: controller.signal, timedOut: () => didTimeout, cleanup }\n }\n}\n\nfunction stripTrailingSlash(url: string): string {\n return url.replace(/\\/+$/, '')\n}\n\nfunction isAbortError(err: unknown): boolean {\n return err instanceof Error && err.name === 'AbortError'\n}\n\nfunction abortOrNetworkError(cause: unknown, timedOut: boolean, timeoutMs: number): TransportError {\n if (isAbortError(cause)) {\n if (timedOut) {\n return new TransportError(`Request timed out after ${timeoutMs}ms.`, {\n errorName: 'request_timeout',\n cause,\n })\n }\n return new TransportError('Request aborted by caller.', {\n errorName: 'client_closed_request',\n cause,\n })\n }\n return new TransportError(formatNetworkErrorMessage(cause), { cause })\n}\n\nfunction formatNetworkErrorMessage(cause: unknown): string {\n if (cause instanceof Error) {\n return `Network error: ${cause.message}`\n }\n return 'Network error: unknown failure while sending the request.'\n}\n\nfunction parseJsonOrThrow(text: string, status: number): unknown {\n if (text === '') return {}\n try {\n return JSON.parse(text)\n } catch (cause: unknown) {\n const preview = text.length > 200 ? `${text.slice(0, 200)}…` : text\n throw new TransportError(`Unexpected non-JSON response (status ${status}): ${preview}`, {\n status,\n cause,\n })\n }\n}\n\nfunction toApiError(parsed: unknown, status: number, rawText: string): CrawlbruleeError {\n if (isApiErrorResponse(parsed)) {\n return createApiError(parsed, status)\n }\n const preview = rawText.length > 200 ? `${rawText.slice(0, 200)}…` : rawText\n return new TransportError(`HTTP ${status}: ${preview || '(empty body)'}`, { status })\n}\n\nfunction isApiErrorResponse(value: unknown): value is ApiErrorResponse {\n if (value === null || typeof value !== 'object') return false\n const v = value as Record<string, unknown>\n return typeof v.name === 'string' && typeof v.message === 'string'\n}\n","import { ENV_API_KEY } from './config.js'\nimport { CrawlbruleeError } from './errors.js'\nimport { HttpClient, type RequestOptions } from './http.js'\nimport type {\n AsyncJobStatusResponse,\n AsyncScrapeRequest,\n AsyncScrapeResponse,\n MapRequest,\n MapResponse,\n ScrapeCompleteWebhook,\n ScrapeRequest,\n ScrapeResponse,\n UsageResponse,\n WhoamiResponse,\n} from './types/index.js'\n\n/** Options accepted by the {@link Crawlbrulee} constructor. */\nexport interface CrawlbruleeOptions {\n /**\n * API key sent as `Authorization: Bearer <key>`. Required — to read from the\n * environment instead, use {@link Crawlbrulee.fromEnv}. Leading and trailing\n * whitespace is stripped; an empty / whitespace-only value is rejected.\n */\n apiKey: string\n /**\n * Override the base URL the SDK targets. Defaults to the production host\n * ({@link DEFAULT_BASE_URL}). Intended for local development and staging\n * (e.g. `https://api.staging.crawlbrulee.com`) — production callers should\n * leave it unset. Trailing slashes are stripped.\n */\n baseUrl?: string\n /**\n * Per-request timeout in milliseconds. Defaults to `0` (no timeout). Set to a\n * positive number to abort slow requests; a per-call `timeoutMs` override\n * takes precedence. The timeout covers the WHOLE request, including the\n * response body read.\n */\n timeoutMs?: number\n}\n\n/**\n * Options accepted by {@link Crawlbrulee.waitForScrape}.\n *\n * Note: `timeoutMs` here is the OVERALL wait budget across all polls — not the\n * per-HTTP-request timeout. The per-poll HTTP timeout is whatever the client\n * was constructed with; if you want to bound each individual poll, construct\n * the client with `timeoutMs` set.\n */\nexport interface WaitForScrapeOptions extends Omit<RequestOptions, 'timeoutMs'> {\n /** Time between status polls in milliseconds. Default `2000`. */\n intervalMs?: number\n /**\n * Maximum total time to wait before giving up, in milliseconds. Default\n * `300_000` (5 minutes). Pass `0` to wait indefinitely.\n */\n timeoutMs?: number\n}\n\n/**\n * Official client for the crawlbrulee API.\n *\n * @example\n * ```ts\n * import { Crawlbrulee } from '@crawlbrulee/sdk'\n *\n * const crawlbrulee = new Crawlbrulee({ apiKey: 'cwbl_…' })\n * // or read CRAWLBRULEE_API_KEY from the environment:\n * const crawlbrulee = Crawlbrulee.fromEnv()\n *\n * const page = await crawlbrulee.scrape({\n * url: 'https://example.com',\n * extract: { markdown: true, links: true },\n * })\n * console.log(page.markdown)\n * ```\n */\nexport class Crawlbrulee {\n /** Resolved base URL — trailing slash already stripped. */\n readonly baseUrl: string\n /** Underlying HTTP layer. Exposed for advanced use cases (custom endpoints). */\n readonly http: HttpClient\n\n constructor(options: CrawlbruleeOptions) {\n const apiKey = options.apiKey?.trim()\n if (!apiKey) {\n throw new CrawlbruleeError(\n `Missing API key. Pass { apiKey } to Crawlbrulee or call Crawlbrulee.fromEnv() to read ${ENV_API_KEY}.`,\n { status: 0, errorName: null }\n )\n }\n this.http = new HttpClient({ apiKey, baseUrl: options.baseUrl, timeoutMs: options.timeoutMs })\n this.baseUrl = this.http.baseUrl\n }\n\n /**\n * Build a {@link Crawlbrulee} reading the API key from\n * `process.env.CRAWLBRULEE_API_KEY`. Throws if the variable is unset, empty,\n * or whitespace.\n *\n * Any other constructor option can be passed via `overrides`.\n *\n * @example\n * ```ts\n * const crawlbrulee = Crawlbrulee.fromEnv()\n * const crawlbrulee = Crawlbrulee.fromEnv({ timeoutMs: 30_000 })\n * ```\n */\n static fromEnv(overrides: Omit<CrawlbruleeOptions, 'apiKey'> = {}): Crawlbrulee {\n const apiKey = readEnv(ENV_API_KEY)\n if (!apiKey) {\n throw new CrawlbruleeError(\n `${ENV_API_KEY} is not set. Export it in your shell, or pass apiKey to new Crawlbrulee({ apiKey }).`,\n { status: 0, errorName: null }\n )\n }\n return new Crawlbrulee({ ...overrides, apiKey })\n }\n\n // ------------------------------------------------------------------\n // Scraping\n // ------------------------------------------------------------------\n\n /**\n * Scrape a URL synchronously and return the extracted content.\n *\n * The request blocks until the scrape is finished. For long-running jobs\n * (heavy JS rendering, screenshots of long pages) prefer\n * {@link Crawlbrulee.scrapeAsync} so the connection isn't held open.\n *\n * @param request — body for `POST /api/scrape`.\n * @param options — per-call timeout and abort signal.\n */\n scrape(request: ScrapeRequest, options?: RequestOptions): Promise<ScrapeResponse> {\n return this.http.post<ScrapeResponse>('/api/scrape', request, options)\n }\n\n /**\n * Submit an asynchronous scrape job and return its `job_id`. Poll the job\n * with {@link Crawlbrulee.getScrapeStatus} or wait for completion with\n * {@link Crawlbrulee.waitForScrape}.\n *\n * Pass an optional `webhook` to have the API deliver a signed\n * `scrape.complete` `POST` to your endpoint when the job finishes (see\n * {@link AsyncScrapeWebhook}). This field is async-only.\n */\n scrapeAsync(request: AsyncScrapeRequest, options?: RequestOptions): Promise<AsyncScrapeResponse> {\n return this.http.post<AsyncScrapeResponse>('/api/scrape/async', request, options)\n }\n\n /** Look up the current status of an async scrape job. */\n getScrapeStatus(jobId: string, options?: RequestOptions): Promise<AsyncJobStatusResponse> {\n assertNonEmptyJobId(jobId)\n return this.http.get<AsyncJobStatusResponse>(\n `/api/scrape/status/${encodeURIComponent(jobId)}`,\n options\n )\n }\n\n /**\n * Fetch the result of a completed async scrape job. Throws if the job is\n * still pending/running — call {@link Crawlbrulee.getScrapeStatus}\n * first, or use {@link Crawlbrulee.waitForScrape} to poll-then-fetch.\n */\n getScrapeResult(jobId: string, options?: RequestOptions): Promise<ScrapeResponse> {\n assertNonEmptyJobId(jobId)\n return this.http.get<ScrapeResponse>(`/api/scrape/result/${encodeURIComponent(jobId)}`, options)\n }\n\n /**\n * Fetch the scrape result referenced by a `scrape.complete` webhook body.\n *\n * Always verify the webhook signature with `verifyWebhookSignature` before\n * acting on it; this method trusts the parsed body it is handed.\n *\n * Behavior by `data.status`:\n * - `success` — delegates to {@link Crawlbrulee.getScrapeResult} for the\n * webhook's `job_id` and returns the parsed result.\n * - `failed` — throws a {@link CrawlbruleeError} carrying `data.error`\n * (`errorName: 'job_failed'`); there is no result to fetch.\n * - `cancelled` — throws a {@link CrawlbruleeError}\n * (`errorName: 'client_closed_request'`).\n *\n * A non-`scrape.complete` envelope throws a {@link CrawlbruleeError}\n * defensively. Any HTTP error from the underlying fetch propagates as the\n * usual typed `CrawlbruleeError` subclass.\n */\n async fetchScrapeResultFromWebhook(\n webhook: ScrapeCompleteWebhook,\n options?: RequestOptions\n ): Promise<ScrapeResponse> {\n if (webhook?.event !== 'scrape.complete') {\n throw new CrawlbruleeError(\n `Expected a 'scrape.complete' webhook but received '${String(webhook?.event)}'.`,\n { status: 0, errorName: 'validation_error' }\n )\n }\n\n const { job_id: jobId, status, error } = webhook.data\n\n switch (status) {\n case 'success':\n return this.getScrapeResult(jobId, options)\n\n case 'failed':\n throw new CrawlbruleeError(error ?? `Async scrape job ${jobId} failed.`, {\n status: 0,\n errorName: 'job_failed',\n })\n\n case 'cancelled':\n throw new CrawlbruleeError(`Async scrape job ${jobId} was cancelled.`, {\n status: 0,\n errorName: 'client_closed_request',\n })\n\n default:\n throw new CrawlbruleeError(\n `Async scrape webhook for job ${jobId} carried an unexpected status '${String(status)}'.`,\n { status: 0, errorName: 'validation_error' }\n )\n }\n }\n\n /**\n * Poll an async scrape job until it reaches a terminal state, then return\n * the scrape result.\n *\n * Throws a {@link CrawlbruleeError} when:\n * - the job ends in `failed` (`errorName: 'job_failed'`),\n * - the server reports an unexpected status (`errorName: 'job_failed'`),\n * - the overall wait exceeds `timeoutMs` (`errorName: 'request_timeout'`),\n * - the caller's `signal` aborts (`errorName: 'client_closed_request'`).\n */\n async waitForScrape(jobId: string, options: WaitForScrapeOptions = {}): Promise<ScrapeResponse> {\n assertNonEmptyJobId(jobId)\n const intervalMs = options.intervalMs ?? 2000\n const timeoutMs = options.timeoutMs ?? 300_000\n const deadline = timeoutMs > 0 ? Date.now() + timeoutMs : Number.POSITIVE_INFINITY\n\n while (true) {\n throwIfAborted(options.signal)\n if (Date.now() >= deadline) {\n throw new CrawlbruleeError(\n `Timed out after ${timeoutMs}ms waiting for async scrape job ${jobId}.`,\n { status: 0, errorName: 'request_timeout' }\n )\n }\n\n const status = await this.getScrapeStatus(jobId, { signal: options.signal })\n\n switch (status.status) {\n case 'done':\n return this.getScrapeResult(jobId, { signal: options.signal })\n\n case 'failed':\n throw new CrawlbruleeError(status.error ?? `Async scrape job ${jobId} failed.`, {\n status: 0,\n errorName: 'job_failed',\n })\n\n case 'pending':\n case 'running':\n break\n\n default:\n throw new CrawlbruleeError(\n `Async scrape job ${jobId} returned unexpected status '${String(status.status)}'.`,\n { status: 0, errorName: 'job_failed' }\n )\n }\n\n await sleep(intervalMs, options.signal)\n }\n }\n\n // ------------------------------------------------------------------\n // Mapping\n // ------------------------------------------------------------------\n\n /**\n * Build (or return a cached) site link-map for a domain. Combines sitemap\n * discovery with the freshest cached homepage scrape when available.\n */\n map(request: MapRequest, options?: RequestOptions): Promise<MapResponse> {\n return this.http.post<MapResponse>('/api/map', request, options)\n }\n\n // ------------------------------------------------------------------\n // Account\n // ------------------------------------------------------------------\n\n /**\n * Return the current billing-cycle usage: total/used/available credits,\n * used quota percentage, max concurrency, and when the cycle resets.\n */\n usage(options?: RequestOptions): Promise<UsageResponse> {\n return this.http.get<UsageResponse>('/api/usage', options)\n }\n\n /**\n * Return the organization name and identifying details of the API token\n * used to authenticate this request. Useful for confirming which key is in\n * use before performing destructive operations.\n */\n whoami(options?: RequestOptions): Promise<WhoamiResponse> {\n return this.http.get<WhoamiResponse>('/api/whoami', options)\n }\n}\n\n/**\n * Defensive read of `process.env[name]`. Guards both the absence of `process`\n * (browser / edge runtimes) and Deno's permission throw on env access without\n * `--allow-env`.\n */\nfunction readEnv(name: string): string | undefined {\n try {\n if (typeof process === 'undefined' || !process.env) return undefined\n const v = process.env[name]\n return typeof v === 'string' && v.trim().length > 0 ? v.trim() : undefined\n } catch {\n return undefined\n }\n}\n\nfunction assertNonEmptyJobId(jobId: string): void {\n if (typeof jobId !== 'string' || jobId.trim().length === 0) {\n throw new CrawlbruleeError('jobId must be a non-empty string.', {\n status: 0,\n errorName: null,\n })\n }\n}\n\nfunction throwIfAborted(signal: AbortSignal | undefined): void {\n if (signal?.aborted) {\n throw new CrawlbruleeError('Request aborted by caller.', {\n status: 0,\n errorName: 'client_closed_request',\n cause: signal.reason,\n })\n }\n}\n\nfunction sleep(ms: number, signal: AbortSignal | undefined): Promise<void> {\n return new Promise((resolve, reject) => {\n const onAbort = () => {\n clearTimeout(timer)\n reject(\n new CrawlbruleeError('Request aborted by caller.', {\n status: 0,\n errorName: 'client_closed_request',\n cause: signal?.reason,\n })\n )\n }\n const timer = setTimeout(() => {\n signal?.removeEventListener('abort', onAbort)\n resolve()\n }, ms)\n if (signal) {\n if (signal.aborted) {\n clearTimeout(timer)\n onAbort()\n return\n }\n signal.addEventListener('abort', onAbort, { once: true })\n }\n })\n}\n","/**\n * Verification for async scrape completion webhooks.\n *\n * {@link verifyWebhookSignature} validates the signature crawlbrulee attaches to\n * every webhook delivery. It is a standalone, network-free helper built on Web\n * Crypto (`globalThis.crypto.subtle`) so it runs unchanged on Node.js 22+,\n * browsers, Bun, Deno, and edge runtimes — it never touches `node:crypto`.\n */\n\n/** HTTP header carrying the primary webhook signature (always present). */\nexport const WEBHOOK_SIGNATURE_HEADER = 'X-Cwbl-Signature'\n\n/**\n * HTTP header carrying a signature produced with the previous signing secret.\n * Present only during a signing-secret rotation grace window.\n */\nexport const WEBHOOK_SIGNATURE_ROTATED_HEADER = 'X-Cwbl-Signature-Rotated'\n\n/** HTTP header carrying the unique event id, useful for delivery de-duplication. */\nexport const WEBHOOK_EVENT_ID_HEADER = 'X-Cwbl-Event-Id'\n\n/** Default replay-protection window (seconds) applied to the signed timestamp. */\nexport const DEFAULT_WEBHOOK_TOLERANCE_SECONDS = 300\n\n/** Which signature header satisfied verification. */\nexport type WebhookSignatureSource = 'primary' | 'rotated'\n\n/**\n * Why a webhook signature failed to verify.\n *\n * - `missing_signature` — neither the primary nor the rotated header was present.\n * - `malformed_signature` — a header was present but not in the expected\n * `t=<unix_seconds>,v1=<64_hex>` format.\n * - `timestamp_out_of_tolerance` — the signed timestamp drifted further from now\n * than `toleranceSeconds` allows (replay protection).\n * - `signature_mismatch` — a well-formed, in-tolerance signature did not match\n * the one computed from the payload and secret.\n */\nexport type WebhookVerificationFailureReason =\n | 'missing_signature'\n | 'malformed_signature'\n | 'timestamp_out_of_tolerance'\n | 'signature_mismatch'\n\n/** Result of {@link verifyWebhookSignature}. Verification failure is returned, not thrown. */\nexport type WebhookVerificationResult =\n | { verified: true; signedWith: WebhookSignatureSource }\n | { verified: false; reason: WebhookVerificationFailureReason }\n\n/** Options for {@link verifyWebhookSignature}. */\nexport interface VerifyWebhookSignatureOptions {\n /**\n * The raw request body, exactly as received. Pass the bytes/string the server\n * signed — do NOT re-serialize parsed JSON, or the signature will not match.\n */\n payload: string | Uint8Array\n /**\n * The request headers. Accepts a fetch `Headers` instance or a plain object\n * (Express/Node give lowercased keys, values possibly arrays). Lookup is\n * case-insensitive.\n */\n headers: Headers | Record<string, string | string[] | undefined>\n /** The current signing secret (`whsec_…`). */\n secret: string\n /**\n * Replay-protection window in seconds. Defaults to\n * {@link DEFAULT_WEBHOOK_TOLERANCE_SECONDS} (300). Pass `0` (or any falsy\n * value) to disable the timestamp check entirely.\n */\n toleranceSeconds?: number\n}\n\nconst SIGNATURE_FORMAT = /^t=(\\d+),v1=([0-9a-f]{64})$/\n\ninterface ParsedSignature {\n timestamp: number\n signature: string\n}\n\n/**\n * Verify a crawlbrulee webhook signature against the primary and rotated\n * headers.\n *\n * The signing scheme matches the backend:\n * - the signed payload is `` `${t}.${rawBody}` `` where `t` is the unix-seconds\n * integer from the header and `rawBody` is the raw request body,\n * - the signature is `HMAC-SHA256(secret, signedPayload)` as lowercase hex,\n * - the header value is `t=<unix_seconds>,v1=<64_hex>`.\n *\n * The supplied `secret` is tried against the primary header first, then the\n * rotated header (which the API emits during a signing-secret rotation grace\n * window). Whichever matches wins, and the result reports which header it was.\n *\n * This NEVER throws on a verification failure — failures are normal control\n * flow and are returned as `{ verified: false, reason }`.\n *\n * @example\n * ```ts\n * const result = await verifyWebhookSignature({\n * payload: rawBody,\n * headers: req.headers,\n * secret: process.env.CRAWLBRULEE_WEBHOOK_SECRET!,\n * })\n * if (!result.verified) return res.status(400).end()\n * ```\n */\nexport async function verifyWebhookSignature(\n options: VerifyWebhookSignatureOptions\n): Promise<WebhookVerificationResult> {\n const { payload, headers, secret } = options\n const toleranceSeconds = options.toleranceSeconds ?? DEFAULT_WEBHOOK_TOLERANCE_SECONDS\n\n const primaryHeader = getHeader(headers, WEBHOOK_SIGNATURE_HEADER)\n const rotatedHeader = getHeader(headers, WEBHOOK_SIGNATURE_ROTATED_HEADER)\n\n if (primaryHeader === undefined && rotatedHeader === undefined) {\n return { verified: false, reason: 'missing_signature' }\n }\n\n const nowSeconds = Math.floor(Date.now() / 1000)\n const body = toBytes(payload)\n const key = await importHmacKey(secret)\n\n // Track the \"best\" failure reason so the result is informative: a real\n // mismatch should win over a malformed sibling header. Order from least to\n // most specific.\n let failure: WebhookVerificationFailureReason = 'malformed_signature'\n\n for (const source of ['primary', 'rotated'] as const) {\n const raw = source === 'primary' ? primaryHeader : rotatedHeader\n if (raw === undefined) continue\n\n const parsed = parseSignatureHeader(raw)\n if (!parsed) {\n // A malformed header can't verify; keep looking at the other one.\n continue\n }\n\n if (toleranceSeconds && Math.abs(nowSeconds - parsed.timestamp) > toleranceSeconds) {\n failure = mostSpecificFailure(failure, 'timestamp_out_of_tolerance')\n continue\n }\n\n const expected = await computeSignatureHex(key, parsed.timestamp, body)\n if (constantTimeEqualHex(expected, parsed.signature)) {\n return { verified: true, signedWith: source }\n }\n\n failure = mostSpecificFailure(failure, 'signature_mismatch')\n }\n\n return { verified: false, reason: failure }\n}\n\n/**\n * Rank verification failures so the returned reason reflects the most\n * actionable problem encountered across the two headers.\n */\nfunction mostSpecificFailure(\n current: WebhookVerificationFailureReason,\n candidate: WebhookVerificationFailureReason\n): WebhookVerificationFailureReason {\n const rank: Record<WebhookVerificationFailureReason, number> = {\n missing_signature: 0,\n malformed_signature: 1,\n timestamp_out_of_tolerance: 2,\n signature_mismatch: 3,\n }\n return rank[candidate] > rank[current] ? candidate : current\n}\n\n/** Case-insensitive header lookup over `Headers` or a plain object. */\nfunction getHeader(\n headers: Headers | Record<string, string | string[] | undefined>,\n name: string\n): string | undefined {\n if (typeof Headers !== 'undefined' && headers instanceof Headers) {\n return headers.get(name) ?? undefined\n }\n const target = name.toLowerCase()\n for (const key of Object.keys(headers)) {\n if (key.toLowerCase() !== target) continue\n const value = (headers as Record<string, string | string[] | undefined>)[key]\n if (Array.isArray(value)) return value[0]\n return value ?? undefined\n }\n return undefined\n}\n\nfunction parseSignatureHeader(value: string): ParsedSignature | null {\n const match = SIGNATURE_FORMAT.exec(value.trim())\n if (!match) return null\n const timestamp = Number(match[1])\n if (!Number.isSafeInteger(timestamp)) return null\n return { timestamp, signature: match[2]! }\n}\n\nfunction toBytes(payload: string | Uint8Array): Uint8Array {\n return typeof payload === 'string' ? new TextEncoder().encode(payload) : payload\n}\n\n/**\n * Web Crypto types, derived from the runtime global so we don't have to pull in\n * the DOM `lib` (the SDK compiles against `lib: ES2022` + `@types/node`).\n */\ntype SubtleCryptoLike = typeof globalThis.crypto.subtle\ntype CryptoKeyLike = Awaited<ReturnType<SubtleCryptoLike['importKey']>>\n\nfunction importHmacKey(secret: string): Promise<CryptoKeyLike> {\n return getSubtle().importKey(\n 'raw',\n new TextEncoder().encode(secret),\n { name: 'HMAC', hash: 'SHA-256' },\n false,\n ['sign']\n )\n}\n\nasync function computeSignatureHex(\n key: CryptoKeyLike,\n timestamp: number,\n body: Uint8Array\n): Promise<string> {\n const prefix = new TextEncoder().encode(`${timestamp}.`)\n const message = new Uint8Array(prefix.length + body.length)\n message.set(prefix, 0)\n message.set(body, prefix.length)\n const digest = await getSubtle().sign('HMAC', key, message)\n return toHex(new Uint8Array(digest))\n}\n\nfunction toHex(bytes: Uint8Array): string {\n let hex = ''\n for (const byte of bytes) {\n hex += byte.toString(16).padStart(2, '0')\n }\n return hex\n}\n\n/**\n * Length-checked, constant-time comparison of two lowercase hex strings. Folds\n * every byte into an accumulator with XOR — never early-returns on the first\n * mismatch — so timing does not leak how much of the signature matched.\n */\nfunction constantTimeEqualHex(a: string, b: string): boolean {\n if (a.length !== b.length) return false\n let diff = 0\n for (let i = 0; i < a.length; i++) {\n diff |= a.charCodeAt(i) ^ b.charCodeAt(i)\n }\n return diff === 0\n}\n\nfunction getSubtle(): SubtleCryptoLike {\n const subtle = globalThis.crypto?.subtle\n if (!subtle) {\n throw new Error(\n 'Web Crypto (globalThis.crypto.subtle) is not available in this runtime. crawlbrulee webhook verification requires Node.js 22+, Bun, Deno, or a modern browser/edge runtime.'\n )\n }\n return subtle\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"index.cjs","names":[],"sources":["../src/config.ts","../src/errors.ts","../src/instrumentation.ts","../src/http.ts","../src/client.ts","../src/webhooks.ts"],"sourcesContent":["/**\n * Production base URL of the crawlbrulee API. Used by default when the caller\n * doesn't pass a `baseUrl` to {@link Crawlbrulee}. Local development and\n * staging callers point at their own host via that option.\n */\nexport const DEFAULT_BASE_URL = 'https://api.crawlbrulee.com'\n\n/** Default request timeout when the caller doesn't specify one (0 disables the timeout). */\nexport const DEFAULT_REQUEST_TIMEOUT_MS = 0\n\n/** Environment variable read by `Crawlbrulee.fromEnv()` to source the API key. */\nexport const ENV_API_KEY = 'CRAWLBRULEE_API_KEY'\n\n/** Identifies the SDK in the `User-Agent` header. Kept in one place for easy bumping. */\nexport const USER_AGENT = '@crawlbrulee/sdk/0.11.0 (node)'\n","import type {\n ApiErrorDetails,\n ApiErrorName,\n ApiErrorResponse,\n RateLimitErrorDetails,\n UsageAllocationErrorDetails,\n} from './types/common.js'\n\n/**\n * Base error class for every failure raised by the SDK.\n *\n * Two kinds of failures end up here:\n *\n * 1. **API errors** — the server returned a non-2xx response with a well-formed\n * JSON body. In that case `status`, `errorName` and (sometimes) `details`\n * are populated.\n * 2. **Transport errors** — the request never produced a structured response\n * (network failure, abort, timeout, non-JSON body, etc.). In that case\n * `status` may be `0` and `errorName` is one of the synthetic transport\n * names (`request_timeout`, `client_closed_request`) or `null`.\n *\n * Typed subclasses are exported for the most common cases. To branch on more\n * specific server-side errors, switch on `err.errorName` or use the\n * {@link isCrawlbruleeError} helper.\n */\nexport class CrawlbruleeError extends Error {\n /** HTTP status code; `0` for transport-level failures with no response. */\n readonly status: number\n /** The `name` field from the API error body, or `null` for transport errors. */\n readonly errorName: ApiErrorName | null\n /** Structured detail block from the API error body, if any. */\n readonly details?: ApiErrorDetails\n /** The original parsed error body, when one was received. */\n readonly response?: ApiErrorResponse\n\n constructor(\n message: string,\n options: {\n status: number\n errorName: ApiErrorName | null\n details?: ApiErrorDetails\n response?: ApiErrorResponse\n cause?: unknown\n }\n ) {\n super(message, options.cause !== undefined ? { cause: options.cause } : undefined)\n this.name = 'CrawlbruleeError'\n this.status = options.status\n this.errorName = options.errorName\n this.details = options.details\n this.response = options.response\n }\n}\n\n/** Raised for 401 / 403 responses (missing, invalid, or unauthorized API key). */\nexport class AuthenticationError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'AuthenticationError'\n }\n}\n\n/**\n * Raised for HTTP 429 responses. When the server included a `retry_after_ms`\n * hint in `details` it is surfaced directly on the instance.\n *\n * `errorName` is always the literal `'too_many_requests'` — the SDK normalizes\n * this even when the server returns a 429 with a different `name` field\n * (e.g. a CDN coalescing upstream rate limiting). The original body is still\n * available on `response`.\n */\nexport class RateLimitError extends CrawlbruleeError {\n override readonly errorName: 'too_many_requests'\n /** Suggested delay (ms) before retrying, when the server provided one. */\n readonly retryAfterMs?: number\n /** Which rate limit was tripped (e.g. `org`, `ip`), when provided. */\n readonly limitedBy?: string\n\n constructor(\n message: string,\n options: {\n status: number\n details?: RateLimitErrorDetails\n response?: ApiErrorResponse\n }\n ) {\n super(message, { ...options, errorName: 'too_many_requests', details: options.details })\n this.name = 'RateLimitError'\n this.errorName = 'too_many_requests'\n this.retryAfterMs = options.details?.retry_after_ms\n this.limitedBy = options.details?.limited_by\n }\n}\n\n/**\n * Raised when the API rejects a request because the org's plan limits would\n * be exceeded (credit limit, concurrency cap, overage hard cap, etc.).\n *\n * `errorName` is always the literal `'usage_allocation_error'`.\n */\nexport class UsageAllocationError extends CrawlbruleeError {\n override readonly errorName: 'usage_allocation_error'\n /** Specific reason the allocation was denied. */\n readonly reason: UsageAllocationErrorDetails['reason']\n /** Current usage / limit snapshot at the time of the rejection. */\n readonly usage?: UsageAllocationErrorDetails['details']\n\n constructor(\n message: string,\n options: {\n status: number\n details: UsageAllocationErrorDetails\n response?: ApiErrorResponse\n }\n ) {\n super(message, { ...options, errorName: 'usage_allocation_error' })\n this.name = 'UsageAllocationError'\n this.errorName = 'usage_allocation_error'\n this.reason = options.details.reason\n this.usage = options.details.details\n }\n}\n\n/** Raised for 4xx responses caused by an invalid request shape or arguments. */\nexport class ValidationError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'ValidationError'\n }\n}\n\n/** Raised for 404 responses (e.g. unknown async job ID). */\nexport class NotFoundError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'NotFoundError'\n }\n}\n\n/**\n * Raised for 503 responses — the API could not serve the request right now\n * (a transient infrastructure failure, not a problem with your request).\n *\n * This is **retryable**: back off and try again. In particular it is not an\n * authentication failure, so it is never a reason to rotate your API key —\n * a genuinely bad or expired key still comes back as a 401\n * (`invalid_credentials`) and raises {@link AuthenticationError}.\n */\nexport class ServiceUnavailableError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'ServiceUnavailableError'\n }\n}\n\n/**\n * Raised when a request cannot be sent or no structured response is parsed.\n *\n * The `errorName` discriminates the cause:\n * - `'request_timeout'` — the per-request timeout fired.\n * - `'client_closed_request'` — the caller's `AbortSignal` fired.\n * - `null` — generic transport failure (network error, non-JSON body, etc.).\n */\nexport class TransportError extends CrawlbruleeError {\n constructor(\n message: string,\n options: {\n status?: number\n errorName?: 'request_timeout' | 'client_closed_request' | null\n cause?: unknown\n } = {}\n ) {\n super(message, {\n status: options.status ?? 0,\n errorName: options.errorName ?? null,\n cause: options.cause,\n })\n this.name = 'TransportError'\n }\n}\n\n/** Narrow `unknown` to the SDK's base error type. */\nexport function isCrawlbruleeError(err: unknown): err is CrawlbruleeError {\n return err instanceof CrawlbruleeError\n}\n\n/**\n * Map an API error body + HTTP status to the most specific error class.\n *\n * Dispatch is **name-first**: the body's `name` field is the most reliable\n * signal of what went wrong. Status code is used only as a fallback when the\n * name is unrecognized (e.g. a CDN-synthesized error). This avoids\n * miscategorizing things like a 403 with `name: 'not_found'` as an auth error.\n *\n * Internal — used by the HTTP layer.\n */\nexport function createApiError(body: ApiErrorResponse, status: number): CrawlbruleeError {\n const { name, message, details } = body\n const response = body\n\n switch (name) {\n case 'too_many_requests':\n return new RateLimitError(message, {\n status,\n details: details?.error_name === 'too_many_requests' ? details : undefined,\n response,\n })\n\n case 'usage_allocation_error': {\n // Without a structured details block we still want a typed error — fall\n // back to a synthetic `internal_error` reason so callers can branch.\n const usageDetails: UsageAllocationErrorDetails =\n details?.error_name === 'usage_allocation_error'\n ? details\n : { error_name: 'usage_allocation_error', reason: 'internal_error' }\n return new UsageAllocationError(message, { status, details: usageDetails, response })\n }\n\n case 'invalid_credentials':\n case 'access_denied':\n return new AuthenticationError(message, { status, errorName: name, response })\n\n case 'not_found':\n return new NotFoundError(message, { status, errorName: name, response })\n\n case 'service_unavailable':\n return new ServiceUnavailableError(message, { status, errorName: name, response })\n\n case 'validation_error':\n case 'invalid_url':\n case 'url_too_long':\n case 'unsupported_url_schema':\n case 'url_credentials_not_supported':\n case 'blocked_url':\n case 'unsupported_content':\n case 'unsupported_screenshot_output':\n return new ValidationError(message, { status, errorName: name, response })\n }\n\n // Name was not specific enough — fall back to status-based heuristics, but\n // never override what the name said. A 429 with an unrecognized name still\n // promotes to RateLimitError (the class invariant normalizes errorName).\n if (status === 429) {\n return new RateLimitError(message, { status, response })\n }\n if (status === 401 || status === 403) {\n return new AuthenticationError(message, { status, errorName: name, response })\n }\n if (status === 404) {\n return new NotFoundError(message, { status, errorName: name, response })\n }\n if (status === 503) {\n return new ServiceUnavailableError(message, { status, errorName: name, response })\n }\n\n return new CrawlbruleeError(message, { status, errorName: name, details, response })\n}\n","import { DEFAULT_BASE_URL } from './config.js'\nimport { CrawlbruleeError } from './errors.js'\n\n/** Function shape compatible with the global `fetch`. */\nexport type FetchLike = typeof fetch\n\n/**\n * Centralized factory for the low-level dependencies the SDK injects into its\n * HTTP layer. Production code resolves these to the runtime's global `fetch`\n * and the burned-in production base URL; tests stub this module to swap in\n * mocks and alternate hosts.\n *\n * This is internal — it is not exported from the package's public entry. Tests\n * import it from `src/instrumentation.js` directly and use `vi.spyOn` to\n * substitute behavior.\n */\nexport const CwblInstrumentation = {\n /**\n * Resolve the `fetch` implementation the SDK should use. Throws a\n * {@link CrawlbruleeError} if the runtime does not expose a global `fetch`.\n */\n getFetch(): FetchLike {\n const g = globalThis as { fetch?: FetchLike }\n if (typeof g.fetch !== 'function') {\n throw new CrawlbruleeError(\n 'No global fetch is available in this runtime. crawlbrulee requires Node.js 22+, Bun, Deno, or a modern browser/edge runtime.',\n { status: 0, errorName: null }\n )\n }\n return g.fetch.bind(globalThis)\n },\n\n /**\n * Resolve the base URL the SDK should target. Returns the production host by\n * default; tests stub this to point at a mock origin.\n */\n getBaseUrl(): string {\n return DEFAULT_BASE_URL\n },\n}\n","import { DEFAULT_REQUEST_TIMEOUT_MS, USER_AGENT } from './config.js'\nimport { TransportError, createApiError, type CrawlbruleeError } from './errors.js'\nimport { CwblInstrumentation, type FetchLike } from './instrumentation.js'\nimport type { ApiErrorResponse } from './types/common.js'\n\n/** HTTP methods used by the SDK. */\nexport type HttpMethod = 'GET' | 'POST'\n\n/** Options the SDK accepts at construction time for the HTTP layer. */\nexport interface HttpClientOptions {\n /** API key sent as `Authorization: Bearer <key>`. */\n apiKey: string\n /**\n * Override the base URL. Trailing slashes are stripped. Falls back to\n * {@link CwblInstrumentation.getBaseUrl} (which resolves to the production\n * host) when unset.\n */\n baseUrl?: string\n /**\n * Per-request timeout in milliseconds. Pass `0` (or omit) to disable the\n * timeout entirely.\n */\n timeoutMs?: number\n}\n\n/** Per-call overrides accepted on every resource method. */\nexport interface RequestOptions {\n /** Abort the request when this signal fires. Composable with the timeout. */\n signal?: AbortSignal\n /**\n * Override the constructor-level `timeoutMs` for this call. Pass `0` to\n * disable the timeout for this call.\n */\n timeoutMs?: number\n}\n\ninterface SendArgs extends RequestOptions {\n method: HttpMethod\n path: string\n body?: unknown\n}\n\ninterface ComposedSignal {\n signal: AbortSignal | undefined\n /** Returns `true` if the abort was triggered by the per-request timeout. */\n timedOut: () => boolean\n /** Releases the timer and any listeners attached to the caller's signal. */\n cleanup: () => void\n}\n\n/**\n * Minimal `fetch`-based HTTP layer used by {@link Crawlbrulee}. Handles:\n *\n * - URL composition (joining `baseUrl` and path safely).\n * - JSON serialization and parsing.\n * - The `Authorization: Bearer …` header.\n * - Composing the caller's `AbortSignal` with an internal timeout signal. The\n * timeout covers the WHOLE request, including the response body read — not\n * just the time-to-headers.\n * - Mapping non-2xx responses to typed `CrawlbruleeError` subclasses via\n * {@link createApiError}.\n *\n * The base URL and `fetch` implementation are sourced from\n * {@link CwblInstrumentation} at construction time so tests can stub the\n * module.\n */\nexport class HttpClient {\n readonly baseUrl: string\n private readonly apiKey: string\n private readonly fetch: FetchLike\n private readonly timeoutMs: number\n\n constructor(options: HttpClientOptions) {\n this.baseUrl = stripTrailingSlash(options.baseUrl ?? CwblInstrumentation.getBaseUrl())\n this.apiKey = options.apiKey\n this.fetch = CwblInstrumentation.getFetch()\n this.timeoutMs = options.timeoutMs ?? DEFAULT_REQUEST_TIMEOUT_MS\n }\n\n /** Send a `GET` request and parse the response as `T`. */\n get<T>(path: string, options?: RequestOptions): Promise<T> {\n return this.send<T>({ method: 'GET', path, ...options })\n }\n\n /** Send a `POST` request with a JSON body and parse the response as `T`. */\n post<T>(path: string, body: unknown, options?: RequestOptions): Promise<T> {\n return this.send<T>({ method: 'POST', path, body, ...options })\n }\n\n private async send<T>(args: SendArgs): Promise<T> {\n const url = this.buildUrl(args.path)\n const headers = this.buildHeaders(args)\n const body = args.body === undefined ? undefined : JSON.stringify(args.body)\n const composed = this.composeSignal(args.signal, args.timeoutMs)\n\n try {\n let res: Response\n try {\n res = await this.fetch(url, {\n method: args.method,\n headers,\n body,\n signal: composed.signal,\n })\n } catch (cause: unknown) {\n throw abortOrNetworkError(cause, composed.timedOut(), args.timeoutMs ?? this.timeoutMs)\n }\n\n let text: string\n try {\n text = await res.text()\n } catch (cause: unknown) {\n if (isAbortError(cause)) {\n throw abortOrNetworkError(cause, composed.timedOut(), args.timeoutMs ?? this.timeoutMs)\n }\n throw new TransportError(`Failed to read response body (status ${res.status}).`, {\n status: res.status,\n cause,\n })\n }\n\n const parsed = parseJsonOrThrow(text, res.status)\n if (!res.ok) throw toApiError(parsed, res.status, text)\n return parsed as T\n } finally {\n composed.cleanup()\n }\n }\n\n private buildUrl(path: string): string {\n if (!path.startsWith('/')) {\n throw new TypeError(`crawlbrulee SDK: path must start with '/' (received '${path}')`)\n }\n return `${this.baseUrl}${path}`\n }\n\n private buildHeaders(args: SendArgs): Record<string, string> {\n const headers: Record<string, string> = {\n accept: 'application/json',\n 'user-agent': USER_AGENT,\n authorization: `Bearer ${this.apiKey}`,\n }\n if (args.body !== undefined) headers['content-type'] = 'application/json'\n return headers\n }\n\n /**\n * Build a single `AbortSignal` that fires when either the caller-supplied\n * signal aborts OR the per-request timeout elapses. The returned `cleanup`\n * callback MUST be invoked on every exit path so we don't leak timers or\n * dead listeners on long-lived caller signals.\n */\n private composeSignal(\n callerSignal: AbortSignal | undefined,\n overrideTimeoutMs: number | undefined\n ): ComposedSignal {\n const timeoutMs = overrideTimeoutMs ?? this.timeoutMs\n const hasTimeout = Number.isFinite(timeoutMs) && timeoutMs > 0\n\n if (!hasTimeout && !callerSignal) {\n return { signal: undefined, timedOut: () => false, cleanup: () => {} }\n }\n\n if (!hasTimeout) {\n return { signal: callerSignal, timedOut: () => false, cleanup: () => {} }\n }\n\n const controller = new AbortController()\n let didTimeout = false\n const timer = setTimeout(() => {\n didTimeout = true\n controller.abort(new Error('request_timeout'))\n }, timeoutMs)\n\n let onCallerAbort: (() => void) | undefined\n if (callerSignal) {\n if (callerSignal.aborted) {\n clearTimeout(timer)\n controller.abort(callerSignal.reason)\n } else {\n onCallerAbort = () => {\n clearTimeout(timer)\n controller.abort(callerSignal.reason)\n }\n callerSignal.addEventListener('abort', onCallerAbort, { once: true })\n }\n }\n\n const cleanup = () => {\n clearTimeout(timer)\n if (onCallerAbort && callerSignal) {\n callerSignal.removeEventListener('abort', onCallerAbort)\n }\n }\n\n return { signal: controller.signal, timedOut: () => didTimeout, cleanup }\n }\n}\n\nfunction stripTrailingSlash(url: string): string {\n return url.replace(/\\/+$/, '')\n}\n\nfunction isAbortError(err: unknown): boolean {\n return err instanceof Error && err.name === 'AbortError'\n}\n\nfunction abortOrNetworkError(cause: unknown, timedOut: boolean, timeoutMs: number): TransportError {\n if (isAbortError(cause)) {\n if (timedOut) {\n return new TransportError(`Request timed out after ${timeoutMs}ms.`, {\n errorName: 'request_timeout',\n cause,\n })\n }\n return new TransportError('Request aborted by caller.', {\n errorName: 'client_closed_request',\n cause,\n })\n }\n return new TransportError(formatNetworkErrorMessage(cause), { cause })\n}\n\nfunction formatNetworkErrorMessage(cause: unknown): string {\n if (cause instanceof Error) {\n return `Network error: ${cause.message}`\n }\n return 'Network error: unknown failure while sending the request.'\n}\n\nfunction parseJsonOrThrow(text: string, status: number): unknown {\n if (text === '') return {}\n try {\n return JSON.parse(text)\n } catch (cause: unknown) {\n const preview = text.length > 200 ? `${text.slice(0, 200)}…` : text\n throw new TransportError(`Unexpected non-JSON response (status ${status}): ${preview}`, {\n status,\n cause,\n })\n }\n}\n\nfunction toApiError(parsed: unknown, status: number, rawText: string): CrawlbruleeError {\n if (isApiErrorResponse(parsed)) {\n return createApiError(parsed, status)\n }\n const preview = rawText.length > 200 ? `${rawText.slice(0, 200)}…` : rawText\n return new TransportError(`HTTP ${status}: ${preview || '(empty body)'}`, { status })\n}\n\nfunction isApiErrorResponse(value: unknown): value is ApiErrorResponse {\n if (value === null || typeof value !== 'object') return false\n const v = value as Record<string, unknown>\n return typeof v.name === 'string' && typeof v.message === 'string'\n}\n","import { ENV_API_KEY } from './config.js'\nimport { CrawlbruleeError } from './errors.js'\nimport { HttpClient, type RequestOptions } from './http.js'\nimport type {\n AsyncJobStatusResponse,\n AsyncScrapeRequest,\n AsyncScrapeResponse,\n MapRequest,\n MapResponse,\n ScrapeCompleteWebhook,\n ScrapeRequest,\n ScrapeResponse,\n UsageResponse,\n WhoamiResponse,\n} from './types/index.js'\n\n/** Options accepted by the {@link Crawlbrulee} constructor. */\nexport interface CrawlbruleeOptions {\n /**\n * API key sent as `Authorization: Bearer <key>`. Required — to read from the\n * environment instead, use {@link Crawlbrulee.fromEnv}. Leading and trailing\n * whitespace is stripped; an empty / whitespace-only value is rejected.\n */\n apiKey: string\n /**\n * Override the base URL the SDK targets. Defaults to the production host\n * ({@link DEFAULT_BASE_URL}). Intended for local development and staging\n * (e.g. `https://api.<staging-domain>`) — production callers should\n * leave it unset. Trailing slashes are stripped.\n */\n baseUrl?: string\n /**\n * Per-request timeout in milliseconds. Defaults to `0` (no timeout). Set to a\n * positive number to abort slow requests; a per-call `timeoutMs` override\n * takes precedence. The timeout covers the WHOLE request, including the\n * response body read.\n */\n timeoutMs?: number\n}\n\n/**\n * Options accepted by {@link Crawlbrulee.waitForScrape}.\n *\n * Note: `timeoutMs` here is the OVERALL wait budget across all polls — not the\n * per-HTTP-request timeout. The per-poll HTTP timeout is whatever the client\n * was constructed with; if you want to bound each individual poll, construct\n * the client with `timeoutMs` set.\n */\nexport interface WaitForScrapeOptions extends Omit<RequestOptions, 'timeoutMs'> {\n /** Time between status polls in milliseconds. Default `2000`. */\n intervalMs?: number\n /**\n * Maximum total time to wait before giving up, in milliseconds. Default\n * `300_000` (5 minutes). Pass `0` to wait indefinitely.\n */\n timeoutMs?: number\n}\n\n/**\n * Official client for the crawlbrulee API.\n *\n * @example\n * ```ts\n * import { Crawlbrulee } from '@crawlbrulee/sdk'\n *\n * const crawlbrulee = new Crawlbrulee({ apiKey: 'cwbl_…' })\n * // or read CRAWLBRULEE_API_KEY from the environment:\n * const crawlbrulee = Crawlbrulee.fromEnv()\n *\n * const page = await crawlbrulee.scrape({\n * url: 'https://example.com',\n * extract: { markdown: true, links: true },\n * })\n * console.log(page.markdown)\n * ```\n */\nexport class Crawlbrulee {\n /** Resolved base URL — trailing slash already stripped. */\n readonly baseUrl: string\n /** Underlying HTTP layer. Exposed for advanced use cases (custom endpoints). */\n readonly http: HttpClient\n\n constructor(options: CrawlbruleeOptions) {\n const apiKey = options.apiKey?.trim()\n if (!apiKey) {\n throw new CrawlbruleeError(\n `Missing API key. Pass { apiKey } to Crawlbrulee or call Crawlbrulee.fromEnv() to read ${ENV_API_KEY}.`,\n { status: 0, errorName: null }\n )\n }\n this.http = new HttpClient({ apiKey, baseUrl: options.baseUrl, timeoutMs: options.timeoutMs })\n this.baseUrl = this.http.baseUrl\n }\n\n /**\n * Build a {@link Crawlbrulee} reading the API key from\n * `process.env.CRAWLBRULEE_API_KEY`. Throws if the variable is unset, empty,\n * or whitespace.\n *\n * Any other constructor option can be passed via `overrides`.\n *\n * @example\n * ```ts\n * const crawlbrulee = Crawlbrulee.fromEnv()\n * const crawlbrulee = Crawlbrulee.fromEnv({ timeoutMs: 30_000 })\n * ```\n */\n static fromEnv(overrides: Omit<CrawlbruleeOptions, 'apiKey'> = {}): Crawlbrulee {\n const apiKey = readEnv(ENV_API_KEY)\n if (!apiKey) {\n throw new CrawlbruleeError(\n `${ENV_API_KEY} is not set. Export it in your shell, or pass apiKey to new Crawlbrulee({ apiKey }).`,\n { status: 0, errorName: null }\n )\n }\n return new Crawlbrulee({ ...overrides, apiKey })\n }\n\n // ------------------------------------------------------------------\n // Scraping\n // ------------------------------------------------------------------\n\n /**\n * Scrape a URL synchronously and return the extracted content.\n *\n * The request blocks until the scrape is finished. For long-running jobs\n * (heavy JS rendering, screenshots of long pages) prefer\n * {@link Crawlbrulee.scrapeAsync} so the connection isn't held open.\n *\n * @param request — body for `POST /api/scrape`.\n * @param options — per-call timeout and abort signal.\n */\n scrape(request: ScrapeRequest, options?: RequestOptions): Promise<ScrapeResponse> {\n return this.http.post<ScrapeResponse>('/api/scrape', request, options)\n }\n\n /**\n * Submit an asynchronous scrape job and return its `job_id`. Poll the job\n * with {@link Crawlbrulee.getScrapeStatus} or wait for completion with\n * {@link Crawlbrulee.waitForScrape}.\n *\n * Pass an optional `webhook` to have the API deliver a signed\n * `scrape.complete` `POST` to your endpoint when the job finishes (see\n * {@link AsyncScrapeWebhook}). This field is async-only.\n */\n scrapeAsync(request: AsyncScrapeRequest, options?: RequestOptions): Promise<AsyncScrapeResponse> {\n return this.http.post<AsyncScrapeResponse>('/api/scrape/async', request, options)\n }\n\n /** Look up the current status of an async scrape job. */\n getScrapeStatus(jobId: string, options?: RequestOptions): Promise<AsyncJobStatusResponse> {\n assertNonEmptyJobId(jobId)\n return this.http.get<AsyncJobStatusResponse>(\n `/api/scrape/status/${encodeURIComponent(jobId)}`,\n options\n )\n }\n\n /**\n * Fetch the result of a completed async scrape job. Throws if the job is\n * still pending/running — call {@link Crawlbrulee.getScrapeStatus}\n * first, or use {@link Crawlbrulee.waitForScrape} to poll-then-fetch.\n */\n getScrapeResult(jobId: string, options?: RequestOptions): Promise<ScrapeResponse> {\n assertNonEmptyJobId(jobId)\n return this.http.get<ScrapeResponse>(`/api/scrape/result/${encodeURIComponent(jobId)}`, options)\n }\n\n /**\n * Fetch the scrape result referenced by a `scrape.complete` webhook body.\n *\n * Always verify the webhook signature with `verifyWebhookSignature` before\n * acting on it; this method trusts the parsed body it is handed.\n *\n * Behavior by `data.status`:\n * - `success` — delegates to {@link Crawlbrulee.getScrapeResult} for the\n * webhook's `job_id` and returns the parsed result.\n * - `failed` — throws a {@link CrawlbruleeError} carrying `data.error`\n * (`errorName: 'job_failed'`); there is no result to fetch.\n * - `cancelled` — throws a {@link CrawlbruleeError}\n * (`errorName: 'client_closed_request'`).\n *\n * A non-`scrape.complete` envelope throws a {@link CrawlbruleeError}\n * defensively. Any HTTP error from the underlying fetch propagates as the\n * usual typed `CrawlbruleeError` subclass.\n */\n async fetchScrapeResultFromWebhook(\n webhook: ScrapeCompleteWebhook,\n options?: RequestOptions\n ): Promise<ScrapeResponse> {\n if (webhook?.event !== 'scrape.complete') {\n throw new CrawlbruleeError(\n `Expected a 'scrape.complete' webhook but received '${String(webhook?.event)}'.`,\n { status: 0, errorName: 'validation_error' }\n )\n }\n\n const { job_id: jobId, status, error } = webhook.data\n\n switch (status) {\n case 'success':\n return this.getScrapeResult(jobId, options)\n\n case 'failed':\n throw new CrawlbruleeError(error ?? `Async scrape job ${jobId} failed.`, {\n status: 0,\n errorName: 'job_failed',\n })\n\n case 'cancelled':\n throw new CrawlbruleeError(`Async scrape job ${jobId} was cancelled.`, {\n status: 0,\n errorName: 'client_closed_request',\n })\n\n default:\n throw new CrawlbruleeError(\n `Async scrape webhook for job ${jobId} carried an unexpected status '${String(status)}'.`,\n { status: 0, errorName: 'validation_error' }\n )\n }\n }\n\n /**\n * Poll an async scrape job until it reaches a terminal state, then return\n * the scrape result.\n *\n * Throws a {@link CrawlbruleeError} when:\n * - the job ends in `failed` (`errorName: 'job_failed'`),\n * - the server reports an unexpected status (`errorName: 'job_failed'`),\n * - the overall wait exceeds `timeoutMs` (`errorName: 'request_timeout'`),\n * - the caller's `signal` aborts (`errorName: 'client_closed_request'`).\n */\n async waitForScrape(jobId: string, options: WaitForScrapeOptions = {}): Promise<ScrapeResponse> {\n assertNonEmptyJobId(jobId)\n const intervalMs = options.intervalMs ?? 2000\n const timeoutMs = options.timeoutMs ?? 300_000\n const deadline = timeoutMs > 0 ? Date.now() + timeoutMs : Number.POSITIVE_INFINITY\n\n while (true) {\n throwIfAborted(options.signal)\n if (Date.now() >= deadline) {\n throw new CrawlbruleeError(\n `Timed out after ${timeoutMs}ms waiting for async scrape job ${jobId}.`,\n { status: 0, errorName: 'request_timeout' }\n )\n }\n\n const status = await this.getScrapeStatus(jobId, { signal: options.signal })\n\n switch (status.status) {\n case 'done':\n return this.getScrapeResult(jobId, { signal: options.signal })\n\n case 'failed':\n throw new CrawlbruleeError(status.error ?? `Async scrape job ${jobId} failed.`, {\n status: 0,\n errorName: 'job_failed',\n })\n\n case 'pending':\n case 'running':\n break\n\n default:\n throw new CrawlbruleeError(\n `Async scrape job ${jobId} returned unexpected status '${String(status.status)}'.`,\n { status: 0, errorName: 'job_failed' }\n )\n }\n\n await sleep(intervalMs, options.signal)\n }\n }\n\n // ------------------------------------------------------------------\n // Mapping\n // ------------------------------------------------------------------\n\n /**\n * Build (or return a cached) site link-map for a domain. Combines sitemap\n * discovery with the freshest cached homepage scrape when available.\n */\n map(request: MapRequest, options?: RequestOptions): Promise<MapResponse> {\n return this.http.post<MapResponse>('/api/map', request, options)\n }\n\n // ------------------------------------------------------------------\n // Account\n // ------------------------------------------------------------------\n\n /**\n * Return the current billing-cycle usage: total/used/available credits,\n * used quota percentage, max concurrency, and when the cycle resets.\n */\n usage(options?: RequestOptions): Promise<UsageResponse> {\n return this.http.get<UsageResponse>('/api/usage', options)\n }\n\n /**\n * Return the organization name and identifying details of the API token\n * used to authenticate this request. Useful for confirming which key is in\n * use before performing destructive operations.\n */\n whoami(options?: RequestOptions): Promise<WhoamiResponse> {\n return this.http.get<WhoamiResponse>('/api/whoami', options)\n }\n}\n\n/**\n * Defensive read of `process.env[name]`. Guards both the absence of `process`\n * (browser / edge runtimes) and Deno's permission throw on env access without\n * `--allow-env`.\n */\nfunction readEnv(name: string): string | undefined {\n try {\n if (typeof process === 'undefined' || !process.env) return undefined\n const v = process.env[name]\n return typeof v === 'string' && v.trim().length > 0 ? v.trim() : undefined\n } catch {\n return undefined\n }\n}\n\nfunction assertNonEmptyJobId(jobId: string): void {\n if (typeof jobId !== 'string' || jobId.trim().length === 0) {\n throw new CrawlbruleeError('jobId must be a non-empty string.', {\n status: 0,\n errorName: null,\n })\n }\n}\n\nfunction throwIfAborted(signal: AbortSignal | undefined): void {\n if (signal?.aborted) {\n throw new CrawlbruleeError('Request aborted by caller.', {\n status: 0,\n errorName: 'client_closed_request',\n cause: signal.reason,\n })\n }\n}\n\nfunction sleep(ms: number, signal: AbortSignal | undefined): Promise<void> {\n return new Promise((resolve, reject) => {\n const onAbort = () => {\n clearTimeout(timer)\n reject(\n new CrawlbruleeError('Request aborted by caller.', {\n status: 0,\n errorName: 'client_closed_request',\n cause: signal?.reason,\n })\n )\n }\n const timer = setTimeout(() => {\n signal?.removeEventListener('abort', onAbort)\n resolve()\n }, ms)\n if (signal) {\n if (signal.aborted) {\n clearTimeout(timer)\n onAbort()\n return\n }\n signal.addEventListener('abort', onAbort, { once: true })\n }\n })\n}\n","/**\n * Verification for async scrape completion webhooks.\n *\n * {@link verifyWebhookSignature} validates the signature crawlbrulee attaches to\n * every webhook delivery. It is a standalone, network-free helper built on Web\n * Crypto (`globalThis.crypto.subtle`) so it runs unchanged on Node.js 22+,\n * browsers, Bun, Deno, and edge runtimes — it never touches `node:crypto`.\n */\n\n/** HTTP header carrying the primary webhook signature (always present). */\nexport const WEBHOOK_SIGNATURE_HEADER = 'X-Cwbl-Signature'\n\n/**\n * HTTP header carrying a signature produced with the previous signing secret.\n * Present only during a signing-secret rotation grace window.\n */\nexport const WEBHOOK_SIGNATURE_ROTATED_HEADER = 'X-Cwbl-Signature-Rotated'\n\n/** HTTP header carrying the unique event id, useful for delivery de-duplication. */\nexport const WEBHOOK_EVENT_ID_HEADER = 'X-Cwbl-Event-Id'\n\n/** Default replay-protection window (seconds) applied to the signed timestamp. */\nexport const DEFAULT_WEBHOOK_TOLERANCE_SECONDS = 300\n\n/** Which signature header satisfied verification. */\nexport type WebhookSignatureSource = 'primary' | 'rotated'\n\n/**\n * Why a webhook signature failed to verify.\n *\n * - `missing_signature` — neither the primary nor the rotated header was present.\n * - `malformed_signature` — a header was present but not in the expected\n * `t=<unix_seconds>,v1=<64_hex>` format.\n * - `timestamp_out_of_tolerance` — the signed timestamp drifted further from now\n * than `toleranceSeconds` allows (replay protection).\n * - `signature_mismatch` — a well-formed, in-tolerance signature did not match\n * the one computed from the payload and secret.\n */\nexport type WebhookVerificationFailureReason =\n | 'missing_signature'\n | 'malformed_signature'\n | 'timestamp_out_of_tolerance'\n | 'signature_mismatch'\n\n/** Result of {@link verifyWebhookSignature}. Verification failure is returned, not thrown. */\nexport type WebhookVerificationResult =\n | { verified: true; signedWith: WebhookSignatureSource }\n | { verified: false; reason: WebhookVerificationFailureReason }\n\n/** Options for {@link verifyWebhookSignature}. */\nexport interface VerifyWebhookSignatureOptions {\n /**\n * The raw request body, exactly as received. Pass the bytes/string the server\n * signed — do NOT re-serialize parsed JSON, or the signature will not match.\n */\n payload: string | Uint8Array\n /**\n * The request headers. Accepts a fetch `Headers` instance or a plain object\n * (Express/Node give lowercased keys, values possibly arrays). Lookup is\n * case-insensitive.\n */\n headers: Headers | Record<string, string | string[] | undefined>\n /** The current signing secret (`whsec_…`). */\n secret: string\n /**\n * Replay-protection window in seconds. Defaults to\n * {@link DEFAULT_WEBHOOK_TOLERANCE_SECONDS} (300). Pass `0` (or any falsy\n * value) to disable the timestamp check entirely.\n */\n toleranceSeconds?: number\n}\n\nconst SIGNATURE_FORMAT = /^t=(\\d+),v1=([0-9a-f]{64})$/\n\ninterface ParsedSignature {\n timestamp: number\n signature: string\n}\n\n/**\n * Verify a crawlbrulee webhook signature against the primary and rotated\n * headers.\n *\n * The signing scheme matches the backend:\n * - the signed payload is `` `${t}.${rawBody}` `` where `t` is the unix-seconds\n * integer from the header and `rawBody` is the raw request body,\n * - the signature is `HMAC-SHA256(secret, signedPayload)` as lowercase hex,\n * - the header value is `t=<unix_seconds>,v1=<64_hex>`.\n *\n * The supplied `secret` is tried against the primary header first, then the\n * rotated header (which the API emits during a signing-secret rotation grace\n * window). Whichever matches wins, and the result reports which header it was.\n *\n * This NEVER throws on a verification failure — failures are normal control\n * flow and are returned as `{ verified: false, reason }`.\n *\n * @example\n * ```ts\n * const result = await verifyWebhookSignature({\n * payload: rawBody,\n * headers: req.headers,\n * secret: process.env.CRAWLBRULEE_WEBHOOK_SECRET!,\n * })\n * if (!result.verified) return res.status(400).end()\n * ```\n */\nexport async function verifyWebhookSignature(\n options: VerifyWebhookSignatureOptions\n): Promise<WebhookVerificationResult> {\n const { payload, headers, secret } = options\n const toleranceSeconds = options.toleranceSeconds ?? DEFAULT_WEBHOOK_TOLERANCE_SECONDS\n\n const primaryHeader = getHeader(headers, WEBHOOK_SIGNATURE_HEADER)\n const rotatedHeader = getHeader(headers, WEBHOOK_SIGNATURE_ROTATED_HEADER)\n\n if (primaryHeader === undefined && rotatedHeader === undefined) {\n return { verified: false, reason: 'missing_signature' }\n }\n\n const nowSeconds = Math.floor(Date.now() / 1000)\n const body = toBytes(payload)\n const key = await importHmacKey(secret)\n\n // Track the \"best\" failure reason so the result is informative: a real\n // mismatch should win over a malformed sibling header. Order from least to\n // most specific.\n let failure: WebhookVerificationFailureReason = 'malformed_signature'\n\n for (const source of ['primary', 'rotated'] as const) {\n const raw = source === 'primary' ? primaryHeader : rotatedHeader\n if (raw === undefined) continue\n\n const parsed = parseSignatureHeader(raw)\n if (!parsed) {\n // A malformed header can't verify; keep looking at the other one.\n continue\n }\n\n if (toleranceSeconds && Math.abs(nowSeconds - parsed.timestamp) > toleranceSeconds) {\n failure = mostSpecificFailure(failure, 'timestamp_out_of_tolerance')\n continue\n }\n\n const expected = await computeSignatureHex(key, parsed.timestamp, body)\n if (constantTimeEqualHex(expected, parsed.signature)) {\n return { verified: true, signedWith: source }\n }\n\n failure = mostSpecificFailure(failure, 'signature_mismatch')\n }\n\n return { verified: false, reason: failure }\n}\n\n/**\n * Rank verification failures so the returned reason reflects the most\n * actionable problem encountered across the two headers.\n */\nfunction mostSpecificFailure(\n current: WebhookVerificationFailureReason,\n candidate: WebhookVerificationFailureReason\n): WebhookVerificationFailureReason {\n const rank: Record<WebhookVerificationFailureReason, number> = {\n missing_signature: 0,\n malformed_signature: 1,\n timestamp_out_of_tolerance: 2,\n signature_mismatch: 3,\n }\n return rank[candidate] > rank[current] ? candidate : current\n}\n\n/** Case-insensitive header lookup over `Headers` or a plain object. */\nfunction getHeader(\n headers: Headers | Record<string, string | string[] | undefined>,\n name: string\n): string | undefined {\n if (typeof Headers !== 'undefined' && headers instanceof Headers) {\n return headers.get(name) ?? undefined\n }\n const target = name.toLowerCase()\n for (const key of Object.keys(headers)) {\n if (key.toLowerCase() !== target) continue\n const value = (headers as Record<string, string | string[] | undefined>)[key]\n if (Array.isArray(value)) return value[0]\n return value ?? undefined\n }\n return undefined\n}\n\nfunction parseSignatureHeader(value: string): ParsedSignature | null {\n const match = SIGNATURE_FORMAT.exec(value.trim())\n if (!match) return null\n const timestamp = Number(match[1])\n if (!Number.isSafeInteger(timestamp)) return null\n return { timestamp, signature: match[2]! }\n}\n\nfunction toBytes(payload: string | Uint8Array): Uint8Array {\n return typeof payload === 'string' ? new TextEncoder().encode(payload) : payload\n}\n\n/**\n * Web Crypto types, derived from the runtime global so we don't have to pull in\n * the DOM `lib` (the SDK compiles against `lib: ES2022` + `@types/node`).\n */\ntype SubtleCryptoLike = typeof globalThis.crypto.subtle\ntype CryptoKeyLike = Awaited<ReturnType<SubtleCryptoLike['importKey']>>\n\nfunction importHmacKey(secret: string): Promise<CryptoKeyLike> {\n return getSubtle().importKey(\n 'raw',\n new TextEncoder().encode(secret),\n { name: 'HMAC', hash: 'SHA-256' },\n false,\n ['sign']\n )\n}\n\nasync function computeSignatureHex(\n key: CryptoKeyLike,\n timestamp: number,\n body: Uint8Array\n): Promise<string> {\n const prefix = new TextEncoder().encode(`${timestamp}.`)\n const message = new Uint8Array(prefix.length + body.length)\n message.set(prefix, 0)\n message.set(body, prefix.length)\n const digest = await getSubtle().sign('HMAC', key, message)\n return toHex(new Uint8Array(digest))\n}\n\nfunction toHex(bytes: Uint8Array): string {\n let hex = ''\n for (const byte of bytes) {\n hex += byte.toString(16).padStart(2, '0')\n }\n return hex\n}\n\n/**\n * Length-checked, constant-time comparison of two lowercase hex strings. Folds\n * every byte into an accumulator with XOR — never early-returns on the first\n * mismatch — so timing does not leak how much of the signature matched.\n */\nfunction constantTimeEqualHex(a: string, b: string): boolean {\n if (a.length !== b.length) return false\n let diff = 0\n for (let i = 0; i < a.length; i++) {\n diff |= a.charCodeAt(i) ^ b.charCodeAt(i)\n }\n return diff === 0\n}\n\nfunction getSubtle(): SubtleCryptoLike {\n const subtle = globalThis.crypto?.subtle\n if (!subtle) {\n throw new Error(\n 'Web Crypto (globalThis.crypto.subtle) is not available in this runtime. crawlbrulee webhook verification requires Node.js 22+, Bun, Deno, or a modern browser/edge runtime.'\n )\n }\n return subtle\n}\n"],"mappings":";;;;;;;;AAKA,MAAa,mBAAmB;;AAGhC,MAAa,6BAA6B;;AAG1C,MAAa,cAAc;;AAG3B,MAAa,aAAa;;;;;;;;;;;;;;;;;;;;;ACW1B,IAAa,mBAAb,cAAsC,MAAM;;CAE1C,AAAS;;CAET,AAAS;;CAET,AAAS;;CAET,AAAS;CAET,YACE,SACA,SAOA;EACA,MAAM,SAAS,QAAQ,UAAU,SAAY,EAAE,OAAO,QAAQ,MAAM,IAAI,MAAS;EACjF,KAAK,OAAO;EACZ,KAAK,SAAS,QAAQ;EACtB,KAAK,YAAY,QAAQ;EACzB,KAAK,UAAU,QAAQ;EACvB,KAAK,WAAW,QAAQ;CAC1B;AACF;;AAGA,IAAa,sBAAb,cAAyC,iBAAiB;CACxD,YACE,SACA,SACA;EACA,MAAM,SAAS,OAAO;EACtB,KAAK,OAAO;CACd;AACF;;;;;;;;;;AAWA,IAAa,iBAAb,cAAoC,iBAAiB;CACnD,AAAkB;;CAElB,AAAS;;CAET,AAAS;CAET,YACE,SACA,SAKA;EACA,MAAM,SAAS;GAAE,GAAG;GAAS,WAAW;GAAqB,SAAS,QAAQ;EAAQ,CAAC;EACvF,KAAK,OAAO;EACZ,KAAK,YAAY;EACjB,KAAK,eAAe,QAAQ,SAAS;EACrC,KAAK,YAAY,QAAQ,SAAS;CACpC;AACF;;;;;;;AAQA,IAAa,uBAAb,cAA0C,iBAAiB;CACzD,AAAkB;;CAElB,AAAS;;CAET,AAAS;CAET,YACE,SACA,SAKA;EACA,MAAM,SAAS;GAAE,GAAG;GAAS,WAAW;EAAyB,CAAC;EAClE,KAAK,OAAO;EACZ,KAAK,YAAY;EACjB,KAAK,SAAS,QAAQ,QAAQ;EAC9B,KAAK,QAAQ,QAAQ,QAAQ;CAC/B;AACF;;AAGA,IAAa,kBAAb,cAAqC,iBAAiB;CACpD,YACE,SACA,SACA;EACA,MAAM,SAAS,OAAO;EACtB,KAAK,OAAO;CACd;AACF;;AAGA,IAAa,gBAAb,cAAmC,iBAAiB;CAClD,YACE,SACA,SACA;EACA,MAAM,SAAS,OAAO;EACtB,KAAK,OAAO;CACd;AACF;;;;;;;;;;AAWA,IAAa,0BAAb,cAA6C,iBAAiB;CAC5D,YACE,SACA,SACA;EACA,MAAM,SAAS,OAAO;EACtB,KAAK,OAAO;CACd;AACF;;;;;;;;;AAUA,IAAa,iBAAb,cAAoC,iBAAiB;CACnD,YACE,SACA,UAII,CAAC,GACL;EACA,MAAM,SAAS;GACb,QAAQ,QAAQ,UAAU;GAC1B,WAAW,QAAQ,aAAa;GAChC,OAAO,QAAQ;EACjB,CAAC;EACD,KAAK,OAAO;CACd;AACF;;AAGA,SAAgB,mBAAmB,KAAuC;CACxE,OAAO,eAAe;AACxB;;;;;;;;;;;AAYA,SAAgB,eAAe,MAAwB,QAAkC;CACvF,MAAM,EAAE,MAAM,SAAS,YAAY;CACnC,MAAM,WAAW;CAEjB,QAAQ,MAAR;EACE,KAAK,qBACH,OAAO,IAAI,eAAe,SAAS;GACjC;GACA,SAAS,SAAS,eAAe,sBAAsB,UAAU;GACjE;EACF,CAAC;EAEH,KAAK,0BAA0B;GAG7B,MAAM,eACJ,SAAS,eAAe,2BACpB,UACA;IAAE,YAAY;IAA0B,QAAQ;GAAiB;GACvE,OAAO,IAAI,qBAAqB,SAAS;IAAE;IAAQ,SAAS;IAAc;GAAS,CAAC;EACtF;EAEA,KAAK;EACL,KAAK,iBACH,OAAO,IAAI,oBAAoB,SAAS;GAAE;GAAQ,WAAW;GAAM;EAAS,CAAC;EAE/E,KAAK,aACH,OAAO,IAAI,cAAc,SAAS;GAAE;GAAQ,WAAW;GAAM;EAAS,CAAC;EAEzE,KAAK,uBACH,OAAO,IAAI,wBAAwB,SAAS;GAAE;GAAQ,WAAW;GAAM;EAAS,CAAC;EAEnF,KAAK;EACL,KAAK;EACL,KAAK;EACL,KAAK;EACL,KAAK;EACL,KAAK;EACL,KAAK;EACL,KAAK,iCACH,OAAO,IAAI,gBAAgB,SAAS;GAAE;GAAQ,WAAW;GAAM;EAAS,CAAC;CAC7E;CAKA,IAAI,WAAW,KACb,OAAO,IAAI,eAAe,SAAS;EAAE;EAAQ;CAAS,CAAC;CAEzD,IAAI,WAAW,OAAO,WAAW,KAC/B,OAAO,IAAI,oBAAoB,SAAS;EAAE;EAAQ,WAAW;EAAM;CAAS,CAAC;CAE/E,IAAI,WAAW,KACb,OAAO,IAAI,cAAc,SAAS;EAAE;EAAQ,WAAW;EAAM;CAAS,CAAC;CAEzE,IAAI,WAAW,KACb,OAAO,IAAI,wBAAwB,SAAS;EAAE;EAAQ,WAAW;EAAM;CAAS,CAAC;CAGnF,OAAO,IAAI,iBAAiB,SAAS;EAAE;EAAQ,WAAW;EAAM;EAAS;CAAS,CAAC;AACrF;;;;;;;;;;;;;;AC5PA,MAAa,sBAAsB;;;;;CAKjC,WAAsB;EACpB,MAAM,IAAI;EACV,IAAI,OAAO,EAAE,UAAU,YACrB,MAAM,IAAI,iBACR,gIACA;GAAE,QAAQ;GAAG,WAAW;EAAK,CAC/B;EAEF,OAAO,EAAE,MAAM,KAAK,UAAU;CAChC;;;;;CAMA,aAAqB;EACnB,OAAO;CACT;AACF;;;;;;;;;;;;;;;;;;;;AC2BA,IAAa,aAAb,MAAwB;CACtB,AAAS;CACT,AAAiB;CACjB,AAAiB;CACjB,AAAiB;CAEjB,YAAY,SAA4B;EACtC,KAAK,UAAU,mBAAmB,QAAQ,WAAW,oBAAoB,WAAW,CAAC;EACrF,KAAK,SAAS,QAAQ;EACtB,KAAK,QAAQ,oBAAoB,SAAS;EAC1C,KAAK,YAAY,QAAQ;CAC3B;;CAGA,IAAO,MAAc,SAAsC;EACzD,OAAO,KAAK,KAAQ;GAAE,QAAQ;GAAO;GAAM,GAAG;EAAQ,CAAC;CACzD;;CAGA,KAAQ,MAAc,MAAe,SAAsC;EACzE,OAAO,KAAK,KAAQ;GAAE,QAAQ;GAAQ;GAAM;GAAM,GAAG;EAAQ,CAAC;CAChE;CAEA,MAAc,KAAQ,MAA4B;EAChD,MAAM,MAAM,KAAK,SAAS,KAAK,IAAI;EACnC,MAAM,UAAU,KAAK,aAAa,IAAI;EACtC,MAAM,OAAO,KAAK,SAAS,SAAY,SAAY,KAAK,UAAU,KAAK,IAAI;EAC3E,MAAM,WAAW,KAAK,cAAc,KAAK,QAAQ,KAAK,SAAS;EAE/D,IAAI;GACF,IAAI;GACJ,IAAI;IACF,MAAM,MAAM,KAAK,MAAM,KAAK;KAC1B,QAAQ,KAAK;KACb;KACA;KACA,QAAQ,SAAS;IACnB,CAAC;GACH,SAAS,OAAgB;IACvB,MAAM,oBAAoB,OAAO,SAAS,SAAS,GAAG,KAAK,aAAa,KAAK,SAAS;GACxF;GAEA,IAAI;GACJ,IAAI;IACF,OAAO,MAAM,IAAI,KAAK;GACxB,SAAS,OAAgB;IACvB,IAAI,aAAa,KAAK,GACpB,MAAM,oBAAoB,OAAO,SAAS,SAAS,GAAG,KAAK,aAAa,KAAK,SAAS;IAExF,MAAM,IAAI,eAAe,wCAAwC,IAAI,OAAO,KAAK;KAC/E,QAAQ,IAAI;KACZ;IACF,CAAC;GACH;GAEA,MAAM,SAAS,iBAAiB,MAAM,IAAI,MAAM;GAChD,IAAI,CAAC,IAAI,IAAI,MAAM,WAAW,QAAQ,IAAI,QAAQ,IAAI;GACtD,OAAO;EACT,UAAU;GACR,SAAS,QAAQ;EACnB;CACF;CAEA,AAAQ,SAAS,MAAsB;EACrC,IAAI,CAAC,KAAK,WAAW,GAAG,GACtB,MAAM,IAAI,UAAU,wDAAwD,KAAK,GAAG;EAEtF,OAAO,GAAG,KAAK,UAAU;CAC3B;CAEA,AAAQ,aAAa,MAAwC;EAC3D,MAAM,UAAkC;GACtC,QAAQ;GACR,cAAc;GACd,eAAe,UAAU,KAAK;EAChC;EACA,IAAI,KAAK,SAAS,QAAW,QAAQ,kBAAkB;EACvD,OAAO;CACT;;;;;;;CAQA,AAAQ,cACN,cACA,mBACgB;EAChB,MAAM,YAAY,qBAAqB,KAAK;EAC5C,MAAM,aAAa,OAAO,SAAS,SAAS,KAAK,YAAY;EAE7D,IAAI,CAAC,cAAc,CAAC,cAClB,OAAO;GAAE,QAAQ;GAAW,gBAAgB;GAAO,eAAe,CAAC;EAAE;EAGvE,IAAI,CAAC,YACH,OAAO;GAAE,QAAQ;GAAc,gBAAgB;GAAO,eAAe,CAAC;EAAE;EAG1E,MAAM,aAAa,IAAI,gBAAgB;EACvC,IAAI,aAAa;EACjB,MAAM,QAAQ,iBAAiB;GAC7B,aAAa;GACb,WAAW,sBAAM,IAAI,MAAM,iBAAiB,CAAC;EAC/C,GAAG,SAAS;EAEZ,IAAI;EACJ,IAAI,cACF,IAAI,aAAa,SAAS;GACxB,aAAa,KAAK;GAClB,WAAW,MAAM,aAAa,MAAM;EACtC,OAAO;GACL,sBAAsB;IACpB,aAAa,KAAK;IAClB,WAAW,MAAM,aAAa,MAAM;GACtC;GACA,aAAa,iBAAiB,SAAS,eAAe,EAAE,MAAM,KAAK,CAAC;EACtE;EAGF,MAAM,gBAAgB;GACpB,aAAa,KAAK;GAClB,IAAI,iBAAiB,cACnB,aAAa,oBAAoB,SAAS,aAAa;EAE3D;EAEA,OAAO;GAAE,QAAQ,WAAW;GAAQ,gBAAgB;GAAY;EAAQ;CAC1E;AACF;AAEA,SAAS,mBAAmB,KAAqB;CAC/C,OAAO,IAAI,QAAQ,QAAQ,EAAE;AAC/B;AAEA,SAAS,aAAa,KAAuB;CAC3C,OAAO,eAAe,SAAS,IAAI,SAAS;AAC9C;AAEA,SAAS,oBAAoB,OAAgB,UAAmB,WAAmC;CACjG,IAAI,aAAa,KAAK,GAAG;EACvB,IAAI,UACF,OAAO,IAAI,eAAe,2BAA2B,UAAU,MAAM;GACnE,WAAW;GACX;EACF,CAAC;EAEH,OAAO,IAAI,eAAe,8BAA8B;GACtD,WAAW;GACX;EACF,CAAC;CACH;CACA,OAAO,IAAI,eAAe,0BAA0B,KAAK,GAAG,EAAE,MAAM,CAAC;AACvE;AAEA,SAAS,0BAA0B,OAAwB;CACzD,IAAI,iBAAiB,OACnB,OAAO,kBAAkB,MAAM;CAEjC,OAAO;AACT;AAEA,SAAS,iBAAiB,MAAc,QAAyB;CAC/D,IAAI,SAAS,IAAI,OAAO,CAAC;CACzB,IAAI;EACF,OAAO,KAAK,MAAM,IAAI;CACxB,SAAS,OAAgB;EAEvB,MAAM,IAAI,eAAe,wCAAwC,OAAO,KADxD,KAAK,SAAS,MAAM,GAAG,KAAK,MAAM,GAAG,GAAG,EAAE,KAAK,QACyB;GACtF;GACA;EACF,CAAC;CACH;AACF;AAEA,SAAS,WAAW,QAAiB,QAAgB,SAAmC;CACtF,IAAI,mBAAmB,MAAM,GAC3B,OAAO,eAAe,QAAQ,MAAM;CAGtC,OAAO,IAAI,eAAe,QAAQ,OAAO,KADzB,QAAQ,SAAS,MAAM,GAAG,QAAQ,MAAM,GAAG,GAAG,EAAE,KAAK,YACb,kBAAkB,EAAE,OAAO,CAAC;AACtF;AAEA,SAAS,mBAAmB,OAA2C;CACrE,IAAI,UAAU,QAAQ,OAAO,UAAU,UAAU,OAAO;CACxD,MAAM,IAAI;CACV,OAAO,OAAO,EAAE,SAAS,YAAY,OAAO,EAAE,YAAY;AAC5D;;;;;;;;;;;;;;;;;;;;;;ACnLA,IAAa,cAAb,MAAa,YAAY;;CAEvB,AAAS;;CAET,AAAS;CAET,YAAY,SAA6B;EACvC,MAAM,SAAS,QAAQ,QAAQ,KAAK;EACpC,IAAI,CAAC,QACH,MAAM,IAAI,iBACR,yFAAyF,YAAY,IACrG;GAAE,QAAQ;GAAG,WAAW;EAAK,CAC/B;EAEF,KAAK,OAAO,IAAI,WAAW;GAAE;GAAQ,SAAS,QAAQ;GAAS,WAAW,QAAQ;EAAU,CAAC;EAC7F,KAAK,UAAU,KAAK,KAAK;CAC3B;;;;;;;;;;;;;;CAeA,OAAO,QAAQ,YAAgD,CAAC,GAAgB;EAC9E,MAAM,SAAS,QAAQ,WAAW;EAClC,IAAI,CAAC,QACH,MAAM,IAAI,iBACR,GAAG,YAAY,uFACf;GAAE,QAAQ;GAAG,WAAW;EAAK,CAC/B;EAEF,OAAO,IAAI,YAAY;GAAE,GAAG;GAAW;EAAO,CAAC;CACjD;;;;;;;;;;;CAgBA,OAAO,SAAwB,SAAmD;EAChF,OAAO,KAAK,KAAK,KAAqB,eAAe,SAAS,OAAO;CACvE;;;;;;;;;;CAWA,YAAY,SAA6B,SAAwD;EAC/F,OAAO,KAAK,KAAK,KAA0B,qBAAqB,SAAS,OAAO;CAClF;;CAGA,gBAAgB,OAAe,SAA2D;EACxF,oBAAoB,KAAK;EACzB,OAAO,KAAK,KAAK,IACf,sBAAsB,mBAAmB,KAAK,KAC9C,OACF;CACF;;;;;;CAOA,gBAAgB,OAAe,SAAmD;EAChF,oBAAoB,KAAK;EACzB,OAAO,KAAK,KAAK,IAAoB,sBAAsB,mBAAmB,KAAK,KAAK,OAAO;CACjG;;;;;;;;;;;;;;;;;;;CAoBA,MAAM,6BACJ,SACA,SACyB;EACzB,IAAI,SAAS,UAAU,mBACrB,MAAM,IAAI,iBACR,sDAAsD,OAAO,SAAS,KAAK,EAAE,KAC7E;GAAE,QAAQ;GAAG,WAAW;EAAmB,CAC7C;EAGF,MAAM,EAAE,QAAQ,OAAO,QAAQ,UAAU,QAAQ;EAEjD,QAAQ,QAAR;GACE,KAAK,WACH,OAAO,KAAK,gBAAgB,OAAO,OAAO;GAE5C,KAAK,UACH,MAAM,IAAI,iBAAiB,SAAS,oBAAoB,MAAM,WAAW;IACvE,QAAQ;IACR,WAAW;GACb,CAAC;GAEH,KAAK,aACH,MAAM,IAAI,iBAAiB,oBAAoB,MAAM,kBAAkB;IACrE,QAAQ;IACR,WAAW;GACb,CAAC;GAEH,SACE,MAAM,IAAI,iBACR,gCAAgC,MAAM,iCAAiC,OAAO,MAAM,EAAE,KACtF;IAAE,QAAQ;IAAG,WAAW;GAAmB,CAC7C;EACJ;CACF;;;;;;;;;;;CAYA,MAAM,cAAc,OAAe,UAAgC,CAAC,GAA4B;EAC9F,oBAAoB,KAAK;EACzB,MAAM,aAAa,QAAQ,cAAc;EACzC,MAAM,YAAY,QAAQ,aAAa;EACvC,MAAM,WAAW,YAAY,IAAI,KAAK,IAAI,IAAI,YAAY,OAAO;EAEjE,OAAO,MAAM;GACX,eAAe,QAAQ,MAAM;GAC7B,IAAI,KAAK,IAAI,KAAK,UAChB,MAAM,IAAI,iBACR,mBAAmB,UAAU,kCAAkC,MAAM,IACrE;IAAE,QAAQ;IAAG,WAAW;GAAkB,CAC5C;GAGF,MAAM,SAAS,MAAM,KAAK,gBAAgB,OAAO,EAAE,QAAQ,QAAQ,OAAO,CAAC;GAE3E,QAAQ,OAAO,QAAf;IACE,KAAK,QACH,OAAO,KAAK,gBAAgB,OAAO,EAAE,QAAQ,QAAQ,OAAO,CAAC;IAE/D,KAAK,UACH,MAAM,IAAI,iBAAiB,OAAO,SAAS,oBAAoB,MAAM,WAAW;KAC9E,QAAQ;KACR,WAAW;IACb,CAAC;IAEH,KAAK;IACL,KAAK,WACH;IAEF,SACE,MAAM,IAAI,iBACR,oBAAoB,MAAM,+BAA+B,OAAO,OAAO,MAAM,EAAE,KAC/E;KAAE,QAAQ;KAAG,WAAW;IAAa,CACvC;GACJ;GAEA,MAAM,MAAM,YAAY,QAAQ,MAAM;EACxC;CACF;;;;;CAUA,IAAI,SAAqB,SAAgD;EACvE,OAAO,KAAK,KAAK,KAAkB,YAAY,SAAS,OAAO;CACjE;;;;;CAUA,MAAM,SAAkD;EACtD,OAAO,KAAK,KAAK,IAAmB,cAAc,OAAO;CAC3D;;;;;;CAOA,OAAO,SAAmD;EACxD,OAAO,KAAK,KAAK,IAAoB,eAAe,OAAO;CAC7D;AACF;;;;;;AAOA,SAAS,QAAQ,MAAkC;CACjD,IAAI;EACF,IAAI,OAAO,YAAY,eAAe,CAAC,QAAQ,KAAK,OAAO;EAC3D,MAAM,IAAI,QAAQ,IAAI;EACtB,OAAO,OAAO,MAAM,YAAY,EAAE,KAAK,CAAC,CAAC,SAAS,IAAI,EAAE,KAAK,IAAI;CACnE,QAAQ;EACN;CACF;AACF;AAEA,SAAS,oBAAoB,OAAqB;CAChD,IAAI,OAAO,UAAU,YAAY,MAAM,KAAK,CAAC,CAAC,WAAW,GACvD,MAAM,IAAI,iBAAiB,qCAAqC;EAC9D,QAAQ;EACR,WAAW;CACb,CAAC;AAEL;AAEA,SAAS,eAAe,QAAuC;CAC7D,IAAI,QAAQ,SACV,MAAM,IAAI,iBAAiB,8BAA8B;EACvD,QAAQ;EACR,WAAW;EACX,OAAO,OAAO;CAChB,CAAC;AAEL;AAEA,SAAS,MAAM,IAAY,QAAgD;CACzE,OAAO,IAAI,SAAS,SAAS,WAAW;EACtC,MAAM,gBAAgB;GACpB,aAAa,KAAK;GAClB,OACE,IAAI,iBAAiB,8BAA8B;IACjD,QAAQ;IACR,WAAW;IACX,OAAO,QAAQ;GACjB,CAAC,CACH;EACF;EACA,MAAM,QAAQ,iBAAiB;GAC7B,QAAQ,oBAAoB,SAAS,OAAO;GAC5C,QAAQ;EACV,GAAG,EAAE;EACL,IAAI,QAAQ;GACV,IAAI,OAAO,SAAS;IAClB,aAAa,KAAK;IAClB,QAAQ;IACR;GACF;GACA,OAAO,iBAAiB,SAAS,SAAS,EAAE,MAAM,KAAK,CAAC;EAC1D;CACF,CAAC;AACH;;;;;;;;;;;;;ACtWA,MAAa,2BAA2B;;;;;AAMxC,MAAa,mCAAmC;;AAGhD,MAAa,0BAA0B;;AAGvC,MAAa,oCAAoC;AAkDjD,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkCzB,eAAsB,uBACpB,SACoC;CACpC,MAAM,EAAE,SAAS,SAAS,WAAW;CACrC,MAAM,mBAAmB,QAAQ;CAEjC,MAAM,gBAAgB,UAAU,SAAS,wBAAwB;CACjE,MAAM,gBAAgB,UAAU,SAAS,gCAAgC;CAEzE,IAAI,kBAAkB,UAAa,kBAAkB,QACnD,OAAO;EAAE,UAAU;EAAO,QAAQ;CAAoB;CAGxD,MAAM,aAAa,KAAK,MAAM,KAAK,IAAI,IAAI,GAAI;CAC/C,MAAM,OAAO,QAAQ,OAAO;CAC5B,MAAM,MAAM,MAAM,cAAc,MAAM;CAKtC,IAAI,UAA4C;CAEhD,KAAK,MAAM,UAAU,CAAC,WAAW,SAAS,GAAY;EACpD,MAAM,MAAM,WAAW,YAAY,gBAAgB;EACnD,IAAI,QAAQ,QAAW;EAEvB,MAAM,SAAS,qBAAqB,GAAG;EACvC,IAAI,CAAC,QAEH;EAGF,IAAI,oBAAoB,KAAK,IAAI,aAAa,OAAO,SAAS,IAAI,kBAAkB;GAClF,UAAU,oBAAoB,SAAS,4BAA4B;GACnE;EACF;EAGA,IAAI,qBAAqB,MADF,oBAAoB,KAAK,OAAO,WAAW,IAAI,GACnC,OAAO,SAAS,GACjD,OAAO;GAAE,UAAU;GAAM,YAAY;EAAO;EAG9C,UAAU,oBAAoB,SAAS,oBAAoB;CAC7D;CAEA,OAAO;EAAE,UAAU;EAAO,QAAQ;CAAQ;AAC5C;;;;;AAMA,SAAS,oBACP,SACA,WACkC;CAClC,MAAM,OAAyD;EAC7D,mBAAmB;EACnB,qBAAqB;EACrB,4BAA4B;EAC5B,oBAAoB;CACtB;CACA,OAAO,KAAK,aAAa,KAAK,WAAW,YAAY;AACvD;;AAGA,SAAS,UACP,SACA,MACoB;CACpB,IAAI,OAAO,YAAY,eAAe,mBAAmB,SACvD,OAAO,QAAQ,IAAI,IAAI,KAAK;CAE9B,MAAM,SAAS,KAAK,YAAY;CAChC,KAAK,MAAM,OAAO,OAAO,KAAK,OAAO,GAAG;EACtC,IAAI,IAAI,YAAY,MAAM,QAAQ;EAClC,MAAM,QAAS,QAA0D;EACzE,IAAI,MAAM,QAAQ,KAAK,GAAG,OAAO,MAAM;EACvC,OAAO,SAAS;CAClB;AAEF;AAEA,SAAS,qBAAqB,OAAuC;CACnE,MAAM,QAAQ,iBAAiB,KAAK,MAAM,KAAK,CAAC;CAChD,IAAI,CAAC,OAAO,OAAO;CACnB,MAAM,YAAY,OAAO,MAAM,EAAE;CACjC,IAAI,CAAC,OAAO,cAAc,SAAS,GAAG,OAAO;CAC7C,OAAO;EAAE;EAAW,WAAW,MAAM;CAAI;AAC3C;AAEA,SAAS,QAAQ,SAA0C;CACzD,OAAO,OAAO,YAAY,WAAW,IAAI,YAAY,CAAC,CAAC,OAAO,OAAO,IAAI;AAC3E;AASA,SAAS,cAAc,QAAwC;CAC7D,OAAO,UAAU,CAAC,CAAC,UACjB,OACA,IAAI,YAAY,CAAC,CAAC,OAAO,MAAM,GAC/B;EAAE,MAAM;EAAQ,MAAM;CAAU,GAChC,OACA,CAAC,MAAM,CACT;AACF;AAEA,eAAe,oBACb,KACA,WACA,MACiB;CACjB,MAAM,SAAS,IAAI,YAAY,CAAC,CAAC,OAAO,GAAG,UAAU,EAAE;CACvD,MAAM,UAAU,IAAI,WAAW,OAAO,SAAS,KAAK,MAAM;CAC1D,QAAQ,IAAI,QAAQ,CAAC;CACrB,QAAQ,IAAI,MAAM,OAAO,MAAM;CAC/B,MAAM,SAAS,MAAM,UAAU,CAAC,CAAC,KAAK,QAAQ,KAAK,OAAO;CAC1D,OAAO,MAAM,IAAI,WAAW,MAAM,CAAC;AACrC;AAEA,SAAS,MAAM,OAA2B;CACxC,IAAI,MAAM;CACV,KAAK,MAAM,QAAQ,OACjB,OAAO,KAAK,SAAS,EAAE,CAAC,CAAC,SAAS,GAAG,GAAG;CAE1C,OAAO;AACT;;;;;;AAOA,SAAS,qBAAqB,GAAW,GAAoB;CAC3D,IAAI,EAAE,WAAW,EAAE,QAAQ,OAAO;CAClC,IAAI,OAAO;CACX,KAAK,IAAI,IAAI,GAAG,IAAI,EAAE,QAAQ,KAC5B,QAAQ,EAAE,WAAW,CAAC,IAAI,EAAE,WAAW,CAAC;CAE1C,OAAO,SAAS;AAClB;AAEA,SAAS,YAA8B;CACrC,MAAM,SAAS,WAAW,QAAQ;CAClC,IAAI,CAAC,QACH,MAAM,IAAI,MACR,6KACF;CAEF,OAAO;AACT"}
package/dist/index.d.cts CHANGED
@@ -159,7 +159,7 @@ interface ScreenshotViewport {
159
159
  height: number;
160
160
  /**
161
161
  * Device pixel ratio (e.g. 2 for retina). Fractional values are allowed;
162
- * must be in `[1, 4]`. Defaults to 1 server-side.
162
+ * must be in `[1, 3]`. Defaults to 1 server-side.
163
163
  */
164
164
  device_scale_factor?: number;
165
165
  }
@@ -182,9 +182,9 @@ interface ScreenshotRequest {
182
182
  * Machine-readable error names returned by the crawlbrulee API. Stable
183
183
  * identifiers — clients can switch on them.
184
184
  */
185
- type ApiErrorName = 'usage_allocation_error' | 'request_timeout' | 'invalid_url' | 'url_too_long' | 'client_closed_request' | 'reset_password_token_expired' | 'user_not_found' | 'unsupported_url_schema' | 'url_credentials_not_supported' | 'blocked_url' | 'scrape_error' | 'job_failed' | 'incorrect_login_method_used' | 'not_found' | 'invalid_credentials' | 'resource_already_exists' | 'access_denied' | 'internal_server_error' | 'too_many_requests' | 'unsupported_content' | 'unsupported_screenshot_output' | 'validation_error' | 'antibot_blocked';
185
+ type ApiErrorName = 'usage_allocation_error' | 'request_timeout' | 'invalid_url' | 'url_too_long' | 'client_closed_request' | 'reset_password_token_expired' | 'user_not_found' | 'unsupported_url_schema' | 'url_credentials_not_supported' | 'blocked_url' | 'scrape_error' | 'job_failed' | 'incorrect_login_method_used' | 'not_found' | 'invalid_credentials' | 'resource_already_exists' | 'access_denied' | 'internal_server_error' | 'service_unavailable' | 'too_many_requests' | 'unsupported_content' | 'unsupported_screenshot_output' | 'validation_error' | 'antibot_blocked';
186
186
  /** Reason a usage allocation was denied (when `error_name = usage_allocation_error`). */
187
- type UsageAllocationReason = 'credit_limit' | 'concurrency_limit' | 'overage_hard_cap' | 'duplicate_reservation' | 'internal_error';
187
+ type UsageAllocationReason = 'credit_limit' | 'concurrency_limit' | 'duplicate_reservation' | 'internal_error';
188
188
  /** Snapshot of the org's current usage at the moment the error was raised. */
189
189
  interface UsageLimitDetails {
190
190
  /** Current credit usage in the billing period. */
@@ -237,14 +237,24 @@ interface ScrapeExtract {
237
237
  cleaned_html?: boolean;
238
238
  /** Extract the page as clean Markdown. Default `false`. */
239
239
  markdown?: boolean;
240
- /** Return the raw, unprocessed HTML. Default `false`. */
240
+ /**
241
+ * Return the raw, unprocessed HTML. Default `false`. Capped at 10 000 000
242
+ * characters per page; past that the HTML is truncated at a tag boundary and
243
+ * a `raw_html_truncated` warning is returned.
244
+ */
241
245
  raw_html?: boolean;
242
- /** Extract all links found on the page. Default `false`. */
246
+ /**
247
+ * Extract the links found on the page. Default `false`. At most 30 000 links
248
+ * per page — beyond that the list is truncated and a `links_truncated`
249
+ * warning is returned.
250
+ */
243
251
  links?: boolean;
244
252
  /**
245
- * Extract all inline images found on the page. Default `false`. Image URLs
253
+ * Extract the inline images found on the page. Default `false`. Image URLs
246
254
  * preserve their query string, and document-relative `src`s are resolved
247
- * against the full page URL (browser parity) — same rules as `links`.
255
+ * against the full page URL (browser parity) — same rules as `links`. At most
256
+ * 10 000 images per page — beyond that the list is truncated and an
257
+ * `inline_images_truncated` warning is returned.
248
258
  */
249
259
  images?: boolean;
250
260
  /** Capture a screenshot. Omit to skip; set to a `ScreenshotRequest` to enable. */
@@ -425,6 +435,32 @@ interface ScrapeMetadata {
425
435
  robots?: string;
426
436
  favicon_url?: string | null;
427
437
  }
438
+ /**
439
+ * Non-error notices returned on {@link ScrapeResponse.warnings}. Stable codes —
440
+ * safe to switch on. They come in two families.
441
+ *
442
+ * Truncation — the output is there, but capped:
443
+ *
444
+ * - `screenshot_truncated` — a long page exceeded the scrolling-screenshot
445
+ * height cap.
446
+ * - `links_truncated` — the page had more than 30 000 links.
447
+ * - `inline_images_truncated` — the page had more than 10 000 inline images.
448
+ * - `raw_html_truncated` — the page body exceeded 10 000 000 characters of HTML.
449
+ * - `metadata_truncated` — the page `<head>` exceeded 2 000 000 characters of
450
+ * HTML, so some metadata may be missing.
451
+ *
452
+ * Unavailability — that section's extraction failed, so the field is omitted
453
+ * or empty while the rest of the scrape succeeded. These let you tell "the page
454
+ * had none" apart from "we couldn't read them":
455
+ *
456
+ * - `links_unavailable` — link extraction failed.
457
+ * - `inline_images_unavailable` — image extraction failed.
458
+ * - `metadata_unavailable` — metadata extraction failed.
459
+ *
460
+ * The page body has no such code: if it can't be extracted the scrape fails
461
+ * outright rather than returning a hollow `200`, and isn't billed.
462
+ */
463
+ type ScrapeWarningCode = 'screenshot_truncated' | 'links_truncated' | 'inline_images_truncated' | 'raw_html_truncated' | 'metadata_truncated' | 'links_unavailable' | 'inline_images_unavailable' | 'metadata_unavailable';
428
464
  /** Successful response from `POST /api/scrape` and `GET /api/scrape/result/:jobId`. */
429
465
  interface ScrapeResponse {
430
466
  /**
@@ -446,7 +482,10 @@ interface ScrapeResponse {
446
482
  markdown?: string;
447
483
  /** Cleaned HTML of the main page content (when `extract.cleaned_html`). */
448
484
  cleaned_html?: string;
449
- /** Raw, unprocessed HTML (when `extract.raw_html`). */
485
+ /**
486
+ * Raw, unprocessed HTML (when `extract.raw_html`). Truncated at a tag
487
+ * boundary past 10 000 000 characters, with a `raw_html_truncated` warning.
488
+ */
450
489
  raw_html?: string;
451
490
  /** Inline images discovered on the page (when `extract.images`). */
452
491
  images?: PageInlineImage[];
@@ -465,12 +504,20 @@ interface ScrapeResponse {
465
504
  /** Extracted page metadata (when `extract.metadata`, on by default). */
466
505
  metadata?: ScrapeMetadata;
467
506
  /**
468
- * Non-error notices about the scrape (e.g. `screenshot_truncated` when a
469
- * long page exceeded the scrolling-screenshot height cap). Stable codes
470
- * safe to switch on. Currently surfaced only on fresh scrapes; cache hits
471
- * omit warnings.
507
+ * Non-error notices about the scrape an output was capped (`*_truncated`)
508
+ * or could not be extracted (`*_unavailable`); see {@link ScrapeWarningCode}
509
+ * for what each one means. The codes are stable and safe to switch on, but
510
+ * the array stays widened to `string` so a newly introduced code doesn't
511
+ * break your build.
512
+ *
513
+ * Warnings are stored with the result, so cache hits and async result
514
+ * fetches carry them too, filtered to the outputs you requested —
515
+ * `raw_html_truncated` always surfaces, since a truncated body also feeds
516
+ * `markdown` and `cleaned_html`. The `*_unavailable` codes only ever reach
517
+ * the request whose own scrape degraded: a cached result missing a field you
518
+ * asked for is re-scraped rather than served.
472
519
  */
473
- warnings?: string[];
520
+ warnings?: (ScrapeWarningCode | (string & {}))[];
474
521
  /**
475
522
  * Response envelope metadata. Carries `usage` (credits charged, resolved
476
523
  * proxy tier, and whether the result was a cache hit).
@@ -695,7 +742,7 @@ interface CrawlbruleeOptions {
695
742
  /**
696
743
  * Override the base URL the SDK targets. Defaults to the production host
697
744
  * ({@link DEFAULT_BASE_URL}). Intended for local development and staging
698
- * (e.g. `https://api.staging.crawlbrulee.com`) — production callers should
745
+ * (e.g. `https://api.<staging-domain>`) — production callers should
699
746
  * leave it unset. Trailing slashes are stripped.
700
747
  */
701
748
  baseUrl?: string;
@@ -937,6 +984,22 @@ declare class NotFoundError extends CrawlbruleeError {
937
984
  response?: ApiErrorResponse;
938
985
  });
939
986
  }
987
+ /**
988
+ * Raised for 503 responses — the API could not serve the request right now
989
+ * (a transient infrastructure failure, not a problem with your request).
990
+ *
991
+ * This is **retryable**: back off and try again. In particular it is not an
992
+ * authentication failure, so it is never a reason to rotate your API key —
993
+ * a genuinely bad or expired key still comes back as a 401
994
+ * (`invalid_credentials`) and raises {@link AuthenticationError}.
995
+ */
996
+ declare class ServiceUnavailableError extends CrawlbruleeError {
997
+ constructor(message: string, options: {
998
+ status: number;
999
+ errorName: ApiErrorName;
1000
+ response?: ApiErrorResponse;
1001
+ });
1002
+ }
940
1003
  /**
941
1004
  * Raised when a request cannot be sent or no structured response is parsed.
942
1005
  *
@@ -1060,5 +1123,5 @@ interface VerifyWebhookSignatureOptions {
1060
1123
  */
1061
1124
  declare function verifyWebhookSignature(options: VerifyWebhookSignatureOptions): Promise<WebhookVerificationResult>;
1062
1125
  //#endregion
1063
- export { ApiErrorDetails, ApiErrorName, ApiErrorResponse, AsyncJobStatus, AsyncJobStatusResponse, AsyncScrapeRequest, AsyncScrapeResponse, AsyncScrapeWebhook, AuthenticationError, Crawlbrulee, CrawlbruleeError, type CrawlbruleeOptions, DEFAULT_BASE_URL, DEFAULT_REQUEST_TIMEOUT_MS, DEFAULT_WEBHOOK_TOLERANCE_SECONDS, ENV_API_KEY, type HttpMethod, MapCache, MapLinkItem, MapLocation, MapPagination, MapRequest, MapResponse, MapResponseMeta, MapTruncation, MapTypes, NotFoundError, PageInlineImage, PageLink, ProxyTier, RateLimitError, RateLimitErrorDetails, type RequestOptions, ResolvedProxyTier, ResponseMeta, ScrapeCache, ScrapeCompleteWebhook, ScrapeCompleteWebhookData, ScrapeExtract, ScrapeLocation, ScrapeMetadata, ScrapeRequest, ScrapeResponse, ScrapeWebhookStatus, ScreenshotAfterAction, ScreenshotBeforeAction, ScreenshotCleanup, ScreenshotDeviceMode, ScreenshotProperties, ScreenshotRequest, ScreenshotResult, ScreenshotScrollAction, ScreenshotSlice, ScreenshotSliceAction, ScreenshotType, ScreenshotViewport, ScreenshotViewportInfo, ScreenshotWaitAction, TransportError, Usage, UsageAllocationError, UsageAllocationErrorDetails, UsageAllocationReason, UsageLimitDetails, UsageResponse, ValidationError, type VerifyWebhookSignatureOptions, WEBHOOK_EVENT_ID_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_SIGNATURE_ROTATED_HEADER, type WaitForScrapeOptions, type WebhookSignatureSource, type WebhookVerificationFailureReason, type WebhookVerificationResult, WhoamiResponse, isCrawlbruleeError, verifyWebhookSignature };
1126
+ export { ApiErrorDetails, ApiErrorName, ApiErrorResponse, AsyncJobStatus, AsyncJobStatusResponse, AsyncScrapeRequest, AsyncScrapeResponse, AsyncScrapeWebhook, AuthenticationError, Crawlbrulee, CrawlbruleeError, type CrawlbruleeOptions, DEFAULT_BASE_URL, DEFAULT_REQUEST_TIMEOUT_MS, DEFAULT_WEBHOOK_TOLERANCE_SECONDS, ENV_API_KEY, type HttpMethod, MapCache, MapLinkItem, MapLocation, MapPagination, MapRequest, MapResponse, MapResponseMeta, MapTruncation, MapTypes, NotFoundError, PageInlineImage, PageLink, ProxyTier, RateLimitError, RateLimitErrorDetails, type RequestOptions, ResolvedProxyTier, ResponseMeta, ScrapeCache, ScrapeCompleteWebhook, ScrapeCompleteWebhookData, ScrapeExtract, ScrapeLocation, ScrapeMetadata, ScrapeRequest, ScrapeResponse, ScrapeWarningCode, ScrapeWebhookStatus, ScreenshotAfterAction, ScreenshotBeforeAction, ScreenshotCleanup, ScreenshotDeviceMode, ScreenshotProperties, ScreenshotRequest, ScreenshotResult, ScreenshotScrollAction, ScreenshotSlice, ScreenshotSliceAction, ScreenshotType, ScreenshotViewport, ScreenshotViewportInfo, ScreenshotWaitAction, ServiceUnavailableError, TransportError, Usage, UsageAllocationError, UsageAllocationErrorDetails, UsageAllocationReason, UsageLimitDetails, UsageResponse, ValidationError, type VerifyWebhookSignatureOptions, WEBHOOK_EVENT_ID_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_SIGNATURE_ROTATED_HEADER, type WaitForScrapeOptions, type WebhookSignatureSource, type WebhookVerificationFailureReason, type WebhookVerificationResult, WhoamiResponse, isCrawlbruleeError, verifyWebhookSignature };
1064
1127
  //# sourceMappingURL=index.d.cts.map
package/dist/index.d.ts CHANGED
@@ -159,7 +159,7 @@ interface ScreenshotViewport {
159
159
  height: number;
160
160
  /**
161
161
  * Device pixel ratio (e.g. 2 for retina). Fractional values are allowed;
162
- * must be in `[1, 4]`. Defaults to 1 server-side.
162
+ * must be in `[1, 3]`. Defaults to 1 server-side.
163
163
  */
164
164
  device_scale_factor?: number;
165
165
  }
@@ -182,9 +182,9 @@ interface ScreenshotRequest {
182
182
  * Machine-readable error names returned by the crawlbrulee API. Stable
183
183
  * identifiers — clients can switch on them.
184
184
  */
185
- type ApiErrorName = 'usage_allocation_error' | 'request_timeout' | 'invalid_url' | 'url_too_long' | 'client_closed_request' | 'reset_password_token_expired' | 'user_not_found' | 'unsupported_url_schema' | 'url_credentials_not_supported' | 'blocked_url' | 'scrape_error' | 'job_failed' | 'incorrect_login_method_used' | 'not_found' | 'invalid_credentials' | 'resource_already_exists' | 'access_denied' | 'internal_server_error' | 'too_many_requests' | 'unsupported_content' | 'unsupported_screenshot_output' | 'validation_error' | 'antibot_blocked';
185
+ type ApiErrorName = 'usage_allocation_error' | 'request_timeout' | 'invalid_url' | 'url_too_long' | 'client_closed_request' | 'reset_password_token_expired' | 'user_not_found' | 'unsupported_url_schema' | 'url_credentials_not_supported' | 'blocked_url' | 'scrape_error' | 'job_failed' | 'incorrect_login_method_used' | 'not_found' | 'invalid_credentials' | 'resource_already_exists' | 'access_denied' | 'internal_server_error' | 'service_unavailable' | 'too_many_requests' | 'unsupported_content' | 'unsupported_screenshot_output' | 'validation_error' | 'antibot_blocked';
186
186
  /** Reason a usage allocation was denied (when `error_name = usage_allocation_error`). */
187
- type UsageAllocationReason = 'credit_limit' | 'concurrency_limit' | 'overage_hard_cap' | 'duplicate_reservation' | 'internal_error';
187
+ type UsageAllocationReason = 'credit_limit' | 'concurrency_limit' | 'duplicate_reservation' | 'internal_error';
188
188
  /** Snapshot of the org's current usage at the moment the error was raised. */
189
189
  interface UsageLimitDetails {
190
190
  /** Current credit usage in the billing period. */
@@ -237,14 +237,24 @@ interface ScrapeExtract {
237
237
  cleaned_html?: boolean;
238
238
  /** Extract the page as clean Markdown. Default `false`. */
239
239
  markdown?: boolean;
240
- /** Return the raw, unprocessed HTML. Default `false`. */
240
+ /**
241
+ * Return the raw, unprocessed HTML. Default `false`. Capped at 10 000 000
242
+ * characters per page; past that the HTML is truncated at a tag boundary and
243
+ * a `raw_html_truncated` warning is returned.
244
+ */
241
245
  raw_html?: boolean;
242
- /** Extract all links found on the page. Default `false`. */
246
+ /**
247
+ * Extract the links found on the page. Default `false`. At most 30 000 links
248
+ * per page — beyond that the list is truncated and a `links_truncated`
249
+ * warning is returned.
250
+ */
243
251
  links?: boolean;
244
252
  /**
245
- * Extract all inline images found on the page. Default `false`. Image URLs
253
+ * Extract the inline images found on the page. Default `false`. Image URLs
246
254
  * preserve their query string, and document-relative `src`s are resolved
247
- * against the full page URL (browser parity) — same rules as `links`.
255
+ * against the full page URL (browser parity) — same rules as `links`. At most
256
+ * 10 000 images per page — beyond that the list is truncated and an
257
+ * `inline_images_truncated` warning is returned.
248
258
  */
249
259
  images?: boolean;
250
260
  /** Capture a screenshot. Omit to skip; set to a `ScreenshotRequest` to enable. */
@@ -425,6 +435,32 @@ interface ScrapeMetadata {
425
435
  robots?: string;
426
436
  favicon_url?: string | null;
427
437
  }
438
+ /**
439
+ * Non-error notices returned on {@link ScrapeResponse.warnings}. Stable codes —
440
+ * safe to switch on. They come in two families.
441
+ *
442
+ * Truncation — the output is there, but capped:
443
+ *
444
+ * - `screenshot_truncated` — a long page exceeded the scrolling-screenshot
445
+ * height cap.
446
+ * - `links_truncated` — the page had more than 30 000 links.
447
+ * - `inline_images_truncated` — the page had more than 10 000 inline images.
448
+ * - `raw_html_truncated` — the page body exceeded 10 000 000 characters of HTML.
449
+ * - `metadata_truncated` — the page `<head>` exceeded 2 000 000 characters of
450
+ * HTML, so some metadata may be missing.
451
+ *
452
+ * Unavailability — that section's extraction failed, so the field is omitted
453
+ * or empty while the rest of the scrape succeeded. These let you tell "the page
454
+ * had none" apart from "we couldn't read them":
455
+ *
456
+ * - `links_unavailable` — link extraction failed.
457
+ * - `inline_images_unavailable` — image extraction failed.
458
+ * - `metadata_unavailable` — metadata extraction failed.
459
+ *
460
+ * The page body has no such code: if it can't be extracted the scrape fails
461
+ * outright rather than returning a hollow `200`, and isn't billed.
462
+ */
463
+ type ScrapeWarningCode = 'screenshot_truncated' | 'links_truncated' | 'inline_images_truncated' | 'raw_html_truncated' | 'metadata_truncated' | 'links_unavailable' | 'inline_images_unavailable' | 'metadata_unavailable';
428
464
  /** Successful response from `POST /api/scrape` and `GET /api/scrape/result/:jobId`. */
429
465
  interface ScrapeResponse {
430
466
  /**
@@ -446,7 +482,10 @@ interface ScrapeResponse {
446
482
  markdown?: string;
447
483
  /** Cleaned HTML of the main page content (when `extract.cleaned_html`). */
448
484
  cleaned_html?: string;
449
- /** Raw, unprocessed HTML (when `extract.raw_html`). */
485
+ /**
486
+ * Raw, unprocessed HTML (when `extract.raw_html`). Truncated at a tag
487
+ * boundary past 10 000 000 characters, with a `raw_html_truncated` warning.
488
+ */
450
489
  raw_html?: string;
451
490
  /** Inline images discovered on the page (when `extract.images`). */
452
491
  images?: PageInlineImage[];
@@ -465,12 +504,20 @@ interface ScrapeResponse {
465
504
  /** Extracted page metadata (when `extract.metadata`, on by default). */
466
505
  metadata?: ScrapeMetadata;
467
506
  /**
468
- * Non-error notices about the scrape (e.g. `screenshot_truncated` when a
469
- * long page exceeded the scrolling-screenshot height cap). Stable codes
470
- * safe to switch on. Currently surfaced only on fresh scrapes; cache hits
471
- * omit warnings.
507
+ * Non-error notices about the scrape an output was capped (`*_truncated`)
508
+ * or could not be extracted (`*_unavailable`); see {@link ScrapeWarningCode}
509
+ * for what each one means. The codes are stable and safe to switch on, but
510
+ * the array stays widened to `string` so a newly introduced code doesn't
511
+ * break your build.
512
+ *
513
+ * Warnings are stored with the result, so cache hits and async result
514
+ * fetches carry them too, filtered to the outputs you requested —
515
+ * `raw_html_truncated` always surfaces, since a truncated body also feeds
516
+ * `markdown` and `cleaned_html`. The `*_unavailable` codes only ever reach
517
+ * the request whose own scrape degraded: a cached result missing a field you
518
+ * asked for is re-scraped rather than served.
472
519
  */
473
- warnings?: string[];
520
+ warnings?: (ScrapeWarningCode | (string & {}))[];
474
521
  /**
475
522
  * Response envelope metadata. Carries `usage` (credits charged, resolved
476
523
  * proxy tier, and whether the result was a cache hit).
@@ -695,7 +742,7 @@ interface CrawlbruleeOptions {
695
742
  /**
696
743
  * Override the base URL the SDK targets. Defaults to the production host
697
744
  * ({@link DEFAULT_BASE_URL}). Intended for local development and staging
698
- * (e.g. `https://api.staging.crawlbrulee.com`) — production callers should
745
+ * (e.g. `https://api.<staging-domain>`) — production callers should
699
746
  * leave it unset. Trailing slashes are stripped.
700
747
  */
701
748
  baseUrl?: string;
@@ -937,6 +984,22 @@ declare class NotFoundError extends CrawlbruleeError {
937
984
  response?: ApiErrorResponse;
938
985
  });
939
986
  }
987
+ /**
988
+ * Raised for 503 responses — the API could not serve the request right now
989
+ * (a transient infrastructure failure, not a problem with your request).
990
+ *
991
+ * This is **retryable**: back off and try again. In particular it is not an
992
+ * authentication failure, so it is never a reason to rotate your API key —
993
+ * a genuinely bad or expired key still comes back as a 401
994
+ * (`invalid_credentials`) and raises {@link AuthenticationError}.
995
+ */
996
+ declare class ServiceUnavailableError extends CrawlbruleeError {
997
+ constructor(message: string, options: {
998
+ status: number;
999
+ errorName: ApiErrorName;
1000
+ response?: ApiErrorResponse;
1001
+ });
1002
+ }
940
1003
  /**
941
1004
  * Raised when a request cannot be sent or no structured response is parsed.
942
1005
  *
@@ -1060,5 +1123,5 @@ interface VerifyWebhookSignatureOptions {
1060
1123
  */
1061
1124
  declare function verifyWebhookSignature(options: VerifyWebhookSignatureOptions): Promise<WebhookVerificationResult>;
1062
1125
  //#endregion
1063
- export { ApiErrorDetails, ApiErrorName, ApiErrorResponse, AsyncJobStatus, AsyncJobStatusResponse, AsyncScrapeRequest, AsyncScrapeResponse, AsyncScrapeWebhook, AuthenticationError, Crawlbrulee, CrawlbruleeError, type CrawlbruleeOptions, DEFAULT_BASE_URL, DEFAULT_REQUEST_TIMEOUT_MS, DEFAULT_WEBHOOK_TOLERANCE_SECONDS, ENV_API_KEY, type HttpMethod, MapCache, MapLinkItem, MapLocation, MapPagination, MapRequest, MapResponse, MapResponseMeta, MapTruncation, MapTypes, NotFoundError, PageInlineImage, PageLink, ProxyTier, RateLimitError, RateLimitErrorDetails, type RequestOptions, ResolvedProxyTier, ResponseMeta, ScrapeCache, ScrapeCompleteWebhook, ScrapeCompleteWebhookData, ScrapeExtract, ScrapeLocation, ScrapeMetadata, ScrapeRequest, ScrapeResponse, ScrapeWebhookStatus, ScreenshotAfterAction, ScreenshotBeforeAction, ScreenshotCleanup, ScreenshotDeviceMode, ScreenshotProperties, ScreenshotRequest, ScreenshotResult, ScreenshotScrollAction, ScreenshotSlice, ScreenshotSliceAction, ScreenshotType, ScreenshotViewport, ScreenshotViewportInfo, ScreenshotWaitAction, TransportError, Usage, UsageAllocationError, UsageAllocationErrorDetails, UsageAllocationReason, UsageLimitDetails, UsageResponse, ValidationError, type VerifyWebhookSignatureOptions, WEBHOOK_EVENT_ID_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_SIGNATURE_ROTATED_HEADER, type WaitForScrapeOptions, type WebhookSignatureSource, type WebhookVerificationFailureReason, type WebhookVerificationResult, WhoamiResponse, isCrawlbruleeError, verifyWebhookSignature };
1126
+ export { ApiErrorDetails, ApiErrorName, ApiErrorResponse, AsyncJobStatus, AsyncJobStatusResponse, AsyncScrapeRequest, AsyncScrapeResponse, AsyncScrapeWebhook, AuthenticationError, Crawlbrulee, CrawlbruleeError, type CrawlbruleeOptions, DEFAULT_BASE_URL, DEFAULT_REQUEST_TIMEOUT_MS, DEFAULT_WEBHOOK_TOLERANCE_SECONDS, ENV_API_KEY, type HttpMethod, MapCache, MapLinkItem, MapLocation, MapPagination, MapRequest, MapResponse, MapResponseMeta, MapTruncation, MapTypes, NotFoundError, PageInlineImage, PageLink, ProxyTier, RateLimitError, RateLimitErrorDetails, type RequestOptions, ResolvedProxyTier, ResponseMeta, ScrapeCache, ScrapeCompleteWebhook, ScrapeCompleteWebhookData, ScrapeExtract, ScrapeLocation, ScrapeMetadata, ScrapeRequest, ScrapeResponse, ScrapeWarningCode, ScrapeWebhookStatus, ScreenshotAfterAction, ScreenshotBeforeAction, ScreenshotCleanup, ScreenshotDeviceMode, ScreenshotProperties, ScreenshotRequest, ScreenshotResult, ScreenshotScrollAction, ScreenshotSlice, ScreenshotSliceAction, ScreenshotType, ScreenshotViewport, ScreenshotViewportInfo, ScreenshotWaitAction, ServiceUnavailableError, TransportError, Usage, UsageAllocationError, UsageAllocationErrorDetails, UsageAllocationReason, UsageLimitDetails, UsageResponse, ValidationError, type VerifyWebhookSignatureOptions, WEBHOOK_EVENT_ID_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_SIGNATURE_ROTATED_HEADER, type WaitForScrapeOptions, type WebhookSignatureSource, type WebhookVerificationFailureReason, type WebhookVerificationResult, WhoamiResponse, isCrawlbruleeError, verifyWebhookSignature };
1064
1127
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ const DEFAULT_REQUEST_TIMEOUT_MS = 0;
10
10
  /** Environment variable read by `Crawlbrulee.fromEnv()` to source the API key. */
11
11
  const ENV_API_KEY = "CRAWLBRULEE_API_KEY";
12
12
  /** Identifies the SDK in the `User-Agent` header. Kept in one place for easy bumping. */
13
- const USER_AGENT = "@crawlbrulee/sdk/0.9.0 (node)";
13
+ const USER_AGENT = "@crawlbrulee/sdk/0.11.0 (node)";
14
14
 
15
15
  //#endregion
16
16
  //#region src/errors.ts
@@ -121,6 +121,21 @@ var NotFoundError = class extends CrawlbruleeError {
121
121
  }
122
122
  };
123
123
  /**
124
+ * Raised for 503 responses — the API could not serve the request right now
125
+ * (a transient infrastructure failure, not a problem with your request).
126
+ *
127
+ * This is **retryable**: back off and try again. In particular it is not an
128
+ * authentication failure, so it is never a reason to rotate your API key —
129
+ * a genuinely bad or expired key still comes back as a 401
130
+ * (`invalid_credentials`) and raises {@link AuthenticationError}.
131
+ */
132
+ var ServiceUnavailableError = class extends CrawlbruleeError {
133
+ constructor(message, options) {
134
+ super(message, options);
135
+ this.name = "ServiceUnavailableError";
136
+ }
137
+ };
138
+ /**
124
139
  * Raised when a request cannot be sent or no structured response is parsed.
125
140
  *
126
141
  * The `errorName` discriminates the cause:
@@ -183,6 +198,11 @@ function createApiError(body, status) {
183
198
  errorName: name,
184
199
  response
185
200
  });
201
+ case "service_unavailable": return new ServiceUnavailableError(message, {
202
+ status,
203
+ errorName: name,
204
+ response
205
+ });
186
206
  case "validation_error":
187
207
  case "invalid_url":
188
208
  case "url_too_long":
@@ -210,6 +230,11 @@ function createApiError(body, status) {
210
230
  errorName: name,
211
231
  response
212
232
  });
233
+ if (status === 503) return new ServiceUnavailableError(message, {
234
+ status,
235
+ errorName: name,
236
+ response
237
+ });
213
238
  return new CrawlbruleeError(message, {
214
239
  status,
215
240
  errorName: name,
@@ -846,5 +871,5 @@ function getSubtle() {
846
871
  }
847
872
 
848
873
  //#endregion
849
- export { AuthenticationError, Crawlbrulee, CrawlbruleeError, DEFAULT_BASE_URL, DEFAULT_REQUEST_TIMEOUT_MS, DEFAULT_WEBHOOK_TOLERANCE_SECONDS, ENV_API_KEY, NotFoundError, RateLimitError, TransportError, UsageAllocationError, ValidationError, WEBHOOK_EVENT_ID_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_SIGNATURE_ROTATED_HEADER, isCrawlbruleeError, verifyWebhookSignature };
874
+ export { AuthenticationError, Crawlbrulee, CrawlbruleeError, DEFAULT_BASE_URL, DEFAULT_REQUEST_TIMEOUT_MS, DEFAULT_WEBHOOK_TOLERANCE_SECONDS, ENV_API_KEY, NotFoundError, RateLimitError, ServiceUnavailableError, TransportError, UsageAllocationError, ValidationError, WEBHOOK_EVENT_ID_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_SIGNATURE_ROTATED_HEADER, isCrawlbruleeError, verifyWebhookSignature };
850
875
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":[],"sources":["../src/config.ts","../src/errors.ts","../src/instrumentation.ts","../src/http.ts","../src/client.ts","../src/webhooks.ts"],"sourcesContent":["/**\n * Production base URL of the crawlbrulee API. Used by default when the caller\n * doesn't pass a `baseUrl` to {@link Crawlbrulee}. Local development and\n * staging callers point at their own host via that option.\n */\nexport const DEFAULT_BASE_URL = 'https://api.crawlbrulee.com'\n\n/** Default request timeout when the caller doesn't specify one (0 disables the timeout). */\nexport const DEFAULT_REQUEST_TIMEOUT_MS = 0\n\n/** Environment variable read by `Crawlbrulee.fromEnv()` to source the API key. */\nexport const ENV_API_KEY = 'CRAWLBRULEE_API_KEY'\n\n/** Identifies the SDK in the `User-Agent` header. Kept in one place for easy bumping. */\nexport const USER_AGENT = '@crawlbrulee/sdk/0.9.0 (node)'\n","import type {\n ApiErrorDetails,\n ApiErrorName,\n ApiErrorResponse,\n RateLimitErrorDetails,\n UsageAllocationErrorDetails,\n} from './types/common.js'\n\n/**\n * Base error class for every failure raised by the SDK.\n *\n * Two kinds of failures end up here:\n *\n * 1. **API errors** — the server returned a non-2xx response with a well-formed\n * JSON body. In that case `status`, `errorName` and (sometimes) `details`\n * are populated.\n * 2. **Transport errors** — the request never produced a structured response\n * (network failure, abort, timeout, non-JSON body, etc.). In that case\n * `status` may be `0` and `errorName` is one of the synthetic transport\n * names (`request_timeout`, `client_closed_request`) or `null`.\n *\n * Typed subclasses are exported for the most common cases. To branch on more\n * specific server-side errors, switch on `err.errorName` or use the\n * {@link isCrawlbruleeError} helper.\n */\nexport class CrawlbruleeError extends Error {\n /** HTTP status code; `0` for transport-level failures with no response. */\n readonly status: number\n /** The `name` field from the API error body, or `null` for transport errors. */\n readonly errorName: ApiErrorName | null\n /** Structured detail block from the API error body, if any. */\n readonly details?: ApiErrorDetails\n /** The original parsed error body, when one was received. */\n readonly response?: ApiErrorResponse\n\n constructor(\n message: string,\n options: {\n status: number\n errorName: ApiErrorName | null\n details?: ApiErrorDetails\n response?: ApiErrorResponse\n cause?: unknown\n }\n ) {\n super(message, options.cause !== undefined ? { cause: options.cause } : undefined)\n this.name = 'CrawlbruleeError'\n this.status = options.status\n this.errorName = options.errorName\n this.details = options.details\n this.response = options.response\n }\n}\n\n/** Raised for 401 / 403 responses (missing, invalid, or unauthorized API key). */\nexport class AuthenticationError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'AuthenticationError'\n }\n}\n\n/**\n * Raised for HTTP 429 responses. When the server included a `retry_after_ms`\n * hint in `details` it is surfaced directly on the instance.\n *\n * `errorName` is always the literal `'too_many_requests'` — the SDK normalizes\n * this even when the server returns a 429 with a different `name` field\n * (e.g. a CDN coalescing upstream rate limiting). The original body is still\n * available on `response`.\n */\nexport class RateLimitError extends CrawlbruleeError {\n override readonly errorName: 'too_many_requests'\n /** Suggested delay (ms) before retrying, when the server provided one. */\n readonly retryAfterMs?: number\n /** Which rate limit was tripped (e.g. `org`, `ip`), when provided. */\n readonly limitedBy?: string\n\n constructor(\n message: string,\n options: {\n status: number\n details?: RateLimitErrorDetails\n response?: ApiErrorResponse\n }\n ) {\n super(message, { ...options, errorName: 'too_many_requests', details: options.details })\n this.name = 'RateLimitError'\n this.errorName = 'too_many_requests'\n this.retryAfterMs = options.details?.retry_after_ms\n this.limitedBy = options.details?.limited_by\n }\n}\n\n/**\n * Raised when the API rejects a request because the org's plan limits would\n * be exceeded (credit limit, concurrency cap, overage hard cap, etc.).\n *\n * `errorName` is always the literal `'usage_allocation_error'`.\n */\nexport class UsageAllocationError extends CrawlbruleeError {\n override readonly errorName: 'usage_allocation_error'\n /** Specific reason the allocation was denied. */\n readonly reason: UsageAllocationErrorDetails['reason']\n /** Current usage / limit snapshot at the time of the rejection. */\n readonly usage?: UsageAllocationErrorDetails['details']\n\n constructor(\n message: string,\n options: {\n status: number\n details: UsageAllocationErrorDetails\n response?: ApiErrorResponse\n }\n ) {\n super(message, { ...options, errorName: 'usage_allocation_error' })\n this.name = 'UsageAllocationError'\n this.errorName = 'usage_allocation_error'\n this.reason = options.details.reason\n this.usage = options.details.details\n }\n}\n\n/** Raised for 4xx responses caused by an invalid request shape or arguments. */\nexport class ValidationError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'ValidationError'\n }\n}\n\n/** Raised for 404 responses (e.g. unknown async job ID). */\nexport class NotFoundError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'NotFoundError'\n }\n}\n\n/**\n * Raised when a request cannot be sent or no structured response is parsed.\n *\n * The `errorName` discriminates the cause:\n * - `'request_timeout'` — the per-request timeout fired.\n * - `'client_closed_request'` — the caller's `AbortSignal` fired.\n * - `null` — generic transport failure (network error, non-JSON body, etc.).\n */\nexport class TransportError extends CrawlbruleeError {\n constructor(\n message: string,\n options: {\n status?: number\n errorName?: 'request_timeout' | 'client_closed_request' | null\n cause?: unknown\n } = {}\n ) {\n super(message, {\n status: options.status ?? 0,\n errorName: options.errorName ?? null,\n cause: options.cause,\n })\n this.name = 'TransportError'\n }\n}\n\n/** Narrow `unknown` to the SDK's base error type. */\nexport function isCrawlbruleeError(err: unknown): err is CrawlbruleeError {\n return err instanceof CrawlbruleeError\n}\n\n/**\n * Map an API error body + HTTP status to the most specific error class.\n *\n * Dispatch is **name-first**: the body's `name` field is the most reliable\n * signal of what went wrong. Status code is used only as a fallback when the\n * name is unrecognized (e.g. a CDN-synthesized error). This avoids\n * miscategorizing things like a 403 with `name: 'not_found'` as an auth error.\n *\n * Internal — used by the HTTP layer.\n */\nexport function createApiError(body: ApiErrorResponse, status: number): CrawlbruleeError {\n const { name, message, details } = body\n const response = body\n\n switch (name) {\n case 'too_many_requests':\n return new RateLimitError(message, {\n status,\n details: details?.error_name === 'too_many_requests' ? details : undefined,\n response,\n })\n\n case 'usage_allocation_error': {\n // Without a structured details block we still want a typed error — fall\n // back to a synthetic `internal_error` reason so callers can branch.\n const usageDetails: UsageAllocationErrorDetails =\n details?.error_name === 'usage_allocation_error'\n ? details\n : { error_name: 'usage_allocation_error', reason: 'internal_error' }\n return new UsageAllocationError(message, { status, details: usageDetails, response })\n }\n\n case 'invalid_credentials':\n case 'access_denied':\n return new AuthenticationError(message, { status, errorName: name, response })\n\n case 'not_found':\n return new NotFoundError(message, { status, errorName: name, response })\n\n case 'validation_error':\n case 'invalid_url':\n case 'url_too_long':\n case 'unsupported_url_schema':\n case 'url_credentials_not_supported':\n case 'blocked_url':\n case 'unsupported_content':\n case 'unsupported_screenshot_output':\n return new ValidationError(message, { status, errorName: name, response })\n }\n\n // Name was not specific enough — fall back to status-based heuristics, but\n // never override what the name said. A 429 with an unrecognized name still\n // promotes to RateLimitError (the class invariant normalizes errorName).\n if (status === 429) {\n return new RateLimitError(message, { status, response })\n }\n if (status === 401 || status === 403) {\n return new AuthenticationError(message, { status, errorName: name, response })\n }\n if (status === 404) {\n return new NotFoundError(message, { status, errorName: name, response })\n }\n\n return new CrawlbruleeError(message, { status, errorName: name, details, response })\n}\n","import { DEFAULT_BASE_URL } from './config.js'\nimport { CrawlbruleeError } from './errors.js'\n\n/** Function shape compatible with the global `fetch`. */\nexport type FetchLike = typeof fetch\n\n/**\n * Centralized factory for the low-level dependencies the SDK injects into its\n * HTTP layer. Production code resolves these to the runtime's global `fetch`\n * and the burned-in production base URL; tests stub this module to swap in\n * mocks and alternate hosts.\n *\n * This is internal — it is not exported from the package's public entry. Tests\n * import it from `src/instrumentation.js` directly and use `vi.spyOn` to\n * substitute behavior.\n */\nexport const CwblInstrumentation = {\n /**\n * Resolve the `fetch` implementation the SDK should use. Throws a\n * {@link CrawlbruleeError} if the runtime does not expose a global `fetch`.\n */\n getFetch(): FetchLike {\n const g = globalThis as { fetch?: FetchLike }\n if (typeof g.fetch !== 'function') {\n throw new CrawlbruleeError(\n 'No global fetch is available in this runtime. crawlbrulee requires Node.js 22+, Bun, Deno, or a modern browser/edge runtime.',\n { status: 0, errorName: null }\n )\n }\n return g.fetch.bind(globalThis)\n },\n\n /**\n * Resolve the base URL the SDK should target. Returns the production host by\n * default; tests stub this to point at a mock origin.\n */\n getBaseUrl(): string {\n return DEFAULT_BASE_URL\n },\n}\n","import { DEFAULT_REQUEST_TIMEOUT_MS, USER_AGENT } from './config.js'\nimport { TransportError, createApiError, type CrawlbruleeError } from './errors.js'\nimport { CwblInstrumentation, type FetchLike } from './instrumentation.js'\nimport type { ApiErrorResponse } from './types/common.js'\n\n/** HTTP methods used by the SDK. */\nexport type HttpMethod = 'GET' | 'POST'\n\n/** Options the SDK accepts at construction time for the HTTP layer. */\nexport interface HttpClientOptions {\n /** API key sent as `Authorization: Bearer <key>`. */\n apiKey: string\n /**\n * Override the base URL. Trailing slashes are stripped. Falls back to\n * {@link CwblInstrumentation.getBaseUrl} (which resolves to the production\n * host) when unset.\n */\n baseUrl?: string\n /**\n * Per-request timeout in milliseconds. Pass `0` (or omit) to disable the\n * timeout entirely.\n */\n timeoutMs?: number\n}\n\n/** Per-call overrides accepted on every resource method. */\nexport interface RequestOptions {\n /** Abort the request when this signal fires. Composable with the timeout. */\n signal?: AbortSignal\n /**\n * Override the constructor-level `timeoutMs` for this call. Pass `0` to\n * disable the timeout for this call.\n */\n timeoutMs?: number\n}\n\ninterface SendArgs extends RequestOptions {\n method: HttpMethod\n path: string\n body?: unknown\n}\n\ninterface ComposedSignal {\n signal: AbortSignal | undefined\n /** Returns `true` if the abort was triggered by the per-request timeout. */\n timedOut: () => boolean\n /** Releases the timer and any listeners attached to the caller's signal. */\n cleanup: () => void\n}\n\n/**\n * Minimal `fetch`-based HTTP layer used by {@link Crawlbrulee}. Handles:\n *\n * - URL composition (joining `baseUrl` and path safely).\n * - JSON serialization and parsing.\n * - The `Authorization: Bearer …` header.\n * - Composing the caller's `AbortSignal` with an internal timeout signal. The\n * timeout covers the WHOLE request, including the response body read — not\n * just the time-to-headers.\n * - Mapping non-2xx responses to typed `CrawlbruleeError` subclasses via\n * {@link createApiError}.\n *\n * The base URL and `fetch` implementation are sourced from\n * {@link CwblInstrumentation} at construction time so tests can stub the\n * module.\n */\nexport class HttpClient {\n readonly baseUrl: string\n private readonly apiKey: string\n private readonly fetch: FetchLike\n private readonly timeoutMs: number\n\n constructor(options: HttpClientOptions) {\n this.baseUrl = stripTrailingSlash(options.baseUrl ?? CwblInstrumentation.getBaseUrl())\n this.apiKey = options.apiKey\n this.fetch = CwblInstrumentation.getFetch()\n this.timeoutMs = options.timeoutMs ?? DEFAULT_REQUEST_TIMEOUT_MS\n }\n\n /** Send a `GET` request and parse the response as `T`. */\n get<T>(path: string, options?: RequestOptions): Promise<T> {\n return this.send<T>({ method: 'GET', path, ...options })\n }\n\n /** Send a `POST` request with a JSON body and parse the response as `T`. */\n post<T>(path: string, body: unknown, options?: RequestOptions): Promise<T> {\n return this.send<T>({ method: 'POST', path, body, ...options })\n }\n\n private async send<T>(args: SendArgs): Promise<T> {\n const url = this.buildUrl(args.path)\n const headers = this.buildHeaders(args)\n const body = args.body === undefined ? undefined : JSON.stringify(args.body)\n const composed = this.composeSignal(args.signal, args.timeoutMs)\n\n try {\n let res: Response\n try {\n res = await this.fetch(url, {\n method: args.method,\n headers,\n body,\n signal: composed.signal,\n })\n } catch (cause: unknown) {\n throw abortOrNetworkError(cause, composed.timedOut(), args.timeoutMs ?? this.timeoutMs)\n }\n\n let text: string\n try {\n text = await res.text()\n } catch (cause: unknown) {\n if (isAbortError(cause)) {\n throw abortOrNetworkError(cause, composed.timedOut(), args.timeoutMs ?? this.timeoutMs)\n }\n throw new TransportError(`Failed to read response body (status ${res.status}).`, {\n status: res.status,\n cause,\n })\n }\n\n const parsed = parseJsonOrThrow(text, res.status)\n if (!res.ok) throw toApiError(parsed, res.status, text)\n return parsed as T\n } finally {\n composed.cleanup()\n }\n }\n\n private buildUrl(path: string): string {\n if (!path.startsWith('/')) {\n throw new TypeError(`crawlbrulee SDK: path must start with '/' (received '${path}')`)\n }\n return `${this.baseUrl}${path}`\n }\n\n private buildHeaders(args: SendArgs): Record<string, string> {\n const headers: Record<string, string> = {\n accept: 'application/json',\n 'user-agent': USER_AGENT,\n authorization: `Bearer ${this.apiKey}`,\n }\n if (args.body !== undefined) headers['content-type'] = 'application/json'\n return headers\n }\n\n /**\n * Build a single `AbortSignal` that fires when either the caller-supplied\n * signal aborts OR the per-request timeout elapses. The returned `cleanup`\n * callback MUST be invoked on every exit path so we don't leak timers or\n * dead listeners on long-lived caller signals.\n */\n private composeSignal(\n callerSignal: AbortSignal | undefined,\n overrideTimeoutMs: number | undefined\n ): ComposedSignal {\n const timeoutMs = overrideTimeoutMs ?? this.timeoutMs\n const hasTimeout = Number.isFinite(timeoutMs) && timeoutMs > 0\n\n if (!hasTimeout && !callerSignal) {\n return { signal: undefined, timedOut: () => false, cleanup: () => {} }\n }\n\n if (!hasTimeout) {\n return { signal: callerSignal, timedOut: () => false, cleanup: () => {} }\n }\n\n const controller = new AbortController()\n let didTimeout = false\n const timer = setTimeout(() => {\n didTimeout = true\n controller.abort(new Error('request_timeout'))\n }, timeoutMs)\n\n let onCallerAbort: (() => void) | undefined\n if (callerSignal) {\n if (callerSignal.aborted) {\n clearTimeout(timer)\n controller.abort(callerSignal.reason)\n } else {\n onCallerAbort = () => {\n clearTimeout(timer)\n controller.abort(callerSignal.reason)\n }\n callerSignal.addEventListener('abort', onCallerAbort, { once: true })\n }\n }\n\n const cleanup = () => {\n clearTimeout(timer)\n if (onCallerAbort && callerSignal) {\n callerSignal.removeEventListener('abort', onCallerAbort)\n }\n }\n\n return { signal: controller.signal, timedOut: () => didTimeout, cleanup }\n }\n}\n\nfunction stripTrailingSlash(url: string): string {\n return url.replace(/\\/+$/, '')\n}\n\nfunction isAbortError(err: unknown): boolean {\n return err instanceof Error && err.name === 'AbortError'\n}\n\nfunction abortOrNetworkError(cause: unknown, timedOut: boolean, timeoutMs: number): TransportError {\n if (isAbortError(cause)) {\n if (timedOut) {\n return new TransportError(`Request timed out after ${timeoutMs}ms.`, {\n errorName: 'request_timeout',\n cause,\n })\n }\n return new TransportError('Request aborted by caller.', {\n errorName: 'client_closed_request',\n cause,\n })\n }\n return new TransportError(formatNetworkErrorMessage(cause), { cause })\n}\n\nfunction formatNetworkErrorMessage(cause: unknown): string {\n if (cause instanceof Error) {\n return `Network error: ${cause.message}`\n }\n return 'Network error: unknown failure while sending the request.'\n}\n\nfunction parseJsonOrThrow(text: string, status: number): unknown {\n if (text === '') return {}\n try {\n return JSON.parse(text)\n } catch (cause: unknown) {\n const preview = text.length > 200 ? `${text.slice(0, 200)}…` : text\n throw new TransportError(`Unexpected non-JSON response (status ${status}): ${preview}`, {\n status,\n cause,\n })\n }\n}\n\nfunction toApiError(parsed: unknown, status: number, rawText: string): CrawlbruleeError {\n if (isApiErrorResponse(parsed)) {\n return createApiError(parsed, status)\n }\n const preview = rawText.length > 200 ? `${rawText.slice(0, 200)}…` : rawText\n return new TransportError(`HTTP ${status}: ${preview || '(empty body)'}`, { status })\n}\n\nfunction isApiErrorResponse(value: unknown): value is ApiErrorResponse {\n if (value === null || typeof value !== 'object') return false\n const v = value as Record<string, unknown>\n return typeof v.name === 'string' && typeof v.message === 'string'\n}\n","import { ENV_API_KEY } from './config.js'\nimport { CrawlbruleeError } from './errors.js'\nimport { HttpClient, type RequestOptions } from './http.js'\nimport type {\n AsyncJobStatusResponse,\n AsyncScrapeRequest,\n AsyncScrapeResponse,\n MapRequest,\n MapResponse,\n ScrapeCompleteWebhook,\n ScrapeRequest,\n ScrapeResponse,\n UsageResponse,\n WhoamiResponse,\n} from './types/index.js'\n\n/** Options accepted by the {@link Crawlbrulee} constructor. */\nexport interface CrawlbruleeOptions {\n /**\n * API key sent as `Authorization: Bearer <key>`. Required — to read from the\n * environment instead, use {@link Crawlbrulee.fromEnv}. Leading and trailing\n * whitespace is stripped; an empty / whitespace-only value is rejected.\n */\n apiKey: string\n /**\n * Override the base URL the SDK targets. Defaults to the production host\n * ({@link DEFAULT_BASE_URL}). Intended for local development and staging\n * (e.g. `https://api.staging.crawlbrulee.com`) — production callers should\n * leave it unset. Trailing slashes are stripped.\n */\n baseUrl?: string\n /**\n * Per-request timeout in milliseconds. Defaults to `0` (no timeout). Set to a\n * positive number to abort slow requests; a per-call `timeoutMs` override\n * takes precedence. The timeout covers the WHOLE request, including the\n * response body read.\n */\n timeoutMs?: number\n}\n\n/**\n * Options accepted by {@link Crawlbrulee.waitForScrape}.\n *\n * Note: `timeoutMs` here is the OVERALL wait budget across all polls — not the\n * per-HTTP-request timeout. The per-poll HTTP timeout is whatever the client\n * was constructed with; if you want to bound each individual poll, construct\n * the client with `timeoutMs` set.\n */\nexport interface WaitForScrapeOptions extends Omit<RequestOptions, 'timeoutMs'> {\n /** Time between status polls in milliseconds. Default `2000`. */\n intervalMs?: number\n /**\n * Maximum total time to wait before giving up, in milliseconds. Default\n * `300_000` (5 minutes). Pass `0` to wait indefinitely.\n */\n timeoutMs?: number\n}\n\n/**\n * Official client for the crawlbrulee API.\n *\n * @example\n * ```ts\n * import { Crawlbrulee } from '@crawlbrulee/sdk'\n *\n * const crawlbrulee = new Crawlbrulee({ apiKey: 'cwbl_…' })\n * // or read CRAWLBRULEE_API_KEY from the environment:\n * const crawlbrulee = Crawlbrulee.fromEnv()\n *\n * const page = await crawlbrulee.scrape({\n * url: 'https://example.com',\n * extract: { markdown: true, links: true },\n * })\n * console.log(page.markdown)\n * ```\n */\nexport class Crawlbrulee {\n /** Resolved base URL — trailing slash already stripped. */\n readonly baseUrl: string\n /** Underlying HTTP layer. Exposed for advanced use cases (custom endpoints). */\n readonly http: HttpClient\n\n constructor(options: CrawlbruleeOptions) {\n const apiKey = options.apiKey?.trim()\n if (!apiKey) {\n throw new CrawlbruleeError(\n `Missing API key. Pass { apiKey } to Crawlbrulee or call Crawlbrulee.fromEnv() to read ${ENV_API_KEY}.`,\n { status: 0, errorName: null }\n )\n }\n this.http = new HttpClient({ apiKey, baseUrl: options.baseUrl, timeoutMs: options.timeoutMs })\n this.baseUrl = this.http.baseUrl\n }\n\n /**\n * Build a {@link Crawlbrulee} reading the API key from\n * `process.env.CRAWLBRULEE_API_KEY`. Throws if the variable is unset, empty,\n * or whitespace.\n *\n * Any other constructor option can be passed via `overrides`.\n *\n * @example\n * ```ts\n * const crawlbrulee = Crawlbrulee.fromEnv()\n * const crawlbrulee = Crawlbrulee.fromEnv({ timeoutMs: 30_000 })\n * ```\n */\n static fromEnv(overrides: Omit<CrawlbruleeOptions, 'apiKey'> = {}): Crawlbrulee {\n const apiKey = readEnv(ENV_API_KEY)\n if (!apiKey) {\n throw new CrawlbruleeError(\n `${ENV_API_KEY} is not set. Export it in your shell, or pass apiKey to new Crawlbrulee({ apiKey }).`,\n { status: 0, errorName: null }\n )\n }\n return new Crawlbrulee({ ...overrides, apiKey })\n }\n\n // ------------------------------------------------------------------\n // Scraping\n // ------------------------------------------------------------------\n\n /**\n * Scrape a URL synchronously and return the extracted content.\n *\n * The request blocks until the scrape is finished. For long-running jobs\n * (heavy JS rendering, screenshots of long pages) prefer\n * {@link Crawlbrulee.scrapeAsync} so the connection isn't held open.\n *\n * @param request — body for `POST /api/scrape`.\n * @param options — per-call timeout and abort signal.\n */\n scrape(request: ScrapeRequest, options?: RequestOptions): Promise<ScrapeResponse> {\n return this.http.post<ScrapeResponse>('/api/scrape', request, options)\n }\n\n /**\n * Submit an asynchronous scrape job and return its `job_id`. Poll the job\n * with {@link Crawlbrulee.getScrapeStatus} or wait for completion with\n * {@link Crawlbrulee.waitForScrape}.\n *\n * Pass an optional `webhook` to have the API deliver a signed\n * `scrape.complete` `POST` to your endpoint when the job finishes (see\n * {@link AsyncScrapeWebhook}). This field is async-only.\n */\n scrapeAsync(request: AsyncScrapeRequest, options?: RequestOptions): Promise<AsyncScrapeResponse> {\n return this.http.post<AsyncScrapeResponse>('/api/scrape/async', request, options)\n }\n\n /** Look up the current status of an async scrape job. */\n getScrapeStatus(jobId: string, options?: RequestOptions): Promise<AsyncJobStatusResponse> {\n assertNonEmptyJobId(jobId)\n return this.http.get<AsyncJobStatusResponse>(\n `/api/scrape/status/${encodeURIComponent(jobId)}`,\n options\n )\n }\n\n /**\n * Fetch the result of a completed async scrape job. Throws if the job is\n * still pending/running — call {@link Crawlbrulee.getScrapeStatus}\n * first, or use {@link Crawlbrulee.waitForScrape} to poll-then-fetch.\n */\n getScrapeResult(jobId: string, options?: RequestOptions): Promise<ScrapeResponse> {\n assertNonEmptyJobId(jobId)\n return this.http.get<ScrapeResponse>(`/api/scrape/result/${encodeURIComponent(jobId)}`, options)\n }\n\n /**\n * Fetch the scrape result referenced by a `scrape.complete` webhook body.\n *\n * Always verify the webhook signature with `verifyWebhookSignature` before\n * acting on it; this method trusts the parsed body it is handed.\n *\n * Behavior by `data.status`:\n * - `success` — delegates to {@link Crawlbrulee.getScrapeResult} for the\n * webhook's `job_id` and returns the parsed result.\n * - `failed` — throws a {@link CrawlbruleeError} carrying `data.error`\n * (`errorName: 'job_failed'`); there is no result to fetch.\n * - `cancelled` — throws a {@link CrawlbruleeError}\n * (`errorName: 'client_closed_request'`).\n *\n * A non-`scrape.complete` envelope throws a {@link CrawlbruleeError}\n * defensively. Any HTTP error from the underlying fetch propagates as the\n * usual typed `CrawlbruleeError` subclass.\n */\n async fetchScrapeResultFromWebhook(\n webhook: ScrapeCompleteWebhook,\n options?: RequestOptions\n ): Promise<ScrapeResponse> {\n if (webhook?.event !== 'scrape.complete') {\n throw new CrawlbruleeError(\n `Expected a 'scrape.complete' webhook but received '${String(webhook?.event)}'.`,\n { status: 0, errorName: 'validation_error' }\n )\n }\n\n const { job_id: jobId, status, error } = webhook.data\n\n switch (status) {\n case 'success':\n return this.getScrapeResult(jobId, options)\n\n case 'failed':\n throw new CrawlbruleeError(error ?? `Async scrape job ${jobId} failed.`, {\n status: 0,\n errorName: 'job_failed',\n })\n\n case 'cancelled':\n throw new CrawlbruleeError(`Async scrape job ${jobId} was cancelled.`, {\n status: 0,\n errorName: 'client_closed_request',\n })\n\n default:\n throw new CrawlbruleeError(\n `Async scrape webhook for job ${jobId} carried an unexpected status '${String(status)}'.`,\n { status: 0, errorName: 'validation_error' }\n )\n }\n }\n\n /**\n * Poll an async scrape job until it reaches a terminal state, then return\n * the scrape result.\n *\n * Throws a {@link CrawlbruleeError} when:\n * - the job ends in `failed` (`errorName: 'job_failed'`),\n * - the server reports an unexpected status (`errorName: 'job_failed'`),\n * - the overall wait exceeds `timeoutMs` (`errorName: 'request_timeout'`),\n * - the caller's `signal` aborts (`errorName: 'client_closed_request'`).\n */\n async waitForScrape(jobId: string, options: WaitForScrapeOptions = {}): Promise<ScrapeResponse> {\n assertNonEmptyJobId(jobId)\n const intervalMs = options.intervalMs ?? 2000\n const timeoutMs = options.timeoutMs ?? 300_000\n const deadline = timeoutMs > 0 ? Date.now() + timeoutMs : Number.POSITIVE_INFINITY\n\n while (true) {\n throwIfAborted(options.signal)\n if (Date.now() >= deadline) {\n throw new CrawlbruleeError(\n `Timed out after ${timeoutMs}ms waiting for async scrape job ${jobId}.`,\n { status: 0, errorName: 'request_timeout' }\n )\n }\n\n const status = await this.getScrapeStatus(jobId, { signal: options.signal })\n\n switch (status.status) {\n case 'done':\n return this.getScrapeResult(jobId, { signal: options.signal })\n\n case 'failed':\n throw new CrawlbruleeError(status.error ?? `Async scrape job ${jobId} failed.`, {\n status: 0,\n errorName: 'job_failed',\n })\n\n case 'pending':\n case 'running':\n break\n\n default:\n throw new CrawlbruleeError(\n `Async scrape job ${jobId} returned unexpected status '${String(status.status)}'.`,\n { status: 0, errorName: 'job_failed' }\n )\n }\n\n await sleep(intervalMs, options.signal)\n }\n }\n\n // ------------------------------------------------------------------\n // Mapping\n // ------------------------------------------------------------------\n\n /**\n * Build (or return a cached) site link-map for a domain. Combines sitemap\n * discovery with the freshest cached homepage scrape when available.\n */\n map(request: MapRequest, options?: RequestOptions): Promise<MapResponse> {\n return this.http.post<MapResponse>('/api/map', request, options)\n }\n\n // ------------------------------------------------------------------\n // Account\n // ------------------------------------------------------------------\n\n /**\n * Return the current billing-cycle usage: total/used/available credits,\n * used quota percentage, max concurrency, and when the cycle resets.\n */\n usage(options?: RequestOptions): Promise<UsageResponse> {\n return this.http.get<UsageResponse>('/api/usage', options)\n }\n\n /**\n * Return the organization name and identifying details of the API token\n * used to authenticate this request. Useful for confirming which key is in\n * use before performing destructive operations.\n */\n whoami(options?: RequestOptions): Promise<WhoamiResponse> {\n return this.http.get<WhoamiResponse>('/api/whoami', options)\n }\n}\n\n/**\n * Defensive read of `process.env[name]`. Guards both the absence of `process`\n * (browser / edge runtimes) and Deno's permission throw on env access without\n * `--allow-env`.\n */\nfunction readEnv(name: string): string | undefined {\n try {\n if (typeof process === 'undefined' || !process.env) return undefined\n const v = process.env[name]\n return typeof v === 'string' && v.trim().length > 0 ? v.trim() : undefined\n } catch {\n return undefined\n }\n}\n\nfunction assertNonEmptyJobId(jobId: string): void {\n if (typeof jobId !== 'string' || jobId.trim().length === 0) {\n throw new CrawlbruleeError('jobId must be a non-empty string.', {\n status: 0,\n errorName: null,\n })\n }\n}\n\nfunction throwIfAborted(signal: AbortSignal | undefined): void {\n if (signal?.aborted) {\n throw new CrawlbruleeError('Request aborted by caller.', {\n status: 0,\n errorName: 'client_closed_request',\n cause: signal.reason,\n })\n }\n}\n\nfunction sleep(ms: number, signal: AbortSignal | undefined): Promise<void> {\n return new Promise((resolve, reject) => {\n const onAbort = () => {\n clearTimeout(timer)\n reject(\n new CrawlbruleeError('Request aborted by caller.', {\n status: 0,\n errorName: 'client_closed_request',\n cause: signal?.reason,\n })\n )\n }\n const timer = setTimeout(() => {\n signal?.removeEventListener('abort', onAbort)\n resolve()\n }, ms)\n if (signal) {\n if (signal.aborted) {\n clearTimeout(timer)\n onAbort()\n return\n }\n signal.addEventListener('abort', onAbort, { once: true })\n }\n })\n}\n","/**\n * Verification for async scrape completion webhooks.\n *\n * {@link verifyWebhookSignature} validates the signature crawlbrulee attaches to\n * every webhook delivery. It is a standalone, network-free helper built on Web\n * Crypto (`globalThis.crypto.subtle`) so it runs unchanged on Node.js 22+,\n * browsers, Bun, Deno, and edge runtimes — it never touches `node:crypto`.\n */\n\n/** HTTP header carrying the primary webhook signature (always present). */\nexport const WEBHOOK_SIGNATURE_HEADER = 'X-Cwbl-Signature'\n\n/**\n * HTTP header carrying a signature produced with the previous signing secret.\n * Present only during a signing-secret rotation grace window.\n */\nexport const WEBHOOK_SIGNATURE_ROTATED_HEADER = 'X-Cwbl-Signature-Rotated'\n\n/** HTTP header carrying the unique event id, useful for delivery de-duplication. */\nexport const WEBHOOK_EVENT_ID_HEADER = 'X-Cwbl-Event-Id'\n\n/** Default replay-protection window (seconds) applied to the signed timestamp. */\nexport const DEFAULT_WEBHOOK_TOLERANCE_SECONDS = 300\n\n/** Which signature header satisfied verification. */\nexport type WebhookSignatureSource = 'primary' | 'rotated'\n\n/**\n * Why a webhook signature failed to verify.\n *\n * - `missing_signature` — neither the primary nor the rotated header was present.\n * - `malformed_signature` — a header was present but not in the expected\n * `t=<unix_seconds>,v1=<64_hex>` format.\n * - `timestamp_out_of_tolerance` — the signed timestamp drifted further from now\n * than `toleranceSeconds` allows (replay protection).\n * - `signature_mismatch` — a well-formed, in-tolerance signature did not match\n * the one computed from the payload and secret.\n */\nexport type WebhookVerificationFailureReason =\n | 'missing_signature'\n | 'malformed_signature'\n | 'timestamp_out_of_tolerance'\n | 'signature_mismatch'\n\n/** Result of {@link verifyWebhookSignature}. Verification failure is returned, not thrown. */\nexport type WebhookVerificationResult =\n | { verified: true; signedWith: WebhookSignatureSource }\n | { verified: false; reason: WebhookVerificationFailureReason }\n\n/** Options for {@link verifyWebhookSignature}. */\nexport interface VerifyWebhookSignatureOptions {\n /**\n * The raw request body, exactly as received. Pass the bytes/string the server\n * signed — do NOT re-serialize parsed JSON, or the signature will not match.\n */\n payload: string | Uint8Array\n /**\n * The request headers. Accepts a fetch `Headers` instance or a plain object\n * (Express/Node give lowercased keys, values possibly arrays). Lookup is\n * case-insensitive.\n */\n headers: Headers | Record<string, string | string[] | undefined>\n /** The current signing secret (`whsec_…`). */\n secret: string\n /**\n * Replay-protection window in seconds. Defaults to\n * {@link DEFAULT_WEBHOOK_TOLERANCE_SECONDS} (300). Pass `0` (or any falsy\n * value) to disable the timestamp check entirely.\n */\n toleranceSeconds?: number\n}\n\nconst SIGNATURE_FORMAT = /^t=(\\d+),v1=([0-9a-f]{64})$/\n\ninterface ParsedSignature {\n timestamp: number\n signature: string\n}\n\n/**\n * Verify a crawlbrulee webhook signature against the primary and rotated\n * headers.\n *\n * The signing scheme matches the backend:\n * - the signed payload is `` `${t}.${rawBody}` `` where `t` is the unix-seconds\n * integer from the header and `rawBody` is the raw request body,\n * - the signature is `HMAC-SHA256(secret, signedPayload)` as lowercase hex,\n * - the header value is `t=<unix_seconds>,v1=<64_hex>`.\n *\n * The supplied `secret` is tried against the primary header first, then the\n * rotated header (which the API emits during a signing-secret rotation grace\n * window). Whichever matches wins, and the result reports which header it was.\n *\n * This NEVER throws on a verification failure — failures are normal control\n * flow and are returned as `{ verified: false, reason }`.\n *\n * @example\n * ```ts\n * const result = await verifyWebhookSignature({\n * payload: rawBody,\n * headers: req.headers,\n * secret: process.env.CRAWLBRULEE_WEBHOOK_SECRET!,\n * })\n * if (!result.verified) return res.status(400).end()\n * ```\n */\nexport async function verifyWebhookSignature(\n options: VerifyWebhookSignatureOptions\n): Promise<WebhookVerificationResult> {\n const { payload, headers, secret } = options\n const toleranceSeconds = options.toleranceSeconds ?? DEFAULT_WEBHOOK_TOLERANCE_SECONDS\n\n const primaryHeader = getHeader(headers, WEBHOOK_SIGNATURE_HEADER)\n const rotatedHeader = getHeader(headers, WEBHOOK_SIGNATURE_ROTATED_HEADER)\n\n if (primaryHeader === undefined && rotatedHeader === undefined) {\n return { verified: false, reason: 'missing_signature' }\n }\n\n const nowSeconds = Math.floor(Date.now() / 1000)\n const body = toBytes(payload)\n const key = await importHmacKey(secret)\n\n // Track the \"best\" failure reason so the result is informative: a real\n // mismatch should win over a malformed sibling header. Order from least to\n // most specific.\n let failure: WebhookVerificationFailureReason = 'malformed_signature'\n\n for (const source of ['primary', 'rotated'] as const) {\n const raw = source === 'primary' ? primaryHeader : rotatedHeader\n if (raw === undefined) continue\n\n const parsed = parseSignatureHeader(raw)\n if (!parsed) {\n // A malformed header can't verify; keep looking at the other one.\n continue\n }\n\n if (toleranceSeconds && Math.abs(nowSeconds - parsed.timestamp) > toleranceSeconds) {\n failure = mostSpecificFailure(failure, 'timestamp_out_of_tolerance')\n continue\n }\n\n const expected = await computeSignatureHex(key, parsed.timestamp, body)\n if (constantTimeEqualHex(expected, parsed.signature)) {\n return { verified: true, signedWith: source }\n }\n\n failure = mostSpecificFailure(failure, 'signature_mismatch')\n }\n\n return { verified: false, reason: failure }\n}\n\n/**\n * Rank verification failures so the returned reason reflects the most\n * actionable problem encountered across the two headers.\n */\nfunction mostSpecificFailure(\n current: WebhookVerificationFailureReason,\n candidate: WebhookVerificationFailureReason\n): WebhookVerificationFailureReason {\n const rank: Record<WebhookVerificationFailureReason, number> = {\n missing_signature: 0,\n malformed_signature: 1,\n timestamp_out_of_tolerance: 2,\n signature_mismatch: 3,\n }\n return rank[candidate] > rank[current] ? candidate : current\n}\n\n/** Case-insensitive header lookup over `Headers` or a plain object. */\nfunction getHeader(\n headers: Headers | Record<string, string | string[] | undefined>,\n name: string\n): string | undefined {\n if (typeof Headers !== 'undefined' && headers instanceof Headers) {\n return headers.get(name) ?? undefined\n }\n const target = name.toLowerCase()\n for (const key of Object.keys(headers)) {\n if (key.toLowerCase() !== target) continue\n const value = (headers as Record<string, string | string[] | undefined>)[key]\n if (Array.isArray(value)) return value[0]\n return value ?? undefined\n }\n return undefined\n}\n\nfunction parseSignatureHeader(value: string): ParsedSignature | null {\n const match = SIGNATURE_FORMAT.exec(value.trim())\n if (!match) return null\n const timestamp = Number(match[1])\n if (!Number.isSafeInteger(timestamp)) return null\n return { timestamp, signature: match[2]! }\n}\n\nfunction toBytes(payload: string | Uint8Array): Uint8Array {\n return typeof payload === 'string' ? new TextEncoder().encode(payload) : payload\n}\n\n/**\n * Web Crypto types, derived from the runtime global so we don't have to pull in\n * the DOM `lib` (the SDK compiles against `lib: ES2022` + `@types/node`).\n */\ntype SubtleCryptoLike = typeof globalThis.crypto.subtle\ntype CryptoKeyLike = Awaited<ReturnType<SubtleCryptoLike['importKey']>>\n\nfunction importHmacKey(secret: string): Promise<CryptoKeyLike> {\n return getSubtle().importKey(\n 'raw',\n new TextEncoder().encode(secret),\n { name: 'HMAC', hash: 'SHA-256' },\n false,\n ['sign']\n )\n}\n\nasync function computeSignatureHex(\n key: CryptoKeyLike,\n timestamp: number,\n body: Uint8Array\n): Promise<string> {\n const prefix = new TextEncoder().encode(`${timestamp}.`)\n const message = new Uint8Array(prefix.length + body.length)\n message.set(prefix, 0)\n message.set(body, prefix.length)\n const digest = await getSubtle().sign('HMAC', key, message)\n return toHex(new Uint8Array(digest))\n}\n\nfunction toHex(bytes: Uint8Array): string {\n let hex = ''\n for (const byte of bytes) {\n hex += byte.toString(16).padStart(2, '0')\n }\n return hex\n}\n\n/**\n * Length-checked, constant-time comparison of two lowercase hex strings. Folds\n * every byte into an accumulator with XOR — never early-returns on the first\n * mismatch — so timing does not leak how much of the signature matched.\n */\nfunction constantTimeEqualHex(a: string, b: string): boolean {\n if (a.length !== b.length) return false\n let diff = 0\n for (let i = 0; i < a.length; i++) {\n diff |= a.charCodeAt(i) ^ b.charCodeAt(i)\n }\n return diff === 0\n}\n\nfunction getSubtle(): SubtleCryptoLike {\n const subtle = globalThis.crypto?.subtle\n if (!subtle) {\n throw new Error(\n 'Web Crypto (globalThis.crypto.subtle) is not available in this runtime. crawlbrulee webhook verification requires Node.js 22+, Bun, Deno, or a modern browser/edge runtime.'\n )\n }\n return subtle\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","names":[],"sources":["../src/config.ts","../src/errors.ts","../src/instrumentation.ts","../src/http.ts","../src/client.ts","../src/webhooks.ts"],"sourcesContent":["/**\n * Production base URL of the crawlbrulee API. Used by default when the caller\n * doesn't pass a `baseUrl` to {@link Crawlbrulee}. Local development and\n * staging callers point at their own host via that option.\n */\nexport const DEFAULT_BASE_URL = 'https://api.crawlbrulee.com'\n\n/** Default request timeout when the caller doesn't specify one (0 disables the timeout). */\nexport const DEFAULT_REQUEST_TIMEOUT_MS = 0\n\n/** Environment variable read by `Crawlbrulee.fromEnv()` to source the API key. */\nexport const ENV_API_KEY = 'CRAWLBRULEE_API_KEY'\n\n/** Identifies the SDK in the `User-Agent` header. Kept in one place for easy bumping. */\nexport const USER_AGENT = '@crawlbrulee/sdk/0.11.0 (node)'\n","import type {\n ApiErrorDetails,\n ApiErrorName,\n ApiErrorResponse,\n RateLimitErrorDetails,\n UsageAllocationErrorDetails,\n} from './types/common.js'\n\n/**\n * Base error class for every failure raised by the SDK.\n *\n * Two kinds of failures end up here:\n *\n * 1. **API errors** — the server returned a non-2xx response with a well-formed\n * JSON body. In that case `status`, `errorName` and (sometimes) `details`\n * are populated.\n * 2. **Transport errors** — the request never produced a structured response\n * (network failure, abort, timeout, non-JSON body, etc.). In that case\n * `status` may be `0` and `errorName` is one of the synthetic transport\n * names (`request_timeout`, `client_closed_request`) or `null`.\n *\n * Typed subclasses are exported for the most common cases. To branch on more\n * specific server-side errors, switch on `err.errorName` or use the\n * {@link isCrawlbruleeError} helper.\n */\nexport class CrawlbruleeError extends Error {\n /** HTTP status code; `0` for transport-level failures with no response. */\n readonly status: number\n /** The `name` field from the API error body, or `null` for transport errors. */\n readonly errorName: ApiErrorName | null\n /** Structured detail block from the API error body, if any. */\n readonly details?: ApiErrorDetails\n /** The original parsed error body, when one was received. */\n readonly response?: ApiErrorResponse\n\n constructor(\n message: string,\n options: {\n status: number\n errorName: ApiErrorName | null\n details?: ApiErrorDetails\n response?: ApiErrorResponse\n cause?: unknown\n }\n ) {\n super(message, options.cause !== undefined ? { cause: options.cause } : undefined)\n this.name = 'CrawlbruleeError'\n this.status = options.status\n this.errorName = options.errorName\n this.details = options.details\n this.response = options.response\n }\n}\n\n/** Raised for 401 / 403 responses (missing, invalid, or unauthorized API key). */\nexport class AuthenticationError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'AuthenticationError'\n }\n}\n\n/**\n * Raised for HTTP 429 responses. When the server included a `retry_after_ms`\n * hint in `details` it is surfaced directly on the instance.\n *\n * `errorName` is always the literal `'too_many_requests'` — the SDK normalizes\n * this even when the server returns a 429 with a different `name` field\n * (e.g. a CDN coalescing upstream rate limiting). The original body is still\n * available on `response`.\n */\nexport class RateLimitError extends CrawlbruleeError {\n override readonly errorName: 'too_many_requests'\n /** Suggested delay (ms) before retrying, when the server provided one. */\n readonly retryAfterMs?: number\n /** Which rate limit was tripped (e.g. `org`, `ip`), when provided. */\n readonly limitedBy?: string\n\n constructor(\n message: string,\n options: {\n status: number\n details?: RateLimitErrorDetails\n response?: ApiErrorResponse\n }\n ) {\n super(message, { ...options, errorName: 'too_many_requests', details: options.details })\n this.name = 'RateLimitError'\n this.errorName = 'too_many_requests'\n this.retryAfterMs = options.details?.retry_after_ms\n this.limitedBy = options.details?.limited_by\n }\n}\n\n/**\n * Raised when the API rejects a request because the org's plan limits would\n * be exceeded (credit limit, concurrency cap, overage hard cap, etc.).\n *\n * `errorName` is always the literal `'usage_allocation_error'`.\n */\nexport class UsageAllocationError extends CrawlbruleeError {\n override readonly errorName: 'usage_allocation_error'\n /** Specific reason the allocation was denied. */\n readonly reason: UsageAllocationErrorDetails['reason']\n /** Current usage / limit snapshot at the time of the rejection. */\n readonly usage?: UsageAllocationErrorDetails['details']\n\n constructor(\n message: string,\n options: {\n status: number\n details: UsageAllocationErrorDetails\n response?: ApiErrorResponse\n }\n ) {\n super(message, { ...options, errorName: 'usage_allocation_error' })\n this.name = 'UsageAllocationError'\n this.errorName = 'usage_allocation_error'\n this.reason = options.details.reason\n this.usage = options.details.details\n }\n}\n\n/** Raised for 4xx responses caused by an invalid request shape or arguments. */\nexport class ValidationError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'ValidationError'\n }\n}\n\n/** Raised for 404 responses (e.g. unknown async job ID). */\nexport class NotFoundError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'NotFoundError'\n }\n}\n\n/**\n * Raised for 503 responses — the API could not serve the request right now\n * (a transient infrastructure failure, not a problem with your request).\n *\n * This is **retryable**: back off and try again. In particular it is not an\n * authentication failure, so it is never a reason to rotate your API key —\n * a genuinely bad or expired key still comes back as a 401\n * (`invalid_credentials`) and raises {@link AuthenticationError}.\n */\nexport class ServiceUnavailableError extends CrawlbruleeError {\n constructor(\n message: string,\n options: { status: number; errorName: ApiErrorName; response?: ApiErrorResponse }\n ) {\n super(message, options)\n this.name = 'ServiceUnavailableError'\n }\n}\n\n/**\n * Raised when a request cannot be sent or no structured response is parsed.\n *\n * The `errorName` discriminates the cause:\n * - `'request_timeout'` — the per-request timeout fired.\n * - `'client_closed_request'` — the caller's `AbortSignal` fired.\n * - `null` — generic transport failure (network error, non-JSON body, etc.).\n */\nexport class TransportError extends CrawlbruleeError {\n constructor(\n message: string,\n options: {\n status?: number\n errorName?: 'request_timeout' | 'client_closed_request' | null\n cause?: unknown\n } = {}\n ) {\n super(message, {\n status: options.status ?? 0,\n errorName: options.errorName ?? null,\n cause: options.cause,\n })\n this.name = 'TransportError'\n }\n}\n\n/** Narrow `unknown` to the SDK's base error type. */\nexport function isCrawlbruleeError(err: unknown): err is CrawlbruleeError {\n return err instanceof CrawlbruleeError\n}\n\n/**\n * Map an API error body + HTTP status to the most specific error class.\n *\n * Dispatch is **name-first**: the body's `name` field is the most reliable\n * signal of what went wrong. Status code is used only as a fallback when the\n * name is unrecognized (e.g. a CDN-synthesized error). This avoids\n * miscategorizing things like a 403 with `name: 'not_found'` as an auth error.\n *\n * Internal — used by the HTTP layer.\n */\nexport function createApiError(body: ApiErrorResponse, status: number): CrawlbruleeError {\n const { name, message, details } = body\n const response = body\n\n switch (name) {\n case 'too_many_requests':\n return new RateLimitError(message, {\n status,\n details: details?.error_name === 'too_many_requests' ? details : undefined,\n response,\n })\n\n case 'usage_allocation_error': {\n // Without a structured details block we still want a typed error — fall\n // back to a synthetic `internal_error` reason so callers can branch.\n const usageDetails: UsageAllocationErrorDetails =\n details?.error_name === 'usage_allocation_error'\n ? details\n : { error_name: 'usage_allocation_error', reason: 'internal_error' }\n return new UsageAllocationError(message, { status, details: usageDetails, response })\n }\n\n case 'invalid_credentials':\n case 'access_denied':\n return new AuthenticationError(message, { status, errorName: name, response })\n\n case 'not_found':\n return new NotFoundError(message, { status, errorName: name, response })\n\n case 'service_unavailable':\n return new ServiceUnavailableError(message, { status, errorName: name, response })\n\n case 'validation_error':\n case 'invalid_url':\n case 'url_too_long':\n case 'unsupported_url_schema':\n case 'url_credentials_not_supported':\n case 'blocked_url':\n case 'unsupported_content':\n case 'unsupported_screenshot_output':\n return new ValidationError(message, { status, errorName: name, response })\n }\n\n // Name was not specific enough — fall back to status-based heuristics, but\n // never override what the name said. A 429 with an unrecognized name still\n // promotes to RateLimitError (the class invariant normalizes errorName).\n if (status === 429) {\n return new RateLimitError(message, { status, response })\n }\n if (status === 401 || status === 403) {\n return new AuthenticationError(message, { status, errorName: name, response })\n }\n if (status === 404) {\n return new NotFoundError(message, { status, errorName: name, response })\n }\n if (status === 503) {\n return new ServiceUnavailableError(message, { status, errorName: name, response })\n }\n\n return new CrawlbruleeError(message, { status, errorName: name, details, response })\n}\n","import { DEFAULT_BASE_URL } from './config.js'\nimport { CrawlbruleeError } from './errors.js'\n\n/** Function shape compatible with the global `fetch`. */\nexport type FetchLike = typeof fetch\n\n/**\n * Centralized factory for the low-level dependencies the SDK injects into its\n * HTTP layer. Production code resolves these to the runtime's global `fetch`\n * and the burned-in production base URL; tests stub this module to swap in\n * mocks and alternate hosts.\n *\n * This is internal — it is not exported from the package's public entry. Tests\n * import it from `src/instrumentation.js` directly and use `vi.spyOn` to\n * substitute behavior.\n */\nexport const CwblInstrumentation = {\n /**\n * Resolve the `fetch` implementation the SDK should use. Throws a\n * {@link CrawlbruleeError} if the runtime does not expose a global `fetch`.\n */\n getFetch(): FetchLike {\n const g = globalThis as { fetch?: FetchLike }\n if (typeof g.fetch !== 'function') {\n throw new CrawlbruleeError(\n 'No global fetch is available in this runtime. crawlbrulee requires Node.js 22+, Bun, Deno, or a modern browser/edge runtime.',\n { status: 0, errorName: null }\n )\n }\n return g.fetch.bind(globalThis)\n },\n\n /**\n * Resolve the base URL the SDK should target. Returns the production host by\n * default; tests stub this to point at a mock origin.\n */\n getBaseUrl(): string {\n return DEFAULT_BASE_URL\n },\n}\n","import { DEFAULT_REQUEST_TIMEOUT_MS, USER_AGENT } from './config.js'\nimport { TransportError, createApiError, type CrawlbruleeError } from './errors.js'\nimport { CwblInstrumentation, type FetchLike } from './instrumentation.js'\nimport type { ApiErrorResponse } from './types/common.js'\n\n/** HTTP methods used by the SDK. */\nexport type HttpMethod = 'GET' | 'POST'\n\n/** Options the SDK accepts at construction time for the HTTP layer. */\nexport interface HttpClientOptions {\n /** API key sent as `Authorization: Bearer <key>`. */\n apiKey: string\n /**\n * Override the base URL. Trailing slashes are stripped. Falls back to\n * {@link CwblInstrumentation.getBaseUrl} (which resolves to the production\n * host) when unset.\n */\n baseUrl?: string\n /**\n * Per-request timeout in milliseconds. Pass `0` (or omit) to disable the\n * timeout entirely.\n */\n timeoutMs?: number\n}\n\n/** Per-call overrides accepted on every resource method. */\nexport interface RequestOptions {\n /** Abort the request when this signal fires. Composable with the timeout. */\n signal?: AbortSignal\n /**\n * Override the constructor-level `timeoutMs` for this call. Pass `0` to\n * disable the timeout for this call.\n */\n timeoutMs?: number\n}\n\ninterface SendArgs extends RequestOptions {\n method: HttpMethod\n path: string\n body?: unknown\n}\n\ninterface ComposedSignal {\n signal: AbortSignal | undefined\n /** Returns `true` if the abort was triggered by the per-request timeout. */\n timedOut: () => boolean\n /** Releases the timer and any listeners attached to the caller's signal. */\n cleanup: () => void\n}\n\n/**\n * Minimal `fetch`-based HTTP layer used by {@link Crawlbrulee}. Handles:\n *\n * - URL composition (joining `baseUrl` and path safely).\n * - JSON serialization and parsing.\n * - The `Authorization: Bearer …` header.\n * - Composing the caller's `AbortSignal` with an internal timeout signal. The\n * timeout covers the WHOLE request, including the response body read — not\n * just the time-to-headers.\n * - Mapping non-2xx responses to typed `CrawlbruleeError` subclasses via\n * {@link createApiError}.\n *\n * The base URL and `fetch` implementation are sourced from\n * {@link CwblInstrumentation} at construction time so tests can stub the\n * module.\n */\nexport class HttpClient {\n readonly baseUrl: string\n private readonly apiKey: string\n private readonly fetch: FetchLike\n private readonly timeoutMs: number\n\n constructor(options: HttpClientOptions) {\n this.baseUrl = stripTrailingSlash(options.baseUrl ?? CwblInstrumentation.getBaseUrl())\n this.apiKey = options.apiKey\n this.fetch = CwblInstrumentation.getFetch()\n this.timeoutMs = options.timeoutMs ?? DEFAULT_REQUEST_TIMEOUT_MS\n }\n\n /** Send a `GET` request and parse the response as `T`. */\n get<T>(path: string, options?: RequestOptions): Promise<T> {\n return this.send<T>({ method: 'GET', path, ...options })\n }\n\n /** Send a `POST` request with a JSON body and parse the response as `T`. */\n post<T>(path: string, body: unknown, options?: RequestOptions): Promise<T> {\n return this.send<T>({ method: 'POST', path, body, ...options })\n }\n\n private async send<T>(args: SendArgs): Promise<T> {\n const url = this.buildUrl(args.path)\n const headers = this.buildHeaders(args)\n const body = args.body === undefined ? undefined : JSON.stringify(args.body)\n const composed = this.composeSignal(args.signal, args.timeoutMs)\n\n try {\n let res: Response\n try {\n res = await this.fetch(url, {\n method: args.method,\n headers,\n body,\n signal: composed.signal,\n })\n } catch (cause: unknown) {\n throw abortOrNetworkError(cause, composed.timedOut(), args.timeoutMs ?? this.timeoutMs)\n }\n\n let text: string\n try {\n text = await res.text()\n } catch (cause: unknown) {\n if (isAbortError(cause)) {\n throw abortOrNetworkError(cause, composed.timedOut(), args.timeoutMs ?? this.timeoutMs)\n }\n throw new TransportError(`Failed to read response body (status ${res.status}).`, {\n status: res.status,\n cause,\n })\n }\n\n const parsed = parseJsonOrThrow(text, res.status)\n if (!res.ok) throw toApiError(parsed, res.status, text)\n return parsed as T\n } finally {\n composed.cleanup()\n }\n }\n\n private buildUrl(path: string): string {\n if (!path.startsWith('/')) {\n throw new TypeError(`crawlbrulee SDK: path must start with '/' (received '${path}')`)\n }\n return `${this.baseUrl}${path}`\n }\n\n private buildHeaders(args: SendArgs): Record<string, string> {\n const headers: Record<string, string> = {\n accept: 'application/json',\n 'user-agent': USER_AGENT,\n authorization: `Bearer ${this.apiKey}`,\n }\n if (args.body !== undefined) headers['content-type'] = 'application/json'\n return headers\n }\n\n /**\n * Build a single `AbortSignal` that fires when either the caller-supplied\n * signal aborts OR the per-request timeout elapses. The returned `cleanup`\n * callback MUST be invoked on every exit path so we don't leak timers or\n * dead listeners on long-lived caller signals.\n */\n private composeSignal(\n callerSignal: AbortSignal | undefined,\n overrideTimeoutMs: number | undefined\n ): ComposedSignal {\n const timeoutMs = overrideTimeoutMs ?? this.timeoutMs\n const hasTimeout = Number.isFinite(timeoutMs) && timeoutMs > 0\n\n if (!hasTimeout && !callerSignal) {\n return { signal: undefined, timedOut: () => false, cleanup: () => {} }\n }\n\n if (!hasTimeout) {\n return { signal: callerSignal, timedOut: () => false, cleanup: () => {} }\n }\n\n const controller = new AbortController()\n let didTimeout = false\n const timer = setTimeout(() => {\n didTimeout = true\n controller.abort(new Error('request_timeout'))\n }, timeoutMs)\n\n let onCallerAbort: (() => void) | undefined\n if (callerSignal) {\n if (callerSignal.aborted) {\n clearTimeout(timer)\n controller.abort(callerSignal.reason)\n } else {\n onCallerAbort = () => {\n clearTimeout(timer)\n controller.abort(callerSignal.reason)\n }\n callerSignal.addEventListener('abort', onCallerAbort, { once: true })\n }\n }\n\n const cleanup = () => {\n clearTimeout(timer)\n if (onCallerAbort && callerSignal) {\n callerSignal.removeEventListener('abort', onCallerAbort)\n }\n }\n\n return { signal: controller.signal, timedOut: () => didTimeout, cleanup }\n }\n}\n\nfunction stripTrailingSlash(url: string): string {\n return url.replace(/\\/+$/, '')\n}\n\nfunction isAbortError(err: unknown): boolean {\n return err instanceof Error && err.name === 'AbortError'\n}\n\nfunction abortOrNetworkError(cause: unknown, timedOut: boolean, timeoutMs: number): TransportError {\n if (isAbortError(cause)) {\n if (timedOut) {\n return new TransportError(`Request timed out after ${timeoutMs}ms.`, {\n errorName: 'request_timeout',\n cause,\n })\n }\n return new TransportError('Request aborted by caller.', {\n errorName: 'client_closed_request',\n cause,\n })\n }\n return new TransportError(formatNetworkErrorMessage(cause), { cause })\n}\n\nfunction formatNetworkErrorMessage(cause: unknown): string {\n if (cause instanceof Error) {\n return `Network error: ${cause.message}`\n }\n return 'Network error: unknown failure while sending the request.'\n}\n\nfunction parseJsonOrThrow(text: string, status: number): unknown {\n if (text === '') return {}\n try {\n return JSON.parse(text)\n } catch (cause: unknown) {\n const preview = text.length > 200 ? `${text.slice(0, 200)}…` : text\n throw new TransportError(`Unexpected non-JSON response (status ${status}): ${preview}`, {\n status,\n cause,\n })\n }\n}\n\nfunction toApiError(parsed: unknown, status: number, rawText: string): CrawlbruleeError {\n if (isApiErrorResponse(parsed)) {\n return createApiError(parsed, status)\n }\n const preview = rawText.length > 200 ? `${rawText.slice(0, 200)}…` : rawText\n return new TransportError(`HTTP ${status}: ${preview || '(empty body)'}`, { status })\n}\n\nfunction isApiErrorResponse(value: unknown): value is ApiErrorResponse {\n if (value === null || typeof value !== 'object') return false\n const v = value as Record<string, unknown>\n return typeof v.name === 'string' && typeof v.message === 'string'\n}\n","import { ENV_API_KEY } from './config.js'\nimport { CrawlbruleeError } from './errors.js'\nimport { HttpClient, type RequestOptions } from './http.js'\nimport type {\n AsyncJobStatusResponse,\n AsyncScrapeRequest,\n AsyncScrapeResponse,\n MapRequest,\n MapResponse,\n ScrapeCompleteWebhook,\n ScrapeRequest,\n ScrapeResponse,\n UsageResponse,\n WhoamiResponse,\n} from './types/index.js'\n\n/** Options accepted by the {@link Crawlbrulee} constructor. */\nexport interface CrawlbruleeOptions {\n /**\n * API key sent as `Authorization: Bearer <key>`. Required — to read from the\n * environment instead, use {@link Crawlbrulee.fromEnv}. Leading and trailing\n * whitespace is stripped; an empty / whitespace-only value is rejected.\n */\n apiKey: string\n /**\n * Override the base URL the SDK targets. Defaults to the production host\n * ({@link DEFAULT_BASE_URL}). Intended for local development and staging\n * (e.g. `https://api.<staging-domain>`) — production callers should\n * leave it unset. Trailing slashes are stripped.\n */\n baseUrl?: string\n /**\n * Per-request timeout in milliseconds. Defaults to `0` (no timeout). Set to a\n * positive number to abort slow requests; a per-call `timeoutMs` override\n * takes precedence. The timeout covers the WHOLE request, including the\n * response body read.\n */\n timeoutMs?: number\n}\n\n/**\n * Options accepted by {@link Crawlbrulee.waitForScrape}.\n *\n * Note: `timeoutMs` here is the OVERALL wait budget across all polls — not the\n * per-HTTP-request timeout. The per-poll HTTP timeout is whatever the client\n * was constructed with; if you want to bound each individual poll, construct\n * the client with `timeoutMs` set.\n */\nexport interface WaitForScrapeOptions extends Omit<RequestOptions, 'timeoutMs'> {\n /** Time between status polls in milliseconds. Default `2000`. */\n intervalMs?: number\n /**\n * Maximum total time to wait before giving up, in milliseconds. Default\n * `300_000` (5 minutes). Pass `0` to wait indefinitely.\n */\n timeoutMs?: number\n}\n\n/**\n * Official client for the crawlbrulee API.\n *\n * @example\n * ```ts\n * import { Crawlbrulee } from '@crawlbrulee/sdk'\n *\n * const crawlbrulee = new Crawlbrulee({ apiKey: 'cwbl_…' })\n * // or read CRAWLBRULEE_API_KEY from the environment:\n * const crawlbrulee = Crawlbrulee.fromEnv()\n *\n * const page = await crawlbrulee.scrape({\n * url: 'https://example.com',\n * extract: { markdown: true, links: true },\n * })\n * console.log(page.markdown)\n * ```\n */\nexport class Crawlbrulee {\n /** Resolved base URL — trailing slash already stripped. */\n readonly baseUrl: string\n /** Underlying HTTP layer. Exposed for advanced use cases (custom endpoints). */\n readonly http: HttpClient\n\n constructor(options: CrawlbruleeOptions) {\n const apiKey = options.apiKey?.trim()\n if (!apiKey) {\n throw new CrawlbruleeError(\n `Missing API key. Pass { apiKey } to Crawlbrulee or call Crawlbrulee.fromEnv() to read ${ENV_API_KEY}.`,\n { status: 0, errorName: null }\n )\n }\n this.http = new HttpClient({ apiKey, baseUrl: options.baseUrl, timeoutMs: options.timeoutMs })\n this.baseUrl = this.http.baseUrl\n }\n\n /**\n * Build a {@link Crawlbrulee} reading the API key from\n * `process.env.CRAWLBRULEE_API_KEY`. Throws if the variable is unset, empty,\n * or whitespace.\n *\n * Any other constructor option can be passed via `overrides`.\n *\n * @example\n * ```ts\n * const crawlbrulee = Crawlbrulee.fromEnv()\n * const crawlbrulee = Crawlbrulee.fromEnv({ timeoutMs: 30_000 })\n * ```\n */\n static fromEnv(overrides: Omit<CrawlbruleeOptions, 'apiKey'> = {}): Crawlbrulee {\n const apiKey = readEnv(ENV_API_KEY)\n if (!apiKey) {\n throw new CrawlbruleeError(\n `${ENV_API_KEY} is not set. Export it in your shell, or pass apiKey to new Crawlbrulee({ apiKey }).`,\n { status: 0, errorName: null }\n )\n }\n return new Crawlbrulee({ ...overrides, apiKey })\n }\n\n // ------------------------------------------------------------------\n // Scraping\n // ------------------------------------------------------------------\n\n /**\n * Scrape a URL synchronously and return the extracted content.\n *\n * The request blocks until the scrape is finished. For long-running jobs\n * (heavy JS rendering, screenshots of long pages) prefer\n * {@link Crawlbrulee.scrapeAsync} so the connection isn't held open.\n *\n * @param request — body for `POST /api/scrape`.\n * @param options — per-call timeout and abort signal.\n */\n scrape(request: ScrapeRequest, options?: RequestOptions): Promise<ScrapeResponse> {\n return this.http.post<ScrapeResponse>('/api/scrape', request, options)\n }\n\n /**\n * Submit an asynchronous scrape job and return its `job_id`. Poll the job\n * with {@link Crawlbrulee.getScrapeStatus} or wait for completion with\n * {@link Crawlbrulee.waitForScrape}.\n *\n * Pass an optional `webhook` to have the API deliver a signed\n * `scrape.complete` `POST` to your endpoint when the job finishes (see\n * {@link AsyncScrapeWebhook}). This field is async-only.\n */\n scrapeAsync(request: AsyncScrapeRequest, options?: RequestOptions): Promise<AsyncScrapeResponse> {\n return this.http.post<AsyncScrapeResponse>('/api/scrape/async', request, options)\n }\n\n /** Look up the current status of an async scrape job. */\n getScrapeStatus(jobId: string, options?: RequestOptions): Promise<AsyncJobStatusResponse> {\n assertNonEmptyJobId(jobId)\n return this.http.get<AsyncJobStatusResponse>(\n `/api/scrape/status/${encodeURIComponent(jobId)}`,\n options\n )\n }\n\n /**\n * Fetch the result of a completed async scrape job. Throws if the job is\n * still pending/running — call {@link Crawlbrulee.getScrapeStatus}\n * first, or use {@link Crawlbrulee.waitForScrape} to poll-then-fetch.\n */\n getScrapeResult(jobId: string, options?: RequestOptions): Promise<ScrapeResponse> {\n assertNonEmptyJobId(jobId)\n return this.http.get<ScrapeResponse>(`/api/scrape/result/${encodeURIComponent(jobId)}`, options)\n }\n\n /**\n * Fetch the scrape result referenced by a `scrape.complete` webhook body.\n *\n * Always verify the webhook signature with `verifyWebhookSignature` before\n * acting on it; this method trusts the parsed body it is handed.\n *\n * Behavior by `data.status`:\n * - `success` — delegates to {@link Crawlbrulee.getScrapeResult} for the\n * webhook's `job_id` and returns the parsed result.\n * - `failed` — throws a {@link CrawlbruleeError} carrying `data.error`\n * (`errorName: 'job_failed'`); there is no result to fetch.\n * - `cancelled` — throws a {@link CrawlbruleeError}\n * (`errorName: 'client_closed_request'`).\n *\n * A non-`scrape.complete` envelope throws a {@link CrawlbruleeError}\n * defensively. Any HTTP error from the underlying fetch propagates as the\n * usual typed `CrawlbruleeError` subclass.\n */\n async fetchScrapeResultFromWebhook(\n webhook: ScrapeCompleteWebhook,\n options?: RequestOptions\n ): Promise<ScrapeResponse> {\n if (webhook?.event !== 'scrape.complete') {\n throw new CrawlbruleeError(\n `Expected a 'scrape.complete' webhook but received '${String(webhook?.event)}'.`,\n { status: 0, errorName: 'validation_error' }\n )\n }\n\n const { job_id: jobId, status, error } = webhook.data\n\n switch (status) {\n case 'success':\n return this.getScrapeResult(jobId, options)\n\n case 'failed':\n throw new CrawlbruleeError(error ?? `Async scrape job ${jobId} failed.`, {\n status: 0,\n errorName: 'job_failed',\n })\n\n case 'cancelled':\n throw new CrawlbruleeError(`Async scrape job ${jobId} was cancelled.`, {\n status: 0,\n errorName: 'client_closed_request',\n })\n\n default:\n throw new CrawlbruleeError(\n `Async scrape webhook for job ${jobId} carried an unexpected status '${String(status)}'.`,\n { status: 0, errorName: 'validation_error' }\n )\n }\n }\n\n /**\n * Poll an async scrape job until it reaches a terminal state, then return\n * the scrape result.\n *\n * Throws a {@link CrawlbruleeError} when:\n * - the job ends in `failed` (`errorName: 'job_failed'`),\n * - the server reports an unexpected status (`errorName: 'job_failed'`),\n * - the overall wait exceeds `timeoutMs` (`errorName: 'request_timeout'`),\n * - the caller's `signal` aborts (`errorName: 'client_closed_request'`).\n */\n async waitForScrape(jobId: string, options: WaitForScrapeOptions = {}): Promise<ScrapeResponse> {\n assertNonEmptyJobId(jobId)\n const intervalMs = options.intervalMs ?? 2000\n const timeoutMs = options.timeoutMs ?? 300_000\n const deadline = timeoutMs > 0 ? Date.now() + timeoutMs : Number.POSITIVE_INFINITY\n\n while (true) {\n throwIfAborted(options.signal)\n if (Date.now() >= deadline) {\n throw new CrawlbruleeError(\n `Timed out after ${timeoutMs}ms waiting for async scrape job ${jobId}.`,\n { status: 0, errorName: 'request_timeout' }\n )\n }\n\n const status = await this.getScrapeStatus(jobId, { signal: options.signal })\n\n switch (status.status) {\n case 'done':\n return this.getScrapeResult(jobId, { signal: options.signal })\n\n case 'failed':\n throw new CrawlbruleeError(status.error ?? `Async scrape job ${jobId} failed.`, {\n status: 0,\n errorName: 'job_failed',\n })\n\n case 'pending':\n case 'running':\n break\n\n default:\n throw new CrawlbruleeError(\n `Async scrape job ${jobId} returned unexpected status '${String(status.status)}'.`,\n { status: 0, errorName: 'job_failed' }\n )\n }\n\n await sleep(intervalMs, options.signal)\n }\n }\n\n // ------------------------------------------------------------------\n // Mapping\n // ------------------------------------------------------------------\n\n /**\n * Build (or return a cached) site link-map for a domain. Combines sitemap\n * discovery with the freshest cached homepage scrape when available.\n */\n map(request: MapRequest, options?: RequestOptions): Promise<MapResponse> {\n return this.http.post<MapResponse>('/api/map', request, options)\n }\n\n // ------------------------------------------------------------------\n // Account\n // ------------------------------------------------------------------\n\n /**\n * Return the current billing-cycle usage: total/used/available credits,\n * used quota percentage, max concurrency, and when the cycle resets.\n */\n usage(options?: RequestOptions): Promise<UsageResponse> {\n return this.http.get<UsageResponse>('/api/usage', options)\n }\n\n /**\n * Return the organization name and identifying details of the API token\n * used to authenticate this request. Useful for confirming which key is in\n * use before performing destructive operations.\n */\n whoami(options?: RequestOptions): Promise<WhoamiResponse> {\n return this.http.get<WhoamiResponse>('/api/whoami', options)\n }\n}\n\n/**\n * Defensive read of `process.env[name]`. Guards both the absence of `process`\n * (browser / edge runtimes) and Deno's permission throw on env access without\n * `--allow-env`.\n */\nfunction readEnv(name: string): string | undefined {\n try {\n if (typeof process === 'undefined' || !process.env) return undefined\n const v = process.env[name]\n return typeof v === 'string' && v.trim().length > 0 ? v.trim() : undefined\n } catch {\n return undefined\n }\n}\n\nfunction assertNonEmptyJobId(jobId: string): void {\n if (typeof jobId !== 'string' || jobId.trim().length === 0) {\n throw new CrawlbruleeError('jobId must be a non-empty string.', {\n status: 0,\n errorName: null,\n })\n }\n}\n\nfunction throwIfAborted(signal: AbortSignal | undefined): void {\n if (signal?.aborted) {\n throw new CrawlbruleeError('Request aborted by caller.', {\n status: 0,\n errorName: 'client_closed_request',\n cause: signal.reason,\n })\n }\n}\n\nfunction sleep(ms: number, signal: AbortSignal | undefined): Promise<void> {\n return new Promise((resolve, reject) => {\n const onAbort = () => {\n clearTimeout(timer)\n reject(\n new CrawlbruleeError('Request aborted by caller.', {\n status: 0,\n errorName: 'client_closed_request',\n cause: signal?.reason,\n })\n )\n }\n const timer = setTimeout(() => {\n signal?.removeEventListener('abort', onAbort)\n resolve()\n }, ms)\n if (signal) {\n if (signal.aborted) {\n clearTimeout(timer)\n onAbort()\n return\n }\n signal.addEventListener('abort', onAbort, { once: true })\n }\n })\n}\n","/**\n * Verification for async scrape completion webhooks.\n *\n * {@link verifyWebhookSignature} validates the signature crawlbrulee attaches to\n * every webhook delivery. It is a standalone, network-free helper built on Web\n * Crypto (`globalThis.crypto.subtle`) so it runs unchanged on Node.js 22+,\n * browsers, Bun, Deno, and edge runtimes — it never touches `node:crypto`.\n */\n\n/** HTTP header carrying the primary webhook signature (always present). */\nexport const WEBHOOK_SIGNATURE_HEADER = 'X-Cwbl-Signature'\n\n/**\n * HTTP header carrying a signature produced with the previous signing secret.\n * Present only during a signing-secret rotation grace window.\n */\nexport const WEBHOOK_SIGNATURE_ROTATED_HEADER = 'X-Cwbl-Signature-Rotated'\n\n/** HTTP header carrying the unique event id, useful for delivery de-duplication. */\nexport const WEBHOOK_EVENT_ID_HEADER = 'X-Cwbl-Event-Id'\n\n/** Default replay-protection window (seconds) applied to the signed timestamp. */\nexport const DEFAULT_WEBHOOK_TOLERANCE_SECONDS = 300\n\n/** Which signature header satisfied verification. */\nexport type WebhookSignatureSource = 'primary' | 'rotated'\n\n/**\n * Why a webhook signature failed to verify.\n *\n * - `missing_signature` — neither the primary nor the rotated header was present.\n * - `malformed_signature` — a header was present but not in the expected\n * `t=<unix_seconds>,v1=<64_hex>` format.\n * - `timestamp_out_of_tolerance` — the signed timestamp drifted further from now\n * than `toleranceSeconds` allows (replay protection).\n * - `signature_mismatch` — a well-formed, in-tolerance signature did not match\n * the one computed from the payload and secret.\n */\nexport type WebhookVerificationFailureReason =\n | 'missing_signature'\n | 'malformed_signature'\n | 'timestamp_out_of_tolerance'\n | 'signature_mismatch'\n\n/** Result of {@link verifyWebhookSignature}. Verification failure is returned, not thrown. */\nexport type WebhookVerificationResult =\n | { verified: true; signedWith: WebhookSignatureSource }\n | { verified: false; reason: WebhookVerificationFailureReason }\n\n/** Options for {@link verifyWebhookSignature}. */\nexport interface VerifyWebhookSignatureOptions {\n /**\n * The raw request body, exactly as received. Pass the bytes/string the server\n * signed — do NOT re-serialize parsed JSON, or the signature will not match.\n */\n payload: string | Uint8Array\n /**\n * The request headers. Accepts a fetch `Headers` instance or a plain object\n * (Express/Node give lowercased keys, values possibly arrays). Lookup is\n * case-insensitive.\n */\n headers: Headers | Record<string, string | string[] | undefined>\n /** The current signing secret (`whsec_…`). */\n secret: string\n /**\n * Replay-protection window in seconds. Defaults to\n * {@link DEFAULT_WEBHOOK_TOLERANCE_SECONDS} (300). Pass `0` (or any falsy\n * value) to disable the timestamp check entirely.\n */\n toleranceSeconds?: number\n}\n\nconst SIGNATURE_FORMAT = /^t=(\\d+),v1=([0-9a-f]{64})$/\n\ninterface ParsedSignature {\n timestamp: number\n signature: string\n}\n\n/**\n * Verify a crawlbrulee webhook signature against the primary and rotated\n * headers.\n *\n * The signing scheme matches the backend:\n * - the signed payload is `` `${t}.${rawBody}` `` where `t` is the unix-seconds\n * integer from the header and `rawBody` is the raw request body,\n * - the signature is `HMAC-SHA256(secret, signedPayload)` as lowercase hex,\n * - the header value is `t=<unix_seconds>,v1=<64_hex>`.\n *\n * The supplied `secret` is tried against the primary header first, then the\n * rotated header (which the API emits during a signing-secret rotation grace\n * window). Whichever matches wins, and the result reports which header it was.\n *\n * This NEVER throws on a verification failure — failures are normal control\n * flow and are returned as `{ verified: false, reason }`.\n *\n * @example\n * ```ts\n * const result = await verifyWebhookSignature({\n * payload: rawBody,\n * headers: req.headers,\n * secret: process.env.CRAWLBRULEE_WEBHOOK_SECRET!,\n * })\n * if (!result.verified) return res.status(400).end()\n * ```\n */\nexport async function verifyWebhookSignature(\n options: VerifyWebhookSignatureOptions\n): Promise<WebhookVerificationResult> {\n const { payload, headers, secret } = options\n const toleranceSeconds = options.toleranceSeconds ?? DEFAULT_WEBHOOK_TOLERANCE_SECONDS\n\n const primaryHeader = getHeader(headers, WEBHOOK_SIGNATURE_HEADER)\n const rotatedHeader = getHeader(headers, WEBHOOK_SIGNATURE_ROTATED_HEADER)\n\n if (primaryHeader === undefined && rotatedHeader === undefined) {\n return { verified: false, reason: 'missing_signature' }\n }\n\n const nowSeconds = Math.floor(Date.now() / 1000)\n const body = toBytes(payload)\n const key = await importHmacKey(secret)\n\n // Track the \"best\" failure reason so the result is informative: a real\n // mismatch should win over a malformed sibling header. Order from least to\n // most specific.\n let failure: WebhookVerificationFailureReason = 'malformed_signature'\n\n for (const source of ['primary', 'rotated'] as const) {\n const raw = source === 'primary' ? primaryHeader : rotatedHeader\n if (raw === undefined) continue\n\n const parsed = parseSignatureHeader(raw)\n if (!parsed) {\n // A malformed header can't verify; keep looking at the other one.\n continue\n }\n\n if (toleranceSeconds && Math.abs(nowSeconds - parsed.timestamp) > toleranceSeconds) {\n failure = mostSpecificFailure(failure, 'timestamp_out_of_tolerance')\n continue\n }\n\n const expected = await computeSignatureHex(key, parsed.timestamp, body)\n if (constantTimeEqualHex(expected, parsed.signature)) {\n return { verified: true, signedWith: source }\n }\n\n failure = mostSpecificFailure(failure, 'signature_mismatch')\n }\n\n return { verified: false, reason: failure }\n}\n\n/**\n * Rank verification failures so the returned reason reflects the most\n * actionable problem encountered across the two headers.\n */\nfunction mostSpecificFailure(\n current: WebhookVerificationFailureReason,\n candidate: WebhookVerificationFailureReason\n): WebhookVerificationFailureReason {\n const rank: Record<WebhookVerificationFailureReason, number> = {\n missing_signature: 0,\n malformed_signature: 1,\n timestamp_out_of_tolerance: 2,\n signature_mismatch: 3,\n }\n return rank[candidate] > rank[current] ? candidate : current\n}\n\n/** Case-insensitive header lookup over `Headers` or a plain object. */\nfunction getHeader(\n headers: Headers | Record<string, string | string[] | undefined>,\n name: string\n): string | undefined {\n if (typeof Headers !== 'undefined' && headers instanceof Headers) {\n return headers.get(name) ?? undefined\n }\n const target = name.toLowerCase()\n for (const key of Object.keys(headers)) {\n if (key.toLowerCase() !== target) continue\n const value = (headers as Record<string, string | string[] | undefined>)[key]\n if (Array.isArray(value)) return value[0]\n return value ?? undefined\n }\n return undefined\n}\n\nfunction parseSignatureHeader(value: string): ParsedSignature | null {\n const match = SIGNATURE_FORMAT.exec(value.trim())\n if (!match) return null\n const timestamp = Number(match[1])\n if (!Number.isSafeInteger(timestamp)) return null\n return { timestamp, signature: match[2]! }\n}\n\nfunction toBytes(payload: string | Uint8Array): Uint8Array {\n return typeof payload === 'string' ? new TextEncoder().encode(payload) : payload\n}\n\n/**\n * Web Crypto types, derived from the runtime global so we don't have to pull in\n * the DOM `lib` (the SDK compiles against `lib: ES2022` + `@types/node`).\n */\ntype SubtleCryptoLike = typeof globalThis.crypto.subtle\ntype CryptoKeyLike = Awaited<ReturnType<SubtleCryptoLike['importKey']>>\n\nfunction importHmacKey(secret: string): Promise<CryptoKeyLike> {\n return getSubtle().importKey(\n 'raw',\n new TextEncoder().encode(secret),\n { name: 'HMAC', hash: 'SHA-256' },\n false,\n ['sign']\n )\n}\n\nasync function computeSignatureHex(\n key: CryptoKeyLike,\n timestamp: number,\n body: Uint8Array\n): Promise<string> {\n const prefix = new TextEncoder().encode(`${timestamp}.`)\n const message = new Uint8Array(prefix.length + body.length)\n message.set(prefix, 0)\n message.set(body, prefix.length)\n const digest = await getSubtle().sign('HMAC', key, message)\n return toHex(new Uint8Array(digest))\n}\n\nfunction toHex(bytes: Uint8Array): string {\n let hex = ''\n for (const byte of bytes) {\n hex += byte.toString(16).padStart(2, '0')\n }\n return hex\n}\n\n/**\n * Length-checked, constant-time comparison of two lowercase hex strings. Folds\n * every byte into an accumulator with XOR — never early-returns on the first\n * mismatch — so timing does not leak how much of the signature matched.\n */\nfunction constantTimeEqualHex(a: string, b: string): boolean {\n if (a.length !== b.length) return false\n let diff = 0\n for (let i = 0; i < a.length; i++) {\n diff |= a.charCodeAt(i) ^ b.charCodeAt(i)\n }\n return diff === 0\n}\n\nfunction getSubtle(): SubtleCryptoLike {\n const subtle = globalThis.crypto?.subtle\n if (!subtle) {\n throw new Error(\n 'Web Crypto (globalThis.crypto.subtle) is not available in this runtime. crawlbrulee webhook verification requires Node.js 22+, Bun, Deno, or a modern browser/edge runtime.'\n )\n }\n return subtle\n}\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crawlbrulee/sdk",
3
- "version": "0.9.0",
3
+ "version": "0.11.0",
4
4
  "description": "Official TypeScript / JavaScript SDK for crawlbrulee - web-scraping API.",
5
5
  "keywords": [
6
6
  "crawlbrulee",