Skip to content

feat: add frontend subscription success recovery - #11286

Merged
benceruleanlu merged 5 commits into
mainfrom
bl/subscription-success-80-20
Apr 17, 2026
Merged

feat: add frontend subscription success recovery#11286
benceruleanlu merged 5 commits into
mainfrom
bl/subscription-success-80-20

Conversation

@benceruleanlu

@benceruleanlu benceruleanlu commented Apr 15, 2026

Copy link
Copy Markdown
Member

Improving our subscription detection system. Optimal will have to come after BE team brings personal billing to cloud repo off of comfy api.

Summary

  • replace the dialog-local focus poller with a frontend checkout tracker stored in localStorage
  • recover pending subscription checkouts from app boot plus global page lifecycle (pageshow, visibilitychange) with bounded retries only while an attempt is pending
  • emit subscription_success through GTM with frontend-derived metadata once subscription state reaches the expected target tier/cycle

Why

This is the frontend-only 80/20 path. It fixes the brittle "old tab must regain focus" behavior without adding new backend endpoints or backend event storage. The browser records one pending checkout attempt when checkout is opened, and any returning cloud tab can recover it later by comparing current subscription state against the expected target plan.

Tradeoffs

  • browser-scoped, not backend-authoritative
  • no server transaction id
  • scheduled downgrades through the billing portal are intentionally not inferred as immediate success events
  • still best-effort compared with the backend outbox/WebSocket approach

Validation

  • pnpm exec vitest run src/platform/cloud/subscription/composables/useSubscription.test.ts src/platform/telemetry/providers/cloud/GtmTelemetryProvider.test.ts
  • pnpm typecheck

┆Issue is synchronized with this Notion page by Unito

@vercel

vercel Bot commented Apr 15, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
website-frontend Ready Ready Preview, Comment Apr 16, 2026 4:24am

Request Review

@coderabbitai

coderabbitai Bot commented Apr 15, 2026

Copy link
Copy Markdown
Contributor

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: fc5a60f5-d47d-4477-89a6-357152d3df86

📥 Commits

Reviewing files that changed from the base of the PR and between 63f5696 and b840782.

📒 Files selected for processing (3)
  • src/platform/cloud/subscription/components/PricingTable.test.ts
  • src/platform/cloud/subscription/composables/useSubscription.test.ts
  • src/platform/cloud/subscription/utils/subscriptionCheckoutUtil.test.ts
🚧 Files skipped from review as they are similar to previous changes (2)
  • src/platform/cloud/subscription/components/PricingTable.test.ts
  • src/platform/cloud/subscription/composables/useSubscription.test.ts

📝 Walkthrough

Walkthrough

Introduces a pending subscription checkout recovery system that persists attempted checkouts in localStorage with 6-hour expiry, recovers them on visibility/auth changes, validates completed checkouts against pending records, and enriches subscription success telemetry with checkout metadata. Updates billing portal accessor to return a success boolean and removes polling-based confirmation from the subscription UI.

Changes

Cohort / File(s) Summary
Checkout Persistence & Recovery
src/platform/cloud/subscription/utils/subscriptionCheckoutTracker.ts
New module persisting pending subscription checkout attempts in localStorage with attempt ID, timestamps, tier, cycle, checkout type, and optional previous tier/cycle. Validates on read, handles 6-hour expiry, dispatches custom events on state changes, and provides functions to record attempts, check existence, and consume successful checkouts with computed value/currency metadata.
Subscription State Management
src/platform/cloud/subscription/composables/useSubscription.ts
Added pending checkout recovery system with fixed backoff retry logic ([3000, 10000, 30000]). Centralizes auth header creation, triggers recovery on visibility/storage/pageshow changes, waits for auth initialization, emits success telemetry with metadata, and prefers recovery over status fetch when pending attempt exists.
Checkout Initiation
src/platform/cloud/subscription/components/PricingTable.vue, src/platform/cloud/subscription/utils/subscriptionCheckoutUtil.ts
Records pending checkout attempts after successful window open; returns early if portal open fails without persisting. PricingTable now derives telemetry tier from target plan and records pending attempts with previous tier/cycle context on non-downgrade changes.
UI Components
src/platform/cloud/subscription/components/SubscriptionRequiredDialogContent.vue
Removed window-focus polling mechanism (interval setup, retry limits, event listeners) and telemetry success callback, replacing with simple close emission when subscription becomes active.
Billing Portal API
src/composables/auth/useAuthActions.ts
Updated accessBillingPortal to return boolean indicating success; returns window-open result for new-tab mode, true for redirect mode, and falsy when unable to navigate.
Telemetry Metadata & Registry
src/platform/telemetry/TelemetryRegistry.ts, src/platform/telemetry/types.ts
Added SubscriptionSuccessMetadata type with checkout attempt ID, tier, cycle, checkout type, previous tier/cycle, computed value/currency, and ecommerce payload. Updated trackMonthlySubscriptionSucceeded method signature to accept optional metadata parameter.
Telemetry Providers
src/platform/telemetry/providers/cloud/GtmTelemetryProvider.ts, src/platform/telemetry/providers/cloud/MixpanelTelemetryProvider.ts, src/platform/telemetry/providers/cloud/PostHogTelemetryProvider.ts
Updated all providers' trackMonthlySubscriptionSucceeded to accept and forward optional SubscriptionSuccessMetadata; GTM additionally clears prior ecommerce context before emitting event.
Tests
src/platform/cloud/subscription/composables/useSubscription.test.ts, src/platform/cloud/subscription/components/PricingTable.test.ts, src/platform/cloud/subscription/utils/subscriptionCheckoutUtil.test.ts, src/platform/telemetry/providers/cloud/GtmTelemetryProvider.test.ts
Added test harness for localStorage persistence, pending checkout recovery flows (success on active match, previous-tier metadata, visibility change recheck, auth initialization handling), cancellation regression test, billing portal failure handling, GTM event dispatch with metadata, and new-tab/redirect window.open behavior.

Sequence Diagram

sequenceDiagram
    actor User
    participant Client as Client App
    participant Storage as localStorage
    participant Server as Billing Server
    participant Telemetry as Telemetry

    User->>Client: Initiates checkout (subscribe/change)
    Client->>Server: Open billing portal
    Server-->>Client: Portal window opened/failed
    alt Portal opened successfully
        Client->>Storage: Record pending checkout attempt<br/>(tier, cycle, type, previous_tier)
        Storage-->>Client: Attempt persisted
    else Portal failed
        Client->>Client: Return early, no storage
    end

    Note over Client,Telemetry: Background recovery flow
    Client->>Client: Page visibility/storage/auth event
    Client->>Storage: Check for pending attempt
    Storage-->>Client: Found pending checkout
    Client->>Client: Scheduled retry with backoff
    Client->>Server: Re-fetch subscription status
    Server-->>Client: Updated status + subscription tier
    
    Client->>Storage: Validate: does status tier match pending tier?
    alt Tier matches (checkout succeeded)
        Storage-->>Client: Retrieve attempt metadata
        Client->>Telemetry: Track subscription success<br/>(with checkout_id, value, currency, ecommerce)
        Telemetry-->>Client: Event recorded
        Client->>Storage: Clear pending attempt
        Storage-->>Client: Cleared
    else Tier mismatch or still pending
        Client->>Client: Reschedule recovery retry
    end

    Client->>User: Update UI subscription state
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~45 minutes

Possibly related PRs

Suggested reviewers

  • KarryCharon
  • shinshin86
  • Yorha4D
  • Myestery
  • PabloWiedemann

Poem

🐰 A checkout that persists with grace,
Pending attempts find their place,
In localStorage's cozy store,
Recovered when you're back for more!
With telemetry tales to tell,
Success at last—all's very well!

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 25.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title 'feat: add frontend subscription success recovery' accurately describes the main feature being added: a frontend-based system to recover and track subscription success, which is the primary focus of this changeset across multiple components and utilities.
Description check ✅ Passed The PR description provides a comprehensive summary of changes, clear rationale for the approach, acknowledged tradeoffs, and validation instructions, though it could be better structured against the template's formal sections.
End-To-End Regression Coverage For Fixes ✅ Passed PR title uses 'feat:' prefix (feature language), not bug-fix language, satisfying the first passing condition for the check.
Adr Compliance For Entity/Litegraph Changes ✅ Passed PR modifies only subscription, telemetry, and authentication files; no changes to src/lib/litegraph/, src/ecs/, or graph entities.

✏️ 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 bl/subscription-success-80-20

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

github-actions Bot commented Apr 15, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 04/16/2026, 04:25:29 AM UTC

Links

@github-actions

github-actions Bot commented Apr 15, 2026

Copy link
Copy Markdown

🎭 Playwright: ✅ 1135 passed, 0 failed · 2 flaky

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

@github-actions

github-actions Bot commented Apr 15, 2026

Copy link
Copy Markdown

📦 Bundle: 5.16 MB gzip 🔴 +1.43 kB

Details

Summary

  • Raw size: 23.8 MB baseline 23.8 MB — 🔴 +8.63 kB
  • Gzip: 5.16 MB baseline 5.16 MB — 🔴 +1.43 kB
  • Brotli: 3.99 MB baseline 3.99 MB — 🔴 +1.07 kB
  • Bundles: 251 current • 251 baseline • 127 added / 127 removed

Category Glance
Data & Services 🔴 +9.1 kB (3.01 MB) · Other 🟢 -834 B (8.57 MB) · Utilities & Hooks 🔴 +336 B (344 kB) · Vendor & Third-Party 🔴 +23 B (9.86 MB) · Graph Workspace 🔴 +1 B (1.22 MB) · UI Components 🔴 +1 B (60.3 kB) · + 5 more

App Entry Points — 22.3 kB (baseline 22.3 kB) • 🔴 +1 B

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-2pEo4CDD.js (new) 22.3 kB 🔴 +22.3 kB 🔴 +7.92 kB 🔴 +6.82 kB
assets/index--RVuGwmj.js (removed) 22.3 kB 🟢 -22.3 kB 🟢 -7.93 kB 🟢 -6.82 kB

Status: 1 added / 1 removed

Graph Workspace — 1.22 MB (baseline 1.22 MB) • 🔴 +1 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-wxrJx5ot.js (new) 1.22 MB 🔴 +1.22 MB 🔴 +260 kB 🔴 +196 kB
assets/GraphView-DEoCCUqA.js (removed) 1.22 MB 🟢 -1.22 MB 🟢 -260 kB 🟢 -196 kB

Status: 1 added / 1 removed

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-Dhmsas2-.js (removed) 15.7 kB 🟢 -15.7 kB 🟢 -3.4 kB 🟢 -2.89 kB
assets/CloudSurveyView-monUgFxh.js (new) 15.7 kB 🔴 +15.7 kB 🔴 +3.4 kB 🔴 +2.89 kB
assets/CloudLoginView-BV5ZgwMy.js (removed) 12 kB 🟢 -12 kB 🟢 -3.36 kB 🟢 -2.97 kB
assets/CloudLoginView-CslUHgB6.js (new) 12 kB 🔴 +12 kB 🔴 +3.35 kB 🔴 +2.96 kB
assets/CloudSignupView-BjLGBfSG.js (new) 9.78 kB 🔴 +9.78 kB 🔴 +2.86 kB 🔴 +2.52 kB
assets/CloudSignupView-BMQJVEWB.js (removed) 9.78 kB 🟢 -9.78 kB 🟢 -2.86 kB 🟢 -2.5 kB
assets/UserCheckView-BP_qTamp.js (new) 9.04 kB 🔴 +9.04 kB 🔴 +2.33 kB 🔴 +2.04 kB
assets/UserCheckView-meSK6NSA.js (removed) 9.04 kB 🟢 -9.04 kB 🟢 -2.33 kB 🟢 -2.04 kB
assets/CloudLayoutView-B2FVA9aC.js (new) 7.54 kB 🔴 +7.54 kB 🔴 +2.36 kB 🔴 +2.06 kB
assets/CloudLayoutView-B3GkhgmR.js (removed) 7.54 kB 🟢 -7.54 kB 🟢 -2.36 kB 🟢 -2.05 kB
assets/CloudForgotPasswordView-6VX9IgTO.js (removed) 5.94 kB 🟢 -5.94 kB 🟢 -2.1 kB 🟢 -1.83 kB
assets/CloudForgotPasswordView-f5B0I0p-.js (new) 5.94 kB 🔴 +5.94 kB 🔴 +2.09 kB 🔴 +1.84 kB
assets/CloudAuthTimeoutView-CEOYZMdL.js (removed) 5.31 kB 🟢 -5.31 kB 🟢 -1.93 kB 🟢 -1.68 kB
assets/CloudAuthTimeoutView-DMaKTy9f.js (new) 5.31 kB 🔴 +5.31 kB 🔴 +1.93 kB 🔴 +1.69 kB
assets/CloudSubscriptionRedirectView-Bjsv_1XR.js (new) 5.08 kB 🔴 +5.08 kB 🔴 +1.91 kB 🔴 +1.7 kB
assets/CloudSubscriptionRedirectView-Xk2bW1nB.js (removed) 5.08 kB 🟢 -5.08 kB 🟢 -1.91 kB 🟢 -1.69 kB
assets/UserSelectView-BTTMlqvw.js (new) 4.71 kB 🔴 +4.71 kB 🔴 +1.75 kB 🔴 +1.54 kB
assets/UserSelectView-u8SYypqH.js (removed) 4.71 kB 🟢 -4.71 kB 🟢 -1.74 kB 🟢 -1.54 kB

