@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 +1 -1
- package/src/index.ts +4 -7
- package/types/index.d.ts +3 -6
package/package.json
CHANGED
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
|
-
|
|
269
|
-
|
|
270
|
-
|
|
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
|
-
|
|
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.
|