@codeam/shared 2.61.57 → 2.61.59

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
@@ -1183,6 +1183,35 @@ var INTEGRATION_REGISTRY = {
1183
1183
  }
1184
1184
  }
1185
1185
  }
1186
+ },
1187
+ clickup: {
1188
+ id: "clickup",
1189
+ name: "ClickUp",
1190
+ icon: "clickup",
1191
+ category: "tracker",
1192
+ // DARK — OAuth 2.0 (authorization code). ClickUp's token DOES NOT expire and
1193
+ // has NO refresh token, and its OAuth has NO granular scopes (the app gets
1194
+ // the workspaces the user authorizes). enabled:false until the OAuth app is
1195
+ // registered (client_id/secret) + secrets land + Step-8 live-verify.
1196
+ enabled: true,
1197
+ auth: {
1198
+ kind: "oauth_redirect",
1199
+ scopes: []
1200
+ },
1201
+ delivery: {
1202
+ mcp: {
1203
+ // @taazkareem/clickup-mcp-server (Node): CLICKUP_API_KEY (the OAuth
1204
+ // access token — ClickUp accepts it in the Authorization header) +
1205
+ // CLICKUP_TEAM_ID (the workspace id, captured at exchange) via env only.
1206
+ // Version PINNED; bump only after re-verifying headless.
1207
+ command: "npx",
1208
+ args: ["-y", "@taazkareem/clickup-mcp-server@0.14.4"],
1209
+ envMapping: {
1210
+ CLICKUP_API_KEY: "accessToken",
1211
+ CLICKUP_TEAM_ID: "teamId"
1212
+ }
1213
+ }
1214
+ }
1186
1215
  }
1187
1216
  };
1188
1217
  function getEnabledIntegrations() {
@@ -1474,7 +1503,6 @@ var INTEGRATION_BRANDING = {
1474
1503
  };
1475
1504
  var UPCOMING_INTEGRATION_IDS = [
1476
1505
  "gmail",
1477
- "clickup",
1478
1506
  "figma",
1479
1507
  "supabase",
1480
1508
  "asana",