codeam-cli 2.4.26 → 2.4.27
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 +3 -5
- 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.4.26] — 2026-05-03
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Set_keep_alive PATCHes idle_timeout instead of pinging API (v2.4.26)
|
|
12
|
+
|
|
7
13
|
## [2.4.25] — 2026-05-03
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -179,7 +179,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
179
179
|
// package.json
|
|
180
180
|
var package_default = {
|
|
181
181
|
name: "codeam-cli",
|
|
182
|
-
version: "2.4.
|
|
182
|
+
version: "2.4.27",
|
|
183
183
|
description: "Remote control Claude Code (and other AI coding agents) from your mobile phone. Pair your device, send prompts, stream responses in real-time, and approve commands \u2014 from anywhere.",
|
|
184
184
|
main: "dist/index.js",
|
|
185
185
|
bin: {
|
|
@@ -6741,9 +6741,9 @@ async function deploy() {
|
|
|
6741
6741
|
} catch {
|
|
6742
6742
|
machineStep.stop("\xB7 Could not list machine types \u2014 using provider default");
|
|
6743
6743
|
}
|
|
6744
|
-
if (machines.length
|
|
6744
|
+
if (machines.length >= 1) {
|
|
6745
6745
|
const picked = await _t({
|
|
6746
|
-
message: "Pick a machine size (starts at 8 GB RAM):",
|
|
6746
|
+
message: machines.length === 1 ? "Confirm machine size (only one is available for this project):" : "Pick a machine size (starts at 8 GB RAM):",
|
|
6747
6747
|
initialValue: machines[0].id,
|
|
6748
6748
|
options: machines.map((m) => ({
|
|
6749
6749
|
value: m.id,
|
|
@@ -6756,8 +6756,6 @@ async function deploy() {
|
|
|
6756
6756
|
process.exit(0);
|
|
6757
6757
|
}
|
|
6758
6758
|
machineTypeId = picked;
|
|
6759
|
-
} else if (machines.length === 1) {
|
|
6760
|
-
machineTypeId = machines[0].id;
|
|
6761
6759
|
}
|
|
6762
6760
|
}
|
|
6763
6761
|
if (!workspace) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.27",
|
|
4
4
|
"description": "Remote control Claude Code (and other AI coding agents) from your mobile phone. Pair your device, send prompts, stream responses in real-time, and approve commands — from anywhere.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|