Status: 9 added / 9 removed / 2 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-aePTtA40.js (new) 46.6 kB 🔴 +46.6 kB 🔴 +9.52 kB 🔴 +8.46 kB
assets/KeybindingPanel-BVmU3ynY.js (removed) 46.6 kB 🟢 -46.6 kB 🟢 -9.53 kB 🟢 -8.47 kB
assets/SecretsPanel-BOgPgwJF.js (new) 22.4 kB 🔴 +22.4 kB 🔴 +5.42 kB 🔴 +4.76 kB
assets/SecretsPanel-Buv5XS3N.js (removed) 22.4 kB 🟢 -22.4 kB 🟢 -5.42 kB 🟢 -4.77 kB
assets/LegacyCreditsPanel-Ddaizfpf.js (removed) 21.5 kB 🟢 -21.5 kB 🟢 -5.81 kB 🟢 -5.13 kB
assets/LegacyCreditsPanel-DxWwpISS.js (new) 21.5 kB 🔴 +21.5 kB 🔴 +5.81 kB 🔴 +5.13 kB
assets/SubscriptionPanel-Ivw_MzaE.js (removed) 19.7 kB 🟢 -19.7 kB 🟢 -5 kB 🟢 -4.4 kB
assets/SubscriptionPanel-sBItf1Zm.js (new) 19.7 kB 🔴 +19.7 kB 🔴 +5 kB 🔴 +4.4 kB
assets/AboutPanel-Ccz2o3Ji.js (removed) 12 kB 🟢 -12 kB 🟢 -3.33 kB 🟢 -2.98 kB
assets/AboutPanel-D7sYsY0C.js (new) 12 kB 🔴 +12 kB 🔴 +3.32 kB 🔴 +2.98 kB
assets/ExtensionPanel-ByjO9Czl.js (new) 9.78 kB 🔴 +9.78 kB 🔴 +2.82 kB 🔴 +2.5 kB
assets/ExtensionPanel-uckKOlfT.js (removed) 9.78 kB 🟢 -9.78 kB 🟢 -2.83 kB 🟢 -2.51 kB
assets/ServerConfigPanel-BjTbcM9y.js (removed) 6.85 kB 🟢 -6.85 kB 🟢 -2.27 kB 🟢 -2.04 kB
assets/ServerConfigPanel-COsNNTyV.js (new) 6.85 kB 🔴 +6.85 kB 🔴 +2.27 kB 🔴 +2.03 kB
assets/UserPanel-Cb4ewjEV.js (removed) 6.56 kB 🟢 -6.56 kB 🟢 -2.15 kB 🟢 -1.88 kB
assets/UserPanel-ChUXp7DW.js (new) 6.56 kB 🔴 +6.56 kB 🔴 +2.15 kB 🔴 +1.89 kB
assets/cloudRemoteConfig-DH0MXXNy.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -906 B 🟢 -802 B
assets/cloudRemoteConfig-DVnuCkYW.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +902 B 🔴 +798 B
assets/refreshRemoteConfig-Bvvag-19.js (new) 1.45 kB 🔴 +1.45 kB 🔴 +650 B 🔴 +554 B
assets/refreshRemoteConfig-DZWxwqWf.js (removed) 1.45 kB 🟢 -1.45 kB 🟢 -650 B 🟢 -550 B

Status: 10 added / 10 removed / 11 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-BNN-57w8.js (removed) 3.57 kB 🟢 -3.57 kB 🟢 -1.26 kB 🟢 -1.07 kB
assets/auth-BuCknHDe.js (new) 3.57 kB 🔴 +3.57 kB 🔴 +1.26 kB 🔴 +1.07 kB
assets/SignUpForm-BBQ2__0r.js (removed) 3.16 kB 🟢 -3.16 kB 🟢 -1.29 kB 🟢 -1.14 kB
assets/SignUpForm-BWOx4San.js (new) 3.16 kB 🔴 +3.16 kB 🔴 +1.28 kB 🔴 +1.14 kB
assets/UpdatePasswordContent-Bi4p9FPp.js (removed) 2.7 kB 🟢 -2.7 kB 🟢 -1.22 kB 🟢 -1.07 kB
assets/UpdatePasswordContent-VlkT52d_.js (new) 2.7 kB 🔴 +2.7 kB 🔴 +1.21 kB 🔴 +1.07 kB
assets/authStore-BDTwMZFf.js (new) 989 B 🔴 +989 B 🔴 +485 B 🔴 +433 B
assets/authStore-CDa4LkRV.js (removed) 989 B 🟢 -989 B 🟢 -484 B 🟢 -428 B
assets/auth-BKhQWStg.js (removed) 348 B 🟢 -348 B 🟢 -218 B 🟢 -187 B
assets/auth-KU1HZ4ny.js (new) 348 B 🔴 +348 B 🔴 +217 B 🔴 +207 B

Status: 5 added / 5 removed / 2 unchanged

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

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useShareDialog-DPwVHbEs.js (new) 108 kB 🔴 +108 kB 🔴 +22.4 kB 🔴 +18.9 kB
assets/useShareDialog-Y2OONhYN.js (removed) 108 kB 🟢 -108 kB 🟢 -22.4 kB 🟢 -18.9 kB
assets/useSubscriptionDialog-C1T7X--N.js (new) 969 B 🔴 +969 B 🔴 +475 B 🔴 +415 B
assets/useSubscriptionDialog-CFEhj4eR.js (removed) 969 B 🟢 -969 B 🟢 -476 B 🟢 -417 B

Status: 2 added / 2 removed

UI Components — 60.3 kB (baseline 60.3 kB) • 🔴 +1 B

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-BZ8TdXml.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.79 kB 🟢 -3.39 kB
assets/ComfyQueueButton-TgCGANjj.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.79 kB 🔴 +3.38 kB
assets/useTerminalTabs-BPftlGy9.js (new) 10.7 kB 🔴 +10.7 kB 🔴 +3.6 kB 🔴 +3.16 kB
assets/useTerminalTabs-Bc5ypzKs.js (removed) 10.7 kB 🟢 -10.7 kB 🟢 -3.6 kB 🟢 -3.16 kB
assets/ScrubableNumberInput-DOMVJUoQ.js (removed) 6.27 kB 🟢 -6.27 kB 🟢 -2.13 kB 🟢 -1.89 kB
assets/ScrubableNumberInput-Dydb-ZKT.js (new) 6.27 kB 🔴 +6.27 kB 🔴 +2.13 kB 🔴 +1.89 kB
assets/FormSearchInput-CR2v074O.js (removed) 5.11 kB 🟢 -5.11 kB 🟢 -2.12 kB 🟢 -1.83 kB
assets/FormSearchInput-DnQxMpfO.js (new) 5.11 kB 🔴 +5.11 kB 🔴 +2.12 kB 🔴 +1.83 kB
assets/SubscribeButton-ehr6_dMz.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.04 kB 🔴 +923 B
assets/SubscribeButton-rZWGAz9R.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.05 kB 🟢 -921 B
assets/cloudFeedbackTopbarButton-CRoFUM2m.js (new) 1.64 kB 🔴 +1.64 kB 🔴 +857 B 🔴 +761 B
assets/cloudFeedbackTopbarButton-xU8qfylW.js (removed) 1.64 kB 🟢 -1.64 kB 🟢 -861 B 🟢 -750 B
assets/ComfyQueueButton-BYafUG8w.js (new) 1.03 kB 🔴 +1.03 kB 🔴 +488 B 🔴 +435 B
assets/ComfyQueueButton-Bzyb57cy.js (removed) 1.03 kB 🟢 -1.03 kB 🟢 -490 B 🟢 -442 B

Status: 7 added / 7 removed / 6 unchanged

Data & Services — 3.01 MB (baseline 3 MB) • 🔴 +9.1 kB

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/dialogService-CDpxCxQc.js (new) 1.97 MB 🔴 +1.97 MB 🔴 +452 kB 🔴 +342 kB
assets/dialogService-DO9Y53Bg.js (removed) 1.96 MB 🟢 -1.96 MB 🟢 -450 kB 🟢 -341 kB
assets/api-N7Q6n-SI.js (new) 893 kB 🔴 +893 kB 🔴 +213 kB 🔴 +168 kB
assets/api-D5C7qw2g.js (removed) 893 kB 🟢 -893 kB 🟢 -213 kB 🟢 -168 kB
assets/load3dService-BgL86P-M.js (removed) 96.5 kB 🟢 -96.5 kB 🟢 -20.5 kB 🟢 -17.7 kB
assets/load3dService-DfljZDoP.js (new) 96.5 kB 🔴 +96.5 kB 🔴 +20.5 kB 🔴 +17.7 kB
assets/workflowShareService-DrmWG5Yd.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.88 kB 🔴 +4.33 kB
assets/workflowShareService-DTKbR0tF.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.88 kB 🟢 -4.34 kB
assets/keybindingService-CjDMlkrU.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.66 kB 🔴 +3.21 kB
assets/keybindingService-DMZ84i7q.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.22 kB
assets/releaseStore-D3rJfORv.js (new) 8.12 kB 🔴 +8.12 kB 🔴 +2.28 kB 🔴 +2 kB
assets/releaseStore-BBHtYgnV.js (removed) 8.12 kB 🟢 -8.12 kB 🟢 -2.28 kB 🟢 -2 kB
assets/userStore-CaW01DzD.js (new) 2.24 kB 🔴 +2.24 kB 🔴 +870 B 🔴 +760 B
assets/userStore-DMcj33dz.js (removed) 2.24 kB 🟢 -2.24 kB 🟢 -870 B 🟢 -760 B
assets/audioService-BGY3EgoL.js (removed) 1.8 kB 🟢 -1.8 kB 🟢 -879 B 🟢 -764 B
assets/audioService-BOCBFZEW.js (new) 1.8 kB 🔴 +1.8 kB 🔴 +880 B 🔴 +759 B
assets/releaseStore-BIEaV9Ud.js (removed) 993 B 🟢 -993 B 🟢 -483 B 🟢 -429 B
assets/releaseStore-C-AQDgD7.js (new) 993 B 🔴 +993 B 🔴 +479 B 🔴 +422 B
assets/workflowDraftStore-8IbTzgyP.js (new) 969 B 🔴 +969 B 🔴 +474 B 🔴 +420 B
assets/workflowDraftStore-CEaomqIl.js (removed) 969 B 🟢 -969 B 🟢 -476 B 🟢 -421 B
assets/dialogService-DF7am_D8.js (new) 958 B 🔴 +958 B 🔴 +467 B 🔴 +414 B
assets/dialogService-XDuUve0p.js (removed) 958 B 🟢 -958 B 🟢 -468 B 🟢 -417 B
assets/settingStore-1LV3nFX_.js (removed) 956 B 🟢 -956 B 🟢 -470 B 🟢 -416 B
assets/settingStore-DWTi-LF3.js (new) 956 B 🔴 +956 B 🔴 +469 B 🔴 +413 B
assets/assetsStore-DovumGZJ.js (removed) 955 B 🟢 -955 B 🟢 -470 B 🟢 -417 B
assets/assetsStore-TRznJPpY.js (new) 955 B 🔴 +955 B 🔴 +469 B 🔴 +413 B

Status: 13 added / 13 removed / 4 unchanged

