@codeam/shared 2.61.56 → 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 +7 -3
- package/dist/index.d.ts +7 -3
- package/dist/index.js +72 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +72 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1140,6 +1140,78 @@ var INTEGRATION_REGISTRY = {
|
|
|
1140
1140
|
httpHeaders: { Authorization: "Bearer {accessToken}" }
|
|
1141
1141
|
}
|
|
1142
1142
|
}
|
|
1143
|
+
},
|
|
1144
|
+
trello: {
|
|
1145
|
+
id: "trello",
|
|
1146
|
+
name: "Trello",
|
|
1147
|
+
icon: "trello",
|
|
1148
|
+
category: "tracker",
|
|
1149
|
+
// LIVE — api_key rail (like Azure DevOps). Trello's auth is a developer API
|
|
1150
|
+
// key + a user token, NOT an OAuth2 code exchange: its token returns via a
|
|
1151
|
+
// URL fragment / OAuth 1.0a, incompatible with our server-side broker. The
|
|
1152
|
+
// user pastes both; the backend validates against the Trello REST API and
|
|
1153
|
+
// vaults them. No OAuth app, no GSM secrets, no config-gated 503.
|
|
1154
|
+
enabled: true,
|
|
1155
|
+
auth: {
|
|
1156
|
+
kind: "api_key",
|
|
1157
|
+
fields: [
|
|
1158
|
+
{
|
|
1159
|
+
key: "apiKey",
|
|
1160
|
+
label: "API Key",
|
|
1161
|
+
placeholder: "Your Trello API key",
|
|
1162
|
+
secret: false,
|
|
1163
|
+
help: "Create a Power-Up at https://trello.com/power-ups/admin and copy its API key."
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
key: "accessToken",
|
|
1167
|
+
label: "Token",
|
|
1168
|
+
placeholder: "Your Trello token",
|
|
1169
|
+
secret: true,
|
|
1170
|
+
help: 'On the API-key page, click the "Token" link to authorize + generate a token (scope read,write, never-expiring).'
|
|
1171
|
+
}
|
|
1172
|
+
]
|
|
1173
|
+
},
|
|
1174
|
+
delivery: {
|
|
1175
|
+
mcp: {
|
|
1176
|
+
// mcp-server-trello (Node): TRELLO_API_KEY + TRELLO_TOKEN via env only,
|
|
1177
|
+
// never argv. Version PINNED; bump only after re-verifying headless.
|
|
1178
|
+
command: "npx",
|
|
1179
|
+
args: ["-y", "mcp-server-trello@1.0.4"],
|
|
1180
|
+
envMapping: {
|
|
1181
|
+
TRELLO_API_KEY: "apiKey",
|
|
1182
|
+
TRELLO_TOKEN: "accessToken"
|
|
1183
|
+
}
|
|
1184
|
+
}
|
|
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: false,
|
|
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
|
+
}
|
|
1143
1215
|
}
|
|
1144
1216
|
};
|
|
1145
1217
|
function getEnabledIntegrations() {
|
|
@@ -1433,7 +1505,6 @@ var UPCOMING_INTEGRATION_IDS = [
|
|
|
1433
1505
|
"gmail",
|
|
1434
1506
|
"clickup",
|
|
1435
1507
|
"figma",
|
|
1436
|
-
"trello",
|
|
1437
1508
|
"supabase",
|
|
1438
1509
|
"asana",
|
|
1439
1510
|
"postman",
|