Skip to content

feat(telemetry): capture Rewardful referral on checkout attribution#12311

Draft
nav-tej wants to merge 1 commit into
mainfrom
glary/rewardful-affiliate-tracking
Draft

feat(telemetry): capture Rewardful referral on checkout attribution#12311
nav-tej wants to merge 1 commit into
mainfrom
glary/rewardful-affiliate-tracking

Conversation

@nav-tej
Copy link
Copy Markdown
Contributor

@nav-tej nav-tej commented May 16, 2026

PR Created by the Glary-Bot Agent


Summary

Mirrors the existing Impact affiliate wiring for the new Rewardful affiliate network. The client reads window.Rewardful.referral when getCheckoutAttribution() runs at checkout time and emits it as a new optional rewardful_referral field on CheckoutAttributionMetadata. The Go backend consumes this field separately and passes it to Stripe as ClientReferenceID on the Checkout Session create call — that wiring lives in a sibling PR on Comfy-Org/cloud (services/comfy-api) and is the path that actually credits affiliate commissions for Stripe subscriptions.

Per Rewardful's docs for server-side Stripe Checkout Sessions, the GTM-loaded Rewardful JS handles cookie persistence on the client but cannot attribute Checkout Sessions on its own — the merchant must explicitly pass the referral UUID server-side as client_reference_id.

Why this is the simplest possible client-side change

  • Rewardful's JS (loaded via GTM) owns its own cookie persistence, so unlike Impact (where we capture im_ref from URL params and persist to localStorage ourselves), we just read window.Rewardful.referral at checkout time. No URL fallback, no localStorage handling.
  • If Rewardful's script hasn't loaded or the user didn't come from an affiliate link, the field is simply omitted from the payload.
  • Adds a narrow RewardfulGlobal interface to global.d.ts (referral plus optional affiliate/campaign metadata Rewardful exposes) so window.Rewardful is typed everywhere it's accessed.
  • 4 new unit tests covering: present, absent, empty-string, and alongside Impact attribution. The existing 10 Impact/UTM tests are untouched.

Files touched

File Change
global.d.ts Add RewardfulGlobal interface + Rewardful?: on Window
src/platform/telemetry/types.ts Add rewardful_referral?: string to CheckoutAttributionMetadata
src/platform/telemetry/utils/checkoutAttribution.ts Read window.Rewardful?.referral in getCheckoutAttribution()
src/platform/telemetry/utils/__tests__/checkoutAttribution.test.ts 4 new tests + window.Rewardful = undefined reset in beforeEach

Cross-PR dependency

Needs the sibling Comfy-Org/cloud PR (branch glary/rewardful-affiliate-tracking) to actually credit referrals. This PR is safe to ship independently — the field is just ignored by the existing comfy-api endpoint until that PR lands.

Verification

  • pnpm typecheck — clean
  • pnpm test:unit src/platform/telemetry/utils — 14/14 passing (10 prior + 4 new)
  • pnpm test:unit (full repo) — passing
  • pnpm lint — 3 warnings, 0 errors (warnings pre-existing on main)
  • pnpm format:check — clean
  • pnpm knip — clean (1 pre-existing unrelated warning)
  • pnpm exec vite build — successful (7.85s)

Related: FE-704 (Finish affiliate pages PRs) for context on the broader affiliate launch.

┆Issue is synchronized with this Notion page by Unito

Mirrors the existing Impact wiring for the new Rewardful affiliate
network: client reads window.Rewardful.referral when getCheckoutAttribution
runs, and emits it as a new optional rewardful_referral field on
CheckoutAttributionMetadata. The Go backend (comfy-api) consumes this
field separately and passes it to Stripe as ClientReferenceID on the
CheckoutSession create call — that wiring lives in a sibling PR on
Comfy-Org/comfy-api and is the path that actually credits affiliate
commissions for Stripe subscriptions (per Rewardful docs, GTM-loaded JS
alone cannot attribute Checkout Sessions; the merchant must pass the
referral UUID server-side).

Why this is the simplest possible client-side change:

- Rewardful's JS (loaded via GTM) owns its own cookie persistence, so
  unlike Impact (where we capture im_ref from URL params and persist
  to localStorage ourselves) we just read window.Rewardful.referral at
  checkout time. No URL fallback, no localStorage handling. If
  Rewardful's script hasn't loaded or the user didn't come from an
  affiliate link, the field is omitted from the payload entirely.
- Adds a narrow RewardfulGlobal interface to global.d.ts (referral plus
  optional affiliate/campaign metadata Rewardful exposes) so window.Rewardful
  is typed everywhere.
- Adds 4 unit tests covering: present, absent, empty-string, and
  alongside Impact attribution. The existing 10 Impact/UTM tests are
  untouched.

Verified (locally on the workspace clone):
- pnpm typecheck — clean
- pnpm test:unit src/platform/telemetry/utils — 14/14 (10 prior + 4 new)
- pnpm test:unit (full repo) — passing
- pnpm lint — 3 warnings, 0 errors (warnings pre-existing on main)
- pnpm format:check — clean
- pnpm knip — clean (1 pre-existing warning unrelated)
- pnpm exec vite build — successful (7.85s)

Cross-PR dependency: needs the sibling comfy-api PR to actually credit
referrals. This PR is safe to ship independently — the field is just
ignored by the existing comfy-api endpoint until that PR lands.
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 16, 2026

Review Change Stack

📝 Walkthrough

Walkthrough

Adds Rewardful referral attribution tracking to checkout telemetry. Defines global types for Rewardful configuration, extends attribution metadata to include rewardful_referral, implements extraction logic, and validates behavior with tests.

Changes

Rewardful Referral Attribution

Layer / File(s) Summary
Global Rewardful type definitions
global.d.ts
RewardfulGlobal interface describes optional referral, affiliate, and campaign fields. Window type extended with optional Rewardful property.
Checkout attribution metadata contract
src/platform/telemetry/types.ts
CheckoutAttributionMetadata gains optional rewardful_referral?: string field to capture Rewardful referral data.
Rewardful referral extraction and integration
src/platform/telemetry/utils/checkoutAttribution.ts
getRewardfulReferral() helper extracts and normalizes window.Rewardful?.referral. getCheckoutAttribution() integrates the extracted value into returned metadata.
Attribution tests
src/platform/telemetry/utils/__tests__/checkoutAttribution.test.ts
Test setup isolates window.Rewardful state. New tests verify capture when referral exists, undefined when absent or empty, and coexistence with existing Impact/UTM attribution.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Poem

A rabbit hops in, with a referral in tow, 🐰
Through telemetry fields where the attribution flows,
From window to checkout, the reward takes its place,
With tests keeping pace in this tracking embrace! 📊✨

🚥 Pre-merge checks | ✅ 6 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (6 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the main change: adding Rewardful referral capture to checkout attribution tracking.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
End-To-End Regression Coverage For Fixes ✅ Passed This PR is a feature (feat), not a bug fix. The check is designed to ensure bug fixes include E2E regression tests, per the instructions: "Do not insist on tests when the PR is not fixing a bug."
Adr Compliance For Entity/Litegraph Changes ✅ Passed This check applies only to PRs modifying src/lib/litegraph/, src/ecs/, or graph entity files. This PR modifies only telemetry and type files, which are outside the scope.
Description check ✅ Passed The PR description comprehensively covers all required template sections with clear explanations of what changed, why, and detailed verification results.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch glary/rewardful-affiliate-tracking

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 16, 2026

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 05/16/2026, 09:25:46 AM UTC

Links

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 16, 2026

🎭 Playwright: ✅ 1602 passed, 0 failed · 3 flaky

📊 Browser Reports
  • chromium: View Report (✅ 1581 / ❌ 0 / ⚠️ 3 / ⏭️ 5)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 18 / ❌ 0 / ⚠️ 0 / ⏭️ 0)

@glary-bot
Copy link
Copy Markdown

glary-bot Bot commented May 16, 2026

Acknowledged — that's the "review in progress" placeholder from @coderabbitai with no findings yet. Will address any actionable comments once the real review lands.

For context, the PR has already had:

  • pnpm typecheck clean
  • pnpm test:unit src/platform/telemetry/utils 14/14 passing (10 prior + 4 new Rewardful cases)
  • Full repo pnpm test:unit passing
  • pnpm lint 0 errors, 3 warnings (all pre-existing on main)
  • pnpm format:check clean
  • pnpm knip clean (1 pre-existing unrelated warning)
  • pnpm exec vite build successful