Utilities & Hooks — 344 kB (baseline 344 kB) • 🔴 +336 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-DFTrRU8O.js (new) 232 kB 🔴 +232 kB 🔴 +51.3 kB 🔴 +41.8 kB
assets/useConflictDetection-CF00qPaG.js (removed) 232 kB 🟢 -232 kB 🟢 -51.3 kB 🟢 -41.8 kB
assets/useLoad3d-Cw4U0-lk.js (new) 20.2 kB 🔴 +20.2 kB 🔴 +4.7 kB 🔴 +4.16 kB
assets/useLoad3d-ZTTO1QNQ.js (removed) 20.2 kB 🟢 -20.2 kB 🟢 -4.7 kB 🟢 -4.16 kB
assets/useLoad3dViewer-CBeyXBPG.js (removed) 18.9 kB 🟢 -18.9 kB 🟢 -4.46 kB 🟢 -3.91 kB
assets/useLoad3dViewer-Dv-EsNqg.js (new) 18.9 kB 🔴 +18.9 kB 🔴 +4.46 kB 🔴 +3.9 kB
assets/useFeatureFlags-BoWhJ2cG.js (removed) 5.78 kB 🟢 -5.78 kB 🟢 -1.75 kB 🟢 -1.49 kB
assets/useFeatureFlags-DBiMyHYO.js (new) 5.78 kB 🔴 +5.78 kB 🔴 +1.75 kB 🔴 +1.49 kB
assets/useCopyToClipboard-CQ_mMn-Z.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.57 kB
assets/useCopyToClipboard-DUgoOAMF.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.57 kB
assets/useWorkspaceUI-DYPqkTpT.js (new) 3.34 kB 🔴 +3.34 kB 🔴 +981 B 🔴 +808 B
assets/useWorkspaceUI-KqrIjgVO.js (removed) 3.34 kB 🟢 -3.34 kB 🟢 -983 B 🟢 -814 B
assets/subscriptionCheckoutUtil-ClUI9K6_.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.36 kB 🔴 +1.19 kB
assets/subscriptionCheckoutUtil-CGEQN01q.js (removed) 2.97 kB 🟢 -2.97 kB 🟢 -1.31 kB 🟢 -1.14 kB
assets/assetPreviewUtil-CTHN_SU5.js (new) 2.27 kB 🔴 +2.27 kB 🔴 +959 B 🔴 +839 B
assets/assetPreviewUtil-j8onwBDc.js (removed) 2.27 kB 🟢 -2.27 kB 🟢 -959 B 🟢 -834 B
assets/useUpstreamValue-Ce0VBcS1.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -805 B 🟢 -715 B
assets/useUpstreamValue-DMOsQIMU.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +803 B 🔴 +707 B
assets/useLoad3d-8nmSfVM-.js (new) 1.13 kB 🔴 +1.13 kB 🔴 +536 B 🔴 +478 B
assets/useLoad3d-CK_RWyiM.js (removed) 1.13 kB 🟢 -1.13 kB 🟢 -540 B 🟢 -481 B
assets/useLoad3dViewer-DCcI3FRe.js (removed) 1.07 kB 🟢 -1.07 kB 🟢 -506 B 🟢 -455 B
assets/useLoad3dViewer-DFoJAVqy.js (new) 1.07 kB 🔴 +1.07 kB 🔴 +504 B 🔴 +451 B
assets/useCurrentUser-B5KZbaHY.js (new) 955 B 🔴 +955 B 🔴 +470 B 🔴 +413 B
assets/useCurrentUser-BEAKp5_4.js (removed) 955 B 🟢 -955 B 🟢 -471 B 🟢 -416 B
assets/useWorkspaceSwitch-3tQVZxp8.js (removed) 747 B 🟢 -747 B 🟢 -383 B 🟢 -331 B
assets/useWorkspaceSwitch-Bc9xJQGN.js (new) 747 B 🔴 +747 B 🔴 +383 B 🔴 +330 B

Status: 13 added / 13 removed / 14 unchanged

Vendor & Third-Party — 9.86 MB (baseline 9.86 MB) • 🔴 +23 B

External libraries and shared vendor chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/vendor-vueuse-BxchDBpH.js (new) 151 kB 🔴 +151 kB 🔴 +38 kB 🔴 +32.3 kB
assets/vendor-vueuse-EUZprDNw.js (removed) 151 kB 🟢 -151 kB 🟢 -38 kB 🟢 -32.3 kB

Status: 1 added / 1 removed / 15 unchanged

