codeam-cli 2.67.6 → 2.67.7

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.
Files changed (2) hide show
  1. package/dist/index.js +8 -8
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -8081,7 +8081,7 @@ function readAnonId() {
8081
8081
  }
8082
8082
  function superProperties() {
8083
8083
  return {
8084
- cliVersion: true ? "2.67.6" : "0.0.0-dev",
8084
+ cliVersion: true ? "2.67.7" : "0.0.0-dev",
8085
8085
  nodeVersion: process.version,
8086
8086
  platform: process.platform,
8087
8087
  arch: process.arch,
@@ -8323,7 +8323,7 @@ var http = __toESM(require("http"));
8323
8323
  // package.json
8324
8324
  var package_default = {
8325
8325
  name: "codeam-cli",
8326
- version: "2.67.6",
8326
+ version: "2.67.7",
8327
8327
  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.",
8328
8328
  type: "commonjs",
8329
8329
  main: "dist/index.js",
@@ -9855,7 +9855,7 @@ var CommandRelayService = class _CommandRelayService {
9855
9855
  // fresh + clear the "CLI update available" banner after a self-update
9856
9856
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
9857
9857
  // pair/reconnect). Older backends ignore the extra field.
9858
- ..."2.67.6" ? { ideVersion: "2.67.6" } : {}
9858
+ ..."2.67.7" ? { ideVersion: "2.67.7" } : {}
9859
9859
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
9860
9860
  }
9861
9861
  /**
@@ -22114,7 +22114,7 @@ async function autoUpgradeBeforeCriticalCommand() {
22114
22114
  if (process.env.NODE_ENV === "test") return;
22115
22115
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
22116
22116
  if (process.env.CI) return;
22117
- const current2 = true ? "2.67.6" : null;
22117
+ const current2 = true ? "2.67.7" : null;
22118
22118
  if (!current2) return;
22119
22119
  const cache = readCache();
22120
22120
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -22131,7 +22131,7 @@ function checkForUpdates() {
22131
22131
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
22132
22132
  if (process.env.CI) return;
22133
22133
  if (!process.stdout.isTTY) return;
22134
- const current2 = true ? "2.67.6" : null;
22134
+ const current2 = true ? "2.67.7" : null;
22135
22135
  if (!current2) return;
22136
22136
  const cache = readCache();
22137
22137
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -22154,7 +22154,7 @@ var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
22154
22154
  var SELF_UPDATE_LS_TIMEOUT_MS = 15e3;
22155
22155
  var SUDO_PREFLIGHT_TIMEOUT_MS = 5e3;
22156
22156
  function currentCliVersion() {
22157
- return true ? "2.67.6" : null;
22157
+ return true ? "2.67.7" : null;
22158
22158
  }
22159
22159
  async function installedVersion(deps) {
22160
22160
  const ls = await deps.run(
@@ -45990,7 +45990,7 @@ function checkChokidar() {
45990
45990
  }
45991
45991
  async function doctor(args2 = []) {
45992
45992
  const json = args2.includes("--json");
45993
- const cliVersion = true ? "2.67.6" : "0.0.0-dev";
45993
+ const cliVersion = true ? "2.67.7" : "0.0.0-dev";
45994
45994
  const apiBase2 = resolveApiBaseUrl();
45995
45995
  const diagnosticId = (0, import_node_crypto13.randomUUID)();
45996
45996
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -46381,7 +46381,7 @@ async function mcpRun(args2) {
46381
46381
  // src/commands/version.ts
46382
46382
  var import_picocolors15 = __toESM(require("picocolors"));
46383
46383
  function version2() {
46384
- const v = true ? "2.67.6" : "unknown";
46384
+ const v = true ? "2.67.7" : "unknown";
46385
46385
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
46386
46386
  }
46387
46387
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.67.6",
3
+ "version": "2.67.7",
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",