unbrowse 9.4.10 → 9.4.11
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/runtime/cli.js +11 -1
- package/runtime/mcp.js +11 -1
- package/vendor/kuri/darwin-arm64/libkuri_ffi.dylib +0 -0
- package/vendor/kuri/darwin-x64/libkuri_ffi.dylib +0 -0
- package/vendor/kuri/linux-arm64/libkuri_ffi.so +0 -0
- package/vendor/kuri/linux-x64/kuri +0 -0
- package/vendor/kuri/linux-x64/libkuri_ffi.so +0 -0
- package/vendor/kuri/manifest.json +7 -7
- package/vendor/kuri/win-x64/kuri.exe +0 -0
package/package.json
CHANGED
package/runtime/cli.js
CHANGED
|
@@ -1805,7 +1805,7 @@ var init_cached_resolution2 = __esm(() => {
|
|
|
1805
1805
|
});
|
|
1806
1806
|
|
|
1807
1807
|
// .tmp-runtime-src/build-info.generated.ts
|
|
1808
|
-
var BUILD_RELEASE_VERSION = "9.4.
|
|
1808
|
+
var BUILD_RELEASE_VERSION = "9.4.11", BUILD_GIT_SHA = "9901c47959fe", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOS40LjExIiwiZ2l0X3NoYSI6Ijk5MDFjNDc5NTlmZSIsImNvZGVfaGFzaCI6IjVkOWViZjYxOWM2MSIsInRyYWNlX3ZlcnNpb24iOiI1ZDllYmY2MTljNjFAOTkwMWM0Nzk1OWZlIiwiaXNzdWVkX2F0IjoiMjAyNi0wNi0xN1QxMDoyODowMS4xNzdaIn0", BUILD_RELEASE_MANIFEST_SIGNATURE = "wkE-lxqDrJjzvZpxC3qf63Q9k6Hf3nnb1GY5An6ICyM", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
|
|
1809
1809
|
|
|
1810
1810
|
// .tmp-runtime-src/version.ts
|
|
1811
1811
|
import { createHash as createHash4 } from "crypto";
|
|
@@ -229587,6 +229587,16 @@ function detectVendor(html3) {
|
|
|
229587
229587
|
return null;
|
|
229588
229588
|
}
|
|
229589
229589
|
async function clearCaptchaInRender(conn, target, url) {
|
|
229590
|
+
try {
|
|
229591
|
+
const deadline = Date.now() + 8000;
|
|
229592
|
+
for (;; ) {
|
|
229593
|
+
const rs = await conn.call("Runtime.evaluate", { expression: "document.readyState", returnByValue: true }, target.sessionId);
|
|
229594
|
+
if (rs?.result?.value === "complete" || Date.now() > deadline)
|
|
229595
|
+
break;
|
|
229596
|
+
await new Promise((r) => setTimeout(r, 250));
|
|
229597
|
+
}
|
|
229598
|
+
await new Promise((r) => setTimeout(r, 1500));
|
|
229599
|
+
} catch {}
|
|
229590
229600
|
let html3 = "";
|
|
229591
229601
|
try {
|
|
229592
229602
|
const res = await conn.call("Runtime.evaluate", { expression: "document.documentElement.outerHTML", returnByValue: true }, target.sessionId);
|
package/runtime/mcp.js
CHANGED
|
@@ -36310,7 +36310,7 @@ var init_cached_resolution = __esm(() => {
|
|
|
36310
36310
|
});
|
|
36311
36311
|
|
|
36312
36312
|
// .tmp-runtime-src/build-info.generated.ts
|
|
36313
|
-
var BUILD_RELEASE_VERSION = "9.4.
|
|
36313
|
+
var BUILD_RELEASE_VERSION = "9.4.11", BUILD_GIT_SHA = "9901c47959fe", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOS40LjExIiwiZ2l0X3NoYSI6Ijk5MDFjNDc5NTlmZSIsImNvZGVfaGFzaCI6IjVkOWViZjYxOWM2MSIsInRyYWNlX3ZlcnNpb24iOiI1ZDllYmY2MTljNjFAOTkwMWM0Nzk1OWZlIiwiaXNzdWVkX2F0IjoiMjAyNi0wNi0xN1QxMDoyODowMS4xNzdaIn0", BUILD_RELEASE_MANIFEST_SIGNATURE = "wkE-lxqDrJjzvZpxC3qf63Q9k6Hf3nnb1GY5An6ICyM", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
|
|
36314
36314
|
|
|
36315
36315
|
// .tmp-runtime-src/version.ts
|
|
36316
36316
|
import { createHash as createHash4 } from "crypto";
|
|
@@ -222510,6 +222510,16 @@ function detectVendor(html3) {
|
|
|
222510
222510
|
return null;
|
|
222511
222511
|
}
|
|
222512
222512
|
async function clearCaptchaInRender(conn, target, url) {
|
|
222513
|
+
try {
|
|
222514
|
+
const deadline = Date.now() + 8000;
|
|
222515
|
+
for (;; ) {
|
|
222516
|
+
const rs = await conn.call("Runtime.evaluate", { expression: "document.readyState", returnByValue: true }, target.sessionId);
|
|
222517
|
+
if (rs?.result?.value === "complete" || Date.now() > deadline)
|
|
222518
|
+
break;
|
|
222519
|
+
await new Promise((r) => setTimeout(r, 250));
|
|
222520
|
+
}
|
|
222521
|
+
await new Promise((r) => setTimeout(r, 1500));
|
|
222522
|
+
} catch {}
|
|
222513
222523
|
let html3 = "";
|
|
222514
222524
|
try {
|
|
222515
222525
|
const res = await conn.call("Runtime.evaluate", { expression: "document.documentElement.outerHTML", returnByValue: true }, target.sessionId);
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"repo_url": "https://github.com/justrach/kuri.git",
|
|
3
3
|
"branch": "adding-extensions",
|
|
4
4
|
"source_sha": "149881254046a20778f642b69f20f0c6468f6fb4",
|
|
5
|
-
"built_at": "2026-06-
|
|
5
|
+
"built_at": "2026-06-17T10:10:59.074Z",
|
|
6
6
|
"binaries": {
|
|
7
7
|
"darwin-arm64": {
|
|
8
8
|
"zig_target": "aarch64-macos",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
},
|
|
22
22
|
"linux-x64": {
|
|
23
23
|
"zig_target": "x86_64-linux",
|
|
24
|
-
"sha256": "
|
|
24
|
+
"sha256": "4fd20ee9a17b1a32a85c0155bdd9fce34625e0e0e8bcb4b37886e7227de80df4"
|
|
25
25
|
},
|
|
26
26
|
"win-x64": {
|
|
27
27
|
"zig_target": "x86_64-windows-gnu",
|
|
28
|
-
"sha256": "
|
|
28
|
+
"sha256": "735b9be1bb12e37da3b07aba0a7f700e4bf1d9de751edf2c11211081a5419027",
|
|
29
29
|
"source": "pre-staged"
|
|
30
30
|
}
|
|
31
31
|
},
|
|
@@ -33,22 +33,22 @@
|
|
|
33
33
|
"darwin-arm64": {
|
|
34
34
|
"zig_target": "aarch64-macos",
|
|
35
35
|
"lib": "libkuri_ffi.dylib",
|
|
36
|
-
"sha256": "
|
|
36
|
+
"sha256": "0880cc2ff53d964f83e4397fd7a67d9ea2b8a0f2a47300ec8f597d23c1b2382a"
|
|
37
37
|
},
|
|
38
38
|
"darwin-x64": {
|
|
39
39
|
"zig_target": "x86_64-macos",
|
|
40
40
|
"lib": "libkuri_ffi.dylib",
|
|
41
|
-
"sha256": "
|
|
41
|
+
"sha256": "a1a421f3f89b38637e93d1f63a06371a7dae4fcaec304352f5a11bb13ef85770"
|
|
42
42
|
},
|
|
43
43
|
"linux-arm64": {
|
|
44
44
|
"zig_target": "aarch64-linux",
|
|
45
45
|
"lib": "libkuri_ffi.so",
|
|
46
|
-
"sha256": "
|
|
46
|
+
"sha256": "b77877dec5c17528379db0cfb2f7f4da27416a8e805066e736cd365ff514f49d"
|
|
47
47
|
},
|
|
48
48
|
"linux-x64": {
|
|
49
49
|
"zig_target": "x86_64-linux",
|
|
50
50
|
"lib": "libkuri_ffi.so",
|
|
51
|
-
"sha256": "
|
|
51
|
+
"sha256": "867b993635b0d67a295e97e433b5de140d4dc686b5527adf98217db0771621d5"
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
}
|
|
Binary file
|