codeam-cli 2.61.28 → 2.61.29
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.js +20 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -697,6 +697,18 @@ var INTEGRATION_REGISTRY = {
|
|
|
697
697
|
auth: { kind: "oauth_redirect" },
|
|
698
698
|
delivery: {}
|
|
699
699
|
},
|
|
700
|
+
discord: {
|
|
701
|
+
id: "discord",
|
|
702
|
+
name: "Discord",
|
|
703
|
+
icon: "discord",
|
|
704
|
+
category: "comms",
|
|
705
|
+
// COMING SOON — placeholder catalog entry (no OAuth provider / MCP yet). The
|
|
706
|
+
// agent will post review pings + read channels over the Discord API once the
|
|
707
|
+
// provider lands. `enabled:false` → dimmed "coming soon" tile.
|
|
708
|
+
enabled: false,
|
|
709
|
+
auth: { kind: "oauth_redirect" },
|
|
710
|
+
delivery: {}
|
|
711
|
+
},
|
|
700
712
|
notion: {
|
|
701
713
|
id: "notion",
|
|
702
714
|
name: "Notion",
|
|
@@ -6265,7 +6277,7 @@ function readAnonId() {
|
|
|
6265
6277
|
}
|
|
6266
6278
|
function superProperties() {
|
|
6267
6279
|
return {
|
|
6268
|
-
cliVersion: true ? "2.61.
|
|
6280
|
+
cliVersion: true ? "2.61.29" : "0.0.0-dev",
|
|
6269
6281
|
nodeVersion: process.version,
|
|
6270
6282
|
platform: process.platform,
|
|
6271
6283
|
arch: process.arch,
|
|
@@ -6446,7 +6458,7 @@ var os4 = __toESM(require("os"));
|
|
|
6446
6458
|
// package.json
|
|
6447
6459
|
var package_default = {
|
|
6448
6460
|
name: "codeam-cli",
|
|
6449
|
-
version: "2.61.
|
|
6461
|
+
version: "2.61.29",
|
|
6450
6462
|
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.",
|
|
6451
6463
|
type: "commonjs",
|
|
6452
6464
|
main: "dist/index.js",
|
|
@@ -7617,7 +7629,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
7617
7629
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7618
7630
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7619
7631
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7620
|
-
..."2.61.
|
|
7632
|
+
..."2.61.29" ? { ideVersion: "2.61.29" } : {}
|
|
7621
7633
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7622
7634
|
}
|
|
7623
7635
|
/**
|
|
@@ -18479,7 +18491,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
18479
18491
|
if (process.env.NODE_ENV === "test") return;
|
|
18480
18492
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18481
18493
|
if (process.env.CI) return;
|
|
18482
|
-
const current = true ? "2.61.
|
|
18494
|
+
const current = true ? "2.61.29" : null;
|
|
18483
18495
|
if (!current) return;
|
|
18484
18496
|
const cache = readCache();
|
|
18485
18497
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18496,7 +18508,7 @@ function checkForUpdates() {
|
|
|
18496
18508
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18497
18509
|
if (process.env.CI) return;
|
|
18498
18510
|
if (!process.stdout.isTTY) return;
|
|
18499
|
-
const current = true ? "2.61.
|
|
18511
|
+
const current = true ? "2.61.29" : null;
|
|
18500
18512
|
if (!current) return;
|
|
18501
18513
|
const cache = readCache();
|
|
18502
18514
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18516,7 +18528,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
18516
18528
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
18517
18529
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
18518
18530
|
function currentCliVersion() {
|
|
18519
|
-
return true ? "2.61.
|
|
18531
|
+
return true ? "2.61.29" : null;
|
|
18520
18532
|
}
|
|
18521
18533
|
function runCmd(cmd, args2, timeoutMs) {
|
|
18522
18534
|
return new Promise((resolve8) => {
|
|
@@ -38509,7 +38521,7 @@ function checkChokidar() {
|
|
|
38509
38521
|
}
|
|
38510
38522
|
async function doctor(args2 = []) {
|
|
38511
38523
|
const json = args2.includes("--json");
|
|
38512
|
-
const cliVersion = true ? "2.61.
|
|
38524
|
+
const cliVersion = true ? "2.61.29" : "0.0.0-dev";
|
|
38513
38525
|
const apiBase2 = resolveApiBaseUrl();
|
|
38514
38526
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
38515
38527
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -39020,7 +39032,7 @@ async function mcpRun(args2) {
|
|
|
39020
39032
|
// src/commands/version.ts
|
|
39021
39033
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
39022
39034
|
function version2() {
|
|
39023
|
-
const v = true ? "2.61.
|
|
39035
|
+
const v = true ? "2.61.29" : "unknown";
|
|
39024
39036
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
39025
39037
|
}
|
|
39026
39038
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.29",
|
|
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",
|