@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.mjs CHANGED
@@ -2922,7 +2922,7 @@ ${lastSnapshot}`;
2922
2922
  }
2923
2923
  getFreshParsedStatusCache() {
2924
2924
  const cached = this.parsedStatusCache;
2925
- 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) {
2925
+ 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) {
2926
2926
  return cached.result;
2927
2927
  }
2928
2928
  return null;
@@ -4014,7 +4014,7 @@ ${lastSnapshot}`;
4014
4014
  const screenText = this.readTerminalScreenText();
4015
4015
  const parseScreenText = this.getParseScreenText(screenText);
4016
4016
  const cached = this.parsedStatusCache;
4017
- 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) {
4017
+ 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) {
4018
4018
  return cached.result;
4019
4019
  }
4020
4020
  const parsed = this.runParseSession();
@@ -4042,6 +4042,7 @@ ${lastSnapshot}`;
4042
4042
  currentTurnScope: this.currentTurnScope,
4043
4043
  recentOutputBuffer: this.recentOutputBuffer,
4044
4044
  accumulatedBuffer: this.accumulatedBuffer,
4045
+ accumulatedRawBuffer: this.accumulatedRawBuffer,
4045
4046
  screenText: parseScreenText,
4046
4047
  currentStatus: this.currentStatus,
4047
4048
  activeModal: this.activeModal,