@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/dist/index.js
CHANGED
|
@@ -34142,7 +34142,7 @@ ${lastSnapshot}`;
|
|
|
34142
34142
|
}
|
|
34143
34143
|
getFreshParsedStatusCache() {
|
|
34144
34144
|
const cached2 = this.parsedStatusCache;
|
|
34145
|
-
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) {
|
|
34145
|
+
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) {
|
|
34146
34146
|
return cached2.result;
|
|
34147
34147
|
}
|
|
34148
34148
|
return null;
|
|
@@ -35234,7 +35234,7 @@ ${lastSnapshot}`;
|
|
|
35234
35234
|
const screenText = this.readTerminalScreenText();
|
|
35235
35235
|
const parseScreenText = this.getParseScreenText(screenText);
|
|
35236
35236
|
const cached2 = this.parsedStatusCache;
|
|
35237
|
-
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) {
|
|
35237
|
+
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) {
|
|
35238
35238
|
return cached2.result;
|
|
35239
35239
|
}
|
|
35240
35240
|
const parsed = this.runParseSession();
|
|
@@ -35262,6 +35262,7 @@ ${lastSnapshot}`;
|
|
|
35262
35262
|
currentTurnScope: this.currentTurnScope,
|
|
35263
35263
|
recentOutputBuffer: this.recentOutputBuffer,
|
|
35264
35264
|
accumulatedBuffer: this.accumulatedBuffer,
|
|
35265
|
+
accumulatedRawBuffer: this.accumulatedRawBuffer,
|
|
35265
35266
|
screenText: parseScreenText,
|
|
35266
35267
|
currentStatus: this.currentStatus,
|
|
35267
35268
|
activeModal: this.activeModal,
|