@mendable/firecrawl-js 1.0.3 → 1.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mendable/firecrawl-js",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "JavaScript SDK for Firecrawl API",
5
5
  "main": "build/cjs/index.js",
6
6
  "types": "types/index.d.ts",
package/src/index.ts CHANGED
@@ -265,13 +265,10 @@ export interface CrawlStatusResponseV0 {
265
265
  * Defines options for mapping URLs during a crawl.
266
266
  */
267
267
  export interface MapParams {
268
- includePaths?: string[]
269
- excludePaths?: string[]
270
- maxDepth?: number
271
- limit?: number
272
- allowBackwardLinks?: boolean
273
- allowExternalLinks?: boolean
274
- ignoreSitemap?: boolean
268
+ search?: string;
269
+ ignoreSitemap?: boolean;
270
+ includeSubdomains?: boolean;
271
+ limit?: number;
275
272
  }
276
273
 
277
274
  /**
package/types/index.d.ts CHANGED
@@ -246,13 +246,10 @@ export interface CrawlStatusResponseV0 {
246
246
  * Defines options for mapping URLs during a crawl.
247
247
  */
248
248
  export interface MapParams {
249
- includePaths?: string[];
250
- excludePaths?: string[];
251
- maxDepth?: number;
252
- limit?: number;
253
- allowBackwardLinks?: boolean;
254
- allowExternalLinks?: boolean;
249
+ search?: string;
255
250
  ignoreSitemap?: boolean;
251
+ includeSubdomains?: boolean;
252
+ limit?: number;
256
253
  }
257
254
  /**
258
255
  * Response interface for mapping operations.