codeam-cli 2.27.0 → 2.27.1

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 +5 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -486,7 +486,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
486
486
  // package.json
487
487
  var package_default = {
488
488
  name: "codeam-cli",
489
- version: "2.27.0",
489
+ version: "2.27.1",
490
490
  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.",
491
491
  type: "commonjs",
492
492
  main: "dist/index.js",
@@ -5858,7 +5858,7 @@ function readAnonId() {
5858
5858
  }
5859
5859
  function superProperties() {
5860
5860
  return {
5861
- cliVersion: true ? "2.27.0" : "0.0.0-dev",
5861
+ cliVersion: true ? "2.27.1" : "0.0.0-dev",
5862
5862
  nodeVersion: process.version,
5863
5863
  platform: process.platform,
5864
5864
  arch: process.arch,
@@ -20339,7 +20339,7 @@ function checkChokidar() {
20339
20339
  }
20340
20340
  async function doctor(args2 = []) {
20341
20341
  const json = args2.includes("--json");
20342
- const cliVersion = true ? "2.27.0" : "0.0.0-dev";
20342
+ const cliVersion = true ? "2.27.1" : "0.0.0-dev";
20343
20343
  const apiBase = resolveApiBaseUrl();
20344
20344
  const diagnosticId = (0, import_node_crypto6.randomUUID)();
20345
20345
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -20538,7 +20538,7 @@ async function completion(args2) {
20538
20538
  // src/commands/version.ts
20539
20539
  var import_picocolors13 = __toESM(require("picocolors"));
20540
20540
  function version2() {
20541
- const v = true ? "2.27.0" : "unknown";
20541
+ const v = true ? "2.27.1" : "unknown";
20542
20542
  console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
20543
20543
  }
20544
20544
 
@@ -20766,7 +20766,7 @@ function checkForUpdates() {
20766
20766
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
20767
20767
  if (process.env.CI) return;
20768
20768
  if (!process.stdout.isTTY) return;
20769
- const current = true ? "2.27.0" : null;
20769
+ const current = true ? "2.27.1" : null;
20770
20770
  if (!current) return;
20771
20771
  const cache = readCache();
20772
20772
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.27.0",
3
+ "version": "2.27.1",
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",