Cross-PR dependency to ship referral attribution end-to-end: Comfy-Org/cloud#3724.

@glary-bot
Copy link
Copy Markdown

glary-bot Bot commented May 16, 2026

Thanks for the approval, @coderabbitai — and noted that zero inline findings were raised. 🎉

Pushing back on the Docstring Coverage warning

I'm intentionally not adding docstrings to address the 0% docstring-coverage warning. Reasoning:

1. Matches the file's established convention. The existing functions in checkoutAttribution.ts (getGaIdentity, getGeneratedClickId, getCheckoutAttribution, captureCheckoutAttributionFromSearch, etc.) all have no docstrings. The codebase's style is self-documenting names + a brief module-level comment, and adding docstrings to just my new getRewardfulReferral helper would be inconsistent with the surrounding 200+ lines of code.

// existing pattern in the same file:
async function getGeneratedClickId(): Promise<string | undefined> {
  // ...
}

function getGaIdentity(): Promise<GaIdentity | undefined> {
  // ...
}

vs. what I added (intentionally matching):

function getRewardfulReferral(): string | undefined {
  if (typeof window === 'undefined') return undefined
  return asNonEmptyString(window.Rewardful?.referral)
}

The function is 3 lines, the name and return type fully describe it, and prose docstrings would just restate // reads the global Rewardful referral if present.

2. The repo's project-level AGENTS.md does not require docstrings. Frontend rules emphasize TypeScript safety, conventional commits, and tests — not prose annotation. The 80% threshold is a generic CodeRabbit preset, not a repo-specific bar.

3. The reasoning that actually matters lives where it's needed. All non-obvious decisions in this PR are documented in:

  • The struct doc comment on RewardfulGlobal in global.d.ts
  • The PR description (cross-PR dependency, Rewardful vs Impact difference, why we read at checkout time and not eagerly)
  • The 4 new unit tests, which name the behaviors precisely

If the codebase later adopts a docstring-coverage rule at the repo level (eslint rule, TSDoc plugin, or CI gate), I'm happy to come back and address it consistently across checkoutAttribution.ts in a follow-up that's not blocked behind this Rewardful integration.

The other 6 pre-merge checks (title, description, linked issues, scope, e2e coverage for fixes, ADR compliance) all passed. Holding here.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 16, 2026

📦 Bundle: 5.36 MB gzip 🟢 -122 B

Details

Summary

  • Raw size: 24.7 MB baseline 24.7 MB — ⚪ 0 B
  • Gzip: 5.36 MB baseline 5.36 MB — 🟢 -122 B
  • Brotli: 4.14 MB baseline 4.14 MB — 🟢 -120 B
  • Bundles: 268 current • 268 baseline • 118 added / 118 removed

Category Glance
Vendor & Third-Party ⚪ 0 B (9.94 MB) · Other ⚪ 0 B (9.16 MB) · Data & Services ⚪ 0 B (3.16 MB) · Graph Workspace ⚪ 0 B (1.24 MB) · Panels & Settings ⚪ 0 B (527 kB) · Utilities & Hooks ⚪ 0 B (366 kB) · + 5 more

App Entry Points — 26.1 kB (baseline 26.1 kB) • ⚪ 0 B

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-CkgkNRXf.js (removed) 26.1 kB 🟢 -26.1 kB 🟢 -8.76 kB 🟢 -7.53 kB
assets/index-e7A0iaC0.js (new) 26.1 kB 🔴 +26.1 kB 🔴 +8.76 kB 🔴 +7.53 kB

Status: 1 added / 1 removed

Graph Workspace — 1.24 MB (baseline 1.24 MB) • ⚪ 0 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-B8aWcoiD.js (new) 1.24 MB 🔴 +1.24 MB 🔴 +264 kB 🔴 +199 kB
assets/GraphView-C3wGbSRl.js (removed) 1.24 MB 🟢 -1.24 MB 🟢 -264 kB 🟢 -199 kB

Status: 1 added / 1 removed

Views & Navigation — 82.9 kB (baseline 82.9 kB) • ⚪ 0 B

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-Bo9__MAY.js (removed) 19.6 kB 🟢 -19.6 kB 🟢 -5.14 kB 🟢 -4.56 kB
assets/CloudSurveyView-C5fznyNQ.js (new) 19.6 kB 🔴 +19.6 kB 🔴 +5.14 kB 🔴 +4.57 kB
assets/CloudLoginView-Bi9I6YXz.js (removed) 12.5 kB 🟢 -12.5 kB 🟢 -3.55 kB 🟢 -3.12 kB
assets/CloudLoginView-qSsYkP9w.js (new) 12.5 kB 🔴 +12.5 kB 🔴 +3.55 kB 🔴 +3.13 kB
assets/CloudSignupView-TTSrUJDy.js (new) 10.4 kB 🔴 +10.4 kB 🔴 +3.06 kB 🔴 +2.7 kB
assets/CloudSignupView-ZR5csnP4.js (removed) 10.4 kB 🟢 -10.4 kB 🟢 -3.05 kB 🟢 -2.7 kB
assets/UserCheckView-CkAoPRIl.js (new) 9.07 kB 🔴 +9.07 kB 🔴 +2.34 kB 🔴 +2.05 kB
assets/UserCheckView-DQbAr4mn.js (removed) 9.07 kB 🟢 -9.07 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/CloudLayoutView-C8wdJkQS.js (new) 7.81 kB 🔴 +7.81 kB 🔴 +2.48 kB 🔴 +2.17 kB
assets/CloudLayoutView-QGe6cCAk.js (removed) 7.81 kB 🟢 -7.81 kB 🟢 -2.48 kB 🟢 -2.18 kB
assets/CloudForgotPasswordView-Bjmd_IqR.js (new) 6.22 kB 🔴 +6.22 kB 🔴 +2.21 kB 🔴 +1.95 kB
assets/CloudForgotPasswordView-CBaei9xW.js (removed) 6.22 kB 🟢 -6.22 kB 🟢 -2.21 kB 🟢 -1.95 kB
assets/CloudAuthTimeoutView-Dun1Thhz.js (new) 5.58 kB 🔴 +5.58 kB 🔴 +2.05 kB 🔴 +1.79 kB
assets/CloudAuthTimeoutView-DywCyPRm.js (removed) 5.58 kB 🟢 -5.58 kB 🟢 -2.05 kB 🟢 -1.8 kB
assets/CloudSubscriptionRedirectView-B0xeDKTi.js (new) 5.36 kB 🔴 +5.36 kB 🔴 +2.03 kB 🔴 +1.8 kB
assets/CloudSubscriptionRedirectView-BtWYkg5n.js (removed) 5.36 kB 🟢 -5.36 kB 🟢 -2.03 kB 🟢 -1.81 kB
assets/UserSelectView-CkNUY6A_.js (removed) 4.7 kB 🟢 -4.7 kB 🟢 -1.75 kB 🟢 -1.55 kB
assets/UserSelectView-DjZqdYAz.js (new) 4.7 kB 🔴 +4.7 kB 🔴 +1.75 kB 🔴 +1.55 kB

Status: 9 added / 9 removed / 2 unchanged

