vercel 50.25.2 → 50.25.3
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/commands-bulk.js +6 -1
- package/dist/version.mjs +1 -1
- package/package.json +7 -7
package/dist/commands-bulk.js
CHANGED
|
@@ -13512,7 +13512,12 @@ Example: vercel ${commandName} ${integrationSlug}/${integration.products[0].slug
|
|
|
13512
13512
|
let acceptedPolicies = {};
|
|
13513
13513
|
let browserInstallationId;
|
|
13514
13514
|
if (!teamInstallation) {
|
|
13515
|
-
if (
|
|
13515
|
+
if (
|
|
13516
|
+
// AI agent mode — cannot interact with terminal prompts
|
|
13517
|
+
client.isAgent || // Non-interactive terminal (CI/scripts) — no TTY for prompts
|
|
13518
|
+
!client.stdin.isTTY || // Server declares browser install required (e.g. needs device fingerprint)
|
|
13519
|
+
integration.capabilities?.requiresBrowserInstall
|
|
13520
|
+
) {
|
|
13516
13521
|
const browserInstallation = await acceptTermsViaBrowser(
|
|
13517
13522
|
client,
|
|
13518
13523
|
integration,
|
package/dist/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = "50.25.
|
|
1
|
+
export const version = "50.25.3";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vercel",
|
|
3
|
-
"version": "50.25.
|
|
3
|
+
"version": "50.25.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"preferGlobal": true,
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,23 +30,23 @@
|
|
|
30
30
|
"jose": "5.9.6",
|
|
31
31
|
"luxon": "^3.4.0",
|
|
32
32
|
"proxy-agent": "6.4.0",
|
|
33
|
-
"@vercel/build-utils": "13.6.1",
|
|
34
33
|
"@vercel/detect-agent": "1.1.0",
|
|
35
|
-
"@vercel/elysia": "0.1.42",
|
|
36
34
|
"@vercel/backends": "0.0.39",
|
|
35
|
+
"@vercel/build-utils": "13.6.1",
|
|
36
|
+
"@vercel/express": "0.1.51",
|
|
37
37
|
"@vercel/fastify": "0.1.45",
|
|
38
38
|
"@vercel/go": "3.4.3",
|
|
39
39
|
"@vercel/h3": "0.1.51",
|
|
40
|
-
"@vercel/express": "0.1.51",
|
|
41
40
|
"@vercel/hono": "0.2.45",
|
|
42
41
|
"@vercel/hydrogen": "1.3.5",
|
|
43
|
-
"@vercel/koa": "0.1.25",
|
|
44
42
|
"@vercel/nestjs": "0.2.46",
|
|
45
43
|
"@vercel/next": "4.15.36",
|
|
44
|
+
"@vercel/koa": "0.1.25",
|
|
46
45
|
"@vercel/node": "5.6.9",
|
|
47
|
-
"@vercel/python": "6.18.
|
|
48
|
-
"@vercel/redwood": "2.4.9",
|
|
46
|
+
"@vercel/python": "6.18.1",
|
|
49
47
|
"@vercel/remix-builder": "5.6.0",
|
|
48
|
+
"@vercel/elysia": "0.1.42",
|
|
49
|
+
"@vercel/redwood": "2.4.9",
|
|
50
50
|
"@vercel/ruby": "2.3.2",
|
|
51
51
|
"@vercel/rust": "1.0.5",
|
|
52
52
|
"@vercel/static-build": "2.8.43"
|