Other — 8.57 MB (baseline 8.57 MB) • 🟢 -834 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-Bc4W8qG3.js (new) 77 kB 🔴 +77 kB 🔴 +19.9 kB 🔴 +17 kB
assets/core-xpHmtrxi.js (removed) 77 kB 🟢 -77 kB 🟢 -19.9 kB 🟢 -17 kB
assets/groupNode-CB0sKFGj.js (new) 74 kB 🔴 +74 kB 🔴 +18.5 kB 🔴 +16.3 kB
assets/groupNode-XCk_rJ_S.js (removed) 74 kB 🟢 -74 kB 🟢 -18.5 kB 🟢 -16.3 kB
assets/WidgetSelect-B6C-UZGr.js (new) 64.4 kB 🔴 +64.4 kB 🔴 +13.9 kB 🔴 +12 kB
assets/WidgetSelect-DOwsuPyD.js (removed) 64.4 kB 🟢 -64.4 kB 🟢 -13.9 kB 🟢 -12.1 kB
assets/SubscriptionRequiredDialogContentWorkspace-C2G59PMI.js (removed) 49.1 kB 🟢 -49.1 kB 🟢 -9.35 kB 🟢 -8.01 kB
assets/SubscriptionRequiredDialogContentWorkspace-DzPDs7tK.js (new) 49.1 kB 🔴 +49.1 kB 🔴 +9.35 kB 🔴 +7.99 kB
assets/Load3DControls-BmbfiqZo.js (removed) 40.2 kB 🟢 -40.2 kB 🟢 -6.88 kB 🟢 -6.02 kB
assets/Load3DControls-C2iY4uCQ.js (new) 40.2 kB 🔴 +40.2 kB 🔴 +6.88 kB 🔴 +6.02 kB
assets/WidgetPainter-Bugxc0Yg.js (removed) 33.6 kB 🟢 -33.6 kB 🟢 -8.19 kB 🟢 -7.28 kB
assets/WidgetPainter-CD-c6225.js (new) 33.6 kB 🔴 +33.6 kB 🔴 +8.19 kB 🔴 +7.28 kB
assets/WorkspacePanelContent-BvBATsMt.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +6.93 kB 🔴 +6.14 kB
assets/WorkspacePanelContent-DeO3eFG4.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -6.93 kB 🟢 -6.13 kB
assets/SubscriptionRequiredDialogContent-gahwBA0T.js (removed) 28.2 kB 🟢 -28.2 kB 🟢 -7.17 kB 🟢 -6.3 kB
assets/SubscriptionRequiredDialogContent-BiTBHQfw.js (new) 27.3 kB 🔴 +27.3 kB 🔴 +6.88 kB 🔴 +6.08 kB
assets/Load3dViewerContent-BAsdECPg.js (new) 24.5 kB 🔴 +24.5 kB 🔴 +5.35 kB 🔴 +4.66 kB
assets/Load3dViewerContent-ht1yDJQa.js (removed) 24.5 kB 🟢 -24.5 kB 🟢 -5.36 kB 🟢 -4.66 kB
assets/WidgetImageCrop-DF8C7E6g.js (removed) 23.4 kB 🟢 -23.4 kB 🟢 -5.87 kB 🟢 -5.18 kB
assets/WidgetImageCrop-Djf4O2Rk.js (new) 23.4 kB 🔴 +23.4 kB 🔴 +5.86 kB 🔴 +5.18 kB
assets/SubscriptionPanelContentWorkspace-2QnWY_ZV.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.18 kB 🟢 -4.56 kB
assets/SubscriptionPanelContentWorkspace-CyXQccQJ.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.18 kB 🔴 +4.57 kB
assets/SignInContent-Cq1MQkZ-.js (removed) 20.4 kB 🟢 -20.4 kB 🟢 -5.29 kB 🟢 -4.62 kB
assets/SignInContent-CV3O9SPa.js (new) 20.4 kB 🔴 +20.4 kB 🔴 +5.29 kB 🔴 +4.62 kB
assets/CurrentUserPopoverWorkspace-D57Ol7um.js (new) 20.4 kB 🔴 +20.4 kB 🔴 +4.84 kB 🔴 +4.35 kB
assets/CurrentUserPopoverWorkspace-KBjItYd4.js (removed) 20.4 kB 🟢 -20.4 kB 🟢 -4.84 kB 🟢 -4.33 kB
assets/WidgetInputNumber-5WdA0dTd.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.84 kB 🟢 -4.31 kB
assets/WidgetInputNumber-Cq0oXzE8.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.84 kB 🔴 +4.3 kB
assets/WidgetRecordAudio-BYJK0Xmm.js (new) 17.2 kB 🔴 +17.2 kB 🔴 +4.93 kB 🔴 +4.41 kB
assets/WidgetRecordAudio-CAgJ-apQ.js (removed) 17.2 kB 🟢 -17.2 kB 🟢 -4.93 kB 🟢 -4.41 kB
assets/Load3D-BRengGKB.js (removed) 17 kB 🟢 -17 kB 🟢 -4.14 kB 🟢 -3.62 kB
assets/Load3D-Cx7Mjv4U.js (new) 17 kB 🔴 +17 kB 🔴 +4.13 kB 🔴 +3.62 kB
assets/WidgetRange-CKu_M50x.js (removed) 16.9 kB 🟢 -16.9 kB 🟢 -4.53 kB 🟢 -4.06 kB
assets/WidgetRange-D0p2S0Ku.js (new) 16.9 kB 🔴 +16.9 kB 🔴 +4.53 kB 🔴 +4.06 kB
assets/load3d-DF9AjcSi.js (removed) 15 kB 🟢 -15 kB 🟢 -4.32 kB 🟢 -3.74 kB
assets/load3d-T8HRs8rC.js (new) 15 kB 🔴 +15 kB 🔴 +4.31 kB 🔴 +3.73 kB
assets/WaveAudioPlayer-BMnMo5nA.js (removed) 13.4 kB 🟢 -13.4 kB 🟢 -3.69 kB 🟢 -3.23 kB
assets/WaveAudioPlayer-DYo4_7Ty.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.69 kB 🔴 +3.23 kB
assets/WidgetCurve-CIl_9Do2.js (removed) 12 kB 🟢 -12 kB 🟢 -3.87 kB 🟢 -3.5 kB
assets/WidgetCurve-DY_9XqGE.js (new) 12 kB 🔴 +12 kB 🔴 +3.87 kB 🔴 +3.51 kB
assets/TeamWorkspacesDialogContent-BbZgb1nq.js (removed) 11.1 kB 🟢 -11.1 kB 🟢 -3.34 kB 🟢 -2.97 kB
assets/TeamWorkspacesDialogContent-BppO7AfX.js (new) 11.1 kB 🔴 +11.1 kB 🔴 +3.34 kB 🔴 +2.97 kB
assets/AudioPreviewPlayer-B7Z864pD.js (new) 10.8 kB 🔴 +10.8 kB 🔴 +3.13 kB 🔴 +2.8 kB
assets/AudioPreviewPlayer-DsZVsSAf.js (removed) 10.8 kB 🟢 -10.8 kB 🟢 -3.13 kB 🟢 -2.8 kB
assets/nodeTemplates-CyejHLhz.js (removed) 9.58 kB 🟢 -9.58 kB 🟢 -3.38 kB 🟢 -2.97 kB
assets/nodeTemplates-CYoOn8Nw.js (new) 9.58 kB 🔴 +9.58 kB 🔴 +3.37 kB 🔴 +2.97 kB
assets/NightlySurveyController-BlLlWY-s.js (new) 7.89 kB 🔴 +7.89 kB 🔴 +2.62 kB 🔴 +2.3 kB
assets/NightlySurveyController-De_-ByI1.js (removed) 7.89 kB 🟢 -7.89 kB 🟢 -2.62 kB 🟢 -2.3 kB
assets/WidgetImageCompare-BquIUZ1P.js (new) 7.87 kB 🔴 +7.87 kB 🔴 +2.29 kB 🔴 +2 kB
assets/WidgetImageCompare-Ci-n2wLY.js (removed) 7.87 kB 🟢 -7.87 kB 🟢 -2.29 kB 🟢 -2 kB
assets/InviteMemberDialogContent-ClchkKA7.js (removed) 7.77 kB 🟢 -7.77 kB 🟢 -2.45 kB 🟢 -2.16 kB
assets/InviteMemberDialogContent-CLT2_MaQ.js (new) 7.77 kB 🔴 +7.77 kB 🔴 +2.45 kB 🔴 +2.14 kB
assets/Load3DConfiguration-DI5MbSpF.js (removed) 7.22 kB 🟢 -7.22 kB 🟢 -2.2 kB 🟢 -1.93 kB
assets/Load3DConfiguration-ric10-ZZ.js (new) 7.22 kB 🔴 +7.22 kB 🔴 +2.2 kB 🔴 +1.92 kB
assets/onboardingCloudRoutes-D-DPwEvw.js (new) 6.53 kB 🔴 +6.53 kB 🔴 +2.03 kB 🔴 +1.74 kB
assets/onboardingCloudRoutes-DgxHXVET.js (removed) 6.53 kB 🟢 -6.53 kB 🟢 -2.04 kB 🟢 -1.75 kB
assets/WidgetWithControl-CtMjYRM8.js (new) 5.99 kB 🔴 +5.99 kB 🔴 +2.38 kB 🔴 +2.13 kB
assets/WidgetWithControl-CufH1paW.js (removed) 5.99 kB 🟢 -5.99 kB 🟢 -2.38 kB 🟢 -2.14 kB
assets/CreateWorkspaceDialogContent-BL9sLwgn.js (removed) 5.95 kB 🟢 -5.95 kB 🟢 -2.15 kB 🟢 -1.87 kB
assets/CreateWorkspaceDialogContent-Dpx80t-Q.js (new) 5.95 kB 🔴 +5.95 kB 🔴 +2.15 kB 🔴 +1.88 kB
assets/FreeTierDialogContent-DKo2KRFz.js (removed) 5.82 kB 🟢 -5.82 kB 🟢 -2.05 kB 🟢 -1.81 kB
assets/FreeTierDialogContent-UF3ow6SA.js (new) 5.82 kB 🔴 +5.82 kB 🔴 +2.04 kB 🔴 +1.81 kB
assets/EditWorkspaceDialogContent-5D437636.js (removed) 5.75 kB 🟢 -5.75 kB 🟢 -2.11 kB 🟢 -1.85 kB
assets/EditWorkspaceDialogContent-B7IDn3QG.js (new) 5.75 kB 🔴 +5.75 kB 🔴 +2.11 kB 🔴 +1.84 kB
assets/WidgetTextarea-BGBi1cQc.js (removed) 5.53 kB 🟢 -5.53 kB 🟢 -2.17 kB 🟢 -1.92 kB
assets/WidgetTextarea-Dask6U0_.js (new) 5.53 kB 🔴 +5.53 kB 🔴 +2.17 kB 🔴 +1.93 kB
assets/Preview3d-D3Li8E0Q.js (removed) 5.39 kB 🟢 -5.39 kB 🟢 -1.81 kB 🟢 -1.57 kB
assets/Preview3d-sTvPfju_.js (new) 5.39 kB 🔴 +5.39 kB 🔴 +1.8 kB 🔴 +1.56 kB
assets/ValueControlPopover-020YDr9G.js (new) 5.33 kB 🔴 +5.33 kB 🔴 +1.93 kB 🔴 +1.71 kB
assets/ValueControlPopover-BFHJIygo.js (removed) 5.33 kB 🟢 -5.33 kB 🟢 -1.93 kB 🟢 -1.71 kB
assets/CancelSubscriptionDialogContent-De0Repvx.js (removed) 5.22 kB 🟢 -5.22 kB 🟢 -1.95 kB 🟢 -1.7 kB
assets/CancelSubscriptionDialogContent-Dsyipkq6.js (new) 5.22 kB 🔴 +5.22 kB 🔴 +1.94 kB 🔴 +1.7 kB
assets/AnimationControls-Duo1ucMA.js (new) 4.78 kB 🔴 +4.78 kB 🔴 +1.66 kB 🔴 +1.46 kB
assets/AnimationControls-JfplT0V7.js (removed) 4.78 kB 🟢 -4.78 kB 🟢 -1.66 kB 🟢 -1.46 kB
assets/DeleteWorkspaceDialogContent-Dc1WXYSR.js (removed) 4.65 kB 🟢 -4.65 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/DeleteWorkspaceDialogContent-O_m5HL3v.js (new) 4.65 kB 🔴 +4.65 kB 🔴 +1.79 kB 🔴 +1.55 kB
assets/LeaveWorkspaceDialogContent-Dyb3K_Kh.js (removed) 4.48 kB 🟢 -4.48 kB 🟢 -1.74 kB 🟢 -1.51 kB
assets/LeaveWorkspaceDialogContent-gGBD3oYN.js (new) 4.48 kB 🔴 +4.48 kB 🔴 +1.73 kB 🔴 +1.51 kB
assets/RemoveMemberDialogContent-B6dLc8Gb.js (removed) 4.46 kB 🟢 -4.46 kB 🟢 -1.69 kB 🟢 -1.47 kB
assets/RemoveMemberDialogContent-DjCgDohb.js (new) 4.46 kB 🔴 +4.46 kB 🔴 +1.68 kB 🔴 +1.47 kB
assets/tierBenefits-B5jqdPYh.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.58 kB 🟢 -1.36 kB
assets/tierBenefits-C5jKnxdX.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.57 kB 🔴 +1.36 kB
assets/RevokeInviteDialogContent-BzzKeVHC.js (new) 4.37 kB 🔴 +4.37 kB 🔴 +1.7 kB 🔴 +1.48 kB
assets/RevokeInviteDialogContent-EQQPhyAt.js (removed) 4.37 kB 🟢 -4.37 kB 🟢 -1.7 kB 🟢 -1.49 kB
assets/InviteMemberUpsellDialogContent-7ttQ61el.js (new) 4.27 kB 🔴 +4.27 kB 🔴 +1.56 kB 🔴 +1.37 kB
assets/InviteMemberUpsellDialogContent-CQ4Vi36f.js (removed) 4.27 kB 🟢 -4.27 kB 🟢 -1.56 kB 🟢 -1.37 kB
assets/cloudSessionCookie-BmEOwbX4.js (new) 4.12 kB 🔴 +4.12 kB 🔴 +1.49 kB 🔴 +1.29 kB
assets/cloudSessionCookie-CoGVw-mX.js (removed) 4.12 kB 🟢 -4.12 kB 🟢 -1.49 kB 🟢 -1.29 kB
assets/saveMesh-5fVEJJEV.js (removed) 3.92 kB 🟢 -3.92 kB 🟢 -1.68 kB 🟢 -1.48 kB
assets/saveMesh-DP8qs1Z0.js (new) 3.92 kB 🔴 +3.92 kB 🔴 +1.68 kB 🔴 +1.47 kB
assets/Media3DTop-AOIKBLAf.js (removed) 3.85 kB 🟢 -3.85 kB 🟢 -1.63 kB 🟢 -1.43 kB
assets/Media3DTop-qtHjKyuC.js (new) 3.85 kB 🔴 +3.85 kB 🔴 +1.63 kB 🔴 +1.42 kB
assets/WidgetBoundingBox-C2wrMBmv.js (new) 3.62 kB 🔴 +3.62 kB 🔴 +1.01 kB 🔴 +896 B
assets/WidgetBoundingBox-DzRYWtkq.js (removed) 3.62 kB 🟢 -3.62 kB 🟢 -1.02 kB 🟢 -898 B
assets/Slider-CQxGDlS6.js (new) 3.57 kB 🔴 +3.57 kB 🔴 +1.39 kB 🔴 +1.21 kB
assets/Slider-DlRLhxas.js (removed) 3.57 kB 🟢 -3.57 kB 🟢 -1.38 kB 🟢 -1.21 kB
assets/GlobalToast-DRs7MMkQ.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.11 kB
assets/GlobalToast-iUYmDu2Z.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.07 kB
assets/SubscribeToRun-BzSkZrBo.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +980 B 🔴 +880 B
assets/SubscribeToRun-DpHoSGyQ.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -983 B 🟢 -883 B
assets/MediaImageTop-Bd-Pcqda.js (new) 2.05 kB 🔴 +2.05 kB 🔴 +994 B 🔴 +859 B
assets/MediaImageTop-C5fjT0uE.js (removed) 2.05 kB 🟢 -2.05 kB 🟢 -995 B 🟢 -876 B
assets/MediaAudioTop-C_3-Zreq.js (removed) 2.02 kB 🟢 -2.02 kB 🟢 -980 B 🟢 -835 B
assets/MediaAudioTop-yQc1t58z.js (new) 2.02 kB 🔴 +2.02 kB 🔴 +980 B 🔴 +878 B
assets/CloudRunButtonWrapper-BYMRpTH5.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -912 B 🟢 -814 B
assets/CloudRunButtonWrapper-DfKvGfbl.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +910 B 🔴 +804 B
assets/graphHasMissingNodes-BsSyI_nH.js (new) 1.83 kB 🔴 +1.83 kB 🔴 +861 B 🔴 +761 B
assets/graphHasMissingNodes-DnsYdcLN.js (removed) 1.83 kB 🟢 -1.83 kB 🟢 -862 B 🟢 -756 B
assets/cloudBadges-BdTNVGh_.js (removed) 1.77 kB 🟢 -1.77 kB 🟢 -893 B 🟢 -772 B
assets/cloudBadges-cw5K4grY.js (new) 1.77 kB 🔴 +1.77 kB 🔴 +888 B 🔴 +782 B
assets/cloudSubscription-CY-EwdTb.js (new) 1.68 kB 🔴 +1.68 kB 🔴 +813 B 🔴 +702 B
assets/cloudSubscription-EG4lgzQO.js (removed) 1.68 kB 🟢 -1.68 kB 🟢 -817 B 🟢 -710 B
assets/surveyRegistry-CVxHCmpX.js (removed) 1.57 kB 🟢 -1.57 kB 🟢 -744 B 🟢 -632 B
assets/surveyRegistry-DD4TRLLv.js (new) 1.57 kB 🔴 +1.57 kB 🔴 +743 B 🔴 +634 B
assets/previousFullPath-CaN2NX0I.js (removed) 1.53 kB 🟢 -1.53 kB 🟢 -696 B 🟢 -599 B
assets/previousFullPath-DQYrCE3_.js (new) 1.53 kB 🔴 +1.53 kB 🔴 +694 B 🔴 +617 B
assets/Load3D-B3Mk_yV1.js (new) 1.34 kB 🔴 +1.34 kB 🔴 +609 B 🔴 +538 B
assets/Load3D-CPFHHZNC.js (removed) 1.34 kB 🟢 -1.34 kB 🟢 -615 B 🟢 -542 B
assets/nightlyBadges-D4Tz3zHx.js (removed) 1.29 kB 🟢 -1.29 kB 🟢 -661 B 🟢 -583 B
assets/nightlyBadges-MUDuyUki.js (new) 1.29 kB 🔴 +1.29 kB 🔴 +656 B 🔴 +579 B
assets/Load3dViewerContent-BQuOHKUm.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +562 B 🔴 +495 B
assets/Load3dViewerContent-xGqxGp8H.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -566 B 🟢 -497 B
assets/SubscriptionPanelContentWorkspace-bk5BCMja.js (new) 1.15 kB 🔴 +1.15 kB 🔴 +534 B 🔴 +463 B
assets/SubscriptionPanelContentWorkspace-u4pxgDU6.js (removed) 1.15 kB 🟢 -1.15 kB 🟢 -536 B 🟢 -470 B
assets/WidgetLegacy-Cn9dfBF3.js (new) 978 B 🔴 +978 B 🔴 +481 B 🔴 +424 B
assets/WidgetLegacy-pwGz2KcM.js (removed) 978 B 🟢 -978 B 🟢 -483 B 🟢 -423 B
assets/changeTracker-Cqu4hiIN.js (removed) 953 B 🟢 -953 B 🟢 -471 B 🟢 -409 B
assets/changeTracker-CtF0rZY4.js (new) 953 B 🔴 +953 B 🔴 +470 B 🔴 +406 B
assets/WidgetBoundingBox-BCfysZQZ.js (new) 283 B 🔴 +283 B 🔴 +185 B 🔴 +166 B
assets/WidgetBoundingBox-DVMA6wet.js (removed) 283 B 🟢 -283 B 🟢 -186 B 🟢 -175 B

Status: 65 added / 65 removed / 70 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.9 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 56.5 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.1 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 48.2 MB heap
large-graph-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.3 MB heap
large-graph-pan: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.0 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.4 MB heap
minimap-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.8 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 48.3 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.0 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.2 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 72.7 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 161.0 MB heap
vue-large-graph-pan: · 56.3 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 166.0 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 48.3 MB heap

⚠️ 3 regressions detected