Panels & Settings — 527 kB (baseline 527 kB) • ⚪ 0 B

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-CG2KY29x.js (removed) 47.5 kB 🟢 -47.5 kB 🟢 -9.87 kB 🟢 -8.75 kB
assets/KeybindingPanel-CYlGQwfY.js (new) 47.5 kB 🔴 +47.5 kB 🔴 +9.87 kB 🔴 +8.75 kB
assets/SecretsPanel-1YqIEP4P.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.73 kB 🟢 -5.06 kB
assets/SecretsPanel-CGcs27GY.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.73 kB 🔴 +5.05 kB
assets/LegacyCreditsPanel-CgYaWNiu.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -5.94 kB 🟢 -5.24 kB
assets/LegacyCreditsPanel-CLgJtUbd.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +5.94 kB 🔴 +5.25 kB
assets/SubscriptionPanel-Cmw7uylB.js (new) 20.2 kB 🔴 +20.2 kB 🔴 +5.18 kB 🔴 +4.55 kB
assets/SubscriptionPanel-COrS3r9k.js (removed) 20.2 kB 🟢 -20.2 kB 🟢 -5.19 kB 🟢 -4.55 kB
assets/AboutPanel-CFYuZ6jR.js (removed) 12 kB 🟢 -12 kB 🟢 -3.33 kB 🟢 -2.99 kB
assets/AboutPanel-CwMlQfOF.js (new) 12 kB 🔴 +12 kB 🔴 +3.33 kB 🔴 +3 kB
assets/ExtensionPanel-BHPNU4Wt.js (removed) 10.1 kB 🟢 -10.1 kB 🟢 -2.95 kB 🟢 -2.62 kB
assets/ExtensionPanel-DatTuHMW.js (new) 10.1 kB 🔴 +10.1 kB 🔴 +2.95 kB 🔴 +2.61 kB
assets/ServerConfigPanel-D8k3wcWi.js (removed) 7.13 kB 🟢 -7.13 kB 🟢 -2.39 kB 🟢 -2.14 kB
assets/ServerConfigPanel-ot6uTYv0.js (new) 7.13 kB 🔴 +7.13 kB 🔴 +2.39 kB 🔴 +2.16 kB
assets/UserPanel-AaiOY5fn.js (removed) 6.84 kB 🟢 -6.84 kB 🟢 -2.27 kB 🟢 -2.01 kB
assets/UserPanel-CXTpoS6t.js (new) 6.84 kB 🔴 +6.84 kB 🔴 +2.27 kB 🔴 +2 kB
assets/cloudRemoteConfig-DpXColxS.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -1.02 kB 🟢 -881 B
assets/cloudRemoteConfig-DY3jh_V0.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +1.02 kB 🔴 +881 B
assets/refreshRemoteConfig-B-t3b7OM.js (removed) 1.45 kB 🟢 -1.45 kB 🟢 -650 B 🟢 -556 B
assets/refreshRemoteConfig-CzJQlvmv.js (new) 1.45 kB 🔴 +1.45 kB 🔴 +648 B 🔴 +549 B

Status: 10 added / 10 removed / 14 unchanged

User & Accounts — 17.8 kB (baseline 17.8 kB) • ⚪ 0 B

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-D0BgFSJp.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.29 kB 🟢 -1.1 kB
assets/auth-DbCWrgEN.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.29 kB 🔴 +1.1 kB
assets/SignUpForm-BixR3kdR.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/SignUpForm-Bvw58pBF.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/UpdatePasswordContent-BYkAbMet.js (new) 2.98 kB 🔴 +2.98 kB 🔴 +1.33 kB 🔴 +1.19 kB
assets/UpdatePasswordContent-DUC_Lm7U.js (removed) 2.98 kB 🟢 -2.98 kB 🟢 -1.33 kB 🟢 -1.18 kB
assets/authStore-DKG6X-To.js (new) 1.27 kB 🔴 +1.27 kB 🔴 +596 B 🔴 +532 B
assets/authStore-DmmpFGKa.js (removed) 1.27 kB 🟢 -1.27 kB 🟢 -599 B 🟢 -531 B
assets/auth-Bh49i8qV.js (new) 348 B 🔴 +348 B 🔴 +218 B 🔴 +185 B
assets/auth-BVFSvNLG.js (removed) 348 B 🟢 -348 B 🟢 -218 B 🟢 -209 B

Status: 5 added / 5 removed / 2 unchanged

Editors & Dialogs — 112 kB (baseline 112 kB) • ⚪ 0 B

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-BhWGMrTI.js (new) 85.8 kB 🔴 +85.8 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/ComfyHubPublishDialog-DX4-YeSt.js (removed) 85.8 kB 🟢 -85.8 kB 🟢 -18.6 kB 🟢 -15.9 kB
assets/useShareDialog-BN5aqIcK.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.81 kB 🟢 -5.14 kB
assets/useShareDialog-HuZ8dWDi.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.81 kB 🔴 +5.15 kB
assets/ComfyHubPublishDialog-DPAxFeF_.js (new) 1.43 kB 🔴 +1.43 kB 🔴 +657 B 🔴 +584 B
assets/ComfyHubPublishDialog-XayroI31.js (removed) 1.43 kB 🟢 -1.43 kB 🟢 -659 B 🟢 -581 B
assets/useSubscriptionDialog-9c3D1tJI.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -592 B 🟢 -520 B
assets/useSubscriptionDialog-BoY-7ahw.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +589 B 🔴 +519 B

Status: 4 added / 4 removed

UI Components — 58 kB (baseline 58 kB) • ⚪ 0 B

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-CQqpWTH9.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.79 kB 🔴 +3.38 kB
assets/ComfyQueueButton-CWxy8cZ1.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.79 kB 🟢 -3.38 kB
assets/useTerminalTabs-2xpKEmNM.js (removed) 11.1 kB 🟢 -11.1 kB 🟢 -3.76 kB 🟢 -3.32 kB
assets/useTerminalTabs-B6ZNiO04.js (new) 11.1 kB 🔴 +11.1 kB 🔴 +3.76 kB 🔴 +3.31 kB
assets/SubscribeButton-CHuhmUQd.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.05 kB 🔴 +919 B
assets/SubscribeButton-CURjIwI0.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.05 kB 🟢 -918 B
assets/cloudFeedbackTopbarButton-CEvmaAKN.js (removed) 1.94 kB 🟢 -1.94 kB 🟢 -965 B 🟢 -862 B
assets/cloudFeedbackTopbarButton-erUscLyc.js (new) 1.94 kB 🔴 +1.94 kB 🔴 +962 B 🔴 +861 B
assets/ComfyQueueButton-bxBlBhbk.js (removed) 1.35 kB 🟢 -1.35 kB 🟢 -627 B 🟢 -573 B
assets/ComfyQueueButton-ULNayp38.js (new) 1.35 kB 🔴 +1.35 kB 🔴 +625 B 🔴 +576 B

Status: 5 added / 5 removed / 8 unchanged

Data & Services — 3.16 MB (baseline 3.16 MB) • ⚪ 0 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/dialogService-D-qgCbge.js (removed) 2.09 MB 🟢 -2.09 MB 🟢 -476 kB 🟢 -361 kB
assets/dialogService-DVaEyp2X.js (new) 2.09 MB 🔴 +2.09 MB 🔴 +476 kB 🔴 +361 kB
assets/api-CLcX-5YC.js (new) 898 kB 🔴 +898 kB 🔴 +215 kB 🔴 +169 kB
assets/api-DE6z86IF.js (removed) 898 kB 🟢 -898 kB 🟢 -215 kB 🟢 -169 kB
assets/load3dService-BgDBd9Nq.js (new) 116 kB 🔴 +116 kB 🔴 +25.4 kB 🔴 +21.6 kB
assets/load3dService-Do-bK5lA.js (removed) 116 kB 🟢 -116 kB 🟢 -25.4 kB 🟢 -21.6 kB
assets/workflowShareService-Cgm2e9A4.js (new) 16.7 kB 🔴 +16.7 kB 🔴 +4.92 kB 🔴 +4.36 kB
assets/workflowShareService-f86kyTZP.js (removed) 16.7 kB 🟢 -16.7 kB 🟢 -4.92 kB 🟢 -4.37 kB
assets/keybindingService-DvnXqk0F.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.22 kB
assets/keybindingService-DXimb_-l.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.67 kB 🔴 +3.21 kB
assets/releaseStore-C09Zn6V1.js (removed) 8.12 kB 🟢 -8.12 kB 🟢 -2.28 kB 🟢 -2 kB
assets/releaseStore-DIzpgQ8y.js (new) 8.12 kB 🔴 +8.12 kB 🔴 +2.28 kB 🔴 +2 kB
assets/userStore-BJePiTmR.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +931 B 🔴 +825 B
assets/userStore-D9S0FuoV.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -934 B 🟢 -816 B
assets/audioService-CP80f2DZ.js (new) 1.8 kB 🔴 +1.8 kB 🔴 +880 B 🔴 +758 B
assets/audioService-Cx4kBWsh.js (removed) 1.8 kB 🟢 -1.8 kB 🟢 -881 B 🟢 -758 B
assets/releaseStore-BPKLkq3E.js (removed) 1.27 kB 🟢 -1.27 kB 🟢 -595 B 🟢 -528 B
assets/releaseStore-DzwhAOtl.js (new) 1.27 kB 🔴 +1.27 kB 🔴 +593 B 🔴 +528 B
assets/workflowDraftStore-C4xmOCPe.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -591 B 🟢 -522 B
assets/workflowDraftStore-DAfhFQKF.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +588 B 🔴 +521 B
assets/dialogService-BRMDScWe.js (removed) 1.24 kB 🟢 -1.24 kB 🟢 -583 B 🟢 -521 B
assets/dialogService-BvoH8aGE.js (new) 1.24 kB 🔴 +1.24 kB 🔴 +581 B 🔴 +520 B
assets/settingStore-CCWCyJnJ.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +583 B 🔴 +518 B
assets/settingStore-CYcv7Quz.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -586 B 🟢 -519 B
assets/assetsStore-Cu1TFGhA.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +583 B 🔴 +519 B
assets/assetsStore-D_h3DOdB.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -586 B 🟢 -516 B

