pi-harness-runtime 1.1.7 → 1.1.9

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.
Files changed (2) hide show
  1. package/index.ts +10 -0
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -1391,6 +1391,16 @@ Run \`bd ready\` to see current tasks.
1391
1391
  // so this is safe to call frequently.
1392
1392
  setInterval(() => {
1393
1393
  void maybeAutoFetchQuota(lastActiveProvider ?? null);
1394
+ // Also refresh footer status so user sees updated quota data
1395
+ if (footerStatusCtx) {
1396
+ refreshFooterStatus(
1397
+ footerStatusCtx,
1398
+ tracker,
1399
+ mirrorStore,
1400
+ hasCookieSource,
1401
+ () => lastActiveProvider,
1402
+ );
1403
+ }
1394
1404
  }, MINIMAX_REFRESH_MIN_INTERVAL_MS);
1395
1405
 
1396
1406
  function queueAutoResume(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-harness-runtime",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "description": "[BETA] Codex-style /usage status + autonomous coding harness for pi. Not production ready — expect breaking changes.",
5
5
  "type": "module",
6
6
  "scripts": {