agentxchain 2.155.68 → 2.155.69
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
CHANGED
|
@@ -12,7 +12,8 @@ const CLAUDE_ENV_AUTH_KEYS = [
|
|
|
12
12
|
const DEFAULT_SMOKE_PROBE_TIMEOUT_MS = 10_000;
|
|
13
13
|
const DEFAULT_SMOKE_PROBE_STDIN = 'ok';
|
|
14
14
|
const CLAUDE_AUTH_FAILURE_RE = /authentication_failed|authentication_error|invalid authentication credentials|unauthorized|API Error:\s*401/i;
|
|
15
|
-
const CLAUDE_NODE_INCOMPATIBILITY_RE =
|
|
15
|
+
const CLAUDE_NODE_INCOMPATIBILITY_RE =
|
|
16
|
+
/TypeError:\s*Object not disposable|TypeError\(["']Object not disposable["']\)|Object not disposable[\s\S]{0,2000}Node\.js v(?:1[0-9]|20\.[0-4]\.)/i;
|
|
16
17
|
const CLAUDE_COMPATIBLE_NODE_MIN = { major: 20, minor: 5, patch: 0 };
|
|
17
18
|
|
|
18
19
|
function normalizeCommandTokens(runtime) {
|