@codeam/shared 2.61.76 → 2.61.77
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +43 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +43 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1423,6 +1423,41 @@ var INTEGRATION_REGISTRY = {
|
|
|
1423
1423
|
}
|
|
1424
1424
|
}
|
|
1425
1425
|
},
|
|
1426
|
+
convex: {
|
|
1427
|
+
id: "convex",
|
|
1428
|
+
name: "Convex",
|
|
1429
|
+
icon: "convex",
|
|
1430
|
+
category: "database",
|
|
1431
|
+
// LIVE — OAuth 2.0 (authorization code, Confidential). authorize
|
|
1432
|
+
// dashboard.convex.dev/oauth/authorize/team (the scope is the URL PATH —
|
|
1433
|
+
// `team` for team-wide access — NOT a query param); token
|
|
1434
|
+
// api.convex.dev/oauth/token (form-urlencoded, client creds in the BODY).
|
|
1435
|
+
// ⚠️ Convex issues NO refresh token and the team-scoped application token
|
|
1436
|
+
// does not expire, so there is nothing to rotate (refresh() is a re-link
|
|
1437
|
+
// surface). The OAuth app (Team Settings → OAuth Applications) is registered
|
|
1438
|
+
// and CONVEX_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI are in Secret Manager
|
|
1439
|
+
// (prod+dev); the config-gated 503 keeps this safe mid-rollout.
|
|
1440
|
+
enabled: true,
|
|
1441
|
+
auth: {
|
|
1442
|
+
kind: "oauth_redirect",
|
|
1443
|
+
// ⚠️ Convex's scope is the authorize URL path (`/team`), NOT sent in the
|
|
1444
|
+
// authorize URL as a query param — this list is informational.
|
|
1445
|
+
scopes: []
|
|
1446
|
+
},
|
|
1447
|
+
delivery: {
|
|
1448
|
+
mcp: {
|
|
1449
|
+
// Convex's OFFICIAL MCP server ships inside the `convex` npm package
|
|
1450
|
+
// (`convex mcp start`). The team-scoped OAuth application token doubles
|
|
1451
|
+
// as the CLI/MCP deploy key → fed via CONVEX_DEPLOY_KEY (env only, never
|
|
1452
|
+
// argv). Version PINNED; bump only after re-verifying headless.
|
|
1453
|
+
command: "npx",
|
|
1454
|
+
args: ["-y", "convex@1.42.3", "mcp", "start"],
|
|
1455
|
+
envMapping: {
|
|
1456
|
+
CONVEX_DEPLOY_KEY: "accessToken"
|
|
1457
|
+
}
|
|
1458
|
+
}
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1426
1461
|
confluence: {
|
|
1427
1462
|
id: "confluence",
|
|
1428
1463
|
name: "Confluence",
|
|
@@ -1760,6 +1795,14 @@ var INTEGRATION_BRANDING = {
|
|
|
1760
1795
|
brandColor: "#3FCF8E",
|
|
1761
1796
|
logoSvg: '<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Supabase</title><path fill="#FFFFFF" d="M11.9 1.036c-.015-.986-1.26-1.41-1.874-.637L.764 12.05C-.33 13.427.65 15.455 2.409 15.455h9.579l.113 7.51c.014.985 1.259 1.408 1.873.636l9.262-11.653c1.093-1.375.113-3.403-1.645-3.403h-9.642z"/></svg>'
|
|
1762
1797
|
},
|
|
1798
|
+
convex: {
|
|
1799
|
+
id: "convex",
|
|
1800
|
+
name: "Convex",
|
|
1801
|
+
vendor: "Convex",
|
|
1802
|
+
tagline: "Reactive database & backend",
|
|
1803
|
+
brandColor: "#EE342F",
|
|
1804
|
+
logoSvg: '<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Convex</title><path fill="#FFFFFF" d="M15.09 18.916c3.488-.387 6.776-2.246 8.586-5.348-.857 7.673-9.247 12.522-16.095 9.545a3.47 3.47 0 0 1-1.547-1.314c-1.539-2.417-2.044-5.492-1.318-8.282 2.077 3.584 6.3 5.78 10.374 5.399m-10.501-7.65c-1.414 3.266-1.475 7.092.258 10.24-6.1-4.59-6.033-14.41-.074-18.953a3.44 3.44 0 0 1 1.893-.707c2.825-.15 5.695.942 7.708 2.977-4.09.04-8.073 2.66-9.785 6.442m11.757-5.437C14.283 2.951 11.053.992 7.515.933c6.84-3.105 15.253 1.929 16.17 9.37a3.6 3.6 0 0 1-.334 2.02c-1.278 2.594-3.647 4.607-6.416 5.352 2.029-3.763 1.778-8.36-.589-11.847"/></svg>'
|
|
1805
|
+
},
|
|
1763
1806
|
cloudflare: {
|
|
1764
1807
|
id: "cloudflare",
|
|
1765
1808
|
name: "Cloudflare",
|