From db85f1a7d58612dd41e6341853f2a236df210427 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Thu, 29 Aug 2024 17:11:16 -0300 Subject: [PATCH] Update index.ts --- apps/js-sdk/firecrawl/src/index.ts | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/apps/js-sdk/firecrawl/src/index.ts b/apps/js-sdk/firecrawl/src/index.ts index cb2a0e4..2527be9 100644 --- a/apps/js-sdk/firecrawl/src/index.ts +++ b/apps/js-sdk/firecrawl/src/index.ts @@ -265,13 +265,10 @@ export interface CrawlStatusResponseV0 { * Defines options for mapping URLs during a crawl. */ export interface MapParams { - includePaths?: string[] - excludePaths?: string[] - maxDepth?: number - limit?: number - allowBackwardLinks?: boolean - allowExternalLinks?: boolean - ignoreSitemap?: boolean + search?: string; + ignoreSitemap?: boolean; + includeSubdomains?: boolean; + limit?: number; } /**