Status: 13 added / 13 removed / 4 unchanged

Utilities & Hooks — 366 kB (baseline 366 kB) • ⚪ 0 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-BDkxH0zY.js (new) 234 kB 🔴 +234 kB 🔴 +52.1 kB 🔴 +42.4 kB
assets/useConflictDetection-BUYhtKVz.js (removed) 234 kB 🟢 -234 kB 🟢 -52.1 kB 🟢 -42.5 kB
assets/useLoad3d-B1VMxJYi.js (new) 22.7 kB 🔴 +22.7 kB 🔴 +5.22 kB 🔴 +4.61 kB
assets/useLoad3d-CLMb1xI3.js (removed) 22.7 kB 🟢 -22.7 kB 🟢 -5.22 kB 🟢 -4.61 kB
assets/useLoad3dViewer-B37ZK13e.js (removed) 21 kB 🟢 -21 kB 🟢 -4.93 kB 🟢 -4.3 kB
assets/useLoad3dViewer-CMVqjrbP.js (new) 21 kB 🔴 +21 kB 🔴 +4.93 kB 🔴 +4.32 kB
assets/useFeatureFlags-BZzAeVNv.js (new) 5.95 kB 🔴 +5.95 kB 🔴 +1.79 kB 🔴 +1.52 kB
assets/useFeatureFlags-DRimVAyX.js (removed) 5.95 kB 🟢 -5.95 kB 🟢 -1.79 kB 🟢 -1.52 kB
assets/useCopyToClipboard-3A6IqCoM.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.58 kB
assets/useCopyToClipboard-BfsiCCuW.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.57 kB
assets/useWorkspaceUI-Bnqa_yGU.js (new) 3.34 kB 🔴 +3.34 kB 🔴 +982 B 🔴 +811 B
assets/useWorkspaceUI-DxQILF7P.js (removed) 3.34 kB 🟢 -3.34 kB 🟢 -982 B 🟢 -815 B
assets/subscriptionCheckoutUtil-4JMhFJOt.js (removed) 3.31 kB 🟢 -3.31 kB 🟢 -1.36 kB 🟢 -1.18 kB
assets/subscriptionCheckoutUtil-HnOCR1jP.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.36 kB 🔴 +1.18 kB
assets/assetPreviewUtil-Cyl3MDt_.js (new) 2.43 kB 🔴 +2.43 kB 🔴 +1.01 kB 🔴 +879 B
assets/assetPreviewUtil-ItOejEht.js (removed) 2.43 kB 🟢 -2.43 kB 🟢 -1.01 kB 🟢 -878 B
assets/useUpstreamValue-C1nOQRc_.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -803 B 🟢 -714 B
assets/useUpstreamValue-CgnokIib.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +801 B 🔴 +712 B
assets/useLoad3d-CGFysnLg.js (new) 1.41 kB 🔴 +1.41 kB 🔴 +650 B 🔴 +586 B
assets/useLoad3d-mzDkAMC4.js (removed) 1.41 kB 🟢 -1.41 kB 🟢 -652 B 🟢 -583 B
assets/useLoad3dViewer-D9F1JGKp.js (removed) 1.35 kB 🟢 -1.35 kB 🟢 -620 B 🟢 -569 B
assets/useLoad3dViewer-HTomOQKw.js (new) 1.35 kB 🔴 +1.35 kB 🔴 +618 B 🔴 +565 B
assets/useCurrentUser-BLjqntIM.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +584 B 🔴 +520 B
assets/useCurrentUser-KCgYM_4q.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -587 B 🟢 -520 B
assets/useWorkspaceSwitch-DCnoq9al.js (new) 747 B 🔴 +747 B 🔴 +385 B 🔴 +327 B
assets/useWorkspaceSwitch-K7frXquj.js (removed) 747 B 🟢 -747 B 🟢 -382 B 🟢 -330 B

Status: 13 added / 13 removed / 18 unchanged

Vendor & Third-Party — 9.94 MB (baseline 9.94 MB) • ⚪ 0 B

External libraries and shared vendor chunks

Status: 16 unchanged

