@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/daemon-core",
3
- "version": "0.9.77-rc.35",
3
+ "version": "0.9.77-rc.36",
4
4
  "description": "ADHDev daemon core — CDP, IDE detection, providers, command execution",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -225,6 +225,7 @@ export class ProviderCliAdapter implements CliAdapter {
225
225
  currentTurnScope: TurnParseScope | null;
226
226
  recentOutputBuffer: string;
227
227
  accumulatedBuffer: string;
228
+ accumulatedRawBuffer: string;
228
229
  screenText: string;
229
230
  currentStatus: CliSessionStatus['status'];
230
231
  activeModal: { message: string; buttons: string[] } | null;
@@ -307,6 +308,7 @@ export class ProviderCliAdapter implements CliAdapter {
307
308
  && cached.currentTurnScope === this.currentTurnScope
308
309
  && cached.recentOutputBuffer === this.recentOutputBuffer
309
310
  && cached.accumulatedBuffer === this.accumulatedBuffer
311
+ && cached.accumulatedRawBuffer === this.accumulatedRawBuffer
310
312
  && cached.screenText === this.lastScreenText
311
313
  && cached.currentStatus === this.currentStatus
312
314
  && cached.activeModal === this.activeModal
@@ -1593,6 +1595,7 @@ export class ProviderCliAdapter implements CliAdapter {
1593
1595
  && cached.currentTurnScope === this.currentTurnScope
1594
1596
  && cached.recentOutputBuffer === this.recentOutputBuffer
1595
1597
  && cached.accumulatedBuffer === this.accumulatedBuffer
1598
+ && cached.accumulatedRawBuffer === this.accumulatedRawBuffer
1596
1599
  && cached.screenText === parseScreenText
1597
1600
  && cached.currentStatus === this.currentStatus
1598
1601
  && cached.activeModal === this.activeModal
@@ -1632,6 +1635,7 @@ export class ProviderCliAdapter implements CliAdapter {
1632
1635
  currentTurnScope: this.currentTurnScope,
1633
1636
  recentOutputBuffer: this.recentOutputBuffer,
1634
1637
  accumulatedBuffer: this.accumulatedBuffer,
1638
+ accumulatedRawBuffer: this.accumulatedRawBuffer,
1635
1639
  screenText: parseScreenText,
1636
1640
  currentStatus: this.currentStatus,
1637
1641
  activeModal: this.activeModal,