Metric Baseline PR (median) Δ Sig
subgraph-mouse-sweep: style recalc count 76 84 +11% ⚠️ z=2.0
subgraph-mouse-sweep: task duration 540ms 916ms +70% ⚠️ z=2.2
subgraph-mouse-sweep: DOM nodes 62 72 +16% ⚠️ z=2.3
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 6ms 8ms +43% z=-3.3
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 8 8 +0% z=-5.6
canvas-idle: task duration 280ms 366ms +31% z=-0.9
canvas-idle: script duration 14ms 22ms +50% z=-1.6
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 60.9 MB 60.9 MB +0%
canvas-idle: DOM nodes 14 16 +14% z=-5.2
canvas-idle: event listeners 4 6 +50% z=-1.2
canvas-mouse-sweep: avg frame time 17ms 17ms -0% z=-1.5
canvas-mouse-sweep: p95 frame time 17ms 17ms -1%
canvas-mouse-sweep: layout duration 3ms 4ms +8% z=-0.5
canvas-mouse-sweep: style recalc duration 30ms 44ms +49% z=0.5
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 72 80 +11% z=0.6
canvas-mouse-sweep: task duration 613ms 956ms +56% z=1.6
canvas-mouse-sweep: script duration 101ms 139ms +38% z=0.6
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 56.7 MB 56.5 MB -0%
canvas-mouse-sweep: DOM nodes 55 65 +18% z=1.0
canvas-mouse-sweep: event listeners 4 6 +50% z=-0.6
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms +1%
canvas-zoom-sweep: layout duration 1ms 1ms +20% z=-0.6
canvas-zoom-sweep: style recalc duration 14ms 18ms +34% z=-0.5
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 31 +0% z=-0.6
canvas-zoom-sweep: task duration 251ms 325ms +29% z=-0.1
canvas-zoom-sweep: script duration 22ms 30ms +34% z=0.9
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 65.3 MB 65.1 MB -0%
canvas-zoom-sweep: DOM nodes 77 78 +1% z=-1.6
canvas-zoom-sweep: event listeners 19 19 +0% z=-0.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 11ms +35% z=1.4
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 13 13 +0% z=-0.2
dom-widget-clipping: task duration 279ms 373ms +34% z=0.5
dom-widget-clipping: script duration 51ms 68ms +33% z=0.0
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 55.5 MB 48.2 MB -13%
dom-widget-clipping: DOM nodes 21 22 +5% z=-0.1
dom-widget-clipping: event listeners 0 2 variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=-0.2
large-graph-idle: p95 frame time 17ms 17ms +1%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 8ms 10ms +30% z=-1.7
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 10 10 +0% z=-5.1
large-graph-idle: task duration 449ms 559ms +24% z=0.3
large-graph-idle: script duration 77ms 103ms +34% z=0.1
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 53.4 MB 53.3 MB -0%
large-graph-idle: DOM nodes -256 -257 +0% z=-311.7
large-graph-idle: event listeners -123 -125 +2% z=-24.8
large-graph-pan: avg frame time 17ms 17ms -0% z=-0.8
large-graph-pan: p95 frame time 17ms 17ms +1%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 15ms 16ms +5% z=-1.9
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 68 -1% z=-2.4
large-graph-pan: task duration 881ms 1137ms +29% z=1.3
large-graph-pan: script duration 302ms 433ms +44% z=1.3
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 67.3 MB 66.0 MB -2%
large-graph-pan: DOM nodes -259 -261 +1% z=-169.7
large-graph-pan: event listeners -123 -127 +3% z=-159.3
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 7ms 8ms +5%
large-graph-zoom: style recalc duration 16ms 16ms +2%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 66 65 -2%
large-graph-zoom: task duration 1070ms 1340ms +25%
large-graph-zoom: script duration 390ms 493ms +26%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 60.7 MB 61.4 MB +1%
large-graph-zoom: DOM nodes -261 -266 +2%
large-graph-zoom: event listeners -121 -123 +2%
minimap-idle: avg frame time 17ms 17ms +0% z=0.1
minimap-idle: p95 frame time 17ms 17ms -1%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 7ms 10ms +39% z=0.0
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 10 10 +0% z=0.6
minimap-idle: task duration 459ms 586ms +28% z=1.2
minimap-idle: script duration 75ms 102ms +36% z=0.4
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 54.8 MB 55.8 MB +2%
minimap-idle: DOM nodes -259 -262 +1% z=-205.6
minimap-idle: event listeners -125 -127 +2% z=-199.3
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 10ms 12ms +19% z=-1.1
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 48 47 -2% z=-1.6
subgraph-dom-widget-clipping: task duration 288ms 360ms +25% z=-1.0
subgraph-dom-widget-clipping: script duration 102ms 130ms +27% z=0.2
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 48.2 MB 48.3 MB +0%
subgraph-dom-widget-clipping: DOM nodes 21 20 -5% z=-1.9
subgraph-dom-widget-clipping: event listeners 6 8 +33% z=-1.4
subgraph-idle: avg frame time 17ms 17ms -0% z=-0.7
subgraph-idle: p95 frame time 17ms 17ms +0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 7ms 10ms +44% z=-0.8
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 10 +0% z=-1.4
subgraph-idle: task duration 287ms 368ms +28% z=-0.1
subgraph-idle: script duration 16ms 20ms +28% z=0.0
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 60.7 MB 61.0 MB +1%
subgraph-idle: DOM nodes 18 20 +11% z=-1.2
subgraph-idle: event listeners 4 6 +50% 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 5ms +25% z=0.1
subgraph-mouse-sweep: style recalc duration 30ms 48ms +57% z=1.6
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 76 84 +11% ⚠️ z=2.0
subgraph-mouse-sweep: task duration 540ms 916ms +70% ⚠️ z=2.2
subgraph-mouse-sweep: script duration 82ms 107ms +31% z=0.9
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 52.8 MB 53.2 MB +1%
subgraph-mouse-sweep: DOM nodes 62 72 +16% ⚠️ z=2.3
subgraph-mouse-sweep: event listeners 4 6 +50% variance too high
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 42ms 44ms +5%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 251 +0%
viewport-pan-sweep: task duration 2975ms 3778ms +27%
viewport-pan-sweep: script duration 961ms 1310ms +36%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 72.0 MB 72.7 MB +1%
viewport-pan-sweep: DOM nodes -258 -261 +1%
viewport-pan-sweep: event listeners -111 -111 +0%
vue-large-graph-idle: avg frame time 17ms 17ms +0%
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 10940ms 12288ms +12%
vue-large-graph-idle: script duration 493ms 629ms +28%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 161.1 MB 161.0 MB -0%
vue-large-graph-idle: DOM nodes -9850 -9850 +0%
vue-large-graph-idle: event listeners -23963 -23959 -0%
vue-large-graph-pan: avg frame time 17ms 18ms +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 14ms 14ms -1%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 64 67 +5%
vue-large-graph-pan: task duration 12349ms 14311ms +16%
vue-large-graph-pan: script duration 711ms 876ms +23%
vue-large-graph-pan: TBT 0ms 0ms +0%
vue-large-graph-pan: heap used 160.6 MB 166.0 MB +3%
vue-large-graph-pan: DOM nodes -9850 -9850 +0%
vue-large-graph-pan: event listeners -23961 -23955 -0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.6
workflow-execution: p95 frame time 17ms 17ms -1%
workflow-execution: layout duration 1ms 1ms +10% z=-1.2
workflow-execution: style recalc duration 19ms 22ms +15% z=-1.2
workflow-execution: layout count 5 5 +0% z=0.1
workflow-execution: style recalc count 17 15 -12% z=-1.4
workflow-execution: task duration 106ms 120ms +13% z=-0.3
workflow-execution: script duration 24ms 29ms +21% z=0.0
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 47.9 MB 48.3 MB +1%
workflow-execution: DOM nodes 156 154 -1% z=-1.0
workflow-execution: event listeners 69 71 +3% z=4.4
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-04-16T04:42:28.525Z",
  "gitSha": "581938314b17f585f3bb74c4b1700382bc2ec750",
  "branch": "bl/subscription-success-80-20",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2020.5049999999858,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 10.155999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 366.124,
      "heapDeltaBytes": 20346312,
      "heapUsedBytes": 63859832,
      "domNodes": 20,
      "jsHeapTotalBytes": 23330816,
      "scriptDurationMs": 22.362999999999996,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2022.0299999999725,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 6.791000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 327.87100000000004,
      "heapDeltaBytes": 19995512,
      "heapUsedBytes": 63077908,
      "domNodes": 16,
      "jsHeapTotalBytes": 23068672,
      "scriptDurationMs": 16.022000000000002,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-idle",
      "durationMs": 2000.750000000039,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.889,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 396.141,
      "heapDeltaBytes": 20594848,
      "heapUsedBytes": 64586400,
      "domNodes": 16,
      "jsHeapTotalBytes": 23068672,
      "scriptDurationMs": 21.751,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 2057.539999999989,
      "styleRecalcs": 80,
      "styleRecalcDurationMs": 45.583999999999996,
      "layouts": 12,
      "layoutDurationMs": 3.4070000000000005,
      "taskDurationMs": 1027.0739999999998,
      "heapDeltaBytes": 15663168,
      "heapUsedBytes": 59016840,
      "domNodes": 65,
      "jsHeapTotalBytes": 22806528,
      "scriptDurationMs": 139.495,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 2006.386999999961,
      "styleRecalcs": 81,
      "styleRecalcDurationMs": 44.173,
      "layouts": 12,
      "layoutDurationMs": 3.55,
      "taskDurationMs": 955.52,
      "heapDeltaBytes": 15750016,
      "heapUsedBytes": 59265972,
      "domNodes": 66,
      "jsHeapTotalBytes": 23855104,
      "scriptDurationMs": 133.56099999999998,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1829.1090000000167,
      "styleRecalcs": 73,
      "styleRecalcDurationMs": 42.93900000000001,
      "layouts": 12,
      "layoutDurationMs": 3.51,
      "taskDurationMs": 803.02,
      "heapDeltaBytes": 16006876,
      "heapUsedBytes": 59285492,
      "domNodes": 57,
      "jsHeapTotalBytes": 22806528,
      "scriptDurationMs": 147.76500000000001,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1738.7750000000324,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 18.553,
      "layouts": 6,
      "layoutDurationMs": 0.5429999999999998,
      "taskDurationMs": 324.701,
      "heapDeltaBytes": 24635136,
      "heapUsedBytes": 68261104,
      "domNodes": 78,
      "jsHeapTotalBytes": 21495808,
      "scriptDurationMs": 27.891,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1748.894000000007,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 17.893,
      "layouts": 6,
      "layoutDurationMs": 0.6309999999999998,
      "taskDurationMs": 306.11299999999994,
      "heapDeltaBytes": 24894080,
      "heapUsedBytes": 68507312,
      "domNodes": 78,
      "jsHeapTotalBytes": 21495808,
      "scriptDurationMs": 29.753999999999998,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1720.0520000000097,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 18.426,
      "layouts": 6,
      "layoutDurationMs": 0.6150000000000001,
      "taskDurationMs": 338.812,
      "heapDeltaBytes": 24471360,
      "heapUsedBytes": 68171268,
      "domNodes": 78,
      "jsHeapTotalBytes": 21233664,
      "scriptDurationMs": 33.07000000000001,
      "eventListeners": 21,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 613.3450000000096,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 5.717,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 379.737,
      "heapDeltaBytes": 6680544,
      "heapUsedBytes": 51921020,
      "domNodes": 12,
      "jsHeapTotalBytes": 13107200,
      "scriptDurationMs": 67.95000000000002,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66666666666665,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 566.9750000000136,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 12.473999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 347.747,
      "heapDeltaBytes": 6821132,
      "heapUsedBytes": 50566424,
      "domNodes": 22,
      "jsHeapTotalBytes": 12845056,
      "scriptDurationMs": 62.85500000000001,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 597.6010000000542,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 10.950000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 373.37000000000006,
      "heapDeltaBytes": 6351680,
      "heapUsedBytes": 49555964,
      "domNodes": 22,
      "jsHeapTotalBytes": 13107200,
      "scriptDurationMs": 68.81499999999998,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2009.7310000000164,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 10.468000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 528.675,
      "heapDeltaBytes": 3786060,
      "heapUsedBytes": 55937396,
      "domNodes": -257,
      "jsHeapTotalBytes": 16179200,
      "scriptDurationMs": 97.08200000000001,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2039.3119999999954,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.941000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 621.2420000000001,
      "heapDeltaBytes": 4294328,
      "heapUsedBytes": 56382232,
      "domNodes": -257,
      "jsHeapTotalBytes": 16023552,
      "scriptDurationMs": 114.71600000000001,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2063.6120000000346,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 11.456000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 559.1379999999999,
      "heapDeltaBytes": 2849820,
      "heapUsedBytes": 55666848,
      "domNodes": -259,
      "jsHeapTotalBytes": 15917056,
      "scriptDurationMs": 103.39600000000002,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2143.983999999989,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 14.764999999999997,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1090.994,
      "heapDeltaBytes": 14753356,
      "heapUsedBytes": 69253996,
      "domNodes": -261,
      "jsHeapTotalBytes": 17694720,
      "scriptDurationMs": 394.45799999999997,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2135.865000000024,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 15.776999999999996,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1205.568,
      "heapDeltaBytes": 17954064,
      "heapUsedBytes": 72786708,
      "domNodes": -262,
      "jsHeapTotalBytes": 17170432,
      "scriptDurationMs": 455.33299999999997,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2109.9859999999353,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 16.087,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1136.776,
      "heapDeltaBytes": -9266116,
      "heapUsedBytes": 54979620,
      "domNodes": -259,
      "jsHeapTotalBytes": 18071552,
      "scriptDurationMs": 433.231,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3153.3509999999865,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 16.427,
      "layouts": 60,
      "layoutDurationMs": 7.564,
      "taskDurationMs": 1334.4740000000002,
      "heapDeltaBytes": 8390168,
      "heapUsedBytes": 64407860,
      "domNodes": -266,
      "jsHeapTotalBytes": 15130624,
      "scriptDurationMs": 488.247,
      "eventListeners": -123,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3180.9540000000425,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 16.151,
      "layouts": 60,
      "layoutDurationMs": 7.597999999999999,
      "taskDurationMs": 1341.642,
      "heapDeltaBytes": 6288072,
      "heapUsedBytes": 62392584,
      "domNodes": -266,
      "jsHeapTotalBytes": 18014208,
      "scriptDurationMs": 492.544,
      "eventListeners": -123,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3148.5099999999875,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 16.387000000000004,
      "layouts": 60,
      "layoutDurationMs": 7.384999999999999,
      "taskDurationMs": 1340.009,
      "heapDeltaBytes": 8297948,
      "heapUsedBytes": 64360404,
      "domNodes": -267,
      "jsHeapTotalBytes": 15654912,
      "scriptDurationMs": 495.03799999999995,
      "eventListeners": -123,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2040.8739999999739,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 10.001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 585.756,
      "heapDeltaBytes": 3302476,
      "heapUsedBytes": 58801144,
      "domNodes": -262,
      "jsHeapTotalBytes": 15917056,
      "scriptDurationMs": 102.16200000000002,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2052.7700000000095,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.758,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 539.273,
      "heapDeltaBytes": 2623496,
      "heapUsedBytes": 58267312,
      "domNodes": -262,
      "jsHeapTotalBytes": 16441344,
      "scriptDurationMs": 97.94299999999998,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "minimap-idle",
      "durationMs": 2037.0040000000245,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.562999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 589.6839999999999,
      "heapDeltaBytes": 4671216,
      "heapUsedBytes": 58509724,
      "domNodes": -259,
      "jsHeapTotalBytes": 16441344,
      "scriptDurationMs": 107.17099999999999,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 574.485999999979,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 11.898,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 359.626,
      "heapDeltaBytes": 6805844,
      "heapUsedBytes": 50603104,
      "domNodes": 20,
      "jsHeapTotalBytes": 13107200,
      "scriptDurationMs": 129.504,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 574.544000000003,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 11.289,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 356.73199999999997,
      "heapDeltaBytes": 7010836,
      "heapUsedBytes": 51004644,
      "domNodes": 20,
      "jsHeapTotalBytes": 12320768,
      "scriptDurationMs": 124.854,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 611.2749999999778,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 11.663999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 383.74499999999995,
      "heapDeltaBytes": 6328012,
      "heapUsedBytes": 49559860,
      "domNodes": 18,
      "jsHeapTotalBytes": 13369344,
      "scriptDurationMs": 129.998,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2000.6539999999973,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 10.411,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 367.777,
      "heapDeltaBytes": 20229288,
      "heapUsedBytes": 64000584,
      "domNodes": 21,
      "jsHeapTotalBytes": 23592960,
      "scriptDurationMs": 21.391000000000002,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2020.4929999999877,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.772999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 342.37,
      "heapDeltaBytes": 19920596,
      "heapUsedBytes": 63722544,
      "domNodes": 20,
      "jsHeapTotalBytes": 23330816,
      "scriptDurationMs": 20.237,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2034.9029999999857,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.383,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 394.821,
      "heapDeltaBytes": 19993028,
      "heapUsedBytes": 64311584,
      "domNodes": 18,
      "jsHeapTotalBytes": 22806528,
      "scriptDurationMs": 19.123,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1972.9889999999841,
      "styleRecalcs": 84,
      "styleRecalcDurationMs": 45.875,
      "layouts": 16,
      "layoutDurationMs": 4.4990000000000006,
      "taskDurationMs": 915.538,
      "heapDeltaBytes": 11571672,
      "heapUsedBytes": 55350192,
      "domNodes": 72,
      "jsHeapTotalBytes": 22282240,
      "scriptDurationMs": 106.683,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1966.6119999999978,
      "styleRecalcs": 83,
      "styleRecalcDurationMs": 47.681000000000004,
      "layouts": 16,
      "layoutDurationMs": 5.054,
      "taskDurationMs": 925.4299999999998,
      "heapDeltaBytes": 12139632,
      "heapUsedBytes": 56037160,
      "domNodes": 70,
      "jsHeapTotalBytes": 22806528,
      "scriptDurationMs": 103.88,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1973.779000000036,
      "styleRecalcs": 84,
      "styleRecalcDurationMs": 51.67400000000001,
      "layouts": 16,
      "layoutDurationMs": 4.732,
      "taskDurationMs": 911.0150000000001,
      "heapDeltaBytes": 11911076,
      "heapUsedBytes": 55799664,
      "domNodes": 72,
      "jsHeapTotalBytes": 23068672,
      "scriptDurationMs": 106.83500000000001,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8385.791000000041,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 44.291,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3777.9,
      "heapDeltaBytes": 24882072,
      "heapUsedBytes": 76973424,
      "domNodes": -261,
      "jsHeapTotalBytes": 19267584,
      "scriptDurationMs": 1309.708,
      "eventListeners": -111,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8191.633999999965,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 43.882000000000005,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3654.7899999999995,
      "heapDeltaBytes": 24071004,
      "heapUsedBytes": 76213888,
      "domNodes": -260,
      "jsHeapTotalBytes": 19529728,
      "scriptDurationMs": 1242.6870000000001,
      "eventListeners": -111,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.669999999999952,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8243.014000000017,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 46.782999999999994,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4148.297,
      "heapDeltaBytes": 22029060,
      "heapUsedBytes": 74881920,
      "domNodes": -262,
      "jsHeapTotalBytes": 19267584,
      "scriptDurationMs": 1351.672,
      "eventListeners": -111,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12684.451000000025,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12671.208,
      "heapDeltaBytes": -28548216,
      "heapUsedBytes": 167987544,
      "domNodes": -9850,
      "jsHeapTotalBytes": 22110208,
      "scriptDurationMs": 650.875,
      "eventListeners": -23963,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12049.476000000028,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12040.119999999999,
      "heapDeltaBytes": -46557800,
      "heapUsedBytes": 169062532,
      "domNodes": -9850,
      "jsHeapTotalBytes": 24731648,
      "scriptDurationMs": 575.407,
      "eventListeners": -23959,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12316.237999999998,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12288.041,
      "heapDeltaBytes": -46571432,
      "heapUsedBytes": 168840712,
      "domNodes": -9850,
      "jsHeapTotalBytes": 25518080,
      "scriptDurationMs": 629.101,
      "eventListeners": -23957,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14336.066000000017,
      "styleRecalcs": 67,
      "styleRecalcDurationMs": 13.805999999999985,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14311.06,
      "heapDeltaBytes": -38397236,
      "heapUsedBytes": 174033148,
      "domNodes": -9850,
      "jsHeapTotalBytes": -24375296,
      "scriptDurationMs": 876.0870000000001,
      "eventListeners": -23955,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.77333333333336,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14017.435999999976,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 13.160999999999978,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13979.930999999999,
      "heapDeltaBytes": -32399144,
      "heapUsedBytes": 177871780,
      "domNodes": -9850,
      "jsHeapTotalBytes": 25432064,
      "scriptDurationMs": 827.486,
      "eventListeners": -23955,
      "totalBlockingTimeMs": 1,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 15055.287000000022,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 16.56400000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 15023.491999999998,
      "heapDeltaBytes": -37663760,
      "heapUsedBytes": 174111728,
      "domNodes": -9850,
      "jsHeapTotalBytes": -26996736,
      "scriptDurationMs": 977.372,
      "eventListeners": -23953,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "workflow-execution",
      "durationMs": 491.97800000001735,
      "styleRecalcs": 15,
      "styleRecalcDurationMs": 23.505,
      "layouts": 5,
      "layoutDurationMs": 1.583,
      "taskDurationMs": 137.18899999999996,
      "heapDeltaBytes": 5362644,
      "heapUsedBytes": 50828632,
      "domNodes": 165,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 29.823000000000004,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "workflow-execution",
      "durationMs": 454.65599999999995,
      "styleRecalcs": 14,
      "styleRecalcDurationMs": 20.081,
      "layouts": 4,
      "layoutDurationMs": 1.0909999999999997,
      "taskDurationMs": 115.80499999999996,
      "heapDeltaBytes": 4970596,
      "heapUsedBytes": 50656656,
      "domNodes": 150,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 25.436000000000003,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "workflow-execution",
      "durationMs": 462.2580000000198,
      "styleRecalcs": 15,
      "styleRecalcDurationMs": 21.540999999999997,
      "layouts": 5,
      "layoutDurationMs": 1.3719999999999997,
      "taskDurationMs": 119.79000000000003,
      "heapDeltaBytes": 5125764,
      "heapUsedBytes": 50543816,
      "domNodes": 154,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 29.12100000000001,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    }
  ]
}

