codeam-cli 2.32.6 → 2.32.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.
- package/CHANGELOG.md +14 -0
- package/dist/index.js +12 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ 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.32.6] — 2026-06-07
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Probe both A and AAAA records when waiting on cloudflared tunnel
|
|
12
|
+
- **cli:** Use dns.lookup (OS resolver) as primary probe for cloudflared tunnel readiness
|
|
13
|
+
|
|
14
|
+
## [2.32.5] — 2026-06-07
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **cli:** Run npx normalization AFTER preflight install, not before
|
|
19
|
+
- **cli:** Probe both A and AAAA records when waiting on cloudflared tunnel
|
|
20
|
+
|
|
7
21
|
## [2.32.4] — 2026-06-07
|
|
8
22
|
|
|
9
23
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -498,7 +498,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
498
498
|
// package.json
|
|
499
499
|
var package_default = {
|
|
500
500
|
name: "codeam-cli",
|
|
501
|
-
version: "2.32.
|
|
501
|
+
version: "2.32.7",
|
|
502
502
|
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.",
|
|
503
503
|
type: "commonjs",
|
|
504
504
|
main: "dist/index.js",
|
|
@@ -5869,7 +5869,7 @@ function readAnonId() {
|
|
|
5869
5869
|
}
|
|
5870
5870
|
function superProperties() {
|
|
5871
5871
|
return {
|
|
5872
|
-
cliVersion: true ? "2.32.
|
|
5872
|
+
cliVersion: true ? "2.32.7" : "0.0.0-dev",
|
|
5873
5873
|
nodeVersion: process.version,
|
|
5874
5874
|
platform: process.platform,
|
|
5875
5875
|
arch: process.arch,
|
|
@@ -11788,12 +11788,18 @@ function validateLocalGeminiToken(credential) {
|
|
|
11788
11788
|
} catch {
|
|
11789
11789
|
return { status: "unknown" };
|
|
11790
11790
|
}
|
|
11791
|
+
if (typeof parsed.refresh_token === "string" && parsed.refresh_token.length > 0) {
|
|
11792
|
+
return {
|
|
11793
|
+
status: "valid",
|
|
11794
|
+
expiresAt: typeof parsed.expiry_date === "number" ? parsed.expiry_date : void 0
|
|
11795
|
+
};
|
|
11796
|
+
}
|
|
11791
11797
|
if (typeof parsed.expiry_date !== "number") return { status: "unknown" };
|
|
11792
11798
|
const expiresAt = parsed.expiry_date;
|
|
11793
11799
|
if (Date.now() >= expiresAt) {
|
|
11794
11800
|
return {
|
|
11795
11801
|
status: "expired",
|
|
11796
|
-
reason: "Gemini OAuth access token expired",
|
|
11802
|
+
reason: "Gemini OAuth access token expired (no refresh_token in snapshot)",
|
|
11797
11803
|
expiresAt
|
|
11798
11804
|
};
|
|
11799
11805
|
}
|
|
@@ -24938,7 +24944,7 @@ function checkChokidar() {
|
|
|
24938
24944
|
}
|
|
24939
24945
|
async function doctor(args2 = []) {
|
|
24940
24946
|
const json = args2.includes("--json");
|
|
24941
|
-
const cliVersion = true ? "2.32.
|
|
24947
|
+
const cliVersion = true ? "2.32.7" : "0.0.0-dev";
|
|
24942
24948
|
const apiBase = resolveApiBaseUrl();
|
|
24943
24949
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
24944
24950
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -25137,7 +25143,7 @@ async function completion(args2) {
|
|
|
25137
25143
|
// src/commands/version.ts
|
|
25138
25144
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
25139
25145
|
function version2() {
|
|
25140
|
-
const v = true ? "2.32.
|
|
25146
|
+
const v = true ? "2.32.7" : "unknown";
|
|
25141
25147
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
25142
25148
|
}
|
|
25143
25149
|
|
|
@@ -25423,7 +25429,7 @@ function checkForUpdates() {
|
|
|
25423
25429
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
25424
25430
|
if (process.env.CI) return;
|
|
25425
25431
|
if (!process.stdout.isTTY) return;
|
|
25426
|
-
const current = true ? "2.32.
|
|
25432
|
+
const current = true ? "2.32.7" : null;
|
|
25427
25433
|
if (!current) return;
|
|
25428
25434
|
const cache = readCache();
|
|
25429
25435
|
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.32.
|
|
3
|
+
"version": "2.32.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",
|