unbrowse 9.3.9 → 9.3.10
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 +4 -1
- package/runtime/mcp.js +4 -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
|
@@ -5020,7 +5020,7 @@ var init_cached_resolution = __esm(() => {
|
|
|
5020
5020
|
});
|
|
5021
5021
|
|
|
5022
5022
|
// .tmp-runtime-src/build-info.generated.ts
|
|
5023
|
-
var BUILD_RELEASE_VERSION = "9.3.
|
|
5023
|
+
var BUILD_RELEASE_VERSION = "9.3.10", BUILD_GIT_SHA = "af8f07846fbb", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOS4zLjEwIiwiZ2l0X3NoYSI6ImFmOGYwNzg0NmZiYiIsImNvZGVfaGFzaCI6IjVkOWViZjYxOWM2MSIsInRyYWNlX3ZlcnNpb24iOiI1ZDllYmY2MTljNjFAYWY4ZjA3ODQ2ZmJiIiwiaXNzdWVkX2F0IjoiMjAyNi0wNi0xNVQwOTo1NToxMy40MTZaIn0", BUILD_RELEASE_MANIFEST_SIGNATURE = "l1iGjuqMzW6Ohn0tN6_Ws5HyYXhzdZWLIrKB4hzlg8U", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
|
|
5024
5024
|
|
|
5025
5025
|
// .tmp-runtime-src/version.ts
|
|
5026
5026
|
import { createHash as createHash4 } from "crypto";
|
|
@@ -173240,6 +173240,9 @@ async function executeEndpoint(skill, endpoint, params = {}, projection, options
|
|
|
173240
173240
|
let last2 = { data: null, status: 0, response_headers: {} };
|
|
173241
173241
|
for (const replayUrl2 of replayUrls) {
|
|
173242
173242
|
const replayHeaders = buildStructuredReplayHeaders(url, replayUrl2, headers);
|
|
173243
|
+
if (bodyOverride && typeof bodyOverride === "object" && endpoint.method !== "GET" && endpoint.method !== "HEAD" && !replayHeaders["content-type"] && !replayHeaders["Content-Type"]) {
|
|
173244
|
+
replayHeaders["content-type"] = "application/json";
|
|
173245
|
+
}
|
|
173243
173246
|
log("exec", `server-fetch: ${endpoint.method} ${replayUrl2.substring(0, 200)} csrf-token=${(replayHeaders["csrf-token"] || "none").substring(0, 20)}... hdrs=${Object.keys(replayHeaders).length} cookies=${replayHeaders["cookie"]?.length ?? 0}chars`);
|
|
173244
173247
|
const res = await fetch(replayUrl2, {
|
|
173245
173248
|
method: endpoint.method,
|
package/runtime/mcp.js
CHANGED
|
@@ -36178,7 +36178,7 @@ var init_cached_resolution = __esm(() => {
|
|
|
36178
36178
|
});
|
|
36179
36179
|
|
|
36180
36180
|
// .tmp-runtime-src/build-info.generated.ts
|
|
36181
|
-
var BUILD_RELEASE_VERSION = "9.3.
|
|
36181
|
+
var BUILD_RELEASE_VERSION = "9.3.10", BUILD_GIT_SHA = "af8f07846fbb", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOS4zLjEwIiwiZ2l0X3NoYSI6ImFmOGYwNzg0NmZiYiIsImNvZGVfaGFzaCI6IjVkOWViZjYxOWM2MSIsInRyYWNlX3ZlcnNpb24iOiI1ZDllYmY2MTljNjFAYWY4ZjA3ODQ2ZmJiIiwiaXNzdWVkX2F0IjoiMjAyNi0wNi0xNVQwOTo1NToxMy40MTZaIn0", BUILD_RELEASE_MANIFEST_SIGNATURE = "l1iGjuqMzW6Ohn0tN6_Ws5HyYXhzdZWLIrKB4hzlg8U", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
|
|
36182
36182
|
|
|
36183
36183
|
// .tmp-runtime-src/version.ts
|
|
36184
36184
|
import { createHash as createHash3 } from "crypto";
|
|
@@ -107163,6 +107163,9 @@ async function executeEndpoint(skill, endpoint, params = {}, projection, options
|
|
|
107163
107163
|
let last2 = { data: null, status: 0, response_headers: {} };
|
|
107164
107164
|
for (const replayUrl2 of replayUrls) {
|
|
107165
107165
|
const replayHeaders = buildStructuredReplayHeaders(url, replayUrl2, headers);
|
|
107166
|
+
if (bodyOverride && typeof bodyOverride === "object" && endpoint.method !== "GET" && endpoint.method !== "HEAD" && !replayHeaders["content-type"] && !replayHeaders["Content-Type"]) {
|
|
107167
|
+
replayHeaders["content-type"] = "application/json";
|
|
107168
|
+
}
|
|
107166
107169
|
log("exec", `server-fetch: ${endpoint.method} ${replayUrl2.substring(0, 200)} csrf-token=${(replayHeaders["csrf-token"] || "none").substring(0, 20)}... hdrs=${Object.keys(replayHeaders).length} cookies=${replayHeaders["cookie"]?.length ?? 0}chars`);
|
|
107167
107170
|
const res = await fetch(replayUrl2, {
|
|
107168
107171
|
method: endpoint.method,
|
|
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-15T09:37:01.720Z",
|
|
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": "135e3d36d09af49c5e488ab399f7a6c4271cb8a57c547287fbad492eb886a0b6"
|
|
25
25
|
},
|
|
26
26
|
"win-x64": {
|
|
27
27
|
"zig_target": "x86_64-windows-gnu",
|
|
28
|
-
"sha256": "
|
|
28
|
+
"sha256": "19de0449a106d38e77625816a8033d4641d0c5dac040179fee28ea5adc594310",
|
|
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": "c4ecfca37cabaf3d7f1788ae41a46af78d725b9aebd47e868e4451b3c6cca196"
|
|
37
37
|
},
|
|
38
38
|
"darwin-x64": {
|
|
39
39
|
"zig_target": "x86_64-macos",
|
|
40
40
|
"lib": "libkuri_ffi.dylib",
|
|
41
|
-
"sha256": "
|
|
41
|
+
"sha256": "f88547a053815bf9b6b54db606f9d71f78a67cae9ea59fc1329728ac7496f0bb"
|
|
42
42
|
},
|
|
43
43
|
"linux-arm64": {
|
|
44
44
|
"zig_target": "aarch64-linux",
|
|
45
45
|
"lib": "libkuri_ffi.so",
|
|
46
|
-
"sha256": "
|
|
46
|
+
"sha256": "c311172e6d38b34fe18dfee3f3746cbd9b7a0b437ca286561cacacaab98e07b7"
|
|
47
47
|
},
|
|
48
48
|
"linux-x64": {
|
|
49
49
|
"zig_target": "x86_64-linux",
|
|
50
50
|
"lib": "libkuri_ffi.so",
|
|
51
|
-
"sha256": "
|
|
51
|
+
"sha256": "f02f65ca1d27fc35f7be1006cccf7264d51978a397524198eeb70d2c502e9f9f"
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
}
|
|
Binary file
|