@adhdev/daemon-standalone 1.0.43 → 1.0.44-rc.2

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/public/index.html CHANGED
@@ -7,9 +7,9 @@
7
7
  <meta name="description" content="ADHDev self-hosted dashboard for controlling AI agents" />
8
8
  <link rel="icon" href="/otter-logo.png" />
9
9
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet" />
10
- <script type="module" crossorigin src="/assets/index-CM5X3KcB.js"></script>
10
+ <script type="module" crossorigin src="/assets/index-ExETXxNL.js"></script>
11
11
  <link rel="modulepreload" crossorigin href="/assets/vendor-DgFmqOGd.js">
12
- <link rel="stylesheet" crossorigin href="/assets/index-DcvJsnpp.css">
12
+ <link rel="stylesheet" crossorigin href="/assets/index-zRNkTYHz.css">
13
13
  </head>
14
14
  <body>
15
15
  <!-- Apply theme immediately to prevent FOIT (Flash of Incorrect Theme) -->
@@ -3709,6 +3709,10 @@ async function drainCoordinatorPendingEvents(ctx, opts) {
3709
3709
  if (counters && typeof counters === "object") {
3710
3710
  ctx.lastMeshProtocolV2Counters = counters;
3711
3711
  }
3712
+ const retentionCounters = payloadRaw?.pendingRetentionCounters ?? raw?.pendingRetentionCounters;
3713
+ if (retentionCounters && typeof retentionCounters === "object") {
3714
+ ctx.lastPendingRetentionCounters = retentionCounters;
3715
+ }
3712
3716
  const hasLiveCliCoordinator = payloadRaw?.hasLiveCliCoordinator === true || raw?.hasLiveCliCoordinator === true;
3713
3717
  const surfacedForSelfCoordinator = payloadRaw?.surfacedForSelfCoordinator === true || raw?.surfacedForSelfCoordinator === true;
3714
3718
  const localEvents = normalizePendingMeshCoordinatorEvents(raw).filter(matchesCurrentMesh);
@@ -4427,6 +4431,9 @@ async function meshStatus(ctx, args = {}) {
4427
4431
  if (ctx.lastMeshProtocolV2Counters) {
4428
4432
  response.meshProtocolV2Counters = ctx.lastMeshProtocolV2Counters;
4429
4433
  }
4434
+ if (ctx.lastPendingRetentionCounters) {
4435
+ response.pendingRetentionCounters = ctx.lastPendingRetentionCounters;
4436
+ }
4430
4437
  } catch {
4431
4438
  }
4432
4439
  return JSON.stringify(response);