Other — 9.16 MB (baseline 9.16 MB) • ⚪ 0 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-BczHY4dn.js (removed) 78 kB 🟢 -78 kB 🟢 -20.2 kB 🟢 -17.2 kB
assets/core-CzIz0GVJ.js (new) 78 kB 🔴 +78 kB 🔴 +20.2 kB 🔴 +17.2 kB
assets/groupNode-AFinD2Ox.js (new) 74.9 kB 🔴 +74.9 kB 🔴 +18.7 kB 🔴 +16.5 kB
assets/groupNode-CLtsfd4a.js (removed) 74.9 kB 🟢 -74.9 kB 🟢 -18.7 kB 🟢 -16.5 kB
assets/WidgetSelect-C2xEv6_d.js (removed) 68.4 kB 🟢 -68.4 kB 🟢 -15.1 kB 🟢 -13 kB
assets/WidgetSelect-Mz5re9BL.js (new) 68.4 kB 🔴 +68.4 kB 🔴 +15.1 kB 🔴 +13 kB
assets/SubscriptionRequiredDialogContentWorkspace-D3NX1li6.js (removed) 48.9 kB 🟢 -48.9 kB 🟢 -9.55 kB 🟢 -8.27 kB
assets/SubscriptionRequiredDialogContentWorkspace-DsvyXq_t.js (new) 48.9 kB 🔴 +48.9 kB 🔴 +9.55 kB 🔴 +8.24 kB
assets/Load3DControls-BFU1FOZG.js (new) 46.1 kB 🔴 +46.1 kB 🔴 +7.5 kB 🔴 +6.54 kB
assets/Load3DControls-BODIA-pl.js (removed) 46.1 kB 🟢 -46.1 kB 🟢 -7.5 kB 🟢 -6.54 kB
assets/WorkspacePanelContent-BlHJxuGp.js (removed) 34.3 kB 🟢 -34.3 kB 🟢 -7.44 kB 🟢 -6.58 kB
assets/WorkspacePanelContent-Cm1KvzJ3.js (new) 34.3 kB 🔴 +34.3 kB 🔴 +7.44 kB 🔴 +6.6 kB
assets/WidgetPainter-BhJz51DP.js (new) 33.5 kB 🔴 +33.5 kB 🔴 +8.29 kB 🔴 +7.34 kB
assets/WidgetPainter-DrFDIyYp.js (removed) 33.5 kB 🟢 -33.5 kB 🟢 -8.29 kB 🟢 -7.33 kB
assets/Load3dViewerContent-BQWU9CqR.js (removed) 30.6 kB 🟢 -30.6 kB 🟢 -6.2 kB 🟢 -5.37 kB
assets/Load3dViewerContent-D9QFEBM1.js (new) 30.6 kB 🔴 +30.6 kB 🔴 +6.19 kB 🔴 +5.37 kB
assets/SubscriptionRequiredDialogContent-D8ZnEtEc.js (removed) 27.6 kB 🟢 -27.6 kB 🟢 -7.02 kB 🟢 -6.2 kB
assets/SubscriptionRequiredDialogContent-Do95TIng.js (new) 27.6 kB 🔴 +27.6 kB 🔴 +7.02 kB 🔴 +6.19 kB
assets/WidgetImageCrop--zGMlmFd.js (removed) 24.4 kB 🟢 -24.4 kB 🟢 -6.23 kB 🟢 -5.48 kB
assets/WidgetImageCrop-CFkzu_OA.js (new) 24.4 kB 🔴 +24.4 kB 🔴 +6.23 kB 🔴 +5.48 kB
assets/SubscriptionPanelContentWorkspace-CgXHS2xs.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.17 kB 🟢 -4.56 kB
assets/SubscriptionPanelContentWorkspace-Cv3nfl54.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.17 kB 🔴 +4.55 kB
assets/SignInContent-BFpcCMwb.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -5.47 kB 🟢 -4.8 kB
assets/SignInContent-CHFCIxOg.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +5.47 kB 🔴 +4.81 kB
assets/CurrentUserPopoverWorkspace-BUAqvKtu.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +4.99 kB 🔴 +4.47 kB
assets/CurrentUserPopoverWorkspace-CVnFpAhu.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -4.99 kB 🟢 -4.47 kB
assets/WidgetInputNumber-BeM53SXx.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.84 kB 🔴 +4.3 kB
assets/WidgetInputNumber-BJFff-GY.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.84 kB 🟢 -4.3 kB
assets/Load3D-CINQ7gid.js (new) 18.5 kB 🔴 +18.5 kB 🔴 +4.39 kB 🔴 +3.85 kB
assets/Load3D-DZoTZ22M.js (removed) 18.5 kB 🟢 -18.5 kB 🟢 -4.39 kB 🟢 -3.83 kB
assets/WidgetRecordAudio-BWbc7zjH.js (removed) 17.6 kB 🟢 -17.6 kB 🟢 -5.07 kB 🟢 -4.53 kB
assets/WidgetRecordAudio-CGfAP8r8.js (new) 17.6 kB 🔴 +17.6 kB 🔴 +5.07 kB 🔴 +4.52 kB
assets/WidgetRange-BaKGyNLd.js (new) 17.1 kB 🔴 +17.1 kB 🔴 +4.64 kB 🔴 +4.13 kB
assets/WidgetRange-qfukD9ME.js (removed) 17.1 kB 🟢 -17.1 kB 🟢 -4.64 kB 🟢 -4.14 kB
assets/load3d-23EHZL1V.js (new) 15.9 kB 🔴 +15.9 kB 🔴 +4.62 kB 🔴 +4.01 kB
assets/load3d-Cx7_WNpn.js (removed) 15.9 kB 🟢 -15.9 kB 🟢 -4.62 kB 🟢 -4.01 kB
assets/WaveAudioPlayer-D8IAqTRX.js (removed) 13.4 kB 🟢 -13.4 kB 🟢 -3.68 kB 🟢 -3.23 kB
assets/WaveAudioPlayer-Ds1AHgR3.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.68 kB 🔴 +3.23 kB
assets/WidgetCurve-46yia320.js (new) 12.3 kB 🔴 +12.3 kB 🔴 +3.96 kB 🔴 +3.57 kB
assets/WidgetCurve-Cn6iTXOx.js (removed) 12.3 kB 🟢 -12.3 kB 🟢 -3.96 kB 🟢 -3.59 kB
assets/TeamWorkspacesDialogContent-DAqYlhJY.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.45 kB 🔴 +3.08 kB
assets/TeamWorkspacesDialogContent-Dd1IhQUk.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.45 kB 🟢 -3.07 kB
assets/nodeTemplates-4WmnnZj3.js (removed) 9.92 kB 🟢 -9.92 kB 🟢 -3.52 kB 🟢 -3.11 kB
assets/nodeTemplates-KQXK0JoK.js (new) 9.92 kB 🔴 +9.92 kB 🔴 +3.51 kB 🔴 +3.11 kB
assets/NightlySurveyController-B4AsMEkX.js (removed) 9.05 kB 🟢 -9.05 kB 🟢 -3.18 kB 🟢 -2.81 kB
assets/NightlySurveyController-C1B1ecvW.js (new) 9.05 kB 🔴 +9.05 kB 🔴 +3.18 kB 🔴 +2.81 kB
assets/Load3DConfiguration-CayRLfWA.js (new) 8.77 kB 🔴 +8.77 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/Load3DConfiguration-DFjz4Y4U.js (removed) 8.77 kB 🟢 -8.77 kB 🟢 -2.61 kB 🟢 -2.3 kB
assets/InviteMemberDialogContent-CM5F6vDg.js (removed) 8.02 kB 🟢 -8.02 kB 🟢 -2.56 kB 🟢 -2.24 kB
assets/InviteMemberDialogContent-KCNayZEW.js (new) 8.02 kB 🔴 +8.02 kB 🔴 +2.56 kB 🔴 +2.25 kB
assets/onboardingCloudRoutes-CW2voh_4.js (removed) 6.94 kB 🟢 -6.94 kB 🟢 -2.17 kB 🟢 -1.86 kB
assets/onboardingCloudRoutes-qYgEynPj.js (new) 6.94 kB 🔴 +6.94 kB 🔴 +2.18 kB 🔴 +1.86 kB
assets/CreateWorkspaceDialogContent-BpdYlyI9.js (new) 6.23 kB 🔴 +6.23 kB 🔴 +2.27 kB 🔴 +1.99 kB
assets/CreateWorkspaceDialogContent-DpyliyX6.js (removed) 6.23 kB 🟢 -6.23 kB 🟢 -2.27 kB 🟢 -1.98 kB
assets/WidgetWithControl-CEK5W6XV.js (new) 6.2 kB 🔴 +6.2 kB 🔴 +2.5 kB 🔴 +2.22 kB
assets/WidgetWithControl-IqVtrX2_.js (removed) 6.2 kB 🟢 -6.2 kB 🟢 -2.5 kB 🟢 -2.19 kB
assets/FreeTierDialogContent-D7FX5z40.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -2.17 kB 🟢 -1.93 kB
assets/FreeTierDialogContent-DC226r2c.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +2.17 kB 🔴 +1.93 kB
assets/EditWorkspaceDialogContent-BO7IMxJb.js (new) 6.03 kB 🔴 +6.03 kB 🔴 +2.23 kB 🔴 +1.95 kB
assets/EditWorkspaceDialogContent-Cf0JODsu.js (removed) 6.03 kB 🟢 -6.03 kB 🟢 -2.23 kB 🟢 -1.95 kB
assets/WidgetTextarea-BHYAfFIc.js (removed) 5.84 kB 🟢 -5.84 kB 🟢 -2.3 kB 🟢 -2.03 kB
assets/WidgetTextarea-VS7MDdLA.js (new) 5.84 kB 🔴 +5.84 kB 🔴 +2.3 kB 🔴 +2.03 kB
assets/Preview3d-BZ9mOmtp.js (removed) 5.81 kB 🟢 -5.81 kB 🟢 -1.96 kB 🟢 -1.71 kB
assets/Preview3d-D-Qt738Q.js (new) 5.81 kB 🔴 +5.81 kB 🔴 +1.96 kB 🔴 +1.71 kB
assets/ValueControlPopover-CXwgYKg9.js (removed) 5.61 kB 🟢 -5.61 kB 🟢 -2.05 kB 🟢 -1.85 kB
assets/ValueControlPopover-Dap5ughh.js (new) 5.61 kB 🔴 +5.61 kB 🔴 +2.05 kB 🔴 +1.84 kB
assets/CancelSubscriptionDialogContent-CcWfpCOQ.js (new) 5.53 kB 🔴 +5.53 kB 🔴 +2.07 kB 🔴 +1.82 kB
assets/CancelSubscriptionDialogContent-CX6cjsTD.js (removed) 5.53 kB 🟢 -5.53 kB 🟢 -2.08 kB 🟢 -1.82 kB
assets/DeleteWorkspaceDialogContent-CATBjziJ.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.91 kB 🟢 -1.66 kB
assets/DeleteWorkspaceDialogContent-CCA3eLvU.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.91 kB 🔴 +1.67 kB
assets/saveMesh-DqY7ZQ48.js (removed) 4.78 kB 🟢 -4.78 kB 🟢 -1.9 kB 🟢 -1.69 kB
assets/saveMesh-QTaHkrwo.js (new) 4.78 kB 🔴 +4.78 kB 🔴 +1.9 kB 🔴 +1.7 kB
assets/LeaveWorkspaceDialogContent-BXTHW9Ng.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.85 kB 🔴 +1.61 kB
assets/LeaveWorkspaceDialogContent-DpLlk3MX.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.86 kB 🟢 -1.61 kB
assets/RemoveMemberDialogContent-8v9Lm6hn.js (removed) 4.74 kB 🟢 -4.74 kB 🟢 -1.81 kB 🟢 -1.58 kB
assets/RemoveMemberDialogContent-BF-MnKyr.js (new) 4.74 kB 🔴 +4.74 kB 🔴 +1.81 kB 🔴 +1.58 kB
assets/RevokeInviteDialogContent-AJRwhfM7.js (new) 4.65 kB 🔴 +4.65 kB 🔴 +1.82 kB 🔴 +1.59 kB
assets/RevokeInviteDialogContent-dXoteZtX.js (removed) 4.65 kB 🟢 -4.65 kB 🟢 -1.82 kB 🟢 -1.59 kB
assets/InviteMemberUpsellDialogContent-AdxKwPbs.js (removed) 4.55 kB 🟢 -4.55 kB 🟢 -1.68 kB 🟢 -1.48 kB
assets/InviteMemberUpsellDialogContent-BplmuOpJ.js (new) 4.55 kB 🔴 +4.55 kB 🔴 +1.68 kB 🔴 +1.48 kB
assets/tierBenefits-DfZ4C_PY.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.58 kB 🟢 -1.36 kB
assets/tierBenefits-zRjpYG5R.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.58 kB 🔴 +1.36 kB
assets/Media3DTop-CT0chRzb.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.81 kB 🟢 -1.61 kB
assets/Media3DTop-DI9JAKCQ.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.81 kB 🔴 +1.6 kB
assets/cloudSessionCookie-BW_29HIn.js (new) 4.39 kB 🔴 +4.39 kB 🔴 +1.61 kB 🔴 +1.4 kB
assets/cloudSessionCookie-CvDnv07M.js (removed) 4.39 kB 🟢 -4.39 kB 🟢 -1.61 kB 🟢 -1.4 kB
assets/GlobalToast-BfDYiFxn.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.08 kB
assets/GlobalToast-DQdAD4cw.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.12 kB
assets/CloudRunButtonWrapper-DMPNp0hJ.js (removed) 2.31 kB 🟢 -2.31 kB 🟢 -1.05 kB 🟢 -944 B
assets/CloudRunButtonWrapper-DXK6e75h.js (new) 2.31 kB 🔴 +2.31 kB 🔴 +1.05 kB 🔴 +939 B
assets/SubscribeToRun-Du3NDlxz.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -982 B 🟢 -874 B
assets/SubscribeToRun-Vihtwg-7.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +981 B 🔴 +873 B
assets/MediaAudioTop-DR04hCZ7.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +1 kB 🔴 +864 B
assets/MediaAudioTop-YRN6sxWo.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -1.01 kB 🟢 -862 B
assets/cloudBadges-Bi-DSXD6.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -1.01 kB 🟢 -876 B
assets/cloudBadges-DZkzF2ES.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +1.01 kB 🔴 +879 B
assets/cloudSubscription-8YoBSykU.js (removed) 1.96 kB 🟢 -1.96 kB 🟢 -929 B 🟢 -811 B
assets/cloudSubscription-CCM_GC7n.js (new) 1.96 kB 🔴 +1.96 kB 🔴 +929 B 🔴 +808 B
assets/graphHasMissingNodes-DIfH8PON.js (removed) 1.84 kB 🟢 -1.84 kB 🟢 -861 B 🟢 -764 B
assets/graphHasMissingNodes-Lj24ZybI.js (new) 1.84 kB 🔴 +1.84 kB 🔴 +862 B 🔴 +756 B
assets/Load3D-b2uLKk6M.js (removed) 1.66 kB 🟢 -1.66 kB 🟢 -739 B 🟢 -660 B
assets/Load3D-DKv9J8Q4.js (new) 1.66 kB 🔴 +1.66 kB 🔴 +738 B 🔴 +662 B
assets/nightlyBadges-2QolLUea.js (removed) 1.57 kB 🟢 -1.57 kB 🟢 -779 B 🟢 -692 B
assets/nightlyBadges-4SN2Zhm0.js (new) 1.57 kB 🔴 +1.57 kB 🔴 +776 B 🔴 +692 B
assets/Load3dViewerContent-D-7NKcyf.js (new) 1.54 kB 🔴 +1.54 kB 🔴 +693 B 🔴 +617 B
assets/Load3dViewerContent-DHGnsm-2.js (removed) 1.54 kB 🟢 -1.54 kB 🟢 -695 B 🟢 -620 B
assets/previousFullPath-B3alJmB1.js (removed) 1.53 kB 🟢 -1.53 kB 🟢 -693 B 🟢 -601 B
assets/previousFullPath-DLDCxSaG.js (new) 1.53 kB 🔴 +1.53 kB 🔴 +695 B 🔴 +600 B
assets/SubscriptionPanelContentWorkspace-IEFmfMB0.js (removed) 1.43 kB 🟢 -1.43 kB 🟢 -651 B 🟢 -581 B
assets/SubscriptionPanelContentWorkspace-LPYLSrjA.js (new) 1.43 kB 🔴 +1.43 kB 🔴 +646 B 🔴 +577 B
assets/WidgetLegacy-C1v7mtKa.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -597 B 🟢 -532 B
assets/WidgetLegacy-gsfCg30S.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +595 B 🔴 +530 B
assets/changeTracker-7VGcnJPc.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +584 B 🔴 +518 B
assets/changeTracker-C0w8oupP.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -587 B 🟢 -519 B

