@codeam/shared 2.61.61 → 2.61.62

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
@@ -1258,6 +1258,90 @@ var INTEGRATION_REGISTRY = {
1258
1258
  staticEnv: { MCP_MODE: "stdio" }
1259
1259
  }
1260
1260
  }
1261
+ },
1262
+ postman: {
1263
+ id: "postman",
1264
+ name: "Postman",
1265
+ icon: "postman",
1266
+ category: "api_tools",
1267
+ // LIVE — api_key rail. Postman auth is a personal API key (Settings → API
1268
+ // keys). The user pastes it; the backend validates via GET /me + vaults it.
1269
+ // No OAuth (Postman's API has no user OAuth), no secrets, no config-503.
1270
+ enabled: true,
1271
+ auth: {
1272
+ kind: "api_key",
1273
+ fields: [
1274
+ {
1275
+ key: "accessToken",
1276
+ label: "API Key",
1277
+ placeholder: "PMAK-\u2026",
1278
+ secret: true,
1279
+ help: "Postman \u2192 Settings \u2192 API keys \u2192 Generate API Key."
1280
+ }
1281
+ ]
1282
+ },
1283
+ delivery: {
1284
+ mcp: {
1285
+ // Postman's OFFICIAL stdio MCP server (Node). BYO key via POSTMAN_API_KEY
1286
+ // (env only). Version PINNED; bump only after re-verifying headless.
1287
+ command: "npx",
1288
+ args: ["-y", "@postman/postman-mcp-server@2.11.2"],
1289
+ envMapping: {
1290
+ POSTMAN_API_KEY: "accessToken"
1291
+ }
1292
+ }
1293
+ }
1294
+ },
1295
+ mixpanel: {
1296
+ id: "mixpanel",
1297
+ name: "Mixpanel",
1298
+ icon: "mixpanel",
1299
+ category: "analytics",
1300
+ // LIVE — api_key rail. Mixpanel query/export auth is a SERVICE ACCOUNT
1301
+ // (username + password, Basic auth) scoped to a project (project id). The
1302
+ // user pastes all three; the backend validates + vaults them. No OAuth
1303
+ // redirect (service accounts are machine-to-machine), no GSM secrets.
1304
+ enabled: true,
1305
+ auth: {
1306
+ kind: "api_key",
1307
+ fields: [
1308
+ {
1309
+ key: "accessToken",
1310
+ label: "Service Account Username",
1311
+ placeholder: "your-sa.mp-service-account",
1312
+ secret: false,
1313
+ help: "Mixpanel \u2192 Organization Settings \u2192 Service Accounts \u2192 create one with project access."
1314
+ },
1315
+ {
1316
+ key: "secretKey",
1317
+ label: "Service Account Secret",
1318
+ placeholder: "the service account secret",
1319
+ secret: true,
1320
+ help: "Shown once when you create the service account \u2014 copy it then."
1321
+ },
1322
+ {
1323
+ key: "projectId",
1324
+ label: "Project ID",
1325
+ placeholder: "1234567",
1326
+ secret: false,
1327
+ help: "Mixpanel \u2192 Project Settings \u2192 Project ID."
1328
+ }
1329
+ ]
1330
+ },
1331
+ delivery: {
1332
+ mcp: {
1333
+ // @mendeel/mcp-mixpanel (Node): the service account + project id via env
1334
+ // only (MIXPANEL_SERVICE_ACCOUNT_USERNAME/PASSWORD + MIXPANEL_PROJECT_ID).
1335
+ // Version PINNED; bump only after re-verifying headless. Default region US.
1336
+ command: "npx",
1337
+ args: ["-y", "@mendeel/mcp-mixpanel@1.0.4"],
1338
+ envMapping: {
1339
+ MIXPANEL_SERVICE_ACCOUNT_USERNAME: "accessToken",
1340
+ MIXPANEL_SERVICE_ACCOUNT_PASSWORD: "secretKey",
1341
+ MIXPANEL_PROJECT_ID: "projectId"
1342
+ }
1343
+ }
1344
+ }
1261
1345
  }
1262
1346
  };
1263
1347
  function getEnabledIntegrations() {
@@ -1552,9 +1636,7 @@ var UPCOMING_INTEGRATION_IDS = [
1552
1636
  "figma",
1553
1637
  "supabase",
1554
1638
  "asana",
1555
- "postman",
1556
1639
  "stripe",
1557
- "mixpanel",
1558
1640
  "pendo",
1559
1641
  "pagerduty",
1560
1642
  "amplitude"