firecrawl 4.25.0 → 4.25.1
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.
|
@@ -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.25.
|
|
11
|
+
version: "4.25.1",
|
|
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.25.
|
|
38
|
+
version: "4.25.1",
|
|
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
|
@@ -597,7 +597,12 @@ interface MonitorPageJudgment {
|
|
|
597
597
|
meaningful: boolean;
|
|
598
598
|
confidence: "high" | "medium" | "low";
|
|
599
599
|
reason: string;
|
|
600
|
-
|
|
600
|
+
meaningfulChanges: Array<{
|
|
601
|
+
type: "added" | "removed" | "changed";
|
|
602
|
+
before: string | null;
|
|
603
|
+
after: string | null;
|
|
604
|
+
reason: string;
|
|
605
|
+
}>;
|
|
601
606
|
}
|
|
602
607
|
interface MonitorCheck {
|
|
603
608
|
id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -597,7 +597,12 @@ interface MonitorPageJudgment {
|
|
|
597
597
|
meaningful: boolean;
|
|
598
598
|
confidence: "high" | "medium" | "low";
|
|
599
599
|
reason: string;
|
|
600
|
-
|
|
600
|
+
meaningfulChanges: Array<{
|
|
601
|
+
type: "added" | "removed" | "changed";
|
|
602
|
+
before: string | null;
|
|
603
|
+
after: string | null;
|
|
604
|
+
reason: string;
|
|
605
|
+
}>;
|
|
601
606
|
}
|
|
602
607
|
interface MonitorCheck {
|
|
603
608
|
id: string;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
require_package
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-7KWNHI4H.js";
|
|
4
4
|
|
|
5
5
|
// src/v2/utils/httpClient.ts
|
|
6
6
|
import axios from "axios";
|
|
@@ -2097,7 +2097,7 @@ var FirecrawlApp = class {
|
|
|
2097
2097
|
if (typeof process !== "undefined" && process.env && process.env.npm_package_version) {
|
|
2098
2098
|
return process.env.npm_package_version;
|
|
2099
2099
|
}
|
|
2100
|
-
const packageJson = await import("./package-
|
|
2100
|
+
const packageJson = await import("./package-KBCQFPRT.js");
|
|
2101
2101
|
return packageJson.default.version;
|
|
2102
2102
|
} catch (error) {
|
|
2103
2103
|
const isTest = typeof process !== "undefined" && (process.env.JEST_WORKER_ID != null || false);
|
package/package.json
CHANGED
package/src/v2/types.ts
CHANGED
|
@@ -744,7 +744,12 @@ export interface MonitorPageJudgment {
|
|
|
744
744
|
meaningful: boolean;
|
|
745
745
|
confidence: "high" | "medium" | "low";
|
|
746
746
|
reason: string;
|
|
747
|
-
|
|
747
|
+
meaningfulChanges: Array<{
|
|
748
|
+
type: "added" | "removed" | "changed";
|
|
749
|
+
before: string | null;
|
|
750
|
+
after: string | null;
|
|
751
|
+
reason: string;
|
|
752
|
+
}>;
|
|
748
753
|
}
|
|
749
754
|
|
|
750
755
|
export interface MonitorCheck {
|