codeam-cli 1.4.36 → 1.4.37
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/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -116,7 +116,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
116
116
|
// package.json
|
|
117
117
|
var package_default = {
|
|
118
118
|
name: "codeam-cli",
|
|
119
|
-
version: "1.4.
|
|
119
|
+
version: "1.4.37",
|
|
120
120
|
description: "Remote control Claude Code from your mobile device",
|
|
121
121
|
main: "dist/index.js",
|
|
122
122
|
bin: {
|
|
@@ -1356,6 +1356,7 @@ function parseJsonl(filePath) {
|
|
|
1356
1356
|
const ts = record["timestamp"];
|
|
1357
1357
|
const timestamp = typeof ts === "string" ? new Date(ts).getTime() : typeof ts === "number" ? ts : Date.now();
|
|
1358
1358
|
const uuid = record["uuid"] ?? `${Date.now()}-${Math.random()}`;
|
|
1359
|
+
if (record["isMeta"]) continue;
|
|
1359
1360
|
if (type === "user" && msg) {
|
|
1360
1361
|
const text = extractText(msg["content"]).trim();
|
|
1361
1362
|
if (text) messages.push({ id: uuid, role: "user", text, timestamp });
|