@codeam/shared 2.61.62 → 2.61.63

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.mjs CHANGED
@@ -1342,6 +1342,37 @@ var INTEGRATION_REGISTRY = {
1342
1342
  }
1343
1343
  }
1344
1344
  }
1345
+ },
1346
+ supabase: {
1347
+ id: "supabase",
1348
+ name: "Supabase",
1349
+ icon: "supabase",
1350
+ category: "database",
1351
+ // LIVE — OAuth 2.0 (authorization code, Confidential). authorize
1352
+ // api.supabase.com/v1/oauth/authorize; token /v1/oauth/token
1353
+ // (form-urlencoded, client creds via HTTP Basic); rotating refresh tokens.
1354
+ // The OAuth app (Organization → OAuth Apps) is registered and
1355
+ // SUPABASE_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI are in Secret Manager
1356
+ // (prod+dev); the config-gated 503 keeps this safe mid-rollout.
1357
+ enabled: true,
1358
+ auth: {
1359
+ kind: "oauth_redirect",
1360
+ // ⚠️ Supabase scopes are configured ON THE OAUTH APP, NOT sent in the
1361
+ // authorize URL — this list is informational (what the app was granted).
1362
+ scopes: ["all"]
1363
+ },
1364
+ delivery: {
1365
+ mcp: {
1366
+ // Supabase's OFFICIAL MCP server (Node). The OAuth access token IS a
1367
+ // Management API token → fed via SUPABASE_ACCESS_TOKEN (env only, never
1368
+ // argv). Version PINNED; bump only after re-verifying headless.
1369
+ command: "npx",
1370
+ args: ["-y", "@supabase/mcp-server-supabase@0.9.0"],
1371
+ envMapping: {
1372
+ SUPABASE_ACCESS_TOKEN: "accessToken"
1373
+ }
1374
+ }
1375
+ }
1345
1376
  }
1346
1377
  };
1347
1378
  function getEnabledIntegrations() {
@@ -1634,7 +1665,6 @@ var INTEGRATION_BRANDING = {
1634
1665
  var UPCOMING_INTEGRATION_IDS = [
1635
1666
  "gmail",
1636
1667
  "figma",
1637
- "supabase",
1638
1668
  "asana",
1639
1669
  "stripe",
1640
1670
  "pendo",