@trusty-squire/mcp 1.0.8 → 1.0.9-rc.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/bot/browser.js +2 -2
- package/dist/bot/browser.js.map +1 -1
- package/dist/bot/captcha-solver-2captcha.d.ts +1 -0
- package/dist/bot/captcha-solver-2captcha.d.ts.map +1 -1
- package/dist/bot/captcha-solver-2captcha.js +1 -0
- package/dist/bot/captcha-solver-2captcha.js.map +1 -1
- package/dist/bot/failure-stage.js +1 -1
- package/dist/bot/failure-stage.js.map +1 -1
- package/dist/bot/google-login.d.ts.map +1 -1
- package/dist/bot/google-login.js +12 -0
- package/dist/bot/google-login.js.map +1 -1
- package/dist/bot/onboarding-capture.js +1 -1
- package/dist/bot/onboarding-capture.js.map +1 -1
- package/dist/bot/operator-recipe.d.ts +4 -0
- package/dist/bot/operator-recipe.d.ts.map +1 -1
- package/dist/bot/operator-recipe.js +56 -3
- package/dist/bot/operator-recipe.js.map +1 -1
- package/dist/bot/promote-to-skill.d.ts.map +1 -1
- package/dist/bot/promote-to-skill.js +2 -3
- package/dist/bot/promote-to-skill.js.map +1 -1
- package/dist/bot/provision-session.d.ts.map +1 -1
- package/dist/bot/provision-session.js +49 -10
- package/dist/bot/provision-session.js.map +1 -1
- package/dist/install/cli.d.ts.map +1 -1
- package/dist/install/cli.js +9 -3
- package/dist/install/cli.js.map +1 -1
- package/dist/tools/provision-drive.js +1 -1
- package/dist/tools/provision-drive.js.map +1 -1
- package/package.json +1 -1
package/dist/bot/browser.js
CHANGED
|
@@ -38,7 +38,7 @@ const require = createRequire(import.meta.url);
|
|
|
38
38
|
// evaluations in an isolated world and removes the automation tells —
|
|
39
39
|
// mainWorldExecution, navigator.webdriver, viewport — that Turnstile /
|
|
40
40
|
// reCAPTCHA-v3 / Google's consent SPA score on). See
|
|
41
|
-
// docs/
|
|
41
|
+
// docs/ARCHITECTURE.md.
|
|
42
42
|
//
|
|
43
43
|
// 2026-06-08 — DEFAULT FLIPPED ON. The baseline (playwright-extra +
|
|
44
44
|
// stealth) self-inflicts a detectable navigator.webdriver via its manual
|
|
@@ -84,7 +84,7 @@ function getChromium() {
|
|
|
84
84
|
// crashed the OAuth flow. NO playwright-extra/stealth wrap here: the
|
|
85
85
|
// stealth plugin's manual `navigator.webdriver` defineProperty
|
|
86
86
|
// RE-ADDS a detectable property (proven counterproductive) — patchright
|
|
87
|
-
// does it right. See docs/
|
|
87
|
+
// does it right. See docs/ARCHITECTURE.md.
|
|
88
88
|
const patchright = require("patchright");
|
|
89
89
|
cachedChromium = patchright.chromium;
|
|
90
90
|
activeStealthProfile = "cdp_hardened";
|