firecrawl 4.18.2 → 4.18.3
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 +1 -1
- package/dist/{chunk-QU5TGKGP.js → chunk-XC6YCBFX.js} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -2
- package/dist/{package-ZEW57A2P.js → package-PW6FMSAE.js} +1 -1
- package/package.json +1 -1
- package/src/v2/types.ts +2 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Firecrawl Node SDK
|
|
2
2
|
|
|
3
|
-
The Firecrawl Node SDK is a library that allows you to easily scrape and
|
|
3
|
+
The Firecrawl Node SDK is a library that allows you to easily search, scrape, and interact with the web, and output the data in a format ready for use with language models (LLMs). It provides a simple and intuitive interface for the Firecrawl API.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ var require_package = __commonJS({
|
|
|
8
8
|
"package.json"(exports, module) {
|
|
9
9
|
module.exports = {
|
|
10
10
|
name: "@mendable/firecrawl-js",
|
|
11
|
-
version: "4.18.
|
|
11
|
+
version: "4.18.3",
|
|
12
12
|
description: "JavaScript SDK for Firecrawl API",
|
|
13
13
|
main: "dist/index.js",
|
|
14
14
|
types: "dist/index.d.ts",
|
package/dist/index.cjs
CHANGED
|
@@ -35,7 +35,7 @@ var require_package = __commonJS({
|
|
|
35
35
|
"package.json"(exports2, module2) {
|
|
36
36
|
module2.exports = {
|
|
37
37
|
name: "@mendable/firecrawl-js",
|
|
38
|
-
version: "4.18.
|
|
38
|
+
version: "4.18.3",
|
|
39
39
|
description: "JavaScript SDK for Firecrawl API",
|
|
40
40
|
main: "dist/index.js",
|
|
41
41
|
types: "dist/index.d.ts",
|
package/dist/index.d.cts
CHANGED
|
@@ -400,6 +400,8 @@ interface CrawlOptions {
|
|
|
400
400
|
crawlEntireDomain?: boolean;
|
|
401
401
|
allowExternalLinks?: boolean;
|
|
402
402
|
allowSubdomains?: boolean;
|
|
403
|
+
ignoreRobotsTxt?: boolean;
|
|
404
|
+
robotsUserAgent?: string | null;
|
|
403
405
|
delay?: number | null;
|
|
404
406
|
maxConcurrency?: number | null;
|
|
405
407
|
webhook?: string | WebhookConfig | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -400,6 +400,8 @@ interface CrawlOptions {
|
|
|
400
400
|
crawlEntireDomain?: boolean;
|
|
401
401
|
allowExternalLinks?: boolean;
|
|
402
402
|
allowSubdomains?: boolean;
|
|
403
|
+
ignoreRobotsTxt?: boolean;
|
|
404
|
+
robotsUserAgent?: string | null;
|
|
403
405
|
delay?: number | null;
|
|
404
406
|
maxConcurrency?: number | null;
|
|
405
407
|
webhook?: string | WebhookConfig | null;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
require_package
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-XC6YCBFX.js";
|
|
4
4
|
|
|
5
5
|
// src/v2/utils/httpClient.ts
|
|
6
6
|
import axios from "axios";
|
|
@@ -1559,7 +1559,7 @@ var FirecrawlApp = class {
|
|
|
1559
1559
|
if (typeof process !== "undefined" && process.env && process.env.npm_package_version) {
|
|
1560
1560
|
return process.env.npm_package_version;
|
|
1561
1561
|
}
|
|
1562
|
-
const packageJson = await import("./package-
|
|
1562
|
+
const packageJson = await import("./package-PW6FMSAE.js");
|
|
1563
1563
|
return packageJson.default.version;
|
|
1564
1564
|
} catch (error) {
|
|
1565
1565
|
const isTest = typeof process !== "undefined" && (process.env.JEST_WORKER_ID != null || false);
|
package/package.json
CHANGED
package/src/v2/types.ts
CHANGED
|
@@ -482,6 +482,8 @@ export interface CrawlOptions {
|
|
|
482
482
|
crawlEntireDomain?: boolean;
|
|
483
483
|
allowExternalLinks?: boolean;
|
|
484
484
|
allowSubdomains?: boolean;
|
|
485
|
+
ignoreRobotsTxt?: boolean;
|
|
486
|
+
robotsUserAgent?: string | null;
|
|
485
487
|
delay?: number | null;
|
|
486
488
|
maxConcurrency?: number | null;
|
|
487
489
|
webhook?: string | WebhookConfig | null;
|