unbrowse 2.8.1 → 2.8.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.
- package/dist/cli.js +4 -0
- package/package.json +1 -1
- package/runtime-src/auth/index.ts +6 -0
package/dist/cli.js
CHANGED
|
@@ -6116,6 +6116,10 @@ async function interactiveLogin(url, domain) {
|
|
|
6116
6116
|
const vaultKey = `auth:${getRegistrableDomain(targetDomain)}`;
|
|
6117
6117
|
await storeCredential(vaultKey, JSON.stringify({ cookies: storableCookies }));
|
|
6118
6118
|
log("auth", `stored ${storableCookies.length} cookies under ${vaultKey}`);
|
|
6119
|
+
try {
|
|
6120
|
+
await authProfileSave(tabId, targetDomain.replace(/^www\./, ""));
|
|
6121
|
+
log("auth", `saved Kuri auth profile for ${targetDomain}`);
|
|
6122
|
+
} catch {}
|
|
6119
6123
|
return { success: true, domain: targetDomain, cookies_stored: storableCookies.length };
|
|
6120
6124
|
} finally {
|
|
6121
6125
|
if (prevHeadless !== undefined)
|
package/package.json
CHANGED
|
@@ -142,6 +142,12 @@ export async function interactiveLogin(
|
|
|
142
142
|
await storeCredential(vaultKey, JSON.stringify({ cookies: storableCookies }));
|
|
143
143
|
log("auth", `stored ${storableCookies.length} cookies under ${vaultKey}`);
|
|
144
144
|
|
|
145
|
+
// Also save as Kuri auth profile so browse commands (go/snap/click) have auth
|
|
146
|
+
try {
|
|
147
|
+
await kuri.authProfileSave(tabId, targetDomain.replace(/^www\./, ""));
|
|
148
|
+
log("auth", `saved Kuri auth profile for ${targetDomain}`);
|
|
149
|
+
} catch { /* non-fatal — Kuri auth profile save is best-effort */ }
|
|
150
|
+
|
|
145
151
|
return { success: true, domain: targetDomain, cookies_stored: storableCookies.length };
|
|
146
152
|
} finally {
|
|
147
153
|
// Restore headless setting so subsequent captures run headless
|