@codecov

codecov Bot commented Apr 15, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 80.30303% with 52 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
.../subscription/utils/subscriptionCheckoutTracker.ts 83.20% 22 Missing ⚠️
.../cloud/subscription/composables/useSubscription.ts 81.81% 16 Missing and 2 partials ⚠️
src/composables/auth/useAuthActions.ts 0.00% 3 Missing ⚠️
src/platform/telemetry/TelemetryRegistry.ts 0.00% 3 Missing ⚠️
...orm/cloud/subscription/components/PricingTable.vue 84.61% 1 Missing and 1 partial ⚠️
...metry/providers/cloud/MixpanelTelemetryProvider.ts 0.00% 2 Missing ⚠️
...n/components/SubscriptionRequiredDialogContent.vue 0.00% 1 Missing ⚠️
...oud/subscription/utils/subscriptionCheckoutUtil.ts 80.00% 1 Missing ⚠️
@@             Coverage Diff             @@
##             main   #11286       +/-   ##
===========================================
- Coverage   64.29%   44.35%   -19.95%     
===========================================
  Files        1459     1351      -108     
  Lines       83830    69476    -14354     
  Branches    23150    19299     -3851     
===========================================
- Hits        53900    30814    -23086     
- Misses      28970    38060     +9090     
+ Partials      960      602      -358     
Flag Coverage Δ
e2e ?
unit 44.35% <80.30%> (+0.16%) ⬆️

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

Files with missing lines Coverage Δ
.../telemetry/providers/cloud/GtmTelemetryProvider.ts 65.38% <100.00%> (+0.81%) ⬆️
...emetry/providers/cloud/PostHogTelemetryProvider.ts 47.34% <100.00%> (ø)
src/platform/telemetry/types.ts 100.00% <ø> (ø)
...n/components/SubscriptionRequiredDialogContent.vue 0.00% <0.00%> (ø)
...oud/subscription/utils/subscriptionCheckoutUtil.ts 69.56% <80.00%> (+0.51%) ⬆️
...orm/cloud/subscription/components/PricingTable.vue 95.42% <84.61%> (+2.90%) ⬆️
...metry/providers/cloud/MixpanelTelemetryProvider.ts 0.00% <0.00%> (ø)
src/composables/auth/useAuthActions.ts 1.25% <0.00%> (-30.00%) ⬇️
src/platform/telemetry/TelemetryRegistry.ts 0.00% <0.00%> (ø)
.../cloud/subscription/composables/useSubscription.ts 82.98% <81.81%> (+22.46%) ⬆️
... and 1 more

... and 1011 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.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 5

🧹 Nitpick comments (1)
src/platform/telemetry/types.ts (1)

361-371: Add SubscriptionSuccessMetadata to TelemetryEventProperties too.

The new payload is now passed through provider queue helpers typed as TelemetryEventProperties, but that union still omits SubscriptionSuccessMetadata. Today this works only because SubscriptionMetadata is structurally permissive, so we lose the intended type check on queued analytics payloads.

♻️ Suggested follow-up
 export type TelemetryEventProperties =
   | AuthMetadata
   | SurveyResponses
   | TemplateMetadata
   | ExecutionContext
   | RunButtonProperties
   | ExecutionErrorMetadata
   | ExecutionSuccessMetadata
   | CreditTopupMetadata
   | WorkflowImportMetadata
   | TemplateLibraryMetadata
   | TemplateLibraryClosedMetadata
   | PageVisibilityMetadata
   | TabCountMetadata
   | NodeSearchMetadata
   | NodeSearchResultMetadata
   | TemplateFilterMetadata
   | SettingChangedMetadata
   | UiButtonClickMetadata
   | HelpCenterOpenedMetadata
   | HelpResourceClickedMetadata
   | HelpCenterClosedMetadata
   | WorkflowCreatedMetadata
   | EnterLinearMetadata
   | ShareFlowMetadata
   | WorkflowSavedMetadata
   | DefaultViewSetMetadata
-  | SubscriptionMetadata
+  | SubscriptionMetadata
+  | SubscriptionSuccessMetadata

As per coding guidelines, "Use TypeScript for type safety".

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@src/platform/telemetry/types.ts` around lines 361 - 371,
TelemetryEventProperties currently omits the new SubscriptionSuccessMetadata
type so queued provider helpers typed as TelemetryEventProperties lose the
intended type checking; update the TelemetryEventProperties union to include
SubscriptionSuccessMetadata (alongside the existing SubscriptionMetadata and
other variants) so payloads like subscription success events are properly typed
when passed through the provider queue helpers; locate the
TelemetryEventProperties type and add SubscriptionSuccessMetadata to its union
members to restore strict typing.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@src/platform/cloud/subscription/components/PricingTable.vue`:
- Around line 483-491: The pending-checkout write is happening before
accessBillingPortal(checkoutTier) succeeds; move the call to
recordPendingSubscriptionCheckoutAttempt so it only runs after the portal open
is confirmed (i.e., after await accessBillingPortal(checkoutTier) resolves and
you have the portal URL or success). Specifically, remove or postpone the
existing recordPendingSubscriptionCheckoutAttempt(...) invocation located
alongside the checkout initiation and instead invoke it in the success branch
that runs once accessBillingPortal returns successfully (use the same payload:
tier: tierKey, cycle: currentBillingCycle.value, checkout_type: 'change',
previous_tier: currentTierKey.value when present, and previous_cycle based on
isYearlySubscription.value) so stale entries aren't written when
accessBillingPortal fails.

