@adhdev/daemon-standalone 0.9.77-rc.35 → 0.9.77-rc.36
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/package.json
CHANGED
|
@@ -42105,7 +42105,7 @@ ${lastSnapshot}`;
|
|
|
42105
42105
|
}
|
|
42106
42106
|
getFreshParsedStatusCache() {
|
|
42107
42107
|
const cached2 = this.parsedStatusCache;
|
|
42108
|
-
if (cached2 && cached2.responseBuffer === this.responseBuffer && cached2.currentTurnScope === this.currentTurnScope && cached2.recentOutputBuffer === this.recentOutputBuffer && cached2.accumulatedBuffer === this.accumulatedBuffer && cached2.screenText === this.lastScreenText && cached2.currentStatus === this.currentStatus && cached2.activeModal === this.activeModal && cached2.cliName === this.cliName) {
|
|
42108
|
+
if (cached2 && cached2.responseBuffer === this.responseBuffer && cached2.currentTurnScope === this.currentTurnScope && cached2.recentOutputBuffer === this.recentOutputBuffer && cached2.accumulatedBuffer === this.accumulatedBuffer && cached2.accumulatedRawBuffer === this.accumulatedRawBuffer && cached2.screenText === this.lastScreenText && cached2.currentStatus === this.currentStatus && cached2.activeModal === this.activeModal && cached2.cliName === this.cliName) {
|
|
42109
42109
|
return cached2.result;
|
|
42110
42110
|
}
|
|
42111
42111
|
return null;
|
|
@@ -43197,7 +43197,7 @@ ${lastSnapshot}`;
|
|
|
43197
43197
|
const screenText = this.readTerminalScreenText();
|
|
43198
43198
|
const parseScreenText = this.getParseScreenText(screenText);
|
|
43199
43199
|
const cached2 = this.parsedStatusCache;
|
|
43200
|
-
if (cached2 && cached2.responseBuffer === this.responseBuffer && cached2.currentTurnScope === this.currentTurnScope && cached2.recentOutputBuffer === this.recentOutputBuffer && cached2.accumulatedBuffer === this.accumulatedBuffer && cached2.screenText === parseScreenText && cached2.currentStatus === this.currentStatus && cached2.activeModal === this.activeModal && cached2.cliName === this.cliName) {
|
|
43200
|
+
if (cached2 && cached2.responseBuffer === this.responseBuffer && cached2.currentTurnScope === this.currentTurnScope && cached2.recentOutputBuffer === this.recentOutputBuffer && cached2.accumulatedBuffer === this.accumulatedBuffer && cached2.accumulatedRawBuffer === this.accumulatedRawBuffer && cached2.screenText === parseScreenText && cached2.currentStatus === this.currentStatus && cached2.activeModal === this.activeModal && cached2.cliName === this.cliName) {
|
|
43201
43201
|
return cached2.result;
|
|
43202
43202
|
}
|
|
43203
43203
|
const parsed = this.runParseSession();
|
|
@@ -43225,6 +43225,7 @@ ${lastSnapshot}`;
|
|
|
43225
43225
|
currentTurnScope: this.currentTurnScope,
|
|
43226
43226
|
recentOutputBuffer: this.recentOutputBuffer,
|
|
43227
43227
|
accumulatedBuffer: this.accumulatedBuffer,
|
|
43228
|
+
accumulatedRawBuffer: this.accumulatedRawBuffer,
|
|
43228
43229
|
screenText: parseScreenText,
|
|
43229
43230
|
currentStatus: this.currentStatus,
|
|
43230
43231
|
activeModal: this.activeModal,
|