Status: 57 added / 57 removed / 86 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.1 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 56.8 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 45.3 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.8 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 59.5 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 72.5 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 97.7 MB heap
minimap-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 58.9 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 59.8 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.7 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.1 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 148ms TBT · 90.7 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.1 MB heap
vue-large-graph-idle: · 56.2 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 173.6 MB heap
vue-large-graph-pan: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 219.6 MB heap
workflow-execution: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.4 MB heap

No regressions detected.

All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=-0.1
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 9ms 11ms +16% z=0.2
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 10 11 +5% z=-1.2
canvas-idle: task duration 428ms 372ms -13% z=-0.7
canvas-idle: script duration 21ms 23ms +8% z=-1.2
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 66.2 MB 61.1 MB -8%
canvas-idle: DOM nodes -259 -110 -58% z=-104.0
canvas-idle: event listeners -129 -62 -52% z=-15.4
canvas-mouse-sweep: avg frame time 17ms 17ms -0% z=-1.5
canvas-mouse-sweep: p95 frame time 17ms 17ms -0%
canvas-mouse-sweep: layout duration 3ms 4ms +6% z=-0.3
canvas-mouse-sweep: style recalc duration 39ms 41ms +6% z=-0.6
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 82 78 -5% z=-0.5
canvas-mouse-sweep: task duration 956ms 888ms -7% z=0.4
canvas-mouse-sweep: script duration 120ms 133ms +10% z=-0.4
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 66.0 MB 56.8 MB -14%
canvas-mouse-sweep: DOM nodes -262 -99 -62% z=-62.4
canvas-mouse-sweep: event listeners -129 -64 -51% z=-17.3
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms +0%
canvas-zoom-sweep: layout duration 1ms 1ms -4% z=-1.6
canvas-zoom-sweep: style recalc duration 15ms 17ms +10% z=-1.5
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 32 31 -5% z=-1.7
canvas-zoom-sweep: task duration 278ms 315ms +13% z=-0.5
canvas-zoom-sweep: script duration 22ms 18ms -21% z=-3.2
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 47.8 MB 45.3 MB -5%
canvas-zoom-sweep: DOM nodes 79 -69 -187% z=-186.7
canvas-zoom-sweep: event listeners 21 -49 -331% z=-13.9
dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
dom-widget-clipping: p95 frame time 17ms 17ms +0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 8ms 8ms +3% z=-1.8
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 12 13 +8% z=-0.2
dom-widget-clipping: task duration 321ms 363ms +13% z=-0.1
dom-widget-clipping: script duration 63ms 65ms +4% z=-0.9
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 54.8 MB 60.8 MB +11%
dom-widget-clipping: DOM nodes 20 22 +10% z=-0.1
dom-widget-clipping: event listeners 2 2 +0% variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=-0.2
large-graph-idle: p95 frame time 17ms 17ms +0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 8ms 9ms +7% z=-3.3
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 9 11 +17% z=-3.5
large-graph-idle: task duration 511ms 510ms -0% z=-0.6
large-graph-idle: script duration 85ms 94ms +11% z=-0.8
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 58.0 MB 59.5 MB +3%
large-graph-idle: DOM nodes -261 -119 -55% z=-158.4
large-graph-idle: event listeners -129 -63 -52% z=-14.5
large-graph-pan: avg frame time 17ms 17ms +0% z=0.3
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 17ms 17ms +1% z=0.1
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 68 69 +1% z=-1.7
large-graph-pan: task duration 1036ms 1074ms +4% z=-0.2
large-graph-pan: script duration 388ms 384ms -1% z=-1.2
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 62.8 MB 72.5 MB +15%
large-graph-pan: DOM nodes -261 -262 +0% z=-170.3
large-graph-pan: event listeners -129 -129 +0% z=-161.7
large-graph-zoom: avg frame time 17ms 17ms -0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 7ms 7ms +0%
large-graph-zoom: style recalc duration 17ms 17ms -1%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 66 65 -2%
large-graph-zoom: task duration 1305ms 1332ms +2%
large-graph-zoom: script duration 474ms 471ms -1%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 102.1 MB 97.7 MB -4%
large-graph-zoom: DOM nodes -265 -266 +0%
large-graph-zoom: event listeners -125 -142 +14%
minimap-idle: avg frame time 17ms 17ms -0% z=-0.9
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 7ms 8ms +15% z=-1.4
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 9 +6% z=-1.6
minimap-idle: task duration 513ms 539ms +5% z=0.2
minimap-idle: script duration 86ms 93ms +8% z=-0.6
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 96.4 MB 58.9 MB -39%
minimap-idle: DOM nodes -258 -265 +3% z=-207.4
minimap-idle: event listeners -129 -130 +1% z=-203.8
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms -1%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 11ms 11ms +4% z=-1.7
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 47 +0% z=-1.6
subgraph-dom-widget-clipping: task duration 346ms 359ms +4% z=-1.0
subgraph-dom-widget-clipping: script duration 121ms 125ms +4% z=-0.5
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 56.1 MB 59.8 MB +7%
subgraph-dom-widget-clipping: DOM nodes 20 20 -3% z=-2.4
subgraph-dom-widget-clipping: event listeners 8 7 -13% z=-1.6
subgraph-idle: avg frame time 17ms 17ms -0% z=-0.2
subgraph-idle: p95 frame time 17ms 17ms -1%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 8ms 9ms +23% z=-1.2
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 9 11 +17% z=-0.6
subgraph-idle: task duration 335ms 359ms +7% z=-0.3
subgraph-idle: script duration 12ms 17ms +37% z=-1.4
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 68.1 MB 55.7 MB -18%
subgraph-idle: DOM nodes 18 -120 -764% z=-94.5
subgraph-idle: event listeners 6 -63 -1142% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.4
subgraph-mouse-sweep: p95 frame time 17ms 17ms -0%
subgraph-mouse-sweep: layout duration 4ms 4ms -4% z=-1.8
subgraph-mouse-sweep: style recalc duration 34ms 35ms +2% z=-2.4
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 75 76 +1% z=-2.1
subgraph-mouse-sweep: task duration 674ms 692ms +3% z=-1.1
subgraph-mouse-sweep: script duration 85ms 91ms +7% z=-1.5
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 60.8 MB 52.1 MB -14%
subgraph-mouse-sweep: DOM nodes 60 -259 -532% z=-145.9
subgraph-mouse-sweep: event listeners 4 -129 -3325% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms +0%
subgraph-transition-enter: p95 frame time 17ms 17ms +0%
subgraph-transition-enter: layout duration 14ms 13ms -9%
subgraph-transition-enter: style recalc duration 27ms 27ms +1%
subgraph-transition-enter: layout count 4 4 +0%
subgraph-transition-enter: style recalc count 16 14 -13%
subgraph-transition-enter: task duration 846ms 734ms -13%
subgraph-transition-enter: script duration 29ms 27ms -9%
subgraph-transition-enter: TBT 153ms 148ms -3%
subgraph-transition-enter: heap used 111.4 MB 90.7 MB -19%
subgraph-transition-enter: DOM nodes 12627 13513 +7%
subgraph-transition-enter: event listeners 1639 2527 +54%
viewport-pan-sweep: avg frame time 17ms 17ms +0%
viewport-pan-sweep: p95 frame time 17ms 17ms -0%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 48ms 49ms +2%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 249 -1%
viewport-pan-sweep: task duration 3463ms 3531ms +2%
viewport-pan-sweep: script duration 1214ms 1210ms -0%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 71.6 MB 69.1 MB -4%
viewport-pan-sweep: DOM nodes -260 -262 +1%
viewport-pan-sweep: event listeners -113 -113 +0%
vue-large-graph-idle: avg frame time 17ms 18ms +3%
vue-large-graph-idle: p95 frame time 17ms 17ms +0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 10851ms 11916ms +10%
vue-large-graph-idle: script duration 543ms 567ms +4%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 164.5 MB 173.6 MB +6%
vue-large-graph-idle: DOM nodes -8331 -8332 +0%
vue-large-graph-idle: event listeners -16470 -16465 -0%
vue-large-graph-pan: avg frame time 18ms 17ms -3%
vue-large-graph-pan: p95 frame time 17ms 17ms +0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 17ms 17ms -2%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 101 82 -19%
vue-large-graph-pan: task duration 16961ms 15413ms -9%
vue-large-graph-pan: script duration 1012ms 946ms -7%
vue-large-graph-pan: TBT 0ms 0ms +0%
vue-large-graph-pan: heap used 279.4 MB 219.6 MB -21%
vue-large-graph-pan: DOM nodes -8331 -8331 +0%
vue-large-graph-pan: event listeners -16486 -16475 -0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.6
workflow-execution: p95 frame time 17ms 17ms -0%
workflow-execution: layout duration 2ms 1ms -15% z=-1.2
workflow-execution: style recalc duration 25ms 26ms +3% z=0.6
workflow-execution: layout count 6 6 -8% z=1.0
workflow-execution: style recalc count 19 20 +5% z=1.1
workflow-execution: task duration 130ms 130ms -0% z=0.6
workflow-execution: script duration 30ms 29ms -2% z=0.1
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 56.6 MB 55.4 MB -2%
workflow-execution: DOM nodes 159 165 +3% z=0.5
workflow-execution: event listeners 69 70 +1% z=4.2
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-05-16T09:34:41.299Z",
  "gitSha": "5b4c9e65a6b4fc4e863746751c5f632bc08557c2",
  "branch": "glary/rewardful-affiliate-tracking",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2073.2600000001185,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 9.536,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 350.583,
      "heapDeltaBytes": 19587528,
      "heapUsedBytes": 67189988,
      "domNodes": 22,
      "jsHeapTotalBytes": 18350080,
      "scriptDurationMs": 22.557000000000002,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2049.015999999938,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 12.418999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 394.36499999999995,
      "heapDeltaBytes": 11811376,
      "heapUsedBytes": 60974416,
      "domNodes": -242,
      "jsHeapTotalBytes": 13328384,
      "scriptDurationMs": 22.729000000000003,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1903.3699999999953,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 38.908,
      "layouts": 12,
      "layoutDurationMs": 3.9179999999999997,
      "taskDurationMs": 859.908,
      "heapDeltaBytes": 2001440,
      "heapUsedBytes": 50371344,
      "domNodes": -263,
      "jsHeapTotalBytes": 16117760,
      "scriptDurationMs": 136.02599999999998,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1978.1980000000203,
      "styleRecalcs": 80,
      "styleRecalcDurationMs": 42.604,
      "layouts": 12,
      "layoutDurationMs": 3.174,
      "taskDurationMs": 916.2170000000001,
      "heapDeltaBytes": 19431528,
      "heapUsedBytes": 68656956,
      "domNodes": 65,
      "jsHeapTotalBytes": 15990784,
      "scriptDurationMs": 129.472,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1713.667000000214,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 16.281999999999996,
      "layouts": 6,
      "layoutDurationMs": 0.5680000000000002,
      "taskDurationMs": 344.567,
      "heapDeltaBytes": -3829264,
      "heapUsedBytes": 44875604,
      "domNodes": -214,
      "jsHeapTotalBytes": 19787776,
      "scriptDurationMs": 17.725,
      "eventListeners": -118,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1735.9959999998864,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 17.249,
      "layouts": 6,
      "layoutDurationMs": 0.5720000000000001,
      "taskDurationMs": 284.539,
      "heapDeltaBytes": 525340,
      "heapUsedBytes": 50051876,
      "domNodes": 77,
      "jsHeapTotalBytes": 14417920,
      "scriptDurationMs": 17.361,
      "eventListeners": 21,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 625.7949999999255,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 7.834999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 383.23400000000004,
      "heapDeltaBytes": 11109636,
      "heapUsedBytes": 63777348,
      "domNodes": 20,
      "jsHeapTotalBytes": 17301504,
      "scriptDurationMs": 66.79499999999999,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 563.7110000000121,
      "styleRecalcs": 14,
      "styleRecalcDurationMs": 9.09,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 343.23199999999997,
      "heapDeltaBytes": 11073228,
      "heapUsedBytes": 63763368,
      "domNodes": 24,
      "jsHeapTotalBytes": 18350080,
      "scriptDurationMs": 63.25,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2013.4729999999763,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 8.627999999999997,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 500.749,
      "heapDeltaBytes": -11252128,
      "heapUsedBytes": 53099960,
      "domNodes": 22,
      "jsHeapTotalBytes": 14036992,
      "scriptDurationMs": 94.14999999999999,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2021.1930000000393,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.000000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 519.2460000000001,
      "heapDeltaBytes": 14941472,
      "heapUsedBytes": 71713504,
      "domNodes": -259,
      "jsHeapTotalBytes": 28672,
      "scriptDurationMs": 94.27700000000002,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2135.8829999999216,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 17.999000000000006,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1108.1080000000002,
      "heapDeltaBytes": 28440408,
      "heapUsedBytes": 94222064,
      "domNodes": -261,
      "jsHeapTotalBytes": 33116160,
      "scriptDurationMs": 383.43,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2111.902999999984,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 16.814,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1039.565,
      "heapDeltaBytes": -1799488,
      "heapUsedBytes": 57853940,
      "domNodes": -263,
      "jsHeapTotalBytes": 5738496,
      "scriptDurationMs": 385.484,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3163.4570000001077,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 15.706999999999999,
      "layouts": 60,
      "layoutDurationMs": 6.841,
      "taskDurationMs": 1314.743,
      "heapDeltaBytes": 40353196,
      "heapUsedBytes": 100930028,
      "domNodes": -268,
      "jsHeapTotalBytes": 41971712,
      "scriptDurationMs": 463.95500000000004,
      "eventListeners": -157,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3197.424000000183,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 18.435000000000002,
      "layouts": 60,
      "layoutDurationMs": 6.939000000000001,
      "taskDurationMs": 1349.161,
      "heapDeltaBytes": 41208072,
      "heapUsedBytes": 103965456,
      "domNodes": -264,
      "jsHeapTotalBytes": 33116160,
      "scriptDurationMs": 477.95,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "minimap-idle",
      "durationMs": 2012.098000000151,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.344999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 552.288,
      "heapDeltaBytes": -11844376,
      "heapUsedBytes": 61077588,
      "domNodes": -265,
      "jsHeapTotalBytes": 5472256,
      "scriptDurationMs": 92.19299999999998,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2052.989000000025,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.493999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 525.784,
      "heapDeltaBytes": 4059024,
      "heapUsedBytes": 62464576,
      "domNodes": -264,
      "jsHeapTotalBytes": 5009408,
      "scriptDurationMs": 93.256,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 575.7679999999255,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 11.136,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 367.32199999999995,
      "heapDeltaBytes": 8548916,
      "heapUsedBytes": 61435392,
      "domNodes": 20,
      "jsHeapTotalBytes": 16777216,
      "scriptDurationMs": 131.096,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 527.8220000000147,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 10.99,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 350.8300000000001,
      "heapDeltaBytes": 15030236,
      "heapUsedBytes": 63923004,
      "domNodes": 19,
      "jsHeapTotalBytes": 17563648,
      "scriptDurationMs": 119.49799999999999,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2015.6040000001667,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 9.264999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 342.294,
      "heapDeltaBytes": 23835148,
      "heapUsedBytes": 73257656,
      "domNodes": 21,
      "jsHeapTotalBytes": 14942208,
      "scriptDurationMs": 18.921,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2014.4020000000182,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.674999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 376.29999999999995,
      "heapDeltaBytes": -5537900,
      "heapUsedBytes": 43455872,
      "domNodes": -260,
      "jsHeapTotalBytes": 15069184,
      "scriptDurationMs": 14.208,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1733.36600000016,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 33.809,
      "layouts": 16,
      "layoutDurationMs": 3.8739999999999997,
      "taskDurationMs": 709.9380000000001,
      "heapDeltaBytes": 10450340,
      "heapUsedBytes": 60304676,
      "domNodes": -258,
      "jsHeapTotalBytes": 22503424,
      "scriptDurationMs": 92.177,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1692.2700000000077,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 35.456,
      "layouts": 16,
      "layoutDurationMs": 4.369000000000001,
      "taskDurationMs": 674.165,
      "heapDeltaBytes": 56544,
      "heapUsedBytes": 49049740,
      "domNodes": -260,
      "jsHeapTotalBytes": 15331328,
      "scriptDurationMs": 90.09,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 933.238000000074,
      "styleRecalcs": 14,
      "styleRecalcDurationMs": 27.049999999999997,
      "layouts": 4,
      "layoutDurationMs": 12.882000000000001,
      "taskDurationMs": 734.2969999999998,
      "heapDeltaBytes": 30209160,
      "heapUsedBytes": 95059192,
      "domNodes": 13513,
      "jsHeapTotalBytes": 16777216,
      "scriptDurationMs": 26.750999999999998,
      "eventListeners": 2527,
      "totalBlockingTimeMs": 148,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8130.396999999903,
      "styleRecalcs": 248,
      "styleRecalcDurationMs": 48.274,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3539.0519999999997,
      "heapDeltaBytes": 12579044,
      "heapUsedBytes": 70952240,
      "domNodes": -263,
      "jsHeapTotalBytes": 2592768,
      "scriptDurationMs": 1210.5439999999999,
      "eventListeners": -113,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8156.992000000173,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 49.56000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3523.7889999999998,
      "heapDeltaBytes": 14146304,
      "heapUsedBytes": 73955044,
      "domNodes": -260,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 1209.349,
      "eventListeners": -113,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 11868.138000000044,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 11858.789999999999,
      "heapDeltaBytes": -26551116,
      "heapUsedBytes": 192225464,
      "domNodes": -8332,
      "jsHeapTotalBytes": 24440832,
      "scriptDurationMs": 560.848,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 18.333333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 11981.88099999993,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 11973.146,
      "heapDeltaBytes": -31087976,
      "heapUsedBytes": 171909444,
      "domNodes": -8331,
      "jsHeapTotalBytes": 24440832,
      "scriptDurationMs": 573.427,
      "eventListeners": -16466,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 16883.917999999994,
      "styleRecalcs": 100,
      "styleRecalcDurationMs": 17.928,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 16864.335,
      "heapDeltaBytes": -447708,
      "heapUsedBytes": 269275976,
      "domNodes": -8331,
      "jsHeapTotalBytes": 14655488,
      "scriptDurationMs": 1074.178,
      "eventListeners": -16488,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333237,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 13976.159999999936,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 15.849000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13960.778000000002,
      "heapDeltaBytes": -12811056,
      "heapUsedBytes": 191186632,
      "domNodes": -8331,
      "jsHeapTotalBytes": 23568384,
      "scriptDurationMs": 817.091,
      "eventListeners": -16462,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 450.31699999981356,
      "styleRecalcs": 20,
      "styleRecalcDurationMs": 25.514,
      "layouts": 5,
      "layoutDurationMs": 1.3660000000000003,
      "taskDurationMs": 130.978,
      "heapDeltaBytes": 5408392,
      "heapUsedBytes": 59277356,
      "domNodes": 170,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 29.26000000000001,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "workflow-execution",
      "durationMs": 461.86099999999897,
      "styleRecalcs": 20,
      "styleRecalcDurationMs": 25.807000000000002,
      "layouts": 6,
      "layoutDurationMs": 1.3750000000000004,
      "taskDurationMs": 128.71399999999997,
      "heapDeltaBytes": 5269928,
      "heapUsedBytes": 56884652,
      "domNodes": 159,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 29.674,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    }
  ]
}

@codecov
Copy link
Copy Markdown

codecov Bot commented May 16, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

@@             Coverage Diff             @@
##             main   #12311       +/-   ##
===========================================
- Coverage   74.02%   59.56%   -14.47%     
===========================================
  Files        1522     1412      -110     
  Lines       85497    71882    -13615     
  Branches    22618    19026     -3592     
===========================================
- Hits        63293    42815    -20478     
- Misses      21392    28594     +7202     
+ Partials      812      473      -339     
Flag Coverage Δ
e2e ?
unit 59.56% <100.00%> (+<0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
src/platform/telemetry/types.ts 100.00% <ø> (ø)
...rc/platform/telemetry/utils/checkoutAttribution.ts 93.75% <100.00%> (+0.27%) ⬆️

... and 1007 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant