open-agents-ai 0.187.128 → 0.187.129
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 +0 -15
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -278794,15 +278794,7 @@ function leaveOverlay() {
|
|
|
278794
278794
|
} catch {
|
|
278795
278795
|
}
|
|
278796
278796
|
}
|
|
278797
|
-
const pending = _buffer;
|
|
278798
278797
|
_buffer = [];
|
|
278799
|
-
for (const { stream, data } of pending) {
|
|
278800
|
-
if (stream === "stdout") {
|
|
278801
|
-
process.stdout.write(data);
|
|
278802
|
-
} else {
|
|
278803
|
-
process.stderr.write(data);
|
|
278804
|
-
}
|
|
278805
|
-
}
|
|
278806
278798
|
}
|
|
278807
278799
|
}
|
|
278808
278800
|
var _overlayActive, _depth, _buffer, _origStdoutWrite, _origStderrWrite, _onLeaveCallback;
|
|
@@ -280523,13 +280515,6 @@ var init_status_bar = __esm({
|
|
|
280523
280515
|
this.writeDepth++;
|
|
280524
280516
|
if (this.writeDepth > 1) return;
|
|
280525
280517
|
if (isOverlayActive()) {
|
|
280526
|
-
if (!this._origWrite) {
|
|
280527
|
-
this._origWrite = this._trueStdoutWrite;
|
|
280528
|
-
process.stdout.write = ((chunk) => {
|
|
280529
|
-
bufferIfOverlay("stdout", chunk);
|
|
280530
|
-
return true;
|
|
280531
|
-
});
|
|
280532
|
-
}
|
|
280533
280518
|
return;
|
|
280534
280519
|
}
|
|
280535
280520
|
this.updateFooterHeight();
|
package/package.json
CHANGED