@codeam/shared 2.61.57 → 2.61.58
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 +29 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +29 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -351,7 +351,7 @@ declare function isHeadroomWrappable(agentId: string): boolean;
|
|
|
351
351
|
* ubiquitous CLI for the tool → `cliEnv`; otherwise → `mcp`. A tool may
|
|
352
352
|
* declare both.
|
|
353
353
|
*/
|
|
354
|
-
type IntegrationId = 'jira' | 'sentry' | 'linear' | 'slack' | 'notion' | 'azure_devops' | 'figma' | 'microsoft_teams' | 'google_chat' | 'discord' | 'resend' | 'posthog' | 'datadog' | 'stitch' | 'github_issues' | 'github' | 'gitlab' | 'vercel' | 'trello';
|
|
354
|
+
type IntegrationId = 'jira' | 'sentry' | 'linear' | 'slack' | 'notion' | 'azure_devops' | 'figma' | 'microsoft_teams' | 'google_chat' | 'discord' | 'resend' | 'posthog' | 'datadog' | 'stitch' | 'github_issues' | 'github' | 'gitlab' | 'vercel' | 'trello' | 'clickup';
|
|
355
355
|
/**
|
|
356
356
|
* `derived` = no link flow of its own: the credential is BORROWED live from a
|
|
357
357
|
* connection the user already made elsewhere (see `derivedFrom`). The backend
|
package/dist/index.d.ts
CHANGED
|
@@ -351,7 +351,7 @@ declare function isHeadroomWrappable(agentId: string): boolean;
|
|
|
351
351
|
* ubiquitous CLI for the tool → `cliEnv`; otherwise → `mcp`. A tool may
|
|
352
352
|
* declare both.
|
|
353
353
|
*/
|
|
354
|
-
type IntegrationId = 'jira' | 'sentry' | 'linear' | 'slack' | 'notion' | 'azure_devops' | 'figma' | 'microsoft_teams' | 'google_chat' | 'discord' | 'resend' | 'posthog' | 'datadog' | 'stitch' | 'github_issues' | 'github' | 'gitlab' | 'vercel' | 'trello';
|
|
354
|
+
type IntegrationId = 'jira' | 'sentry' | 'linear' | 'slack' | 'notion' | 'azure_devops' | 'figma' | 'microsoft_teams' | 'google_chat' | 'discord' | 'resend' | 'posthog' | 'datadog' | 'stitch' | 'github_issues' | 'github' | 'gitlab' | 'vercel' | 'trello' | 'clickup';
|
|
355
355
|
/**
|
|
356
356
|
* `derived` = no link flow of its own: the credential is BORROWED live from a
|
|
357
357
|
* connection the user already made elsewhere (see `derivedFrom`). The backend
|
package/dist/index.js
CHANGED
|
@@ -1265,6 +1265,35 @@ var INTEGRATION_REGISTRY = {
|
|
|
1265
1265
|
}
|
|
1266
1266
|
}
|
|
1267
1267
|
}
|
|
1268
|
+
},
|
|
1269
|
+
clickup: {
|
|
1270
|
+
id: "clickup",
|
|
1271
|
+
name: "ClickUp",
|
|
1272
|
+
icon: "clickup",
|
|
1273
|
+
category: "tracker",
|
|
1274
|
+
// DARK — OAuth 2.0 (authorization code). ClickUp's token DOES NOT expire and
|
|
1275
|
+
// has NO refresh token, and its OAuth has NO granular scopes (the app gets
|
|
1276
|
+
// the workspaces the user authorizes). enabled:false until the OAuth app is
|
|
1277
|
+
// registered (client_id/secret) + secrets land + Step-8 live-verify.
|
|
1278
|
+
enabled: false,
|
|
1279
|
+
auth: {
|
|
1280
|
+
kind: "oauth_redirect",
|
|
1281
|
+
scopes: []
|
|
1282
|
+
},
|
|
1283
|
+
delivery: {
|
|
1284
|
+
mcp: {
|
|
1285
|
+
// @taazkareem/clickup-mcp-server (Node): CLICKUP_API_KEY (the OAuth
|
|
1286
|
+
// access token — ClickUp accepts it in the Authorization header) +
|
|
1287
|
+
// CLICKUP_TEAM_ID (the workspace id, captured at exchange) via env only.
|
|
1288
|
+
// Version PINNED; bump only after re-verifying headless.
|
|
1289
|
+
command: "npx",
|
|
1290
|
+
args: ["-y", "@taazkareem/clickup-mcp-server@0.14.4"],
|
|
1291
|
+
envMapping: {
|
|
1292
|
+
CLICKUP_API_KEY: "accessToken",
|
|
1293
|
+
CLICKUP_TEAM_ID: "teamId"
|
|
1294
|
+
}
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1268
1297
|
}
|
|
1269
1298
|
};
|
|
1270
1299
|
function getEnabledIntegrations() {
|