fix(integration-events): add missing eventsSelfEchoSuppressed to mock telemetry (unbreak tsc)#182
Conversation
… telemetry #177 added eventsSelfEchoSuppressed to IntegrationEventCounterName but the ipc-mock telemetry totals object was not updated, breaking `tsc -p tsconfig.web.json` on main (TS2741). Add the field (default 0) to the mock. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Your free trial PR review limit of 300 PRs has been reached. Please upgrade your plan to continue using CodeAnt AI. |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughUpdated the mock telemetry snapshot to include the ChangesMock Telemetry Update
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Code Review
This pull request updates the mock telemetry totals in ipc-mock.ts to include the eventsSelfEchoSuppressed field, initializing it to 0. There are no review comments, so I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
|
pr-reviewer could not complete review for #182 in AgentWorkforce/pear. |
|
ℹ️ pr-reviewer: review only — no file changes were applied to the PR (nothing to commit after review). The notes below are advisory and were not pushed. pr-reviewer could not complete review for #182 in AgentWorkforce/pear. |
|
pr-reviewer could not complete review for #182 in AgentWorkforce/pear. |
|
ℹ️ pr-reviewer: review only — no file changes were applied to the PR (nothing to commit after review). The notes below are advisory and were not pushed. pr-reviewer could not complete review for #182 in AgentWorkforce/pear. |
|
pr-reviewer could not complete review for #182 in AgentWorkforce/pear. |
|
ℹ️ pr-reviewer: review only — no file changes were applied to the PR (nothing to commit after review). The notes below are advisory and were not pushed. pr-reviewer could not complete review for #182 in AgentWorkforce/pear. |
|
pr-reviewer could not complete review for #182 in AgentWorkforce/pear. |
|
ℹ️ pr-reviewer: review only — no file changes were applied to the PR (nothing to commit after review). The notes below are advisory and were not pushed. pr-reviewer could not complete review for #182 in AgentWorkforce/pear. |
|
pr-reviewer could not complete review for #182 in AgentWorkforce/pear. |
|
ℹ️ pr-reviewer: review only — no file changes were applied to the PR (nothing to commit after review). The notes below are advisory and were not pushed. pr-reviewer could not complete review for #182 in AgentWorkforce/pear. |
|
pr-reviewer could not complete review for #182 in AgentWorkforce/pear. |
Problem
tsc -p tsconfig.web.jsonfails onmain(TS2741) inipc-mock.ts:eventsSelfEchoSuppressedis required byIntegrationEventTelemetryCountersbut missing from the mock telemetrytotalsobject.Cause
#177 (integration-event self-echo suppression) added
eventsSelfEchoSuppressedtoIntegrationEventCounterNamebut did not update the renderer mock telemetry object. The break has been onmainsince1a5bd5d.Fix
Add
eventsSelfEchoSuppressed: 0to the mocktotals(the only counters object inipc-mock.ts;projectsis empty).tsc --noEmit -p tsconfig.web.jsonis clean after.Unblocks tsc for everyone, including rebases of #172 / #176.
🤖 Generated with Claude Code