In `@src/platform/cloud/subscription/composables/useSubscription.ts`:
- Around line 343-350: In handlePendingSubscriptionCheckoutChange, clear any
existing pending retry timer before resetting pendingCheckoutRecoveryAttempt and
starting recovery so the new attempt doesn't inherit a stale delay;
specifically, if pendingCheckoutRecoveryTimeout is set, call
clearTimeout(pendingCheckoutRecoveryTimeout) (or the appropriate clear function)
and null it out prior to setting pendingCheckoutRecoveryAttempt = 0 and invoking
recoverPendingSubscriptionCheckout('retry'); ensure this logic complements or
replaces stopPendingCheckoutRecovery() usage so timers are consistently cleared.

In `@src/platform/cloud/subscription/utils/subscriptionCheckoutTracker.ts`:
- Around line 69-81: The getStorage/localStorage access can throw in restricted
contexts; update getStorage() and all places that call it (notably
recordPendingSubscriptionCheckoutAttempt and
getPendingSubscriptionCheckoutAttempt, plus the blocks around lines ~169-176,
186-205, 239-243) to "fail open": wrap any globalThis.localStorage access and
calls to getItem/setItem/removeItem in try/catch and treat exceptions as
storage-unavailable (return null or no-op) rather than re-throwing; ensure
callers handle a null storage gracefully (skip persistence, return
undefined/defaults) so checkout initiation and recovery continue even when the
storage API is blocked.

In `@src/platform/cloud/subscription/utils/subscriptionCheckoutUtil.ts`:
- Around line 118-122: The call to recordPendingSubscriptionCheckoutAttempt in
subscriptionCheckoutUtil.ts is executed before the checkout navigation is
actually initiated; move the call so it only runs after the browser
navigation/tab creation is confirmed (i.e., after the window.open or the
redirect code path successfully returns a non-null Window or after
location.assign/location.href is executed). Update the checkout flow in the
function where recordPendingSubscriptionCheckoutAttempt is called (refer to the
same function name and the branch that handles window.open / redirect
initiation) to record the pending attempt only inside the success branch,
leaving the original error/fallback branches untouched; keep
subscriptionCheckoutTracker.ts behavior unchanged so that later successful
checkouts still clear the recorded attempt. Ensure you handle both popup
(window.open returning a Window object) and redirect flows consistently.

In `@src/platform/telemetry/providers/cloud/GtmTelemetryProvider.ts`:
- Around line 171-181: trackMonthlySubscriptionSucceeded clears ecommerce state
unconditionally; wrap the window.dataLayer?.push({ ecommerce: null }) call with
the same GTM-initialization guard used by pushEvent so ecommerce is only reset
when GTM is initialized. Locate trackMonthlySubscriptionSucceeded and apply the
same boolean/method check (the one pushEvent uses to bail out when GTM isn't
present, e.g., this.gtmInitialized / this.isGtmInitialized()) around the
dataLayer push so GA-only setups won't clear ecommerce without sending
subscription_success.

---

Nitpick comments:
In `@src/platform/telemetry/types.ts`:
- Around line 361-371: TelemetryEventProperties currently omits the new
SubscriptionSuccessMetadata type so queued provider helpers typed as
TelemetryEventProperties lose the intended type checking; update the
TelemetryEventProperties union to include SubscriptionSuccessMetadata (alongside
the existing SubscriptionMetadata and other variants) so payloads like
subscription success events are properly typed when passed through the provider
queue helpers; locate the TelemetryEventProperties type and add
SubscriptionSuccessMetadata to its union members to restore strict typing.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 9f8ced6d-7f40-4525-82d8-b3bdd38afcf7

📥 Commits

Reviewing files that changed from the base of the PR and between a8e1fa8 and e5c8d26.

📒 Files selected for processing (12)
  • src/platform/cloud/subscription/components/PricingTable.vue
  • src/platform/cloud/subscription/components/SubscriptionRequiredDialogContent.vue
  • src/platform/cloud/subscription/composables/useSubscription.test.ts
  • src/platform/cloud/subscription/composables/useSubscription.ts
  • src/platform/cloud/subscription/utils/subscriptionCheckoutTracker.ts
  • src/platform/cloud/subscription/utils/subscriptionCheckoutUtil.ts
  • src/platform/telemetry/TelemetryRegistry.ts
  • src/platform/telemetry/providers/cloud/GtmTelemetryProvider.test.ts
  • src/platform/telemetry/providers/cloud/GtmTelemetryProvider.ts
  • src/platform/telemetry/providers/cloud/MixpanelTelemetryProvider.ts
  • src/platform/telemetry/providers/cloud/PostHogTelemetryProvider.ts
  • src/platform/telemetry/types.ts

Comment thread src/platform/cloud/subscription/components/PricingTable.vue
Comment thread src/platform/cloud/subscription/composables/useSubscription.ts
Comment thread src/platform/cloud/subscription/utils/subscriptionCheckoutUtil.ts Outdated
Comment thread src/platform/telemetry/providers/cloud/GtmTelemetryProvider.ts
@benceruleanlu
benceruleanlu marked this pull request as ready for review April 16, 2026 03:30
@benceruleanlu
benceruleanlu requested a review from a team April 16, 2026 03:30
@dosubot dosubot Bot added the size:XL This PR changes 500-999 lines, ignoring generated files. label Apr 16, 2026

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: e5c8d26e56

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/platform/cloud/subscription/composables/useSubscription.ts
@benceruleanlu benceruleanlu added needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch cloud/1.42 labels Apr 16, 2026
@benceruleanlu

benceruleanlu commented Apr 16, 2026

Copy link
Copy Markdown
Member Author

Also addressed the unthreaded typing nit from the CodeRabbit summary: SubscriptionSuccessMetadata is now included in TelemetryEventProperties.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
src/composables/auth/useAuthActions.ts (1)

118-136: ⚠️ Potential issue | 🟠 Major

Handle the new false result in all billing-portal flows.

This wrapper now distinguishes “popup blocked” from success, but manageSubscription() in src/platform/cloud/subscription/composables/useSubscription.ts still ignores the return value and starts startCancellationWatcher() unconditionally. That leaves one portal flow behaving as if the portal opened when it did not. Either make blocked-popup failure user-visible here (toast/throw) or update the remaining callers to gate follow-up work on the returned boolean.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@src/composables/auth/useAuthActions.ts` around lines 118 - 136, The
accessBillingPortal wrapper (accessBillingPortal) can now return false when
window.open is blocked, but callers like manageSubscription in
useSubscription.ts still ignore this result and unconditionally call
startCancellationWatcher; update the flow so blocked-popup failure is handled:
either have accessBillingPortal throw or show a toast when it returns false, or
change callers (e.g., manageSubscription) to await the boolean and only call
startCancellationWatcher when it is true; modify the manageSubscription function
to check the accessBillingPortal() result before invoking
startCancellationWatcher (or propagate the error from accessBillingPortal) so
follow-up work only runs on actual success.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@src/platform/cloud/subscription/components/PricingTable.vue`:
- Around line 483-496: Before calling await accessBillingPortal(checkoutTier)
capture the plan snapshot (e.g., const openedCycle = currentBillingCycle.value
and const openedIsYearly = isYearlySubscription.value and const openedTier =
tierKey or use checkoutTier) so the state cannot drift while the portal request
is in flight; then after didOpenPortal === true call
recordPendingSubscriptionCheckoutAttempt using those captured values (use
openedCycle / openedIsYearly / openedTier and currentTierKey.value as before)
instead of rereading currentBillingCycle.value or isYearlySubscription.value so
the persisted snapshot matches the portal that was actually opened.

In `@src/platform/cloud/subscription/composables/useSubscription.ts`:
- Around line 371-375: The visibilitychange listener is currently attached to
defaultWindow which never receives that document-dispatched event; change the
listener target to the document (e.g., defaultDocument or document) in the
useEventListener call so recoverPendingSubscriptionCheckout('visibilitychange')
runs when the tab becomes visible; update the call site where
useEventListener(defaultWindow, 'visibilitychange', ...) is used and keep the
same handler referencing recoverPendingSubscriptionCheckout.

---

Outside diff comments:
In `@src/composables/auth/useAuthActions.ts`:
- Around line 118-136: The accessBillingPortal wrapper (accessBillingPortal) can
now return false when window.open is blocked, but callers like
manageSubscription in useSubscription.ts still ignore this result and
unconditionally call startCancellationWatcher; update the flow so blocked-popup
failure is handled: either have accessBillingPortal throw or show a toast when
it returns false, or change callers (e.g., manageSubscription) to await the
boolean and only call startCancellationWatcher when it is true; modify the
manageSubscription function to check the accessBillingPortal() result before
invoking startCancellationWatcher (or propagate the error from
accessBillingPortal) so follow-up work only runs on actual success.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 1d392b4b-3e4b-4764-93db-1188706f1806

📥 Commits

Reviewing files that changed from the base of the PR and between e5c8d26 and 77ccbc1.

📒 Files selected for processing (12)
  • src/composables/auth/useAuthActions.ts
  • src/platform/cloud/subscription/components/PricingTable.test.ts
  • src/platform/cloud/subscription/components/PricingTable.vue
  • src/platform/cloud/subscription/composables/useSubscription.test.ts
  • src/platform/cloud/subscription/composables/useSubscription.ts
  • src/platform/cloud/subscription/utils/subscriptionCheckoutTracker.test.ts
  • src/platform/cloud/subscription/utils/subscriptionCheckoutTracker.ts
  • src/platform/cloud/subscription/utils/subscriptionCheckoutUtil.test.ts
  • src/platform/cloud/subscription/utils/subscriptionCheckoutUtil.ts
  • src/platform/telemetry/providers/cloud/GtmTelemetryProvider.test.ts
  • src/platform/telemetry/providers/cloud/GtmTelemetryProvider.ts
  • src/platform/telemetry/types.ts
✅ Files skipped from review due to trivial changes (1)
  • src/platform/telemetry/providers/cloud/GtmTelemetryProvider.test.ts
🚧 Files skipped from review as they are similar to previous changes (4)
  • src/platform/cloud/subscription/utils/subscriptionCheckoutUtil.ts
  • src/platform/telemetry/providers/cloud/GtmTelemetryProvider.ts
  • src/platform/cloud/subscription/composables/useSubscription.test.ts
  • src/platform/cloud/subscription/utils/subscriptionCheckoutTracker.ts

Comment thread src/platform/cloud/subscription/components/PricingTable.vue
Comment thread src/platform/cloud/subscription/composables/useSubscription.ts Outdated
@benceruleanlu

Copy link
Copy Markdown
Member Author

Also addressed the outside-diff review note: manageSubscription() now checks the boolean result from accessBillingPortal() and only starts the cancellation watcher when the portal actually opens.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
src/platform/cloud/subscription/composables/useSubscription.test.ts (1)

539-574: Visibility-triggered recovery test relies on happy-dom default.

The test dispatches visibilitychange on document without mocking visibilityState. This works because happy-dom's default is 'visible', which passes the implementation's condition check. Consider adding a comment noting this assumption for future maintainers.

📝 Add clarifying comment
       )
 
