open-agents-ai 0.187.71 → 0.187.72
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 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -294118,7 +294118,7 @@ async function handleUpdate(subcommand, ctx3) {
|
|
|
294118
294118
|
const boxFg = getBoxFg();
|
|
294119
294119
|
const bgSeq = getBgSeq();
|
|
294120
294120
|
const contentTop = 4;
|
|
294121
|
-
const contentBottom = rows -
|
|
294121
|
+
const contentBottom = rows - 2;
|
|
294122
294122
|
const contentHeight = Math.max(5, contentBottom - contentTop + 1);
|
|
294123
294123
|
let buf = "\x1B[?2026h\x1B7\x1B[?25l";
|
|
294124
294124
|
for (let r2 = contentTop; r2 <= contentBottom; r2++) {
|
|
@@ -294195,7 +294195,7 @@ async function handleUpdate(subcommand, ctx3) {
|
|
|
294195
294195
|
clearInterval(timer);
|
|
294196
294196
|
const rows = process.stdout.rows ?? 24;
|
|
294197
294197
|
const contentTop = 4;
|
|
294198
|
-
const contentBottom = rows -
|
|
294198
|
+
const contentBottom = rows - 2;
|
|
294199
294199
|
const { tuiBgSeq: getDismissBg } = (init_theme(), __toCommonJS(theme_exports));
|
|
294200
294200
|
let buf = "\x1B7";
|
|
294201
294201
|
for (let r2 = contentTop; r2 <= contentBottom; r2++) {
|
package/package.json
CHANGED