codeam-cli 2.61.58 → 2.61.59
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 +6 -0
- package/dist/index.js +9 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ 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.61.58] — 2026-07-27
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** ClickUp integration (tracker, OAuth) — DARK
|
|
12
|
+
|
|
7
13
|
## [2.61.57] — 2026-07-27
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -1286,7 +1286,7 @@ var INTEGRATION_REGISTRY = {
|
|
|
1286
1286
|
// has NO refresh token, and its OAuth has NO granular scopes (the app gets
|
|
1287
1287
|
// the workspaces the user authorizes). enabled:false until the OAuth app is
|
|
1288
1288
|
// registered (client_id/secret) + secrets land + Step-8 live-verify.
|
|
1289
|
-
enabled:
|
|
1289
|
+
enabled: true,
|
|
1290
1290
|
auth: {
|
|
1291
1291
|
kind: "oauth_redirect",
|
|
1292
1292
|
scopes: []
|
|
@@ -6750,7 +6750,7 @@ function readAnonId() {
|
|
|
6750
6750
|
}
|
|
6751
6751
|
function superProperties() {
|
|
6752
6752
|
return {
|
|
6753
|
-
cliVersion: true ? "2.61.
|
|
6753
|
+
cliVersion: true ? "2.61.59" : "0.0.0-dev",
|
|
6754
6754
|
nodeVersion: process.version,
|
|
6755
6755
|
platform: process.platform,
|
|
6756
6756
|
arch: process.arch,
|
|
@@ -6931,7 +6931,7 @@ var os4 = __toESM(require("os"));
|
|
|
6931
6931
|
// package.json
|
|
6932
6932
|
var package_default = {
|
|
6933
6933
|
name: "codeam-cli",
|
|
6934
|
-
version: "2.61.
|
|
6934
|
+
version: "2.61.59",
|
|
6935
6935
|
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.",
|
|
6936
6936
|
type: "commonjs",
|
|
6937
6937
|
main: "dist/index.js",
|
|
@@ -8103,7 +8103,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
8103
8103
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
8104
8104
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
8105
8105
|
// pair/reconnect). Older backends ignore the extra field.
|
|
8106
|
-
..."2.61.
|
|
8106
|
+
..."2.61.59" ? { ideVersion: "2.61.59" } : {}
|
|
8107
8107
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
8108
8108
|
}
|
|
8109
8109
|
/**
|
|
@@ -19212,7 +19212,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
19212
19212
|
if (process.env.NODE_ENV === "test") return;
|
|
19213
19213
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19214
19214
|
if (process.env.CI) return;
|
|
19215
|
-
const current = true ? "2.61.
|
|
19215
|
+
const current = true ? "2.61.59" : null;
|
|
19216
19216
|
if (!current) return;
|
|
19217
19217
|
const cache = readCache();
|
|
19218
19218
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19229,7 +19229,7 @@ function checkForUpdates() {
|
|
|
19229
19229
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19230
19230
|
if (process.env.CI) return;
|
|
19231
19231
|
if (!process.stdout.isTTY) return;
|
|
19232
|
-
const current = true ? "2.61.
|
|
19232
|
+
const current = true ? "2.61.59" : null;
|
|
19233
19233
|
if (!current) return;
|
|
19234
19234
|
const cache = readCache();
|
|
19235
19235
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19249,7 +19249,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
19249
19249
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
19250
19250
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
19251
19251
|
function currentCliVersion() {
|
|
19252
|
-
return true ? "2.61.
|
|
19252
|
+
return true ? "2.61.59" : null;
|
|
19253
19253
|
}
|
|
19254
19254
|
function runCmd(cmd, args2, timeoutMs) {
|
|
19255
19255
|
return new Promise((resolve8) => {
|
|
@@ -39445,7 +39445,7 @@ function checkChokidar() {
|
|
|
39445
39445
|
}
|
|
39446
39446
|
async function doctor(args2 = []) {
|
|
39447
39447
|
const json = args2.includes("--json");
|
|
39448
|
-
const cliVersion = true ? "2.61.
|
|
39448
|
+
const cliVersion = true ? "2.61.59" : "0.0.0-dev";
|
|
39449
39449
|
const apiBase2 = resolveApiBaseUrl();
|
|
39450
39450
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
39451
39451
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -39967,7 +39967,7 @@ async function mcpRun(args2) {
|
|
|
39967
39967
|
// src/commands/version.ts
|
|
39968
39968
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
39969
39969
|
function version2() {
|
|
39970
|
-
const v = true ? "2.61.
|
|
39970
|
+
const v = true ? "2.61.59" : "unknown";
|
|
39971
39971
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
39972
39972
|
}
|
|
39973
39973
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.59",
|
|
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",
|