+      // Note: happy-dom's document.visibilityState defaults to 'visible',
+      // so the implementation's visibility check passes without explicit mocking
       document.dispatchEvent(new Event('visibilitychange'))
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@src/platform/cloud/subscription/composables/useSubscription.test.ts` around
lines 539 - 574, The test rechecks pending checkout on document visibility but
relies on happy-dom's default document.visibilityState === 'visible'; add a
clarifying inline comment right before the document.dispatchEvent(new
Event('visibilitychange')) call in the it('rechecks pending checkout attempts
when the document becomes visible'...) test (and mention the dependency on
happy-dom's default) so future maintainers understand why visibilityState is not
explicitly mocked; reference the test helper/use hook useSubscriptionWithScope
and the PENDING_SUBSCRIPTION_CHECKOUT_STORAGE_KEY setup to indicate the context
of the visibility dispatch.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@src/platform/cloud/subscription/composables/useSubscription.test.ts`:
- Around line 539-574: The test rechecks pending checkout on document visibility
but relies on happy-dom's default document.visibilityState === 'visible'; add a
clarifying inline comment right before the document.dispatchEvent(new
Event('visibilitychange')) call in the it('rechecks pending checkout attempts
when the document becomes visible'...) test (and mention the dependency on
happy-dom's default) so future maintainers understand why visibilityState is not
explicitly mocked; reference the test helper/use hook useSubscriptionWithScope
and the PENDING_SUBSCRIPTION_CHECKOUT_STORAGE_KEY setup to indicate the context
of the visibility dispatch.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 14c27c93-ddf3-4406-8100-cd1920c7f952

📥 Commits

Reviewing files that changed from the base of the PR and between 77ccbc1 and 63f5696.

📒 Files selected for processing (4)
  • src/platform/cloud/subscription/components/PricingTable.test.ts
  • src/platform/cloud/subscription/components/PricingTable.vue
  • src/platform/cloud/subscription/composables/useSubscription.test.ts
  • src/platform/cloud/subscription/composables/useSubscription.ts
🚧 Files skipped from review as they are similar to previous changes (2)
  • src/platform/cloud/subscription/components/PricingTable.vue
  • src/platform/cloud/subscription/components/PricingTable.test.ts

@AustinMroz AustinMroz left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The proposed direction seems reasonable and has my support.

The PR itself was rather difficult to read. It's long and not a section of the code base I'm well acquainted with, but I didn't see anything wrong, let along blocking.

Comment on lines +231 to +263
if (!storage) {
return {
attempt_id: createAttemptId(),
started_at_ms: Date.now(),
tier: input.tier,
cycle: input.cycle,
checkout_type: input.checkout_type,
...(input.previous_tier ? { previous_tier: input.previous_tier } : {}),
...(input.previous_cycle ? { previous_cycle: input.previous_cycle } : {})
}
}

const attempt: PendingSubscriptionCheckoutAttempt = {
attempt_id: createAttemptId(),
started_at_ms: Date.now(),
tier: input.tier,
cycle: input.cycle,
checkout_type: input.checkout_type,
...(input.previous_tier ? { previous_tier: input.previous_tier } : {}),
...(input.previous_cycle ? { previous_cycle: input.previous_cycle } : {})
}

try {
storage.setItem(
PENDING_SUBSCRIPTION_CHECKOUT_STORAGE_KEY,
JSON.stringify(attempt)
)
} catch {
return attempt
}
dispatchPendingCheckoutChangeEvent()

return attempt

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd rather we didn't have the object creation described twice here.

Maybe:

Suggested change
if (!storage) {
return {
attempt_id: createAttemptId(),
started_at_ms: Date.now(),
tier: input.tier,
cycle: input.cycle,
checkout_type: input.checkout_type,
...(input.previous_tier ? { previous_tier: input.previous_tier } : {}),
...(input.previous_cycle ? { previous_cycle: input.previous_cycle } : {})
}
}
const attempt: PendingSubscriptionCheckoutAttempt = {
attempt_id: createAttemptId(),
started_at_ms: Date.now(),
tier: input.tier,
cycle: input.cycle,
checkout_type: input.checkout_type,
...(input.previous_tier ? { previous_tier: input.previous_tier } : {}),
...(input.previous_cycle ? { previous_cycle: input.previous_cycle } : {})
}
try {
storage.setItem(
PENDING_SUBSCRIPTION_CHECKOUT_STORAGE_KEY,
JSON.stringify(attempt)
)
} catch {
return attempt
}
dispatchPendingCheckoutChangeEvent()
return attempt
const attempt: PendingSubscriptionCheckoutAttempt = {
attempt_id: createAttemptId(),
started_at_ms: Date.now(),
tier: input.tier,
cycle: input.cycle,
checkout_type: input.checkout_type,
...(input.previous_tier ? { previous_tier: input.previous_tier } : {}),
...(input.previous_cycle ? { previous_cycle: input.previous_cycle } : {})
}
if (!storage) return attempt
try {
storage.setItem(
PENDING_SUBSCRIPTION_CHECKOUT_STORAGE_KEY,
JSON.stringify(attempt)
)
dispatchPendingCheckoutChangeEvent()
} catch { }
return attempt

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed that this is valid as a follow-up cleanup, but non-blocking for this PR. I’ve tracked it in Linear as FE-209 and assigned it to myself.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was so small I didn't even notice! I should've added it to this PR

@AustinMroz AustinMroz removed their assignment Apr 17, 2026
@benceruleanlu
benceruleanlu added this pull request to the merge queue Apr 17, 2026
Merged via the queue into main with commit ecb7fd4 Apr 17, 2026
37 checks passed
@benceruleanlu
benceruleanlu deleted the bl/subscription-success-80-20 branch April 17, 2026 23:02
@github-actions

Copy link
Copy Markdown

⚠️ Backport to cloud/1.42 failed

Reason: Merge conflicts detected during cherry-pick of ecb7fd4

📄 Conflicting files
src/platform/cloud/subscription/components/PricingTable.test.ts
src/platform/cloud/subscription/components/SubscriptionRequiredDialogContent.vue
src/platform/cloud/subscription/composables/useSubscription.ts
🤖 Prompt for AI Agents
Backport PR #11286 (https://github.com/Comfy-Org/ComfyUI_frontend/pull/11286) to cloud/1.42.
Cherry-pick merge commit ecb7fd47961e2f7924148f4072a7da3ae26cc7e5 onto new branch
backport-11286-to-cloud-1.42 from origin/cloud/1.42.
Resolve conflicts in: src/platform/cloud/subscription/components/PricingTable.test.ts src/platform/cloud/subscription/components/SubscriptionRequiredDialogContent.vue src/platform/cloud/subscription/composables/useSubscription.ts .
For test snapshots (browser_tests/**/*-snapshots/), accept PR version if
changed in original PR, else keep target. For package.json versions, keep
target branch. For pnpm-lock.yaml, regenerate with pnpm install.
Ask user for non-obvious conflicts.
Create PR titled "[backport cloud/1.42] <original title>" with label "backport".
See .github/workflows/pr-backport.yaml for workflow details.

cc @benceruleanlu

@github-actions

Copy link
Copy Markdown

⚠️ Backport to cloud/1.43 failed

Reason: Merge conflicts detected during cherry-pick of ecb7fd4

📄 Conflicting files
src/platform/cloud/subscription/components/PricingTable.test.ts
🤖 Prompt for AI Agents
Backport PR #11286 (https://github.com/Comfy-Org/ComfyUI_frontend/pull/11286) to cloud/1.43.
Cherry-pick merge commit ecb7fd47961e2f7924148f4072a7da3ae26cc7e5 onto new branch
backport-11286-to-cloud-1.43 from origin/cloud/1.43.
Resolve conflicts in: src/platform/cloud/subscription/components/PricingTable.test.ts .
For test snapshots (browser_tests/**/*-snapshots/), accept PR version if
changed in original PR, else keep target. For package.json versions, keep
target branch. For pnpm-lock.yaml, regenerate with pnpm install.
Ask user for non-obvious conflicts.
Create PR titled "[backport cloud/1.43] <original title>" with label "backport".
See .github/workflows/pr-backport.yaml for workflow details.

cc @benceruleanlu

benceruleanlu added a commit that referenced this pull request Apr 21, 2026
Improving our subscription detection system. Optimal will have to come
after BE team brings personal billing to cloud repo off of comfy api.

- replace the dialog-local focus poller with a frontend checkout tracker
stored in `localStorage`
- recover pending subscription checkouts from app boot plus global page
lifecycle (`pageshow`, `visibilitychange`) with bounded retries only
while an attempt is pending
- emit `subscription_success` through GTM with frontend-derived metadata
once subscription state reaches the expected target tier/cycle

This is the frontend-only 80/20 path. It fixes the brittle "old tab must
regain focus" behavior without adding new backend endpoints or backend
event storage. The browser records one pending checkout attempt when
checkout is opened, and any returning cloud tab can recover it later by
comparing current subscription state against the expected target plan.

- browser-scoped, not backend-authoritative
- no server transaction id
- scheduled downgrades through the billing portal are intentionally not
inferred as immediate success events
- still best-effort compared with the backend outbox/WebSocket approach

- `pnpm exec vitest run
src/platform/cloud/subscription/composables/useSubscription.test.ts
src/platform/telemetry/providers/cloud/GtmTelemetryProvider.test.ts`
- `pnpm typecheck`

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-11286-feat-add-frontend-subscription-success-recovery-3436d73d3650814d9f74c89e6926aa84)
by [Unito](https://www.unito.io)
benceruleanlu added a commit that referenced this pull request Apr 21, 2026
#11476)

Backports #11286

## Summary
- backport frontend subscription success recovery to `cloud/1.43`

## Backport Delta
- `18ef350db` is the cherry-pick of main's `ecb7fd479` from #11286
- the backport-only review surface is intentionally small:
- `src/platform/cloud/subscription/components/PricingTable.test.ts`:
adapt the assertions to `cloud/1.43`'s existing `mount`-based test
harness
- `src/platform/cloud/subscription/constants/tierPricing.ts`: one-line
type-only export (`type SubscriptionTier` -> `export type
SubscriptionTier`)
- runtime review should therefore mostly follow #11286 rather than
treating this as a novel branch-specific implementation

## Why
The automated backport failed because `cloud/1.43` had drifted in
`PricingTable.test.ts`. The runtime code itself cherry-picked cleanly;
the only non-test branch-local change was the small `SubscriptionTier`
export needed to match the API surface expected by the backported code.

## Validation
- `pnpm exec vitest run
src/platform/cloud/subscription/composables/useSubscription.test.ts
src/platform/cloud/subscription/components/PricingTable.test.ts
src/platform/cloud/subscription/utils/subscriptionCheckoutUtil.test.ts
src/platform/telemetry/providers/cloud/GtmTelemetryProvider.test.ts`
- `pnpm typecheck`

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-11476-backport-cloud-1-43-feat-add-frontend-subscription-success-recovery-3486d73d3650813ebc87c162a8aa759e)
by [Unito](https://www.unito.io)
snomiao pushed a commit that referenced this pull request Apr 22, 2026
Improving our subscription detection system. Optimal will have to come
after BE team brings personal billing to cloud repo off of comfy api.

## Summary
- replace the dialog-local focus poller with a frontend checkout tracker
stored in `localStorage`
- recover pending subscription checkouts from app boot plus global page
lifecycle (`pageshow`, `visibilitychange`) with bounded retries only
while an attempt is pending
- emit `subscription_success` through GTM with frontend-derived metadata
once subscription state reaches the expected target tier/cycle

## Why
This is the frontend-only 80/20 path. It fixes the brittle "old tab must
regain focus" behavior without adding new backend endpoints or backend
event storage. The browser records one pending checkout attempt when
checkout is opened, and any returning cloud tab can recover it later by
comparing current subscription state against the expected target plan.

## Tradeoffs
- browser-scoped, not backend-authoritative
- no server transaction id
- scheduled downgrades through the billing portal are intentionally not
inferred as immediate success events
- still best-effort compared with the backend outbox/WebSocket approach

## Validation
- `pnpm exec vitest run
src/platform/cloud/subscription/composables/useSubscription.test.ts
src/platform/telemetry/providers/cloud/GtmTelemetryProvider.test.ts`
- `pnpm typecheck`

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-11286-feat-add-frontend-subscription-success-recovery-3436d73d3650814d9f74c89e6926aa84)
by [Unito](https://www.unito.io)
snomiao pushed a commit that referenced this pull request Apr 24, 2026
Improving our subscription detection system. Optimal will have to come
after BE team brings personal billing to cloud repo off of comfy api.

## Summary
- replace the dialog-local focus poller with a frontend checkout tracker
stored in `localStorage`
- recover pending subscription checkouts from app boot plus global page
lifecycle (`pageshow`, `visibilitychange`) with bounded retries only
while an attempt is pending
- emit `subscription_success` through GTM with frontend-derived metadata
once subscription state reaches the expected target tier/cycle

## Why
This is the frontend-only 80/20 path. It fixes the brittle "old tab must
regain focus" behavior without adding new backend endpoints or backend
event storage. The browser records one pending checkout attempt when
checkout is opened, and any returning cloud tab can recover it later by
comparing current subscription state against the expected target plan.

## Tradeoffs
- browser-scoped, not backend-authoritative
- no server transaction id
- scheduled downgrades through the billing portal are intentionally not
inferred as immediate success events
- still best-effort compared with the backend outbox/WebSocket approach

## Validation
- `pnpm exec vitest run
src/platform/cloud/subscription/composables/useSubscription.test.ts
src/platform/telemetry/providers/cloud/GtmTelemetryProvider.test.ts`
- `pnpm typecheck`

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-11286-feat-add-frontend-subscription-success-recovery-3436d73d3650814d9f74c89e6926aa84)
by [Unito](https://www.unito.io)
dante01yoon pushed a commit that referenced this pull request Jul 27, 2026
Improving our subscription detection system. Optimal will have to come
after BE team brings personal billing to cloud repo off of comfy api.

## Summary
- replace the dialog-local focus poller with a frontend checkout tracker
stored in `localStorage`
- recover pending subscription checkouts from app boot plus global page
lifecycle (`pageshow`, `visibilitychange`) with bounded retries only
while an attempt is pending
- emit `subscription_success` through GTM with frontend-derived metadata
once subscription state reaches the expected target tier/cycle

## Why
This is the frontend-only 80/20 path. It fixes the brittle "old tab must
regain focus" behavior without adding new backend endpoints or backend
event storage. The browser records one pending checkout attempt when
checkout is opened, and any returning cloud tab can recover it later by
comparing current subscription state against the expected target plan.

## Tradeoffs
- browser-scoped, not backend-authoritative
- no server transaction id
- scheduled downgrades through the billing portal are intentionally not
inferred as immediate success events
- still best-effort compared with the backend outbox/WebSocket approach

## Validation
- `pnpm exec vitest run
src/platform/cloud/subscription/composables/useSubscription.test.ts
src/platform/telemetry/providers/cloud/GtmTelemetryProvider.test.ts`
- `pnpm typecheck`

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-11286-feat-add-frontend-subscription-success-recovery-3436d73d3650814d9f74c89e6926aa84)
by [Unito](https://www.unito.io)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch size:XL This PR changes 500-999 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants