codeam-cli 2.61.53 → 2.61.55
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 +8 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6675,7 +6675,7 @@ function readAnonId() {
|
|
|
6675
6675
|
}
|
|
6676
6676
|
function superProperties() {
|
|
6677
6677
|
return {
|
|
6678
|
-
cliVersion: true ? "2.61.
|
|
6678
|
+
cliVersion: true ? "2.61.55" : "0.0.0-dev",
|
|
6679
6679
|
nodeVersion: process.version,
|
|
6680
6680
|
platform: process.platform,
|
|
6681
6681
|
arch: process.arch,
|
|
@@ -6856,7 +6856,7 @@ var os4 = __toESM(require("os"));
|
|
|
6856
6856
|
// package.json
|
|
6857
6857
|
var package_default = {
|
|
6858
6858
|
name: "codeam-cli",
|
|
6859
|
-
version: "2.61.
|
|
6859
|
+
version: "2.61.55",
|
|
6860
6860
|
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.",
|
|
6861
6861
|
type: "commonjs",
|
|
6862
6862
|
main: "dist/index.js",
|
|
@@ -8028,7 +8028,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
8028
8028
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
8029
8029
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
8030
8030
|
// pair/reconnect). Older backends ignore the extra field.
|
|
8031
|
-
..."2.61.
|
|
8031
|
+
..."2.61.55" ? { ideVersion: "2.61.55" } : {}
|
|
8032
8032
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
8033
8033
|
}
|
|
8034
8034
|
/**
|
|
@@ -19137,7 +19137,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
19137
19137
|
if (process.env.NODE_ENV === "test") return;
|
|
19138
19138
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19139
19139
|
if (process.env.CI) return;
|
|
19140
|
-
const current = true ? "2.61.
|
|
19140
|
+
const current = true ? "2.61.55" : null;
|
|
19141
19141
|
if (!current) return;
|
|
19142
19142
|
const cache = readCache();
|
|
19143
19143
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19154,7 +19154,7 @@ function checkForUpdates() {
|
|
|
19154
19154
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19155
19155
|
if (process.env.CI) return;
|
|
19156
19156
|
if (!process.stdout.isTTY) return;
|
|
19157
|
-
const current = true ? "2.61.
|
|
19157
|
+
const current = true ? "2.61.55" : null;
|
|
19158
19158
|
if (!current) return;
|
|
19159
19159
|
const cache = readCache();
|
|
19160
19160
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19174,7 +19174,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
19174
19174
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
19175
19175
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
19176
19176
|
function currentCliVersion() {
|
|
19177
|
-
return true ? "2.61.
|
|
19177
|
+
return true ? "2.61.55" : null;
|
|
19178
19178
|
}
|
|
19179
19179
|
function runCmd(cmd, args2, timeoutMs) {
|
|
19180
19180
|
return new Promise((resolve8) => {
|
|
@@ -39368,7 +39368,7 @@ function checkChokidar() {
|
|
|
39368
39368
|
}
|
|
39369
39369
|
async function doctor(args2 = []) {
|
|
39370
39370
|
const json = args2.includes("--json");
|
|
39371
|
-
const cliVersion = true ? "2.61.
|
|
39371
|
+
const cliVersion = true ? "2.61.55" : "0.0.0-dev";
|
|
39372
39372
|
const apiBase2 = resolveApiBaseUrl();
|
|
39373
39373
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
39374
39374
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -39890,7 +39890,7 @@ async function mcpRun(args2) {
|
|
|
39890
39890
|
// src/commands/version.ts
|
|
39891
39891
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
39892
39892
|
function version2() {
|
|
39893
|
-
const v = true ? "2.61.
|
|
39893
|
+
const v = true ? "2.61.55" : "unknown";
|
|
39894
39894
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
39895
39895
|
}
|
|
39896
39896
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.55",
|
|
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",
|