@adhdev/daemon-core 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
@@ -2926,7 +2926,7 @@ ${lastSnapshot}`;
2926
2926
  }
2927
2927
  getFreshParsedStatusCache() {
2928
2928
  const cached = this.parsedStatusCache;
2929
- if (cached && cached.responseBuffer === this.responseBuffer && cached.currentTurnScope === this.currentTurnScope && cached.recentOutputBuffer === this.recentOutputBuffer && cached.accumulatedBuffer === this.accumulatedBuffer && cached.screenText === this.lastScreenText && cached.currentStatus === this.currentStatus && cached.activeModal === this.activeModal && cached.cliName === this.cliName) {
2929
+ if (cached && cached.responseBuffer === this.responseBuffer && cached.currentTurnScope === this.currentTurnScope && cached.recentOutputBuffer === this.recentOutputBuffer && cached.accumulatedBuffer === this.accumulatedBuffer && cached.accumulatedRawBuffer === this.accumulatedRawBuffer && cached.screenText === this.lastScreenText && cached.currentStatus === this.currentStatus && cached.activeModal === this.activeModal && cached.cliName === this.cliName) {
2930
2930
  return cached.result;
2931
2931
  }
2932
2932
  return null;
@@ -4018,7 +4018,7 @@ ${lastSnapshot}`;
4018
4018
  const screenText = this.readTerminalScreenText();
4019
4019
  const parseScreenText = this.getParseScreenText(screenText);
4020
4020
  const cached = this.parsedStatusCache;
4021
- if (cached && cached.responseBuffer === this.responseBuffer && cached.currentTurnScope === this.currentTurnScope && cached.recentOutputBuffer === this.recentOutputBuffer && cached.accumulatedBuffer === this.accumulatedBuffer && cached.screenText === parseScreenText && cached.currentStatus === this.currentStatus && cached.activeModal === this.activeModal && cached.cliName === this.cliName) {
4021
+ if (cached && cached.responseBuffer === this.responseBuffer && cached.currentTurnScope === this.currentTurnScope && cached.recentOutputBuffer === this.recentOutputBuffer && cached.accumulatedBuffer === this.accumulatedBuffer && cached.accumulatedRawBuffer === this.accumulatedRawBuffer && cached.screenText === parseScreenText && cached.currentStatus === this.currentStatus && cached.activeModal === this.activeModal && cached.cliName === this.cliName) {
4022
4022
  return cached.result;
4023
4023
  }
4024
4024
  const parsed = this.runParseSession();
@@ -4046,6 +4046,7 @@ ${lastSnapshot}`;
4046
4046
  currentTurnScope: this.currentTurnScope,
4047
4047
  recentOutputBuffer: this.recentOutputBuffer,
4048
4048
  accumulatedBuffer: this.accumulatedBuffer,
4049
+ accumulatedRawBuffer: this.accumulatedRawBuffer,
4049
4050
  screenText: parseScreenText,
4050
4051
  currentStatus: this.currentStatus,
4051
4052
  activeModal: this.activeModal,