@mendable/firecrawl 4.15.3 → 4.15.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.
|
@@ -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.15.
|
|
11
|
+
version: "4.15.4",
|
|
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.15.
|
|
38
|
+
version: "4.15.4",
|
|
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
|
@@ -567,6 +567,7 @@ interface BrowserCreateResponse {
|
|
|
567
567
|
id?: string;
|
|
568
568
|
cdpUrl?: string;
|
|
569
569
|
liveViewUrl?: string;
|
|
570
|
+
interactiveLiveViewUrl?: string;
|
|
570
571
|
expiresAt?: string;
|
|
571
572
|
error?: string;
|
|
572
573
|
}
|
|
@@ -590,6 +591,7 @@ interface BrowserSession {
|
|
|
590
591
|
status: string;
|
|
591
592
|
cdpUrl: string;
|
|
592
593
|
liveViewUrl: string;
|
|
594
|
+
interactiveLiveViewUrl?: string;
|
|
593
595
|
streamWebView: boolean;
|
|
594
596
|
createdAt: string;
|
|
595
597
|
lastActivity: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -567,6 +567,7 @@ interface BrowserCreateResponse {
|
|
|
567
567
|
id?: string;
|
|
568
568
|
cdpUrl?: string;
|
|
569
569
|
liveViewUrl?: string;
|
|
570
|
+
interactiveLiveViewUrl?: string;
|
|
570
571
|
expiresAt?: string;
|
|
571
572
|
error?: string;
|
|
572
573
|
}
|
|
@@ -590,6 +591,7 @@ interface BrowserSession {
|
|
|
590
591
|
status: string;
|
|
591
592
|
cdpUrl: string;
|
|
592
593
|
liveViewUrl: string;
|
|
594
|
+
interactiveLiveViewUrl?: string;
|
|
593
595
|
streamWebView: boolean;
|
|
594
596
|
createdAt: string;
|
|
595
597
|
lastActivity: string;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
require_package
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-LHLOMVKV.js";
|
|
4
4
|
|
|
5
5
|
// src/v2/utils/httpClient.ts
|
|
6
6
|
import axios from "axios";
|
|
@@ -1483,7 +1483,7 @@ var FirecrawlApp = class {
|
|
|
1483
1483
|
if (typeof process !== "undefined" && process.env && process.env.npm_package_version) {
|
|
1484
1484
|
return process.env.npm_package_version;
|
|
1485
1485
|
}
|
|
1486
|
-
const packageJson = await import("./package-
|
|
1486
|
+
const packageJson = await import("./package-5WBMC2X6.js");
|
|
1487
1487
|
return packageJson.default.version;
|
|
1488
1488
|
} catch (error) {
|
|
1489
1489
|
const isTest = typeof process !== "undefined" && (process.env.JEST_WORKER_ID != null || false);
|
package/package.json
CHANGED
package/src/v2/types.ts
CHANGED
|
@@ -697,6 +697,7 @@ export interface BrowserCreateResponse {
|
|
|
697
697
|
id?: string;
|
|
698
698
|
cdpUrl?: string;
|
|
699
699
|
liveViewUrl?: string;
|
|
700
|
+
interactiveLiveViewUrl?: string;
|
|
700
701
|
expiresAt?: string;
|
|
701
702
|
error?: string;
|
|
702
703
|
}
|
|
@@ -723,6 +724,7 @@ export interface BrowserSession {
|
|
|
723
724
|
status: string;
|
|
724
725
|
cdpUrl: string;
|
|
725
726
|
liveViewUrl: string;
|
|
727
|
+
interactiveLiveViewUrl?: string;
|
|
726
728
|
streamWebView: boolean;
|
|
727
729
|
createdAt: string;
|
|
728
730
|
lastActivity: string;
|