@codeam/shared 2.61.51 → 2.61.55
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/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +32 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +32 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1105,6 +1105,38 @@ var INTEGRATION_REGISTRY = {
|
|
|
1105
1105
|
httpHeaders: { "X-Goog-Api-Key": "{accessToken}" }
|
|
1106
1106
|
}
|
|
1107
1107
|
}
|
|
1108
|
+
},
|
|
1109
|
+
vercel: {
|
|
1110
|
+
id: "vercel",
|
|
1111
|
+
name: "Vercel",
|
|
1112
|
+
icon: "vercel",
|
|
1113
|
+
category: "deployment",
|
|
1114
|
+
// DARK — OAuth (PKCE public client). The user authorizes our registered
|
|
1115
|
+
// Vercel OAuth app; the access token calls Vercel's OFFICIAL hosted remote
|
|
1116
|
+
// MCP (mcp.vercel.com, Streamable HTTP) as a Bearer header — the SAME shim
|
|
1117
|
+
// HTTP transport as PostHog/Datadog. Vercel MCP is approved-clients + per-
|
|
1118
|
+
// connection OAuth consent, but that consent is the ONE-TIME authorize (not
|
|
1119
|
+
// per MCP request), so a backend-brokered access token works headless.
|
|
1120
|
+
// Endpoints (from mcp.vercel.com/.well-known/oauth-protected-resource →
|
|
1121
|
+
// vercel.com/.well-known/oauth-authorization-server): authorize
|
|
1122
|
+
// https://vercel.com/oauth/authorize, token
|
|
1123
|
+
// https://vercel.com/api/login/oauth/token, PKCE S256, token-endpoint auth
|
|
1124
|
+
// 'none' (public). LIVE — the headless Bearer against mcp.vercel.com was
|
|
1125
|
+
// verified (2026-07-27).
|
|
1126
|
+
enabled: true,
|
|
1127
|
+
auth: {
|
|
1128
|
+
kind: "oauth_redirect",
|
|
1129
|
+
scopes: ["openid", "offline_access"]
|
|
1130
|
+
},
|
|
1131
|
+
delivery: {
|
|
1132
|
+
mcp: {
|
|
1133
|
+
command: "",
|
|
1134
|
+
args: [],
|
|
1135
|
+
envMapping: {},
|
|
1136
|
+
httpUrl: "https://mcp.vercel.com",
|
|
1137
|
+
httpHeaders: { Authorization: "Bearer {accessToken}" }
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1108
1140
|
}
|
|
1109
1141
|
};
|
|
1110
1142
|
function getEnabledIntegrations() {
|
|
@@ -1399,7 +1431,6 @@ var UPCOMING_INTEGRATION_IDS = [
|
|
|
1399
1431
|
"clickup",
|
|
1400
1432
|
"figma",
|
|
1401
1433
|
"trello",
|
|
1402
|
-
"vercel",
|
|
1403
1434
|
"supabase",
|
|
1404
1435
|
"asana",
|
|
1405
1436
|
"postman",
|