codeam-cli 2.61.62 → 2.61.63
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/CHANGELOG.md +6 -0
- package/dist/index.js +39 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to `codeam-cli` are documented here.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [2.61.62] — 2026-07-28
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Postman + Mixpanel integrations (api_key)
|
|
12
|
+
|
|
7
13
|
## [2.61.61] — 2026-07-27
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -1435,6 +1435,37 @@ var INTEGRATION_REGISTRY = {
|
|
|
1435
1435
|
}
|
|
1436
1436
|
}
|
|
1437
1437
|
}
|
|
1438
|
+
},
|
|
1439
|
+
supabase: {
|
|
1440
|
+
id: "supabase",
|
|
1441
|
+
name: "Supabase",
|
|
1442
|
+
icon: "supabase",
|
|
1443
|
+
category: "database",
|
|
1444
|
+
// LIVE — OAuth 2.0 (authorization code, Confidential). authorize
|
|
1445
|
+
// api.supabase.com/v1/oauth/authorize; token /v1/oauth/token
|
|
1446
|
+
// (form-urlencoded, client creds via HTTP Basic); rotating refresh tokens.
|
|
1447
|
+
// The OAuth app (Organization → OAuth Apps) is registered and
|
|
1448
|
+
// SUPABASE_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI are in Secret Manager
|
|
1449
|
+
// (prod+dev); the config-gated 503 keeps this safe mid-rollout.
|
|
1450
|
+
enabled: true,
|
|
1451
|
+
auth: {
|
|
1452
|
+
kind: "oauth_redirect",
|
|
1453
|
+
// ⚠️ Supabase scopes are configured ON THE OAUTH APP, NOT sent in the
|
|
1454
|
+
// authorize URL — this list is informational (what the app was granted).
|
|
1455
|
+
scopes: ["all"]
|
|
1456
|
+
},
|
|
1457
|
+
delivery: {
|
|
1458
|
+
mcp: {
|
|
1459
|
+
// Supabase's OFFICIAL MCP server (Node). The OAuth access token IS a
|
|
1460
|
+
// Management API token → fed via SUPABASE_ACCESS_TOKEN (env only, never
|
|
1461
|
+
// argv). Version PINNED; bump only after re-verifying headless.
|
|
1462
|
+
command: "npx",
|
|
1463
|
+
args: ["-y", "@supabase/mcp-server-supabase@0.9.0"],
|
|
1464
|
+
envMapping: {
|
|
1465
|
+
SUPABASE_ACCESS_TOKEN: "accessToken"
|
|
1466
|
+
}
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1438
1469
|
}
|
|
1439
1470
|
};
|
|
1440
1471
|
function getIntegration(id) {
|
|
@@ -6880,7 +6911,7 @@ function readAnonId() {
|
|
|
6880
6911
|
}
|
|
6881
6912
|
function superProperties() {
|
|
6882
6913
|
return {
|
|
6883
|
-
cliVersion: true ? "2.61.
|
|
6914
|
+
cliVersion: true ? "2.61.63" : "0.0.0-dev",
|
|
6884
6915
|
nodeVersion: process.version,
|
|
6885
6916
|
platform: process.platform,
|
|
6886
6917
|
arch: process.arch,
|
|
@@ -7061,7 +7092,7 @@ var os4 = __toESM(require("os"));
|
|
|
7061
7092
|
// package.json
|
|
7062
7093
|
var package_default = {
|
|
7063
7094
|
name: "codeam-cli",
|
|
7064
|
-
version: "2.61.
|
|
7095
|
+
version: "2.61.63",
|
|
7065
7096
|
description: "Workflow-continuity bridge for AI coding agents. Wrap Claude Code or Codex in a PTY and supervise, approve, and redirect the session from any device \u2014 async. The terminal companion for CodeAgent Mobile.",
|
|
7066
7097
|
type: "commonjs",
|
|
7067
7098
|
main: "dist/index.js",
|
|
@@ -8233,7 +8264,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
8233
8264
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
8234
8265
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
8235
8266
|
// pair/reconnect). Older backends ignore the extra field.
|
|
8236
|
-
..."2.61.
|
|
8267
|
+
..."2.61.63" ? { ideVersion: "2.61.63" } : {}
|
|
8237
8268
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
8238
8269
|
}
|
|
8239
8270
|
/**
|
|
@@ -19342,7 +19373,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
19342
19373
|
if (process.env.NODE_ENV === "test") return;
|
|
19343
19374
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19344
19375
|
if (process.env.CI) return;
|
|
19345
|
-
const current = true ? "2.61.
|
|
19376
|
+
const current = true ? "2.61.63" : null;
|
|
19346
19377
|
if (!current) return;
|
|
19347
19378
|
const cache = readCache();
|
|
19348
19379
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19359,7 +19390,7 @@ function checkForUpdates() {
|
|
|
19359
19390
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19360
19391
|
if (process.env.CI) return;
|
|
19361
19392
|
if (!process.stdout.isTTY) return;
|
|
19362
|
-
const current = true ? "2.61.
|
|
19393
|
+
const current = true ? "2.61.63" : null;
|
|
19363
19394
|
if (!current) return;
|
|
19364
19395
|
const cache = readCache();
|
|
19365
19396
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19379,7 +19410,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
19379
19410
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
19380
19411
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
19381
19412
|
function currentCliVersion() {
|
|
19382
|
-
return true ? "2.61.
|
|
19413
|
+
return true ? "2.61.63" : null;
|
|
19383
19414
|
}
|
|
19384
19415
|
function runCmd(cmd, args2, timeoutMs) {
|
|
19385
19416
|
return new Promise((resolve8) => {
|
|
@@ -39618,7 +39649,7 @@ function checkChokidar() {
|
|
|
39618
39649
|
}
|
|
39619
39650
|
async function doctor(args2 = []) {
|
|
39620
39651
|
const json = args2.includes("--json");
|
|
39621
|
-
const cliVersion = true ? "2.61.
|
|
39652
|
+
const cliVersion = true ? "2.61.63" : "0.0.0-dev";
|
|
39622
39653
|
const apiBase2 = resolveApiBaseUrl();
|
|
39623
39654
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
39624
39655
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -40140,7 +40171,7 @@ async function mcpRun(args2) {
|
|
|
40140
40171
|
// src/commands/version.ts
|
|
40141
40172
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
40142
40173
|
function version2() {
|
|
40143
|
-
const v = true ? "2.61.
|
|
40174
|
+
const v = true ? "2.61.63" : "unknown";
|
|
40144
40175
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
40145
40176
|
}
|
|
40146
40177
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.63",
|
|
4
4
|
"description": "Workflow-continuity bridge for AI coding agents. Wrap Claude Code or Codex in a PTY and supervise, approve, and redirect the session from any device — async. The terminal companion for CodeAgent Mobile.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.js",
|