@mendable/firecrawl-js 4.13.0-beta.1 → 4.13.0-beta.2
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.13.0-beta.
|
|
11
|
+
version: "4.13.0-beta.2",
|
|
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.13.0-beta.
|
|
38
|
+
version: "4.13.0-beta.2",
|
|
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
|
@@ -558,6 +558,7 @@ interface BrowserCreateResponse {
|
|
|
558
558
|
success: boolean;
|
|
559
559
|
id?: string;
|
|
560
560
|
cdpUrl?: string;
|
|
561
|
+
liveViewUrl?: string;
|
|
561
562
|
error?: string;
|
|
562
563
|
}
|
|
563
564
|
interface BrowserExecuteResponse {
|
|
@@ -573,6 +574,7 @@ interface BrowserSession {
|
|
|
573
574
|
id: string;
|
|
574
575
|
status: string;
|
|
575
576
|
cdpUrl: string;
|
|
577
|
+
liveViewUrl: string;
|
|
576
578
|
streamWebView: boolean;
|
|
577
579
|
createdAt: string;
|
|
578
580
|
lastActivity: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -558,6 +558,7 @@ interface BrowserCreateResponse {
|
|
|
558
558
|
success: boolean;
|
|
559
559
|
id?: string;
|
|
560
560
|
cdpUrl?: string;
|
|
561
|
+
liveViewUrl?: string;
|
|
561
562
|
error?: string;
|
|
562
563
|
}
|
|
563
564
|
interface BrowserExecuteResponse {
|
|
@@ -573,6 +574,7 @@ interface BrowserSession {
|
|
|
573
574
|
id: string;
|
|
574
575
|
status: string;
|
|
575
576
|
cdpUrl: string;
|
|
577
|
+
liveViewUrl: string;
|
|
576
578
|
streamWebView: boolean;
|
|
577
579
|
createdAt: string;
|
|
578
580
|
lastActivity: string;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
require_package
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-VEC6CWSH.js";
|
|
4
4
|
|
|
5
5
|
// src/v2/utils/httpClient.ts
|
|
6
6
|
import axios from "axios";
|
|
@@ -1464,7 +1464,7 @@ var FirecrawlApp = class {
|
|
|
1464
1464
|
if (typeof process !== "undefined" && process.env && process.env.npm_package_version) {
|
|
1465
1465
|
return process.env.npm_package_version;
|
|
1466
1466
|
}
|
|
1467
|
-
const packageJson = await import("./package-
|
|
1467
|
+
const packageJson = await import("./package-BBT366VN.js");
|
|
1468
1468
|
return packageJson.default.version;
|
|
1469
1469
|
} catch (error) {
|
|
1470
1470
|
const isTest = typeof process !== "undefined" && (process.env.JEST_WORKER_ID != null || false);
|
package/package.json
CHANGED
package/src/v2/types.ts
CHANGED
|
@@ -689,6 +689,7 @@ export interface BrowserCreateResponse {
|
|
|
689
689
|
success: boolean;
|
|
690
690
|
id?: string;
|
|
691
691
|
cdpUrl?: string;
|
|
692
|
+
liveViewUrl?: string;
|
|
692
693
|
error?: string;
|
|
693
694
|
}
|
|
694
695
|
|
|
@@ -707,6 +708,7 @@ export interface BrowserSession {
|
|
|
707
708
|
id: string;
|
|
708
709
|
status: string;
|
|
709
710
|
cdpUrl: string;
|
|
711
|
+
liveViewUrl: string;
|
|
710
712
|
streamWebView: boolean;
|
|
711
713
|
createdAt: string;
|
|
712
714
|
lastActivity: string;
|