@codeam/shared 2.61.56 → 2.61.57

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
@@ -1140,6 +1140,49 @@ 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
+ }
1143
1186
  }
1144
1187
  };
1145
1188
  function getEnabledIntegrations() {
@@ -1433,7 +1476,6 @@ var UPCOMING_INTEGRATION_IDS = [
1433
1476
  "gmail",
1434
1477
  "clickup",
1435
1478
  "figma",
1436
- "trello",
1437
1479
  "supabase",
1438
1480
  "asana",
1439
1481
  "postman",