From 1abc6f0f48bdf80a5d0df4863dd7b897b94f8265 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20M=C3=B3ricz?= Date: Fri, 30 May 2025 17:53:25 +0200 Subject: [PATCH] add comment to clarify is_scrape --- apps/api/src/types.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/api/src/types.ts b/apps/api/src/types.ts index c5c4027c..2e18ba3d 100644 --- a/apps/api/src/types.ts +++ b/apps/api/src/types.ts @@ -44,7 +44,12 @@ export interface WebScraperOptions { sitemapped?: boolean; webhook?: z.infer; v1?: boolean; + + /** + * Disables billing on the worker side. + */ is_scrape?: boolean; + isCrawlSourceScrape?: boolean; from_extract?: boolean; startTime?: number;