codeam-cli 1.4.25 → 1.4.26
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 +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -115,7 +115,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
115
115
|
// package.json
|
|
116
116
|
var package_default = {
|
|
117
117
|
name: "codeam-cli",
|
|
118
|
-
version: "1.4.
|
|
118
|
+
version: "1.4.26",
|
|
119
119
|
description: "Remote control Claude Code from your mobile device",
|
|
120
120
|
main: "dist/index.js",
|
|
121
121
|
bin: {
|
|
@@ -1726,7 +1726,6 @@ async function start() {
|
|
|
1726
1726
|
historySvc.setCurrentConversationId(conversationId);
|
|
1727
1727
|
}, (reset) => {
|
|
1728
1728
|
historySvc.setRateLimitReset(reset);
|
|
1729
|
-
historySvc.setQuotaPercent(100);
|
|
1730
1729
|
}, () => {
|
|
1731
1730
|
turnCount++;
|
|
1732
1731
|
if (turnCount % USAGE_FETCH_INTERVAL === 1) {
|
|
@@ -1889,6 +1888,9 @@ async function start() {
|
|
|
1889
1888
|
historySvc.load().catch(() => {
|
|
1890
1889
|
});
|
|
1891
1890
|
}, 2e3);
|
|
1891
|
+
setTimeout(() => {
|
|
1892
|
+
fetchQuotaUsage();
|
|
1893
|
+
}, 5e3);
|
|
1892
1894
|
}
|
|
1893
1895
|
|
|
1894
1896
|
// src/commands/pair.ts
|