diff --git a/AGENT_MONITOR_PLAN.md b/AGENT_MONITOR_PLAN.md new file mode 100644 index 00000000..64cd6093 --- /dev/null +++ b/AGENT_MONITOR_PLAN.md @@ -0,0 +1,397 @@ +# Agent Monitor and Loop Correlation Plan + +Status: Revised after adversarial review +Updated: 2026-07-27 +Scope: Cooperative Codex, Claude, Grok, and Antigravity activity attribution +without giving workers Burnlist lifecycle authority. + +## Bottom Line + +Agent Monitor is cooperative telemetry, not a forensic audit trail. + +- The orchestrator keeps the Burnlist skill and owns `loop next`, provider + launch, supervision, and `loop submit`. +- Workers receive provider-neutral task prompts and run no Burnlist lifecycle + commands. Installed native hooks may still invoke a bounded Burnlist + observation helper on their behalf. +- A worker can disable hooks, edit a project hook, fabricate hook input, expose + its environment, or avoid observation. Monitor data therefore cannot prove + that a reviewer was read-only, that a worker was honest, or that an outcome + is valid. +- Monitor activity may explain cooperative work. It may never complete an + item, approve a review, choose an edge, satisfy a gate, or become proof. + +The preferred correlation mechanism is direct host-side session binding. A +single-use environment token is admitted only as a per-provider fallback after +live contract probes show that the host cannot set or learn that provider's +session identity directly. + +## Grounded Current State + +The repository currently: + +- discovers Codex, Claude, Grok, and Antigravity transcripts; +- installs native hooks only for Codex and Claude; +- accepts only Codex and Claude in Loop hook normalization; +- binds a session when that same session runs `burnlist loop next|claim`; +- gives an externally launched worker only `task.prompt`, so the current + heuristic can bind the orchestrator rather than the worker. + +The isolated live harness at +`testingharnessing/agent-monitor-provider-probe/` confirms: + +| Provider | Proven strategy | Exact identity evidence | Hook constraint | +| --- | --- | --- | --- | +| Claude | `direct-set` | flag = stdout = hooks = transcript | project config | +| Grok | `direct-set` | flag = stdout = hooks = session dir | also loads Claude hooks | +| Codex | `direct-learn` | first JSON event = hooks = transcript | project trust | +| Antigravity | token candidate | hook conversation = transcript | trust + `--add-dir` | + +All four inherited the exact launch environment. Codex, Claude, and Grok +executed a harmless `pwd` with matching pre/post tool identity and neutral hook +output. Antigravity exposes `conversationId` at the passive `PreInvocation` +hook and keeps it through post-tool/invocation/stop events. It does not expose +a host-selected or structured-stdout identity, so its fallback remains +conditional on a parent/subagent race proof. + +Grok executed both its native `.grok` hook and the compatible +`.claude/settings.json` hook. Provider adapters must recognize Grok-native +payload/environment on the nominal Claude path, no-op there, and dedupe the +native observation. + +## Threat Model + +Correlation protects against accidental cross-binding among honest concurrent +workers. It does not defend against a worker controlling its own process tree +or repository hook files. + +Consequences: + +- Session attribution is labelled `cooperative`. +- Hook absence, tampering, timeout, trust failure, identity uncertainty, or + binding drift yields `unattributed`; Burnlist never guesses. +- Observation is excluded from semantic authority and read-only-review proof. +- A fallback token's entropy, expiry, and one-time use prevent accidental + reuse. They do not authenticate a hostile worker that can read the token and + invoke the observation helper first. + +## Correlation Strategy Order + +### 1. Direct host binding + +Use direct binding whenever the host can choose or learn the real provider +session: + +```text +burnlist loop observe bind --provider --session +``` + +The command validates the live Run/node/attempt and repository, stores only a +provider-qualified session digest, and never adds authority to the session. + +- Claude and Grok: generate a UUID before launch, pass the provider's native + session flag, then bind that exact UUID. +- Codex: if the initial structured launch event exposes the session ID, bind + immediately after reading that event. +- Antigravity did not expose a structured launch identity in the tested CLI. + Keep direct binding available if a future version adds one. + +No secret, hook-consumption race, or correlation expiry is needed on this +path. + +### 2. Single-use launch handoff + +Use this only for Antigravity after its remaining parent/subagent race probe, +or for a future provider proven unable to support direct binding: + +```text +burnlist loop observe prepare --provider +``` + +Burnlist returns a random, single-use observation token in host-only metadata. +It stores only a digest bound to the live Run/node/attempt/claim/invocation, +repository, provider, and an expiry derived from measured provider startup. +The host passes the token through a dedicated environment variable. + +The earliest verified parent-session hook consumes the token and binds its +provider/session digest. If the provider cannot distinguish the intended parent +before a subagent can race it, that provider is ineligible for token binding. + +Safety does not rely on secrecy after launch. Burnlist keeps the raw token out +of prompts, argv, events, snapshots, and semantic inputs; performs exact-value +redaction while the value is available; and assumes transformed disclosure is +still possible. + +### 3. Explicit degraded mode + +If neither strategy is reliable, the worker still runs and Agent Monitor may +show repository-scoped activity with: + +```text +binding: unattributed +reason: unsupported | hooks-disabled | project-untrusted | pending | + expired | identity-mismatch | ambiguous +``` + +There is no mid-run recovery unless the host later learns the exact session and +uses direct binding. Reissuing a token to an already-running process is not +claimed to work. + +## Migration Without an Attribution Gap + +Do not delete the only currently working path before its replacement is +proven. + +1. Add direct binding and optional handoff alongside the existing heuristic. +2. Mark a context `external-binding-pending` before provider launch. The old + claim-command heuristic must ignore that context, preventing it from binding + the orchestrator first. +3. Prove direct/fallback binding in the deterministic end-to-end matrix. +4. Remove automatic claim-command binding at the release gate. +5. If same-session execution remains useful, reintroduce it only through an + explicit `--executor current-session` mode that is mutually exclusive with + external binding. + +## Authority and Runtime Invariants + +- Bindings and hooks write ignored, bounded observation state only. They never + write the Run journal, claims, lifecycle state, registry, outcomes, edges, or + gates. +- Raw session IDs and fallback tokens never enter published Loop or Oven data. +- Provider payloads are bounded and normalized before shared Loop code. +- Repository containment and one live Run/node/attempt are required. +- No matching by newest transcript, timestamp proximity, PID, process order, + singleton claim, or repository exclusivity. +- Hook failures are quiet and fail open with respect to provider execution. +- Hook output is behaviorally neutral: it never approves, denies, rewrites, or + forces a permission prompt. If a neutral pre-tool response is unavailable, + use a passive lifecycle/invocation/post-tool hook. +- The synchronous hook path never waits indefinitely for the repository state + lock and never performs transcript scans or Run-store walks while holding + that lock. Lock contention returns a neutral no-op. +- Hook latency has an explicit tested budget derived from provider hook + timeouts measured in B1. +- Zero runtime dependencies, Node 18 compatibility, atomic writes, symlink + containment, and the 400-line new-file limit remain mandatory. + +## Ordered Implementation + +### B1 — Decide the binding strategy per provider + +Files/search: +installed provider help/docs, sanitized launch/hook fixtures, +`agent-monitor-sources.mjs`, `hook-context.mjs`, and provider setup references. + +For each provider, prove in this order: + +1. Can the host set a new session identity before launch? +2. If not, can it read the identity from structured stdout, a stable launch + API, or a deterministic local record before meaningful work? +3. Does the hook process inherit the exact launch environment? +4. What is the earliest parent-session event, and can a subagent precede it? +5. What hook stdout is behaviorally neutral? +6. Does hook identity exactly equal Agent Monitor transcript identity? +7. What are project-trust behavior and measured startup-to-first-hook latency? + +Produce a checked-in capability matrix selecting exactly one strategy: +`direct-set`, `direct-learn`, `token-fallback`, or `unattributed`. + +Live status: the first seven checks are complete for Codex, Claude, and Grok. +Antigravity has exact identity, environment, trust, workspace, neutral passive +hook, and latency evidence; only the parent/subagent race check remains before +selecting `token-fallback`. +Done when: +no runtime/token/config design depends on an unverified provider behavior. +Validate: +sanitized fixtures plus opt-in isolated live probes. Paid/network launches are +manual evidence, never default CI. + +### B2 — Add provider-neutral direct binding + +Files/search: +Loop controller/host-task surfaces, a small observation-binding module, +hook-context storage, CLI parsing/help, and focused tests. +Action: + +- Add `loop observe bind` as a host-only observational command. +- Validate exact active Run/node/attempt/repository/provider before writing. +- Hash the provider/session identity immediately; persist no raw identity. +- Make retries idempotent and conflicting second identities fail closed. +- Keep the binding unrepresentable in semantic result/submit contracts. +- Add `external-binding-pending` fencing for the migration heuristic. +Done when: +two honest concurrent workers bind to their own nodes without hooks consuming a +secret, and malicious observation fields cannot mutate Run state. +Validate: +concurrency, replay, wrong provider/repository, attempt drift, expired claim, +conflicting session, crash-cut, and semantic-boundary tests. + +### B3 — Make the hook path bounded and provider-canonical + +Files/search: +`loop-hook-cli.mjs`, `hook-context.mjs`, `hook-observation.mjs`, and new small +provider adapter modules. +Action: + +- Define one bounded canonical event shape. +- Implement pure Codex, Claude, Grok, and Antigravity adapters. +- Normalize Grok `sessionId`, lower-snake events, `toolUseId`, + `run_terminal_command`, and `toolInput.command`. +- Normalize Antigravity `conversationId`, explicit configured event, + `workspacePaths`, `stepIdx`, `run_command`, and + `toolCall.args.CommandLine`. +- Reject ambiguous Antigravity workspaces and configured/raw event mismatch. +- Replace blocking lock behavior with timeout-and-skip or an equivalent + non-blocking observation path. Do not read the Run store inside a contended + hook lock. +- Record hook duration in tests and enforce the B1-derived budget. +Done when: +malformed, slow, contended, or unsupported input produces a prompt-neutral +no-op and existing Codex/Claude fixtures remain green. +Validate: +adapter, hostile-input, path-containment, idempotent-cursor, lock-contention, +latency, and Run-state-unchanged tests. + +### B4 — Admit a token fallback only where B1 requires it +Action: + +- Skip this item entirely if every target provider supports direct binding. +- Add a versioned, digested, one-use handoff record only for eligible provider + rows. +- Derive expiry and trust preflight from measured B1 evidence. +- Consume at the earliest proven parent event. +- Redact the exact raw value until consumption; document that encoding or + deliberate exfiltration remains possible. +- Surface pending, expired, untrusted, raced, and unattributed states. +- Preserve direct late binding as the only recovery for a running process. +Done when: +the fallback isolates honest concurrent workers without being described as +authentication or audit evidence. +Validate: +environment inheritance, parent/subagent race, replay, expiry, slow startup, +trust delay, attempt drift, wrong provider/repository, and disclosure tests. + +### B5 — Ship a Codex/Claude correlation slice +Action: + +- Integrate the B1-selected direct/fallback strategies for the two existing + hook providers. +- Keep current hook install/uninstall behavior byte-compatible. +- Run deterministic prepare → launch identity → bind → activity → submit flows. +- Only after the replacement matrix passes, remove the automatic + claim-command heuristic at the release gate. +Done when: +existing users retain attribution without an intermediate broken release and +externally launched Codex/Claude workers bind correctly. +Validate: +existing hook transaction tests, E2E maker/reviewer/failure/retry tests, fast +verification, then the full release gate. + +### B6 — Add opt-in Grok and Antigravity observation + +Files/search: +provider-specific hook config codecs, hook CLI/status, activity projection, +dashboard types/Loop graph, Agent Monitor producer, and terminal projection. +Action: + +- Grok: own `.grok/hooks/burnlist.json`; report project trust separately. +- Antigravity: own one exact named entry in `.agents/hooks.json`; preserve its + distinct top-level hook grammar. +- Launch Antigravity headlessly with explicit `--add-dir `; otherwise it + exposes no workspace and does not load the project hook in the tested CLI. +- Detect `GROK_SESSION_ID`/Grok camelCase payloads on Claude-compatible hooks, + return a neutral no-op there, and dedupe the native Grok observation. +- Require explicit `--agent grok`, `--agent agy`, or a named list initially. +- Install Loop observation only. Do not imply Streaming Diff support. +- Preflight every selected config before writing; use atomic multi-file + rollback and exact ownership removal. +- Extend provider unions and show cooperative binding state consistently in web + and terminal views. +Done when: +install/status/uninstall are symmetric, foreign config is preserved, and both +providers pass the exact identity-to-transcript proof or degrade visibly to +unattributed. +Validate: +config ownership, malformed/partial config, tracked/untracked, symlink, +rollback-cut, project-trust, provider identity, and paired web/TUI tests. + +### B7 — Simplify orchestration and documentation + +Files/search: +host task presentation, Burnlist skill, host execution, Agent Monitor, +installation, provider setup, README, and CLI help. +Action: + +- Keep the skill and semantic commands with the orchestrator. +- Give workers only task prompts; explain that passive hook helpers may execute. +- Pass host-selected identities or fallback launch metadata outside prompts. +- Label all attribution cooperative and observational. +- Explain unattributed reasons, trust preflight, expiry, attempt drift, and the + limited direct-binding recovery. +- Keep Streaming Diff Codex/Claude-only. +Done when: +documentation cannot be read as claiming audit, read-only, proof, or semantic +authority from Monitor data. +Validate: +prompt snapshots reject skills, lifecycle commands, tokens, claims, graph +mechanics, telemetry instructions, and provider nicknames; documentation +commands pass. + +### B8 — Final matrix and release gate +Action: + +- Exercise direct and admitted fallback strategies with deterministic fake + provider processes. +- Cover maker, read-only reviewer, failure, retry, concurrent branches, + subagents, lock contention, slow startup, trust failure, and attempt drift. +- Verify no raw identity/token reaches prompts, canonical journals, events, or + snapshots through ordinary capture. Explicitly retain deliberate transformed + exfiltration as a non-goal. +- Add every new test to the fast verification manifest. +- Run focused tests during development and `npm run verify` once as the release + gate. +Done when: +each provider has a proven strategy or an honest unattributed state, hook +latency is bounded, automatic heuristic binding is gone, and full verification +passes. + +## Acceptance Matrix + +Every provider row records: + +- strategy: direct-set, direct-learn, token-fallback, or unattributed; +- identity source and transcript-identity equality; +- cooperative label; +- exact repository and live Run/node/attempt; +- concurrent-worker isolation; +- parent/subagent behavior; +- trust and startup behavior; +- hook neutrality and latency budget; +- install/status/uninstall ownership; +- web and terminal rendering; +- no semantic Run mutation from observations; +- explicit degraded reason and recovery, if any. + +## Non-Goals + +- Forensic identity, tamper resistance, or proof that a worker was read-only. +- Semantic outcomes, graph transitions, gates, or completion from Monitor data. +- Worker installation or use of the Burnlist skill. +- Grok/Antigravity Streaming Diff parity. +- A Burnlist-owned provider daemon or universal launcher. +- Preventing a worker from disabling hooks or deliberately disclosing, + transforming, or fabricating observation data. +- Inferring identity from timing, newest files, process ordering, or singleton + state. +- Runtime dependencies or executable Oven definitions. + +## Settled Review Decisions + +- Direct host-side session binding is preferred; token handoff is fallback + only. +- Grok and Antigravity hook installation is opt-in initially. +- Repository-scoped unattributed activity is an acceptable degraded mode when + its reason is visible. +- Streaming Diff remains Codex/Claude-only until separately proven. +- Codex/Claude replacement ships and proves migration before Grok/Antigravity + expand the hook surface. diff --git a/README.md b/README.md index e1b9e954..d7547bae 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,12 @@ notes/burnlists/ `burnlist.md` is the canonical shrinking queue. `goal.md` holds the stable contract, and `completed.md` can hold optional human-readable history. Ready work moves to `inprogress` before execution and to `completed` after the active queue is empty. +An optional top-level `Default Oven: ` line selects the first detail +view opened from both the Web dashboard and `burnlist -i`. If it is absent, or +the named Oven is unavailable, both surfaces open Checklist. The setting only +chooses the landing lens; it does not change canonical progress or prevent +switching to another compatible Oven. + An active item is completed and validated before it leaves the checklist. The agent appends a terse completion record, deletes the active item, then validates the updated Burnlist. The lifecycle folder and `burnlist.md` remain the source of truth. One skill owns Burnlist creation, hardening, execution, and maintenance. The project owns implementation and verification. diff --git a/console-oven-behavior-policy.json b/audits/oven/console-oven-behavior-policy.json similarity index 94% rename from console-oven-behavior-policy.json rename to audits/oven/console-oven-behavior-policy.json index de8e52d7..b2bc14b2 100644 --- a/console-oven-behavior-policy.json +++ b/audits/oven/console-oven-behavior-policy.json @@ -2,8 +2,8 @@ "schema": "burnlist-console-oven-behavior-policy@2", "capabilities": [ { - "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:08345a6407cfa04e", - "fingerprint": "08345a6407cfa04e4ac9b8f984df7b1e9cc61b2cd0c8c13ad97a154788c6a9d8", + "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", + "fingerprint": "0e91c0434dab74c6d8099893af17ae51154dda739455b280188621ce4a0fb170", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -18,8 +18,8 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", - "fingerprint": "0e91c0434dab74c6d8099893af17ae51154dda739455b280188621ce4a0fb170", + "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:28670509b2644dea", + "fingerprint": "28670509b2644deaf3297d9c0bf527a346510bc42d2e2dc52000ae0a604b8498", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -129,6 +129,22 @@ "condition": "terminal runtime must implement dashboard/src/App.tsx:App" } }, + { + "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:869312be2760fd24", + "fingerprint": "869312be2760fd2482c9aae8ff851f2eb0fbf7dbef8a917d795e204fda903e75", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/App.tsx", + "export": "App", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/App.tsx:App" + } + }, { "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:879c4c24e5fd2fba", "fingerprint": "879c4c24e5fd2fbaa2ec3d0ef72164470cecdcf5a2dc03d1f9a1419d764bc0bd", @@ -273,6 +289,22 @@ "condition": "terminal runtime must implement dashboard/src/App.tsx:App" } }, + { + "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:db078c47db3e50c3", + "fingerprint": "db078c47db3e50c3be160d3fc7c88302b949cd37a92c87b57ad15d850a2e4144", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/App.tsx", + "export": "App", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/App.tsx:App" + } + }, { "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:e5e69239b717d7ed", "fingerprint": "e5e69239b717d7ed083f57f7581e511c4d236ce9c4e5342c9b275a3ec42bf3a5", @@ -354,8 +386,8 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:38edea39933b2588", - "fingerprint": "38edea39933b2588b65a548304bff69cf0dbd74f774aadef440485873bdb47db", + "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e", + "fingerprint": "62769dae15dabf3eb85e55aaaa7917e2737fc2f629738d87b7b8d72d1660d932", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -370,7 +402,7 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e", + "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e:1", "fingerprint": "62769dae15dabf3eb85e55aaaa7917e2737fc2f629738d87b7b8d72d1660d932", "classification": "blocker-to-migrate", "semanticOwner": { @@ -386,8 +418,8 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e:1", - "fingerprint": "62769dae15dabf3eb85e55aaaa7917e2737fc2f629738d87b7b8d72d1660d932", + "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:662fae22a9c098ce", + "fingerprint": "662fae22a9c098ce7dfd39d7a5733a921a871489de4300f1b21ee6a59216f31f", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -402,8 +434,8 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:662fae22a9c098ce", - "fingerprint": "662fae22a9c098ce7dfd39d7a5733a921a871489de4300f1b21ee6a59216f31f", + "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:6ea5a02132549b79", + "fingerprint": "6ea5a02132549b79b75583eeb9bce2e8c31ec98790221e606b37f92cf5da0862", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -418,8 +450,8 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", - "fingerprint": "b67210fdce841e44b3cd523e0c3ecc3dbe2e908d9fa2b9c9dad297789908d9c0", + "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:ac413be8f7156f5a", + "fingerprint": "ac413be8f7156f5a6171e93d1fd20a65fb0f115d9d0a79ce027e55a064da1e21", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -434,8 +466,8 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:c0f673b28a57b32f", - "fingerprint": "c0f673b28a57b32f71c2e3d5d0b1b7617eefa5c57915b4ef24a36f151840630c", + "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", + "fingerprint": "b67210fdce841e44b3cd523e0c3ecc3dbe2e908d9fa2b9c9dad297789908d9c0", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -482,8 +514,40 @@ } }, { - "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:IfStatement:0950e6df7876e854", - "fingerprint": "0950e6df7876e8548fc83a4cf4a5f5cb6ec76fb1cd493dc6b2311a3af6ab9ed5", + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:09ecd391a41039f5", + "fingerprint": "09ecd391a41039f5f452d26c0c35de8f3b4a6884ebcbc54362781ff43d93cece", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", + "export": "CustomOvenRuntime", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime" + } + }, + { + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:26457aa74ab00355", + "fingerprint": "26457aa74ab00355475b3e579719b4547b0a9ebc7f13a79a1bf6c996e5f5634f", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", + "export": "CustomOvenRuntime", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime" + } + }, + { + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:cf12e3a823885859", + "fingerprint": "cf12e3a823885859d909bc4e67b945ec25e4314d6bf126612fe9c1f2bab298de", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -530,8 +594,8 @@ } }, { - "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:314348123bf12d0b", - "fingerprint": "314348123bf12d0b01319f2c9709220864f9097bc661f8acf600c0f63cf49bc2", + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:34fa1aff9e378f1e", + "fingerprint": "34fa1aff9e378f1e94d37e23eb95a025dddf34895c19dc37c3269912023776cd", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -546,8 +610,8 @@ } }, { - "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:e1457c38a8dc8ad8", - "fingerprint": "e1457c38a8dc8ad8efaa8f6e9326454acab1e50e8bedd5a6e32f54b4b47a50d1", + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:35b0b741e18369cd", + "fingerprint": "35b0b741e18369cdc1e83485335eb999ed2c5de8374d045438a891a637149ef7", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -562,8 +626,8 @@ } }, { - "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:ecc4476a0741b0dd", - "fingerprint": "ecc4476a0741b0dd393993ebf4ac05c85faddd793649918112d9f9b50e6d5173", + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:639201685d8fe452", + "fingerprint": "639201685d8fe452844f0218d7d2a9110686853e073d838e35640e87acdfe1ad", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -753,6 +817,22 @@ "condition": "terminal runtime must implement dashboard/src/components/CustomOvenView/CustomOvenView.tsx:module" } }, + { + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:module:LogicalExpression:fec06bb1848c20a0", + "fingerprint": "fec06bb1848c20a01cab9ba8d73f68b59f12d90b7852bd9d01c2bfcc2324f23f", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/components/CustomOvenView/CustomOvenView.tsx:module" + } + }, { "id": "branch:dashboard/src/components/DifferentialTestingOven/DifferentialTestingOven.tsx:module:ConditionalExpression:fb8af5b091d0b677", "fingerprint": "fb8af5b091d0b67747685c07475570138da6091f4b3e04d31866229b252a96e1", @@ -1233,6 +1313,70 @@ "condition": "terminal runtime must implement dashboard/src/hooks/useOvenDefinition.ts:useOvenDefinition" } }, + { + "id": "branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:ConditionalExpression:2cf6dc473679913c", + "fingerprint": "2cf6dc473679913cad96527132e3a43b62f02184455820e9a0c2d5bef102a696", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/hrefs.ts", + "export": "agentMonitorSelection", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/hrefs.ts:agentMonitorSelection" + } + }, + { + "id": "branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:83d6cd7e558f513e", + "fingerprint": "83d6cd7e558f513e812e28f71cea95fcb3a6bb680963eac056a58412f4d04e99", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/hrefs.ts", + "export": "agentMonitorSelection", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/hrefs.ts:agentMonitorSelection" + } + }, + { + "id": "branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:9d1b7f9c32e0502c", + "fingerprint": "9d1b7f9c32e0502cedbbdd6d42cdb25504ce8a87b90d27c8d881dcbe01e0d074", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/hrefs.ts", + "export": "agentMonitorSelection", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/hrefs.ts:agentMonitorSelection" + } + }, + { + "id": "branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:dc8f4f096cae1e89", + "fingerprint": "dc8f4f096cae1e89a18f506ebf6a851d94576662becb0a0daef53cc28b798576", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/hrefs.ts", + "export": "agentMonitorSelection", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/hrefs.ts:agentMonitorSelection" + } + }, { "id": "branch:dashboard/src/lib/hrefs.ts:burnlistHref:ConditionalExpression:20611b6b08a46bac", "fingerprint": "20611b6b08a46bac1d94fcce7380e1cdc36032f66dba1ba05e7f032c423a6fb1", @@ -1522,8 +1666,8 @@ } }, { - "id": "branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:83e728cef8897dcd", - "fingerprint": "83e728cef8897dcda2050459dc2e70858c2ad9c0e0d9f8eb03ffbb9b4ab5867c", + "id": "branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:26cbb2fb634679a0", + "fingerprint": "26cbb2fb634679a0c1865a08c928a0d5dd7cbcdfbd9248acc919346a9a5bfe8c", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1762,8 +1906,8 @@ } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:2d0d8a0556db1aa4", - "fingerprint": "2d0d8a0556db1aa4cb5036c28dd86ab8450020ee2409622400ccfd1a752b2259", + "id": "branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:8e2406cc9247eb34", + "fingerprint": "8e2406cc9247eb34f831b65afc89a4ce1fd2aef2f08b581d58e53175ae78bb9e", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1778,8 +1922,8 @@ } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:3d0b44c435f0a42b", - "fingerprint": "3d0b44c435f0a42b45ff78da1f72f9e3a9e9265d9bd5d3bba64ebe548015adf4", + "id": "branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", + "fingerprint": "a069f64c73d7a307c0df5508c92ad648fa90c4c15b19337613750ee92b179f34", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1794,8 +1938,8 @@ } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", - "fingerprint": "a069f64c73d7a307c0df5508c92ad648fa90c4c15b19337613750ee92b179f34", + "id": "branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:d74ac9f13debb02e", + "fingerprint": "d74ac9f13debb02ecc414b4e5d8960ed472eb5056c0b094a87c5db68c838080b", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1985,6 +2129,22 @@ "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:module" } }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:b6c40e5cf6100d60", + "fingerprint": "b6c40e5cf6100d60eae7a128219fc085a80faec412c3f170b478ee6631f63f03", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:module" + } + }, { "id": "branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:bb5e2a54a028afc8", "fingerprint": "bb5e2a54a028afc8bf24a43c8c5c353694f8fb4440e39e24e680377fdf5cd000", @@ -2290,67 +2450,919 @@ } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:c6278027f91d5742", - "fingerprint": "c6278027f91d57426b3810136fc6a9fcd55cd584193562a7bca4cae458cd3e4f", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:c6278027f91d5742", + "fingerprint": "c6278027f91d57426b3810136fc6a9fcd55cd584193562a7bca4cae458cd3e4f", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:d1bc221bd65d1daf", + "fingerprint": "d1bc221bd65d1dafdb92f2f74f90e80c649f99c871d2b76217b95f5cd026e9c7", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:d215fd53248d72ed", + "fingerprint": "d215fd53248d72ed23992f16856fd756153dff0b941784d16b5d34bd92a37352", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:repoOvenHref:ConditionalExpression:822b606e69383ea0", + "fingerprint": "822b606e69383ea067b1ffa4f3f2c5579b67b400b7fc766c90cd0f8542b41923", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "repoOvenHref", + "version": "burnlist-console-oven-behavior@1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:repoOvenHref" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:ConditionalExpression:b6f78ae235bd59a5", + "fingerprint": "b6f78ae235bd59a5a60b830bddcf514e46536a7be1e980e0d15ba4deb1eec005", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "AgentMonitorActivityChart", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:LogicalExpression:9cd8c9fbbdea0f72", + "fingerprint": "9cd8c9fbbdea0f72b1c4f58908044ca48ad9d543381a0363b3f7350b2ad74b36", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "AgentMonitorActivityChart", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:37b90dc946c05849", + "fingerprint": "37b90dc946c0584952ab9043eb34656a32acb47e2bddeec836c25444898fe01b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:bd2fe94f3ec64d89", + "fingerprint": "bd2fe94f3ec64d89e205d90d253f74ece27afd251e0e43d376f3b3690db965d9", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:8a02a37013ec004d", + "fingerprint": "8a02a37013ec004d2eb88e1da5c1fb41236c261438e2464b50080a975cf5392e", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:b8a00595f6c90c2d", + "fingerprint": "b8a00595f6c90c2d58b323227dd0fa16c13bd2df27e00ae9a8822c2f0d07e379", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:c5fc51c3d051eb7b", + "fingerprint": "c5fc51c3d051eb7bfb8a21ff3fa6b928bcc9ab1ab54a53023257f641de08decb", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:df92876c3244fe99", + "fingerprint": "df92876c3244fe99feb209a70fbe8cf3d5e4e179c66f3f4f1b67e3476ee2e4ff", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:1537d76156c784c4", + "fingerprint": "1537d76156c784c4cd01bf33ca55c6efc73ac874c7fb9d9a26e2347ca3cc3058", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:2daff146483aa3ed", + "fingerprint": "2daff146483aa3eda0c8cc7396317da187032ce78f010eee939b377714bde82a", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:41b5494efc170bac", + "fingerprint": "41b5494efc170bac8c45d8dc1ba06ce32703587782b8a372bdb558524043686c", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:572a5e1546e4c285", + "fingerprint": "572a5e1546e4c28506544515fd8a58ad08e72cb2164d39a94a55d12e329557f4", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:e1324f975c7e1c55", + "fingerprint": "e1324f975c7e1c55c18b4b245f8de08f84d2173f07facdba1c0a9336002acce4", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:f237de9b55a180cf", + "fingerprint": "f237de9b55a180cf832c6f01d2a6848b5bf13312ce4fc319d0ddbf6fdc48955d", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:02e8b0a59519d332", + "fingerprint": "02e8b0a59519d3328e829ecbcf443e2d9771a58218337e257d9be669f2d3aa20", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:e2f711770a78ee3c", + "fingerprint": "e2f711770a78ee3ca0ee236477e0fe35452ca342114e434a34ab46bddf23e1a7", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:61b80ed4f8b7138b", + "fingerprint": "61b80ed4f8b7138b6ce695ed9ecba5d49ed97dff3a02fa8c520ab1a348b7f3dd", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:8933ea0d43090455", + "fingerprint": "8933ea0d430904550b9237bb86809ee799558e6f474d113850bbace76f8d5448", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:e55163fe990a35b8", + "fingerprint": "e55163fe990a35b805c2febe29de0014b26b77dc0655f9e742a426b246320b63", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:8e582ac01f0a4722", + "fingerprint": "8e582ac01f0a4722ec1bdbddd15f923b97be7f5970d48f02fe729eaa7c954952", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:b8730e972bd990f9", + "fingerprint": "b8730e972bd990f9fb60751a576fa2f91f4310a92a4440bcac9630db4158a002", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:bd87e77e5bdcca76", + "fingerprint": "bd87e77e5bdcca76aeb0b8739bc3bee58db0016f945afd6b288a57430d9f4534", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:f92405e0bbb96d56", + "fingerprint": "f92405e0bbb96d56002d40c43343dbd99e1453f8e22e243a38262f4b6ac169dd", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:ConditionalExpression:f5d5a951381e35d2", + "fingerprint": "f5d5a951381e35d2561d57e9147a17b50201b48962f51bbc9cb47223ddb1bf2d", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:5d0f63658a8a3daa", + "fingerprint": "5d0f63658a8a3daaa627977c1402573dc59c6492e4d010256de509958e9a15b2", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:a40200dac7d42ba7", + "fingerprint": "a40200dac7d42ba7c765ee8ece3b9f77bb2404f85e8e2a58d217820f36e5d8c0", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:c2173f9b14a3fd10", + "fingerprint": "c2173f9b14a3fd10d14e5fb5ec67db44bfdf6ed1b288e1446f882a86c2af8122", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:d94410752185574f", + "fingerprint": "d94410752185574f217f5d39129b9fd69ccdc9f7c691e483f1e026aeef756c78", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:4ae31ffff8c4b4f3", + "fingerprint": "4ae31ffff8c4b4f33ee4f05b0fbf1f4b0fe4672e6ad61f8fa6ac5e434c72ecd5", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:7c02222e4afb2871", + "fingerprint": "7c02222e4afb28717728a7b3fca9649e0187ec58395be1188388d6c2978e0b35", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:855cf3c21f18a38a", + "fingerprint": "855cf3c21f18a38a4b3d33b00b80b92a64d46f3a1b518ac15f4b9bde842bf442", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:8ff36defcde3a6bf", + "fingerprint": "8ff36defcde3a6bfcbabf8188bd570858c14cbdc95adf81c1e5994953edebb4e", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:945aaf2d9c633122", + "fingerprint": "945aaf2d9c63312207e2f69a4ca446027616e72b1315e483ed518e8ccf754b9a", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:98554e201591453c", + "fingerprint": "98554e201591453c9b2802ce6cc62f03ec32932266f47b2b0ce6d2dc622d5136", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:b5a0348134741b50", + "fingerprint": "b5a0348134741b5027c22f80c26aa5bf39aa9d6e2514112355ed16948324fe56", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:d561245c56bd4d59", + "fingerprint": "d561245c56bd4d59d8494253ca64c920c0164f27479971ce493e8dc5bc89456e", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:ebbb3f793e157af6", + "fingerprint": "ebbb3f793e157af6116123f8e4dc9f6515b8fb8fcb934fc295903eea324b521b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:007847839945ed50", + "fingerprint": "007847839945ed502cac03cc978011f440d4c2374d3368e3789b07f627cc8baf", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:06b20eb8edee8716", + "fingerprint": "06b20eb8edee87169fb80e3a1ea11c9a2a15b07e6e638085511b959399fba9fa", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:13592c46eb7bdc56", + "fingerprint": "13592c46eb7bdc56dfc1a2bc4d45ef5a4bdb9dc931cdd7304c13c4a1efa5484b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:1f8bc3232d470327", + "fingerprint": "1f8bc3232d47032799d940755b4ca68b35bab5923f7b235d97f5234e0a0b48a9", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:3977a717ee26b4c0", + "fingerprint": "3977a717ee26b4c0bb2bd651f99dda74c06acec9ae507573fee361be798bc94c", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:44dcfe328c3e1826", + "fingerprint": "44dcfe328c3e1826aa37c4a49686c5bf4877192c52bd7b3f039d0b98cb72b01b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:5f3c7ddd3c9e5299", + "fingerprint": "5f3c7ddd3c9e52991b41ce1627ca33648b5bc48a0df9a88f56e7033a06a480e1", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:6be06653e9876d6e", + "fingerprint": "6be06653e9876d6ea92a41dfb98b0327067cd4f6b9b9e963362cf3cf84f96c71", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:9287495dc2447ef3", + "fingerprint": "9287495dc2447ef32961113cb30226e8010bcf8e812f828d7cae6af6b8be63d8", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:94cafd2f1f3e1c75", + "fingerprint": "94cafd2f1f3e1c753df6f9ce76c81eedeffac9ed8785339bf37f3ed2eaae0e15", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:98293e4922127ad1", + "fingerprint": "98293e4922127ad14153bf4465a59a7d2b58612c72094d6fa72a24d56a8a8d2f", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:c47b24d096b3b9a7", + "fingerprint": "c47b24d096b3b9a7e91779a7472237f930a17e8a12c1dc792a718cf1429fc2cf", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d17b28be779777b8", + "fingerprint": "d17b28be779777b85291fdcc057dd1aaae9d9c86a86cf1c63d47aed819294bdd", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d3c4e956c1948467", + "fingerprint": "d3c4e956c19484678c2137827d18f1e2599248e0775afe4dfcd121a707bc8a39", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:da64481645c2b4f6", + "fingerprint": "da64481645c2b4f69ea8b311f33e628fcc0fa5fb989418d94273cca9f3499aea", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:df82132ba73ce4e6", + "fingerprint": "df82132ba73ce4e6836c01b6584a4315d4df088ce465e081198bbf81ae158013", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:f7da58c441dab76a", + "fingerprint": "f7da58c441dab76a02f8c637e8c79a1002f705cce799a7b2c5a3e831a0ee479c", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:11eb1346655210ad", + "fingerprint": "11eb1346655210add1115d8a440f544328b82a4fda8db9e621821cea6c1daaf7", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:22b3c14914342b73", + "fingerprint": "22b3c14914342b73074a5c379547340069daf6672b71ba248492e8a7e242a846", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:2d2c6d08639f12cd", + "fingerprint": "2d2c6d08639f12cdf9663da5a2dcb29b51683871a973266ea9f3b10e3546f976", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:3fccfc6c117112bb", + "fingerprint": "3fccfc6c117112bb815dbe001c0ec05266dadbfb20389d4a2eb7c95093987a9e", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:48515b2a8e3fb0be", + "fingerprint": "48515b2a8e3fb0bee754f5f5abd556af1e5e2c12d027498eed60813d808f4acd", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:5b629e3f0402920d", + "fingerprint": "5b629e3f0402920d652c2d39d9626dd01f52e67bcfb3ddfe15fabf7db663d37a", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:705b20be0817e601", + "fingerprint": "705b20be0817e601c1068639e074aa2461eac28f3ed2df02b4ddfa10db02f0ce", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:74b4829187561854", + "fingerprint": "74b4829187561854edb56f9950b7772c00acab326f9404071c7499770ee4238c", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:7c776ac90ed6c801", + "fingerprint": "7c776ac90ed6c8016a64c0c25d286c4c95891d25565e4301edd331534e76a3fe", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:803ff61e52d117a8", + "fingerprint": "803ff61e52d117a899ace17c94d115f984922d23a61de4f0f6a9acf245487344", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:9536c93d464ca696", + "fingerprint": "9536c93d464ca696240e88914677afd709f69c9c4e962915ae2f49089365296f", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:a4057d42367bac6b", + "fingerprint": "a4057d42367bac6ba45fdb6591a43e54b9cbb89bdc3b0f31f6de9bc2494ec4d9", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:aa5e8006f832cd2d", + "fingerprint": "aa5e8006f832cd2d68e6d486444fdd140ccddb0b77426e0bc44f50bc88cec9fd", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:b607cbb3ca271db0", + "fingerprint": "b607cbb3ca271db0c5e10918b3189757bed25a0198772cc6ec4f3e1dad5b881b", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:d1bc221bd65d1daf", - "fingerprint": "d1bc221bd65d1dafdb92f2f74f90e80c649f99c871d2b76217b95f5cd026e9c7", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:c5ebcdcf4164d255", + "fingerprint": "c5ebcdcf4164d255fc87126cb87aae233f4bb3bd484a8e712b7f36bbb923e5e9", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:d215fd53248d72ed", - "fingerprint": "d215fd53248d72ed23992f16856fd756153dff0b941784d16b5d34bd92a37352", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:dbe2cff14f0a7242", + "fingerprint": "dbe2cff14f0a724228e8dfd5d61b3b6721bb6de6ead72bef7beb9b3f39337d57", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:repoOvenHref:ConditionalExpression:822b606e69383ea0", - "fingerprint": "822b606e69383ea067b1ffa4f3f2c5579b67b400b7fc766c90cd0f8542b41923", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:f7531bbd732c637e", + "fingerprint": "f7531bbd732c637e7fe26337e05a5565606c804e55334ae4d94d14892ca45e9f", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "repoOvenHref", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:repoOvenHref" } }, { @@ -2665,6 +3677,42 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:2e07ddfa96aab527", + "fingerprint": "2e07ddfa96aab52767d63664b5a8ec98e9d0877f08325fd971b2e89eb461eeb7", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace", + "path": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx", + "export": "ChecklistWorkspace", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:3f3652279171acff", + "fingerprint": "3f3652279171acfff1411b296d526f2a19cf3ad26997fe4dbce84b017c6e2a9b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace", + "path": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx", + "export": "ChecklistWorkspace", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:4102ac1c73e332c8", + "fingerprint": "4102ac1c73e332c8478df39803e1e9637f565bfcb95021c1d2d5d7ec432735a2", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace", + "path": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx", + "export": "ChecklistWorkspace", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:module:ConditionalExpression:00e9febb41fb9293", "fingerprint": "00e9febb41fb9293514dd4935d76dfc3f5d9b86a6908dda94e2d672e5057b3dc", @@ -14198,8 +15246,44 @@ } }, { - "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:5dbc7cb76ae26938", - "fingerprint": "5dbc7cb76ae26938882433514518a70d837938f3a454b66e0293f735ab16a08e", + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:139ce3999bd34b95", + "fingerprint": "139ce3999bd34b95d1d20af5c2126c7c8ec2f04c41d22c4788c596a80d340024", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/FeedList/FeedList.tsx:FeedList", + "path": "dashboard/src/oven/FeedList/FeedList.tsx", + "export": "FeedList", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:25c2bd2ab09cf3b6", + "fingerprint": "25c2bd2ab09cf3b6fd72d3e6482daa95ea1563ee86016d6b47135a6a89a6e23d", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/FeedList/FeedList.tsx:FeedList", + "path": "dashboard/src/oven/FeedList/FeedList.tsx", + "export": "FeedList", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:8778c3eaee02a865", + "fingerprint": "8778c3eaee02a86553b058e3f07a8496d79b0a4ffc757bcf3ef9129e79a94f45", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/FeedList/FeedList.tsx:FeedList", + "path": "dashboard/src/oven/FeedList/FeedList.tsx", + "export": "FeedList", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:1ca2c32c22777c90", + "fingerprint": "1ca2c32c22777c90066520b204d14560fd1285e9f76421b80804ebcd209371d0", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -14210,8 +15294,8 @@ } }, { - "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:622a561a4a95288b", - "fingerprint": "622a561a4a95288b1a1cfc9dc10769035d3c962f19e29725039ac8012786eb29", + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:616f67096c39e513", + "fingerprint": "616f67096c39e51368283664c953e7e3d571f463fb2e480686989d596c8aadf8", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -14222,8 +15306,8 @@ } }, { - "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:cd1bf78e83e8998c", - "fingerprint": "cd1bf78e83e8998cd5099cf1467acadf508463aa04768fae4a88790e7456123d", + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:61c56e7fe806d325", + "fingerprint": "61c56e7fe806d325d3ba2b2028acde8b26309cdb6ff16f6aad93053bdaa561e6", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -14246,8 +15330,8 @@ } }, { - "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:8b6418830b656eff", - "fingerprint": "8b6418830b656eff0209968dc6976886749182f15b6b3d9a49811bb1fc7e419d", + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:aa474a2a03bfe367", + "fingerprint": "aa474a2a03bfe367f6e611a6b0a4f58f94424011bb99ac18f96b8def99d93e3a", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -15517,6 +16601,90 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:39eeec3add1ac5ec", + "fingerprint": "39eeec3add1ac5eca9b65a3f40331c548e41a36f5767f34115a084e00528aaa0", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:3d39402c33fe783a", + "fingerprint": "3d39402c33fe783aea12a853001db01ba2204f94ffe59beff3c125bfb0000f0c", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:437fa8c05ae07c3b", + "fingerprint": "437fa8c05ae07c3bb63fc637ce4d3905f6a5fa8bf024b07664e4610c5fe2c6e9", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:28cbf958e8e92b0d", + "fingerprint": "28cbf958e8e92b0d93c9c34b93c1369978df056b10d173f5dcc6ac4102445456", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:b34d755a3d9d24a9", + "fingerprint": "b34d755a3d9d24a97fad75cb98e916a03e04fac79562312033b948c02f9f842b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d1fa5fe08a7dc0c9", + "fingerprint": "d1fa5fe08a7dc0c9abab868076a125280c8582444e68a0332f458e06a439d1ff", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d940a4b58d02a9e7", + "fingerprint": "d940a4b58d02a9e7702fc8c268999f20fa41cecb2278f34455ab421744013ce7", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/LogTable/LogTable.tsx:LogTable:ConditionalExpression:4e3dabf51cd1fc67", "fingerprint": "4e3dabf51cd1fc67a15543f55ea4b439c5b42d4ccf995074ddde5ccc49253829", @@ -18565,6 +19733,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter:ConditionalExpression:2bc22669a5696d0b", + "fingerprint": "2bc22669a5696d0bd76c7b03fe3e7dc87fce78436cef81c3e6a322061af30335", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter", + "path": "dashboard/src/oven/runtime/control-adapters.tsx", + "export": "PaginationAdapter", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter:ConditionalExpression:7cc43de1322ef602", "fingerprint": "7cc43de1322ef602cf344244126052653e6b05e136eecf357d3fa11c5bc76d56", @@ -19345,18 +20525,6 @@ "version": "burnlist-console-oven-behavior@1" } }, - { - "id": "branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:2ce3337742db6ccc", - "fingerprint": "2ce3337742db6ccc23e5f082bc3936a2e5ab9159a3d4959962910bb611cb66ee", - "classification": "closed-shared-adapter", - "semanticOwner": { - "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps", - "path": "dashboard/src/oven/runtime/log-table-adapter.ts", - "export": "buildLogTableProps", - "version": "burnlist-console-oven-behavior@1" - } - }, { "id": "branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:3ae1acde645995de", "fingerprint": "3ae1acde645995de093518cef12c7682b1a77169b7973c7ab3be724ef705de7f", @@ -19417,6 +20585,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:cf811942c1b5778c", + "fingerprint": "cf811942c1b5778c5f559018b73df3320f1f996c0a122759258076836cdf41d3", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps", + "path": "dashboard/src/oven/runtime/log-table-adapter.ts", + "export": "buildLogTableProps", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:0217fcbd88b18e00", "fingerprint": "0217fcbd88b18e00353c321aa5c69500de6907ddf36126401994248372763fe4", @@ -19430,8 +20610,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2f2c1c0c8395b9d4", - "fingerprint": "2f2c1c0c8395b9d4b685fe92ccd6355562b266be5dfaed2afe2b96597f4b83f2", + "id": "branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2e8e45f47d7d9a90", + "fingerprint": "2e8e45f47d7d9a90658273972e2a68a30e8e20a013ce78fe088659314e0ef7b8", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -19969,6 +21149,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:0b57ea3c6689d2f6", + "fingerprint": "0b57ea3c6689d2f64ac89d3245a7f98b6a0a0c034ac6cb64d590ba0ae983a7a3", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:0ca4cc9617a9103e", "fingerprint": "0ca4cc9617a9103efb0b67f5d3fca6d03545e407bfd96d07cca422b034136da7", @@ -20029,6 +21221,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:2ed2c44628ac80dd", + "fingerprint": "2ed2c44628ac80ddde377c25262969fcc3e850e5f8db95ecead4551b73274f08", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:30486bd775f6ef05", "fingerprint": "30486bd775f6ef05132eb1d60eebc9af533f94384f656140aa4d67393d97fa9c", @@ -20113,6 +21317,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3d88b2c3266a4540", + "fingerprint": "3d88b2c3266a45404116745a2f613f39e3cd44291492f743888c0d1bc6d9beed", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3e553dc40a179dec", "fingerprint": "3e553dc40a179dec4cf45e9bf36cb17433d47c909433dd20eaca5f6d28dd9fe4", @@ -20138,8 +21354,44 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:434999089d3570cb", - "fingerprint": "434999089d3570cbf79520fde6397f2f34c72d9ba03a2832e19ac2d36f7cc48c", + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:434999089d3570cb", + "fingerprint": "434999089d3570cbf79520fde6397f2f34c72d9ba03a2832e19ac2d36f7cc48c", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:437845007141ef03", + "fingerprint": "437845007141ef03bd144e988a294cce7f59454dba02459daf1c5ecd1fdd8b54", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:44da8e01fb10b6d0", + "fingerprint": "44da8e01fb10b6d0412b9d5fbe9fedd8d8631f5dcc9b44151e5ed00c3377b604", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:46da48f5b29785d7", + "fingerprint": "46da48f5b29785d731b26731c7cb1c984f6225a67c185bc149d1f35e577c2b94", "classification": "validated-ir", "semanticOwner": { "ownerType": "generic-lowerer", @@ -20150,8 +21402,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:437845007141ef03", - "fingerprint": "437845007141ef03bd144e988a294cce7f59454dba02459daf1c5ecd1fdd8b54", + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4b78900ec1977efb", + "fingerprint": "4b78900ec1977efb3870b3579b5d3ad3bb023cf91bd6ade6a3f156611639ea91", "classification": "validated-ir", "semanticOwner": { "ownerType": "generic-lowerer", @@ -20162,8 +21414,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:44da8e01fb10b6d0", - "fingerprint": "44da8e01fb10b6d0412b9d5fbe9fedd8d8631f5dcc9b44151e5ed00c3377b604", + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4c5fbf04d3060e3b", + "fingerprint": "4c5fbf04d3060e3b452ec40ad46b48dd1629e257127ddf92c8388944b7192433", "classification": "validated-ir", "semanticOwner": { "ownerType": "generic-lowerer", @@ -20174,8 +21426,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:46da48f5b29785d7", - "fingerprint": "46da48f5b29785d731b26731c7cb1c984f6225a67c185bc149d1f35e577c2b94", + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d3e797d424b4eaa", + "fingerprint": "4d3e797d424b4eaadb60451a5159c7854af37e18065ef080e7656554110cdfa5", "classification": "validated-ir", "semanticOwner": { "ownerType": "generic-lowerer", @@ -20186,8 +21438,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4c5fbf04d3060e3b", - "fingerprint": "4c5fbf04d3060e3b452ec40ad46b48dd1629e257127ddf92c8388944b7192433", + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d68ad0c6bd0f2f1", + "fingerprint": "4d68ad0c6bd0f2f102723b16d6d1488bb5b3e9ac941f84de18353bdc3abcbb61", "classification": "validated-ir", "semanticOwner": { "ownerType": "generic-lowerer", @@ -20497,6 +21749,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:a29f0b9a5972e081", + "fingerprint": "a29f0b9a5972e081ce1beeb3edbf03449e29a8650d3f929da74da03a15230874", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:a53d23e370714496", "fingerprint": "a53d23e370714496550b52c66fa162946f0dc28eb24e02d12c844bc2e494c787", @@ -20581,6 +21845,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:bfb49f6bdb565ae1", + "fingerprint": "bfb49f6bdb565ae1afcd9c0c270d7dd100677293c879388e453734cc0e1053a5", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:c0fa3117f93e9928", "fingerprint": "c0fa3117f93e9928e46f21fc188da7df00d3ef8ec240dfc9e3dc6d3426359761", @@ -20677,6 +21953,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:fdfaa51bcb5f8827", + "fingerprint": "fdfaa51bcb5f882709d9746666d50b0b8d77148dace03e2df25dc5ef242d5f98", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:40b2646caf6e7a41", "fingerprint": "40b2646caf6e7a418ba083ef704ad11ad0a29bbaff483db8905c4ab6e9e1e8a1", @@ -20737,6 +22025,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:6bf505f9c18df2dc", + "fingerprint": "6bf505f9c18df2dce5e16de759d45f93c7e1ade218d66e5c70650620851caf03", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:8224dbd215dfe1e9", "fingerprint": "8224dbd215dfe1e9178bf7d3967b9d94f8f7328a9e3a7442687d799c2f4d969a", @@ -21158,8 +22458,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:81c8ea6d16cba209", - "fingerprint": "81c8ea6d16cba2095ce4a70f345ab9fa7930791d18eac4e475b48f1dad70e733", + "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:ConditionalExpression:b034468485727f9f", + "fingerprint": "b034468485727f9f82a9b3dcf76aca1e02e2760e4b331298d94232725be8650e", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -21170,8 +22470,20 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:b5bedeb603105334", - "fingerprint": "b5bedeb60310533418cfd773e7a08e97c434159585f7b33a6d22cd9c90703d24", + "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:74155c24d82b03e3", + "fingerprint": "74155c24d82b03e37922d65ec2c14a055585a08492392819ddb405c665b014e8", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot", + "path": "dashboard/src/oven/runtime/oven-live-data.ts", + "export": "subscribeOvenRuntimeSnapshot", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:81c8ea6d16cba209", + "fingerprint": "81c8ea6d16cba2095ce4a70f345ab9fa7930791d18eac4e475b48f1dad70e733", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -21182,8 +22494,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:bb9a8596ffcc3709", - "fingerprint": "bb9a8596ffcc370916e78ded085f4ecb48caa5af49f253c06555698109d52399", + "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:b5bedeb603105334", + "fingerprint": "b5bedeb60310533418cfd773e7a08e97c434159585f7b33a6d22cd9c90703d24", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -21757,6 +23069,30 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:55a8e91b26703b67", + "fingerprint": "55a8e91b26703b67a872fe8cbf2ed06e6c48daceac5ad3046ff1e959d7fef26f", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:module", + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:5847c052fe52b42c", + "fingerprint": "5847c052fe52b42cd3e2768dd44e6a8014c2f2a4f067830de7ecbe2e3d066c61", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:module", + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:6f73b4d6eda24324", "fingerprint": "6f73b4d6eda243247e8c821886191880a726655678adbc1d6e4d183410788b7e", @@ -21902,8 +23238,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:c88dfad89abd1ea6", - "fingerprint": "c88dfad89abd1ea6b9241aef9065ec3c154a8643aa188121c52f66d2b9af6cbd", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:e5d4d9fd380832ab", + "fingerprint": "e5d4d9fd380832abcc049095882641133cc317be7ae65901657cc9f671c30031", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -21914,8 +23250,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:e5d4d9fd380832ab", - "fingerprint": "e5d4d9fd380832abcc049095882641133cc317be7ae65901657cc9f671c30031", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f4682df3b7988e28", + "fingerprint": "f4682df3b7988e28cf7fbc264d43a5141e01dce8b0a288c9957ca531654015b9", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -21926,8 +23262,20 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f4682df3b7988e28", - "fingerprint": "f4682df3b7988e28cf7fbc264d43a5141e01dce8b0a288c9957ca531654015b9", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f5d95943521c70c9", + "fingerprint": "f5d95943521c70c9e125a20c69155268f35444894007bc545139def23ba22c9a", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:module", + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:fb7bc6db5a947968", + "fingerprint": "fb7bc6db5a94796840f6c5aba1625e568581672c123beb9a3a99313f1b969a94", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -22141,6 +23489,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:4ce0e95591d8166e", + "fingerprint": "4ce0e95591d8166ef95d97c5da0cb6f1242b80ea773347dbcd249bd1a110ad78", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:module", + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:5e50bd428023e404", "fingerprint": "5e50bd428023e40432868d458a32543874ddad4db1ba452630d738f22f8dbe14", @@ -22214,8 +23574,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:887d32479e5ac373", - "fingerprint": "887d32479e5ac3734db272f0577d6efacfda22a76d2c8f1cc6320c67a18a99c9", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:8d47622d288b55a5", + "fingerprint": "8d47622d288b55a57fe42ae5e762e92d6a0d3d08297708112866c204db96b93e", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -22226,8 +23586,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:8d47622d288b55a5", - "fingerprint": "8d47622d288b55a57fe42ae5e762e92d6a0d3d08297708112866c204db96b93e", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9495f48fd3f4ea0c", + "fingerprint": "9495f48fd3f4ea0c52778c921750e1d9c1bc50fa0809f9bcc12dc320b65de084", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -22238,8 +23598,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9495f48fd3f4ea0c", - "fingerprint": "9495f48fd3f4ea0c52778c921750e1d9c1bc50fa0809f9bcc12dc320b65de084", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:996a10f85826063b", + "fingerprint": "996a10f85826063b3373765eb2d1ef290eb689be6f4922eaf79c91818ea8048e", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -22250,8 +23610,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:996a10f85826063b", - "fingerprint": "996a10f85826063b3373765eb2d1ef290eb689be6f4922eaf79c91818ea8048e", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9993c329adc6195b", + "fingerprint": "9993c329adc6195bf4c5a85b7256f9cc442b74b2f6fbd7c0234b8ea5e7b47537", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -22525,6 +23885,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:b11770b9497382fe", + "fingerprint": "b11770b9497382fe94737e5f9b33b87544e1dd39beec8cabd2de286815c692be", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer", + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "ovenReducer", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:d82752f2718126bb", "fingerprint": "d82752f2718126bbabec1472991439dc2187612391cfb6235ab5cb2ba4f2b92d", @@ -22562,8 +23934,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:a929af546604bfaa", - "fingerprint": "a929af546604bfaa3964fbbce84202d315af17827eddc446c74ddd6d9b199ed2", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:b012bd24bbf5651b", + "fingerprint": "b012bd24bbf5651b51b46e78641eb63688395f0a4a5f9ddb3eaf4e9e7707dc0f", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -22729,6 +24101,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:69da497c6deca4cf", + "fingerprint": "69da497c6deca4cfa669dcc665ba0792e0fec03dabec3eea67246ee6ab0dcd89", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer", + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "ovenReducer", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:6bdd93adccb94f8e", "fingerprint": "6bdd93adccb94f8e1eaf9fdaa135879b195f6796eea9a5a31b6e0ad5b066c7f3", @@ -22742,8 +24126,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", - "fingerprint": "a1fecaf9c99c7303a8546286e404724414220f9d9313b55ed432f7a86e1b76e6", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:848fce5a596f1aff", + "fingerprint": "848fce5a596f1aff5e8b87a5b23888efab9ffb3a7e6df9a884b4097f8533af87", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -22754,8 +24138,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a3098ec8e3405f82", - "fingerprint": "a3098ec8e3405f82676b172411999c4d8238fcf98b3c6ab8a97428f8f040c5ee", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", + "fingerprint": "a1fecaf9c99c7303a8546286e404724414220f9d9313b55ed432f7a86e1b76e6", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -22826,20 +24210,32 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:ea8520efb21e83f8", - "fingerprint": "ea8520efb21e83f85291f80ef2d3514340ff5d94c53a539f8ba6bc1ac0999627", + "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", + "fingerprint": "12aec929a10149521af5df56472dc7fe398875ba1f6e70bb5a717c8b519f00da", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer", - "path": "dashboard/src/oven/runtime/oven-reducer.ts", - "export": "ovenReducer", + "ownerTarget": "dashboard/src/oven/runtime/oven-selectors.ts:module", + "path": "dashboard/src/oven/runtime/oven-selectors.ts", + "export": "module", "version": "burnlist-console-oven-behavior@1" } }, { - "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", - "fingerprint": "12aec929a10149521af5df56472dc7fe398875ba1f6e70bb5a717c8b519f00da", + "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:6efb650d1c22a884", + "fingerprint": "6efb650d1c22a884a853cc702f6d86ad102f307826dc7a808795c83936b8db18", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-selectors.ts:module", + "path": "dashboard/src/oven/runtime/oven-selectors.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:74f2f8fa5a7c4245", + "fingerprint": "74f2f8fa5a7c42456f106e306cbffb812bcc1702fab18f0080492af9b39b3ff9", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -22861,6 +24257,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:IfStatement:ae216ce246107522", + "fingerprint": "ae216ce246107522e5b02ea57617cd1d6bcf2505d78c38ac17de8e3288943b7b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-selectors.ts:module", + "path": "dashboard/src/oven/runtime/oven-selectors.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:725ed4374f5bbb1e", "fingerprint": "725ed4374f5bbb1e6695c70e7be12960a29e82194b8a1d03df0ffd73cc799c64", @@ -22885,6 +24293,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:ca102f31e96ee334", + "fingerprint": "ca102f31e96ee3346358f993e226496ab9f4c8ac4d7d516064a8db188860648c", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-selectors.ts:module", + "path": "dashboard/src/oven/runtime/oven-selectors.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:selectCollection:ConditionalExpression:4f993687f4a8f9ba", "fingerprint": "4f993687f4a8f9ba6c11293afeb160a3fd7aca829e595d2672bc6263314bc38b", @@ -23005,6 +24425,42 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:052617db78e67b3e", + "fingerprint": "052617db78e67b3e25bb0bb5d4ac4a7378b2a4ad6eeea631446e19450aa927a7", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "collectionItemIdentity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:b4524a7cc10fa52e", + "fingerprint": "b4524a7cc10fa52e863a06a9d2f871a55ea680f563ca5ffe39f0ce6aae054c16", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "collectionItemIdentity", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:LogicalExpression:25f15f29fc33edd8", + "fingerprint": "25f15f29fc33edd8c1e6c7e7fc2cc68f1987e68d1b664e09c0db9716f5015a4d", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "collectionItemIdentity", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenDocument:LogicalExpression:0217fcbd88b18e00", "fingerprint": "0217fcbd88b18e00353c321aa5c69500de6907ddf36126401994248372763fe4", @@ -23029,6 +24485,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:IfStatement:12957f0abdd8346b", + "fingerprint": "12957f0abdd8346b60a429549a716473e67cc124678e6b817173e2f1e95fd5a4", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "isStaticOvenNode", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:0217fcbd88b18e00", "fingerprint": "0217fcbd88b18e00353c321aa5c69500de6907ddf36126401994248372763fe4", @@ -23041,6 +24509,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:15b3c0b681f25783", + "fingerprint": "15b3c0b681f25783d84e3a4a5eb322edfd2c349a934cba7de315963340bfe2ad", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "isStaticOvenNode", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:1c52a102506149b3", "fingerprint": "1c52a102506149b31d316c806a52311c1bdb271b6fcb594e8fec88327c43fc6e", @@ -23426,8 +24906,20 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:79db6ba09035000d", - "fingerprint": "79db6ba09035000de9b3d94b9aed4f1340e5f281eb70ca7aa30e9a42b20425f7", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:79db6ba09035000d", + "fingerprint": "79db6ba09035000de9b3d94b9aed4f1340e5f281eb70ca7aa30e9a42b20425f7", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:7f382864dfd4c1e1", + "fingerprint": "7f382864dfd4c1e1fa3641a1c0fe56fb85679951b6d907d61a67b109b3092755", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23438,7 +24930,7 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:7f382864dfd4c1e1", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:7f382864dfd4c1e1:1", "fingerprint": "7f382864dfd4c1e1fa3641a1c0fe56fb85679951b6d907d61a67b109b3092755", "classification": "closed-shared-adapter", "semanticOwner": { @@ -23450,8 +24942,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:97ee8237c820c21d", - "fingerprint": "97ee8237c820c21da325b35d2951fdd042abc410213cf0130e8d053a0e271b35", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:88a71376bd465bae", + "fingerprint": "88a71376bd465baebbcb047962d8a128cf07377959de89e6aa1fa8e4936659d6", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23462,8 +24954,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:ad933f06fec6dd22", - "fingerprint": "ad933f06fec6dd2206ec9b9d4d334b860e4e7c22a3b9032ee8d88a6eb4c23f3b", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:97ee8237c820c21d", + "fingerprint": "97ee8237c820c21da325b35d2951fdd042abc410213cf0130e8d053a0e271b35", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23474,8 +24966,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:b7bc1169a2494266", - "fingerprint": "b7bc1169a2494266ba8fab2ea1d7117249055b68fd1c6a783f304ba3b1d26347", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:ad933f06fec6dd22", + "fingerprint": "ad933f06fec6dd2206ec9b9d4d334b860e4e7c22a3b9032ee8d88a6eb4c23f3b", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23498,8 +24990,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:12d28ad7a93133d3", - "fingerprint": "12d28ad7a93133d3d64b2f56a553c021056b1337a0ec708490c6f3712ecaa974", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1469e399f6ad7bc6", + "fingerprint": "1469e399f6ad7bc67f0d19fdc1369c62184740f1dd65abc37e0c2b4331f28e3e", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23510,20 +25002,20 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1469e399f6ad7bc6", - "fingerprint": "1469e399f6ad7bc67f0d19fdc1369c62184740f1dd65abc37e0c2b4331f28e3e", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1b146cc70f927c38", + "fingerprint": "1b146cc70f927c383e3c5036212ca98ba1c7e48162010842f6d4ebf4296b1e2c", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "ownerTarget": "ChecklistWidgetAdapter", "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "version": "burnlist-console-oven-behavior@1" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:20585287984dd9c1", - "fingerprint": "20585287984dd9c1811d5c9aa51d3e21a5ad4f69dfd489e18ff3e8bbf65a013a", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:2069312d4c66853f", + "fingerprint": "2069312d4c66853fd2004ce2a3127c322dc9dd5f24d9d603cff2f8665249aac3", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23558,32 +25050,32 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5152465376a9c911", - "fingerprint": "5152465376a9c9114826b4c7e2eb3409a1b1d25cf6d56369894f8a0aae5fb147", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:3bffa6f115e3f864", + "fingerprint": "3bffa6f115e3f864cea230e4bec6f6c3865ab9e6478216106c03396ceb63fb50", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "ModelLabView", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "version": "burnlist-console-oven-behavior@1" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:597b0aae4af34d5e", - "fingerprint": "597b0aae4af34d5e6ea453963b35421b10504eab972ee2a34b640a5d615299b5", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5152465376a9c911", + "fingerprint": "5152465376a9c9114826b4c7e2eb3409a1b1d25cf6d56369894f8a0aae5fb147", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "ownerTarget": "ModelLabView", "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "version": "burnlist-console-oven-behavior@1" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5e7967abefb3bff9", - "fingerprint": "5e7967abefb3bff99f7e0b75dd2b9f3fff2a2d93d056443b4643c91588d2e3a5", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:597b0aae4af34d5e", + "fingerprint": "597b0aae4af34d5e6ea453963b35421b10504eab972ee2a34b640a5d615299b5", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23606,20 +25098,20 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:8bcb1228c6d36d4c", - "fingerprint": "8bcb1228c6d36d4cf5bca470d5a7b14762351c4ea6358e50a33afb37c88b1181", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", + "fingerprint": "9213842995d448cb3211650e95e0fc4f0ff1dd41f180549595f6436e3246c064", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "ChecklistWidgetAdapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "version": "burnlist-console-oven-behavior@1" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", - "fingerprint": "9213842995d448cb3211650e95e0fc4f0ff1dd41f180549595f6436e3246c064", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:a4870193de2d95be", + "fingerprint": "a4870193de2d95be50ab9fb8929f044a48a725689c44d1a4e5b8b4d91a5df74e", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23641,6 +25133,18 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:ccfdba79ee088030", + "fingerprint": "ccfdba79ee08803084e86ed60425ead53315dc9996f6515ac878734cc5b90ecb", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:f4e0aadda15a4518", "fingerprint": "f4e0aadda15a451829446891d53b67dd57f9ed7112749db3a292b3027af08488", @@ -23737,6 +25241,30 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:15b3c0b681f25783", + "fingerprint": "15b3c0b681f25783d84e3a4a5eb322edfd2c349a934cba7de315963340bfe2ad", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:1f60a643f29f64f0", + "fingerprint": "1f60a643f29f64f093d6901c976438f5be9e7d4b2daf223364e6e90c9f22223b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:5486e403476c5820", "fingerprint": "5486e403476c5820f8eff1a7f1281108cabbfa591cfe23973af1f08b4c40e361", @@ -23798,8 +25326,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", - "fingerprint": "fbf6d4564b415e0ce6a790dc9cd940eb2c704e483152a5ce7d483e3e0d483638", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:f2dba9684502413d", + "fingerprint": "f2dba9684502413d92a3c066180cfb1a13d11c7b2c27d769448258fd647a9e36", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23810,44 +25338,32 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572", - "fingerprint": "27b040b99478757271792668447a6cfc9bc285c3fea8ac1a5521996872f2a5f9", - "classification": "closed-shared-adapter", - "semanticOwner": { - "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime", - "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "export": "OvenRuntime", - "version": "burnlist-console-oven-behavior@1" - } - }, - { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572:1", - "fingerprint": "27b040b99478757271792668447a6cfc9bc285c3fea8ac1a5521996872f2a5f9", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", + "fingerprint": "fbf6d4564b415e0ce6a790dc9cd940eb2c704e483152a5ce7d483e3e0d483638", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime", - "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "export": "OvenRuntime", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", "version": "burnlist-console-oven-behavior@1" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239", - "fingerprint": "2f315a5ca81752391d07fd68b5ed99d995803eca4ca66c619667af9170f0009e", + "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:module:ConditionalExpression:2368494c19944a82", + "fingerprint": "2368494c19944a82d030e648a18505d5abd9c74698d8752e58fb92501517c504", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime", + "ownerTarget": "dashboard/src/oven/runtime/OvenRuntime.tsx:module", "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "export": "OvenRuntime", + "export": "module", "version": "burnlist-console-oven-behavior@1" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239:1", - "fingerprint": "2f315a5ca81752391d07fd68b5ed99d995803eca4ca66c619667af9170f0009e", + "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2773ca4334b3ed09", + "fingerprint": "2773ca4334b3ed09f1a869feec4d88f261911c2ea5f2e950798d4ac88ccd4555", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23882,8 +25398,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:4b58356b67031944", - "fingerprint": "4b58356b67031944382c95635421bdd5f0bd28d8a7f82c14de06c040fee09db7", + "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:43dafcf33b7efde7", + "fingerprint": "43dafcf33b7efde7eb6eb1fd63380a0a10116128e4fab49cc0234c6d8b71f4e1", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23894,8 +25410,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6501af3966fd5b7d", - "fingerprint": "6501af3966fd5b7d38213ca3bb2cd2fe04b6f5c2d687a204c4b64c76d3d19f28", + "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", + "fingerprint": "6a4da56a523f8edbcef9d3e2f4c92cea3caa4dac89dd1e175ecc85029a87ddef", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23906,8 +25422,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:663381afde3a27b9", - "fingerprint": "663381afde3a27b90e8d5486870213f237488f5a080ca0459dca07e9ecfb8b11", + "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:720b9ba1596aa0a5", + "fingerprint": "720b9ba1596aa0a52461e0d5fc90b6cf79ab5bad96deecb19a507d7652af11bd", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23918,8 +25434,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", - "fingerprint": "6a4da56a523f8edbcef9d3e2f4c92cea3caa4dac89dd1e175ecc85029a87ddef", + "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:8e3d9be74ca04c30", + "fingerprint": "8e3d9be74ca04c30fec489f2be3d46e66e0fa91ca7626c0db56afbf9a63e2bd1", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -23941,18 +25457,6 @@ "version": "burnlist-console-oven-behavior@1" } }, - { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:f6355a08580bd4ed", - "fingerprint": "f6355a08580bd4edf9514d88fb6c7173202e2598feb7a50d7da2785c2505cb8a", - "classification": "closed-shared-adapter", - "semanticOwner": { - "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime", - "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "export": "OvenRuntime", - "version": "burnlist-console-oven-behavior@1" - } - }, { "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:fb318987dcc2e6e0", "fingerprint": "fb318987dcc2e6e0c8f7773630e2338455777fc66eadf03d36c570074843262b", @@ -24329,6 +25833,18 @@ "condition": "terminal runtime must implement dashboard/src/oven/runtime/theme-registry.ts:getOvenTheme" } }, + { + "id": "branch:dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter:IfStatement:4aa2aac2689a6460", + "fingerprint": "4aa2aac2689a6460f5a7862594c0e4c1e8a136b04410798ed649f832a22779ec", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter", + "path": "dashboard/src/oven/runtime/widget-adapters.tsx", + "export": "ChecklistWidgetAdapter", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "branch:dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter:IfStatement:7f4e02b0deaaaf77", "fingerprint": "7f4e02b0deaaaf779c8e7ae189f2202a13cef5e7a8b12a3dac6b731da6401231", @@ -24858,8 +26374,20 @@ } }, { - "id": "branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:LogicalExpression:d2826138fda42cf5", - "fingerprint": "d2826138fda42cf51e11f67f71f5981a9e4a2edc696a068efc5750f806e76a46", + "id": "branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:29f4244244c3e4c7", + "fingerprint": "29f4244244c3e4c71347d82efc2eb3c08c5a3fed3eacda0343691ffde651ec72", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader", + "path": "dashboard/src/oven/SectionHeader/SectionHeader.tsx", + "export": "SectionHeader", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:97380eef91c0afa1", + "fingerprint": "97380eef91c0afa1f8d685a076911287acb39ca95e8e01f49adc3413617e0005", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -28157,6 +29685,66 @@ "version": "burnlist-console-oven-behavior@1" } }, + { + "id": "registry:componentRegistry:AgentMonitorActivityChart", + "fingerprint": "50325fd2df150a935af58ebf7fa82bef2e1ac75469220cd6505750a7a3ef1e74", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/OvenView/registries.ts:componentRegistry", + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "registry:componentRegistry:AgentMonitorEventCard", + "fingerprint": "f418dbd1b6eb90718e14a612b03fa48cd25e660867a15eec78de9338c900df81", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/OvenView/registries.ts:componentRegistry", + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "registry:componentRegistry:Alert", + "fingerprint": "44a57b22e03d9a661c22ffc5ffea51b3e1e33de24a53609e70f690dea8f70872", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/OvenView/registries.ts:componentRegistry", + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "registry:componentRegistry:AlertDescription", + "fingerprint": "ad2354424d862d9e421c3034be833adb82024447af2e26413e11b5f74999c1e5", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/OvenView/registries.ts:componentRegistry", + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "version": "burnlist-console-oven-behavior@1" + } + }, + { + "id": "registry:componentRegistry:AlertTitle", + "fingerprint": "d6b0a1362484230e9391a05b841f44de8a4a381d823158f4182eeaf15909e6dc", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/OvenView/registries.ts:componentRegistry", + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "version": "burnlist-console-oven-behavior@1" + } + }, { "id": "registry:componentRegistry:Box", "fingerprint": "512fd3c6042cd1d9150d46fa59b5911a1f97b8275d73eb0a841daa31e93bd349", @@ -28855,7 +30443,7 @@ }, { "id": "surface:dashboard/src/App.tsx", - "fingerprint": "080397df0fba73862698bb023ad8077a37c1a3ed9e3cca70f190346e4d2bbcab", + "fingerprint": "205aa6b64af24b68e4401120560ab28544d414b3912a95726dac2929410f3eba", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -28887,7 +30475,7 @@ }, { "id": "surface:dashboard/src/components/CustomOvenView/CustomOvenView.tsx", - "fingerprint": "50662dc969a5935aa0bb5a58f31fbabbf345f99c7528cf42fcf3a6ef623bf729", + "fingerprint": "dc954e87c8875e00caa73351fc2a118928610fd5a3a4091853b5f4aaf0b1ae4d", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -29015,7 +30603,7 @@ }, { "id": "surface:dashboard/src/lib/hrefs.ts", - "fingerprint": "012245e959c91a44299f58a02f5edaa455a03bc9f1ec4136101635ff9b194532", + "fingerprint": "8cbb99bfcf27c70cefa93bc103c09d8e2ee76a5f873576396956d057e0e02575", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -29031,7 +30619,7 @@ }, { "id": "surface:dashboard/src/lib/route-model.mjs", - "fingerprint": "fc07733b2561fec878aba288d2573ae90a976afb2aa46d8fcc3e35efaac839f8", + "fingerprint": "1743650b45feee363b8fea7fb89182baa2e458f039fc54c6dff0be0a1d30b1f5", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -29157,104 +30745,8 @@ "condition": "terminal theme equivalence for checklist:region:0:kind:kpi-strip" } }, - { - "id": "theme:checklist:region:1:className", - "fingerprint": "e11205f5d798b31ebb298daf14afd3fa0ba5ab2a8238387e0bd3cff68460b480", - "classification": "blocker-to-migrate", - "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "version": "burnlist-console-oven-behavior@1" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:1:className" - } - }, { "id": "theme:checklist:region:1:element", - "fingerprint": "421d15c883daac9511703e79c2c30aeb9cb023b370a689b370dc81803c314b59", - "classification": "blocker-to-migrate", - "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "version": "burnlist-console-oven-behavior@1" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:1:element" - } - }, - { - "id": "theme:checklist:region:1:kind:checklist-burn-panel", - "fingerprint": "2eab204aeb875fd2c925dc31ca7375d8e762b376cf982d40899979489f0f3979", - "classification": "blocker-to-migrate", - "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "version": "burnlist-console-oven-behavior@1" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:1:kind:checklist-burn-panel" - } - }, - { - "id": "theme:checklist:region:1:kind:checklist-current", - "fingerprint": "785addb3437e213f01165aedbf760d9a34d0a68cf841e56560c98e9035d8dcad", - "classification": "blocker-to-migrate", - "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "version": "burnlist-console-oven-behavior@1" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:1:kind:checklist-current" - } - }, - { - "id": "theme:checklist:region:1:kind:checklist-ledger", - "fingerprint": "8e1d79c9466767ade2fe49e57026373a6affc284e6ffd4c84c81eaf450fb33e1", - "classification": "blocker-to-migrate", - "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "version": "burnlist-console-oven-behavior@1" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:1:kind:checklist-ledger" - } - }, - { - "id": "theme:checklist:region:1:props", - "fingerprint": "6542b9364f60e775787712d74dda2ea787d5d836d9778e68a53cde70a902c265", - "classification": "blocker-to-migrate", - "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "version": "burnlist-console-oven-behavior@1" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:1:props" - } - }, - { - "id": "theme:checklist:region:2:element", "fingerprint": "7d38929fd4356be35088cecc7928dce4abce59a11b1ef8a154982a091b4769c5", "classification": "blocker-to-migrate", "semanticOwner": { @@ -29266,12 +30758,12 @@ }, "blocker": { "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:2:element" + "condition": "terminal theme equivalence for checklist:region:1:element" } }, { - "id": "theme:checklist:region:2:kind:checklist-event-cards", - "fingerprint": "6e7e8ef772a4dabd52dced9f22dd0503c862288d34e51b7d992d122fdada7c6a", + "id": "theme:checklist:region:1:kind:checklist-tabs", + "fingerprint": "9bb2ec2b3157bd782208c9c0a2b58460de5d9509cbfa729d3a7998cb39f30994", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -29282,7 +30774,7 @@ }, "blocker": { "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:2:kind:checklist-event-cards" + "condition": "terminal theme equivalence for checklist:region:1:kind:checklist-tabs" } }, { diff --git a/console-oven-behavior.json b/audits/oven/console-oven-behavior.json similarity index 94% rename from console-oven-behavior.json rename to audits/oven/console-oven-behavior.json index 260b5248..a9f9e722 100644 --- a/console-oven-behavior.json +++ b/audits/oven/console-oven-behavior.json @@ -2,6 +2,10 @@ "schema": "burnlist-console-oven-behavior@1", "authoritativeSources": { "oven": [ + "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "dashboard/src/oven/AgentMonitorActivityChart/index.ts", + "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "dashboard/src/oven/AgentMonitorEventCard/index.ts", "dashboard/src/oven/AsciiBlock/AsciiBlock.tsx", "dashboard/src/oven/AsciiBlock/index.ts", "dashboard/src/oven/Box/Box.tsx", @@ -150,7 +154,7 @@ "fingerprints": [ { "path": "dashboard/src/App.tsx", - "fingerprint": "aa4025b6178decbb27e0e91a51d9fa0a59f8ded4d7363752058b53161fccef84" + "fingerprint": "fe03b8095b03b05f369c0b73cbebab89ab87d7fd40270f23bdbb39b7a3d0187c" }, { "path": "dashboard/src/components/ChecklistDashboard/ChecklistOvenView.tsx", @@ -158,7 +162,7 @@ }, { "path": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", - "fingerprint": "d1742db0c9fcf038651d781454353b56ae542b70f54afa83525b51ecff859bc9" + "fingerprint": "59229b7cef783a62b2e118e2738afa45782ca39e6efa291abd91ab0fb0888e9e" }, { "path": "dashboard/src/components/DifferentialTestingOven/DifferentialTestingOven.tsx", @@ -190,11 +194,27 @@ }, { "path": "dashboard/src/lib/hrefs.ts", - "fingerprint": "aef43ff01e70d60e60e95cb39b137c6b25283aec87525a552f5a1a68d858e554" + "fingerprint": "7a7298a67d5c1d886cbe065959874da61888833aa98ea1cccb121b31f37d9ceb" }, { "path": "dashboard/src/lib/route-model.mjs", - "fingerprint": "bf54ca987774fa0c49ce5d4c64ce39f3191116db8a28c0d6770e8a72055faee7" + "fingerprint": "2f4f575d0df5157b2b93cfb7539385fabe4df89af44fe0515d58699d7265a88c" + }, + { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "fingerprint": "c066b01d732c89ce6b9492455144fc9d9a01233eb9d317e3c026b01827103a1a" + }, + { + "path": "dashboard/src/oven/AgentMonitorActivityChart/index.ts", + "fingerprint": "ab6b1ab342f48b47cc3bebcd093eb37dcf50b1c6908d1bfe12f4e78b316e6e96" + }, + { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "fingerprint": "3e891f4ce779a4b7b3c69575c5b76e755a61e3e7dd53c9f2adb5c4a36e7649d4" + }, + { + "path": "dashboard/src/oven/AgentMonitorEventCard/index.ts", + "fingerprint": "bce2b2e39eba6aaf191e446a965e18c026134918a0a3b95c2ba2c90c8ecf927f" }, { "path": "dashboard/src/oven/AsciiBlock/AsciiBlock.tsx", @@ -242,7 +262,7 @@ }, { "path": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx", - "fingerprint": "dbc7f6ffeb7339a4ed13aaa80a55e816bb33a85150a1ec262ada621a1dd3e4e4" + "fingerprint": "4c132f4f692c0ef3e4418889021d1b426244cb06d63bb5a8453315408f8c4d6b" }, { "path": "dashboard/src/oven/ChecklistWorkspace/index.ts", @@ -354,7 +374,7 @@ }, { "path": "dashboard/src/oven/FeedList/FeedList.tsx", - "fingerprint": "0f8e286706048fdd064701bdb27b55144385c216ea94cd7fe0a9d4d53e82e997" + "fingerprint": "ce6d700dbc828848ce5089af9fa287132251b20f5335d6098e56fdf108f4f80d" }, { "path": "dashboard/src/oven/FeedList/index.ts", @@ -430,7 +450,7 @@ }, { "path": "dashboard/src/oven/index.ts", - "fingerprint": "3b0846a134969c33265074ad4709c73422aa2f569c250188f69f2eada702b91d" + "fingerprint": "473fd947d2009bcc69863a309471ba0ff879ef862722c3daae4dc6cae46216dd" }, { "path": "dashboard/src/oven/KpiItem/index.ts", @@ -438,7 +458,7 @@ }, { "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", - "fingerprint": "80fc4221faf715276390d584da45db3c34f348ad73c9096d9b7703c083997d75" + "fingerprint": "88bdaacf0cfdae7a2b304239d6f29b82abd7909b1b472bafc28890d9218e2aaf" }, { "path": "dashboard/src/oven/KpiStrip/index.ts", @@ -490,7 +510,7 @@ }, { "path": "dashboard/src/oven/OvenView/registries.ts", - "fingerprint": "0da1fe1e92dd124b521298f4ed9e521f096eb6ef91bc026353e867be3572d4aa" + "fingerprint": "0e64ba70d2d7aed0bbe0a5916ce26e74e0ec2dcdc0de7da41c820c4851ac8df2" }, { "path": "dashboard/src/oven/OvenView/types.ts", @@ -502,7 +522,7 @@ }, { "path": "dashboard/src/oven/PaginationBar/PaginationBar.tsx", - "fingerprint": "b6a90363ff0fbccb5987050e8baa907388d11a73e6834bbb4806bf19780b7909" + "fingerprint": "dd18ce22e5bec56a7d07f546e038a8cfb26fdc690ba3753c7b4300a00fd72516" }, { "path": "dashboard/src/oven/ProgressDonut/index.ts", @@ -526,7 +546,7 @@ }, { "path": "dashboard/src/oven/runtime/control-adapters.tsx", - "fingerprint": "b64bd548db166c17e3a4cfa762811bbe64c4a96d7c1ac8faf32e10fbedcdec34" + "fingerprint": "7304799bfdbbdb0dd37229a74ee7ca2e7fcfb4cc269e71b03e47a6761930f430" }, { "path": "dashboard/src/oven/runtime/differential-testing-detail.tsx", @@ -534,7 +554,7 @@ }, { "path": "dashboard/src/oven/runtime/differential-testing-fields.tsx", - "fingerprint": "ce005c851de58ffa4b055e51263d8d5dc749f05fd4acd083b0ee11cf3873b08e" + "fingerprint": "a9698905a5f3f1fedb30462c4e24000d246ce7df1263430cf41d934529e339f0" }, { "path": "dashboard/src/oven/runtime/differential-testing-formats.ts", @@ -546,15 +566,15 @@ }, { "path": "dashboard/src/oven/runtime/log-table-adapter.ts", - "fingerprint": "6ef14852e9d70bdbf3c97230f959c4fb3ccdab28e83aa978cc04e103ba46bcf6" + "fingerprint": "9791529d136288ef201957122a441315fc948fe7c865632df02ca935d0323c08" }, { "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", - "fingerprint": "62995721632cb5e0c52bf19597b40d9fda1efd2f2257d6c08388c89e5363f272" + "fingerprint": "3cf6fbefbb03560e78ab1c2848be40066f527eb615032923a2f071c355a02192" }, { "path": "dashboard/src/oven/runtime/oven-live-data.ts", - "fingerprint": "b48cec75a4a45c3f254eaa15c04cccfca9492ab68af6f1b1deb950c8b2982dab" + "fingerprint": "e07f6d97acb4d7ea508d034ac1d223bed3a51b8550fac0529a525ffb3c3ffe11" }, { "path": "dashboard/src/oven/runtime/oven-payload-metadata.ts", @@ -562,31 +582,31 @@ }, { "path": "dashboard/src/oven/runtime/oven-reducer.ts", - "fingerprint": "65ff790209aff905c8299beea00b38c28f85167118bef56f65133b92a1a39830" + "fingerprint": "8757344da3d24669d9615dd7191210ca95bd230026095973fe9fbdbd5a9f2dd9" }, { "path": "dashboard/src/oven/runtime/oven-selectors.ts", - "fingerprint": "9b7aa8f5a6adb90ff50dca8b5d047ef1b0c40afc790bcc841c226fd6525c0ea0" + "fingerprint": "b86919710966b4ed25b5c90426031721b1c4842488cc87715e0470148ccfcc51" }, { "path": "dashboard/src/oven/runtime/OvenNode.tsx", - "fingerprint": "3adddbe7e8a4c99051852f8fe577c5673d1d9a37ef34e89ae607e84f9df698a9" + "fingerprint": "8c354494a9e96323f93b4164517c43305fee6e93a25f931f110e2478f367170c" }, { "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "fingerprint": "1c411c7f8552cc449bc10c29e9e86c89d3524ed345ed8ade959bf9d82714199f" + "fingerprint": "366175e27a5fe74c2e53310adb72883c0d0180fd666e6222749cdae57e066820" }, { "path": "dashboard/src/oven/runtime/predicate-sort-registry.ts", - "fingerprint": "6f4eef5022a25527cc8c3efdd019f5b95b886d1b4a776cfa708f3a99cbdc4b67" + "fingerprint": "029dd15a7d4127731a8c68f1c0d78b5e4ee76f7a9fd4ff062b6aad7a870baaf9" }, { "path": "dashboard/src/oven/runtime/theme-registry.ts", - "fingerprint": "be1500dc1783941d08044ea8240cd1d973e8d9886993145163e41a2edc46956a" + "fingerprint": "db68d0ed91870eff461df8ff3415f7c9ad4ecaaa11874860d4ebed0d200c1d41" }, { "path": "dashboard/src/oven/runtime/widget-adapters.tsx", - "fingerprint": "39f369072444fad05e520c00910e3d7129c9c90628e7f66d7c1c247ec75bdeea" + "fingerprint": "1b63b9cd2924b63c02c993b535a87ffd9dacaf8e211c6ea70c53aa8f6177481c" }, { "path": "dashboard/src/oven/SectionHeader/index.ts", @@ -594,7 +614,7 @@ }, { "path": "dashboard/src/oven/SectionHeader/SectionHeader.tsx", - "fingerprint": "21b8afa76f44a93f7090f3e826ad0fd3fd4aa11866767734b6fb6e17d1a14488" + "fingerprint": "944cb7fdbd0fdaec51ddc563676ccd82e6c67586fde65000e04c24cf4d763264" }, { "path": "dashboard/src/oven/storybook-differential-fixture.ts", @@ -723,12 +743,16 @@ "column", "kpi-strip", "kpi-item", + "alert", + "alert-title", + "alert-description", "progress-donut", "burn-donut", "waffle-metric", "progress-value", "checklist-current", "checklist-workspace", + "checklist-tabs", "checklist-burn-panel", "checklist-ledger", "checklist-event-cards", @@ -752,6 +776,8 @@ "progress-chart", "frame-delta-chart", "differential-empty-state", + "agent-monitor-activity-chart", + "agent-monitor-event-card", "model-lab-view", "loop-graph", "loop-progress", @@ -797,8 +823,8 @@ }, "behaviors": [ { - "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:08345a6407cfa04e", - "fingerprint": "08345a6407cfa04e4ac9b8f984df7b1e9cc61b2cd0c8c13ad97a154788c6a9d8", + "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", + "fingerprint": "0e91c0434dab74c6d8099893af17ae51154dda739455b280188621ce4a0fb170", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -811,9 +837,9 @@ "path": "dashboard/src/App.tsx", "export": "App", "node": "ConditionalExpression", - "predicate": "[\"landing\", \"burnlist\", \"streaming-diff\"].includes(section) || (section === \"custom-oven\" && selected)", + "predicate": "fullLayout", "nodeKinds": [], - "fingerprint": "08345a6407cfa04e4ac9b8f984df7b1e9cc61b2cd0c8c13ad97a154788c6a9d8" + "fingerprint": "0e91c0434dab74c6d8099893af17ae51154dda739455b280188621ce4a0fb170" }, "blocker": { "burnlistItem": "B17", @@ -821,8 +847,8 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", - "fingerprint": "0e91c0434dab74c6d8099893af17ae51154dda739455b280188621ce4a0fb170", + "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:28670509b2644dea", + "fingerprint": "28670509b2644deaf3297d9c0bf527a346510bc42d2e2dc52000ae0a604b8498", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -835,9 +861,9 @@ "path": "dashboard/src/App.tsx", "export": "App", "node": "ConditionalExpression", - "predicate": "fullLayout", + "predicate": "section === \"custom-oven\"", "nodeKinds": [], - "fingerprint": "0e91c0434dab74c6d8099893af17ae51154dda739455b280188621ce4a0fb170" + "fingerprint": "28670509b2644deaf3297d9c0bf527a346510bc42d2e2dc52000ae0a604b8498" }, "blocker": { "burnlistItem": "B17", @@ -988,6 +1014,30 @@ "condition": "terminal runtime must implement dashboard/src/App.tsx:App" } }, + { + "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:869312be2760fd24", + "fingerprint": "869312be2760fd2482c9aae8ff851f2eb0fbf7dbef8a917d795e204fda903e75", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/App.tsx", + "export": "App", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/App.tsx", + "export": "App", + "node": "ConditionalExpression", + "predicate": "[\"landing\", \"burnlist\", \"agent-monitor\", \"streaming-diff\"].includes(section) || (section === \"custom-oven\" && selected)", + "nodeKinds": [], + "fingerprint": "869312be2760fd2482c9aae8ff851f2eb0fbf7dbef8a917d795e204fda903e75" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/App.tsx:App" + } + }, { "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:879c4c24e5fd2fba", "fingerprint": "879c4c24e5fd2fbaa2ec3d0ef72164470cecdcf5a2dc03d1f9a1419d764bc0bd", @@ -1204,6 +1254,30 @@ "condition": "terminal runtime must implement dashboard/src/App.tsx:App" } }, + { + "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:db078c47db3e50c3", + "fingerprint": "db078c47db3e50c3be160d3fc7c88302b949cd37a92c87b57ad15d850a2e4144", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/App.tsx", + "export": "App", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/App.tsx", + "export": "App", + "node": "ConditionalExpression", + "predicate": "section === \"agent-monitor\"", + "nodeKinds": [], + "fingerprint": "db078c47db3e50c3be160d3fc7c88302b949cd37a92c87b57ad15d850a2e4144" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/App.tsx:App" + } + }, { "id": "branch:dashboard/src/App.tsx:App:ConditionalExpression:e5e69239b717d7ed", "fingerprint": "e5e69239b717d7ed083f57f7581e511c4d236ce9c4e5342c9b275a3ec42bf3a5", @@ -1325,8 +1399,8 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:38edea39933b2588", - "fingerprint": "38edea39933b2588b65a548304bff69cf0dbd74f774aadef440485873bdb47db", + "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e", + "fingerprint": "62769dae15dabf3eb85e55aaaa7917e2737fc2f629738d87b7b8d72d1660d932", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1339,9 +1413,9 @@ "path": "dashboard/src/App.tsx", "export": "App", "node": "LogicalExpression", - "predicate": "[\"differential-testing\", \"model-lab\", \"performance-tracing\", \"streaming-diff\", \"visual-parity\", \"custom-oven\"].includes(section) || selected", + "predicate": "filter === \"all\" || entry.status === filter", "nodeKinds": [], - "fingerprint": "38edea39933b2588b65a548304bff69cf0dbd74f774aadef440485873bdb47db" + "fingerprint": "62769dae15dabf3eb85e55aaaa7917e2737fc2f629738d87b7b8d72d1660d932" }, "blocker": { "burnlistItem": "B17", @@ -1349,7 +1423,7 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e", + "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e:1", "fingerprint": "62769dae15dabf3eb85e55aaaa7917e2737fc2f629738d87b7b8d72d1660d932", "classification": "blocker-to-migrate", "semanticOwner": { @@ -1373,8 +1447,8 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e:1", - "fingerprint": "62769dae15dabf3eb85e55aaaa7917e2737fc2f629738d87b7b8d72d1660d932", + "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:662fae22a9c098ce", + "fingerprint": "662fae22a9c098ce7dfd39d7a5733a921a871489de4300f1b21ee6a59216f31f", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1387,9 +1461,9 @@ "path": "dashboard/src/App.tsx", "export": "App", "node": "LogicalExpression", - "predicate": "filter === \"all\" || entry.status === filter", + "predicate": "section === \"custom-oven\" && selected", "nodeKinds": [], - "fingerprint": "62769dae15dabf3eb85e55aaaa7917e2737fc2f629738d87b7b8d72d1660d932" + "fingerprint": "662fae22a9c098ce7dfd39d7a5733a921a871489de4300f1b21ee6a59216f31f" }, "blocker": { "burnlistItem": "B17", @@ -1397,8 +1471,8 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:662fae22a9c098ce", - "fingerprint": "662fae22a9c098ce7dfd39d7a5733a921a871489de4300f1b21ee6a59216f31f", + "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:6ea5a02132549b79", + "fingerprint": "6ea5a02132549b79b75583eeb9bce2e8c31ec98790221e606b37f92cf5da0862", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1411,9 +1485,9 @@ "path": "dashboard/src/App.tsx", "export": "App", "node": "LogicalExpression", - "predicate": "section === \"custom-oven\" && selected", + "predicate": "[\"landing\", \"burnlist\", \"agent-monitor\", \"streaming-diff\"].includes(section) || (section === \"custom-oven\" && selected)", "nodeKinds": [], - "fingerprint": "662fae22a9c098ce7dfd39d7a5733a921a871489de4300f1b21ee6a59216f31f" + "fingerprint": "6ea5a02132549b79b75583eeb9bce2e8c31ec98790221e606b37f92cf5da0862" }, "blocker": { "burnlistItem": "B17", @@ -1421,8 +1495,8 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", - "fingerprint": "b67210fdce841e44b3cd523e0c3ecc3dbe2e908d9fa2b9c9dad297789908d9c0", + "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:ac413be8f7156f5a", + "fingerprint": "ac413be8f7156f5a6171e93d1fd20a65fb0f115d9d0a79ce027e55a064da1e21", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1435,9 +1509,9 @@ "path": "dashboard/src/App.tsx", "export": "App", "node": "LogicalExpression", - "predicate": "loading && !progress", + "predicate": "[\"agent-monitor\", \"differential-testing\", \"model-lab\", \"performance-tracing\", \"streaming-diff\", \"visual-parity\", \"custom-oven\"].includes(section) || selected", "nodeKinds": [], - "fingerprint": "b67210fdce841e44b3cd523e0c3ecc3dbe2e908d9fa2b9c9dad297789908d9c0" + "fingerprint": "ac413be8f7156f5a6171e93d1fd20a65fb0f115d9d0a79ce027e55a064da1e21" }, "blocker": { "burnlistItem": "B17", @@ -1445,8 +1519,8 @@ } }, { - "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:c0f673b28a57b32f", - "fingerprint": "c0f673b28a57b32f71c2e3d5d0b1b7617eefa5c57915b4ef24a36f151840630c", + "id": "branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", + "fingerprint": "b67210fdce841e44b3cd523e0c3ecc3dbe2e908d9fa2b9c9dad297789908d9c0", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1459,9 +1533,9 @@ "path": "dashboard/src/App.tsx", "export": "App", "node": "LogicalExpression", - "predicate": "[\"landing\", \"burnlist\", \"streaming-diff\"].includes(section) || (section === \"custom-oven\" && selected)", + "predicate": "loading && !progress", "nodeKinds": [], - "fingerprint": "c0f673b28a57b32f71c2e3d5d0b1b7617eefa5c57915b4ef24a36f151840630c" + "fingerprint": "b67210fdce841e44b3cd523e0c3ecc3dbe2e908d9fa2b9c9dad297789908d9c0" }, "blocker": { "burnlistItem": "B17", @@ -1517,8 +1591,8 @@ } }, { - "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:IfStatement:0950e6df7876e854", - "fingerprint": "0950e6df7876e8548fc83a4cf4a5f5cb6ec76fb1cd493dc6b2311a3af6ab9ed5", + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:09ecd391a41039f5", + "fingerprint": "09ecd391a41039f5f452d26c0c35de8f3b4a6884ebcbc54362781ff43d93cece", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1530,10 +1604,58 @@ "source": { "path": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", "export": "CustomOvenRuntime", - "node": "IfStatement", + "node": "ConditionalExpression", + "predicate": "framed", + "nodeKinds": [], + "fingerprint": "09ecd391a41039f5f452d26c0c35de8f3b4a6884ebcbc54362781ff43d93cece" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime" + } + }, + { + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:26457aa74ab00355", + "fingerprint": "26457aa74ab00355475b3e579719b4547b0a9ebc7f13a79a1bf6c996e5f5634f", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", + "export": "CustomOvenRuntime", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", + "export": "CustomOvenRuntime", + "node": "ConditionalExpression", + "predicate": "burnlistId", + "nodeKinds": [], + "fingerprint": "26457aa74ab00355475b3e579719b4547b0a9ebc7f13a79a1bf6c996e5f5634f" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime" + } + }, + { + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:cf12e3a823885859", + "fingerprint": "cf12e3a823885859d909bc4e67b945ec25e4314d6bf126612fe9c1f2bab298de", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", + "export": "CustomOvenRuntime", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", + "export": "CustomOvenRuntime", + "node": "ConditionalExpression", "predicate": "burnlistId", "nodeKinds": [], - "fingerprint": "0950e6df7876e8548fc83a4cf4a5f5cb6ec76fb1cd493dc6b2311a3af6ab9ed5" + "fingerprint": "cf12e3a823885859d909bc4e67b945ec25e4314d6bf126612fe9c1f2bab298de" }, "blocker": { "burnlistItem": "B17", @@ -1589,8 +1711,8 @@ } }, { - "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:314348123bf12d0b", - "fingerprint": "314348123bf12d0b01319f2c9709220864f9097bc661f8acf600c0f63cf49bc2", + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:34fa1aff9e378f1e", + "fingerprint": "34fa1aff9e378f1e94d37e23eb95a025dddf34895c19dc37c3269912023776cd", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1605,7 +1727,7 @@ "node": "IfStatement", "predicate": "!selection?.repoKey", "nodeKinds": [], - "fingerprint": "314348123bf12d0b01319f2c9709220864f9097bc661f8acf600c0f63cf49bc2" + "fingerprint": "34fa1aff9e378f1e94d37e23eb95a025dddf34895c19dc37c3269912023776cd" }, "blocker": { "burnlistItem": "B17", @@ -1613,8 +1735,8 @@ } }, { - "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:e1457c38a8dc8ad8", - "fingerprint": "e1457c38a8dc8ad8efaa8f6e9326454acab1e50e8bedd5a6e32f54b4b47a50d1", + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:35b0b741e18369cd", + "fingerprint": "35b0b741e18369cdc1e83485335eb999ed2c5de8374d045438a891a637149ef7", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1629,7 +1751,7 @@ "node": "IfStatement", "predicate": "selection.burnlistId && loading && !progress", "nodeKinds": [], - "fingerprint": "e1457c38a8dc8ad8efaa8f6e9326454acab1e50e8bedd5a6e32f54b4b47a50d1" + "fingerprint": "35b0b741e18369cdc1e83485335eb999ed2c5de8374d045438a891a637149ef7" }, "blocker": { "burnlistItem": "B17", @@ -1637,8 +1759,8 @@ } }, { - "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:ecc4476a0741b0dd", - "fingerprint": "ecc4476a0741b0dd393993ebf4ac05c85faddd793649918112d9f9b50e6d5173", + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:639201685d8fe452", + "fingerprint": "639201685d8fe452844f0218d7d2a9110686853e073d838e35640e87acdfe1ad", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -1653,7 +1775,7 @@ "node": "IfStatement", "predicate": "selection.burnlistId && !progress", "nodeKinds": [], - "fingerprint": "ecc4476a0741b0dd393993ebf4ac05c85faddd793649918112d9f9b50e6d5173" + "fingerprint": "639201685d8fe452844f0218d7d2a9110686853e073d838e35640e87acdfe1ad" }, "blocker": { "burnlistItem": "B17", @@ -1924,6 +2046,30 @@ "condition": "terminal runtime must implement dashboard/src/components/CustomOvenView/CustomOvenView.tsx:module" } }, + { + "id": "branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:module:LogicalExpression:fec06bb1848c20a0", + "fingerprint": "fec06bb1848c20a01cab9ba8d73f68b59f12d90b7852bd9d01c2bfcc2324f23f", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", + "export": "module", + "node": "LogicalExpression", + "predicate": "ovenId ?? \"Custom\"", + "nodeKinds": [], + "fingerprint": "fec06bb1848c20a01cab9ba8d73f68b59f12d90b7852bd9d01c2bfcc2324f23f" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/components/CustomOvenView/CustomOvenView.tsx:module" + } + }, { "id": "branch:dashboard/src/components/DifferentialTestingOven/DifferentialTestingOven.tsx:module:ConditionalExpression:fb8af5b091d0b677", "fingerprint": "fb8af5b091d0b67747685c07475570138da6091f4b3e04d31866229b252a96e1", @@ -2644,6 +2790,102 @@ "condition": "terminal runtime must implement dashboard/src/hooks/useOvenDefinition.ts:useOvenDefinition" } }, + { + "id": "branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:ConditionalExpression:2cf6dc473679913c", + "fingerprint": "2cf6dc473679913cad96527132e3a43b62f02184455820e9a0c2d5bef102a696", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/hrefs.ts", + "export": "agentMonitorSelection", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/hrefs.ts", + "export": "agentMonitorSelection", + "node": "ConditionalExpression", + "predicate": "current.section === \"agent-monitor\" && current.repoKey && current.worktreeKey && current.session", + "nodeKinds": [], + "fingerprint": "2cf6dc473679913cad96527132e3a43b62f02184455820e9a0c2d5bef102a696" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/hrefs.ts:agentMonitorSelection" + } + }, + { + "id": "branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:83d6cd7e558f513e", + "fingerprint": "83d6cd7e558f513e812e28f71cea95fcb3a6bb680963eac056a58412f4d04e99", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/hrefs.ts", + "export": "agentMonitorSelection", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/hrefs.ts", + "export": "agentMonitorSelection", + "node": "LogicalExpression", + "predicate": "current.section === \"agent-monitor\" && current.repoKey && current.worktreeKey && current.session", + "nodeKinds": [], + "fingerprint": "83d6cd7e558f513e812e28f71cea95fcb3a6bb680963eac056a58412f4d04e99" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/hrefs.ts:agentMonitorSelection" + } + }, + { + "id": "branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:9d1b7f9c32e0502c", + "fingerprint": "9d1b7f9c32e0502cedbbdd6d42cdb25504ce8a87b90d27c8d881dcbe01e0d074", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/hrefs.ts", + "export": "agentMonitorSelection", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/hrefs.ts", + "export": "agentMonitorSelection", + "node": "LogicalExpression", + "predicate": "current.section === \"agent-monitor\" && current.repoKey", + "nodeKinds": [], + "fingerprint": "9d1b7f9c32e0502cedbbdd6d42cdb25504ce8a87b90d27c8d881dcbe01e0d074" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/hrefs.ts:agentMonitorSelection" + } + }, + { + "id": "branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:dc8f4f096cae1e89", + "fingerprint": "dc8f4f096cae1e89a18f506ebf6a851d94576662becb0a0daef53cc28b798576", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/hrefs.ts", + "export": "agentMonitorSelection", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/hrefs.ts", + "export": "agentMonitorSelection", + "node": "LogicalExpression", + "predicate": "current.section === \"agent-monitor\" && current.repoKey && current.worktreeKey", + "nodeKinds": [], + "fingerprint": "dc8f4f096cae1e89a18f506ebf6a851d94576662becb0a0daef53cc28b798576" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/hrefs.ts:agentMonitorSelection" + } + }, { "id": "branch:dashboard/src/lib/hrefs.ts:burnlistHref:ConditionalExpression:20611b6b08a46bac", "fingerprint": "20611b6b08a46bac1d94fcce7380e1cdc36032f66dba1ba05e7f032c423a6fb1", @@ -3077,8 +3319,8 @@ } }, { - "id": "branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:83e728cef8897dcd", - "fingerprint": "83e728cef8897dcda2050459dc2e70858c2ad9c0e0d9f8eb03ffbb9b4ab5867c", + "id": "branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:26cbb2fb634679a0", + "fingerprint": "26cbb2fb634679a0c1865a08c928a0d5dd7cbcdfbd9248acc919346a9a5bfe8c", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -3091,9 +3333,9 @@ "path": "dashboard/src/lib/hrefs.ts", "export": "ovenRepoKey", "node": "ConditionalExpression", - "predicate": "[\"differential-testing\", \"model-lab\", \"performance-tracing\", \"streaming-diff\", \"visual-parity\", \"custom-oven\"].includes(current.section)", + "predicate": "[\"agent-monitor\", \"differential-testing\", \"model-lab\", \"performance-tracing\", \"streaming-diff\", \"visual-parity\", \"custom-oven\"].includes(current.section)", "nodeKinds": [], - "fingerprint": "83e728cef8897dcda2050459dc2e70858c2ad9c0e0d9f8eb03ffbb9b4ab5867c" + "fingerprint": "26cbb2fb634679a0c1865a08c928a0d5dd7cbcdfbd9248acc919346a9a5bfe8c" }, "blocker": { "burnlistItem": "B17", @@ -3437,8 +3679,8 @@ } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:2d0d8a0556db1aa4", - "fingerprint": "2d0d8a0556db1aa4cb5036c28dd86ab8450020ee2409622400ccfd1a752b2259", + "id": "branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:8e2406cc9247eb34", + "fingerprint": "8e2406cc9247eb34f831b65afc89a4ce1fd2aef2f08b581d58e53175ae78bb9e", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -3451,9 +3693,9 @@ "path": "dashboard/src/lib/route-model.mjs", "export": "module", "node": "ConditionalExpression", - "predicate": "section === \"differential-testing\"", + "predicate": "section === \"streaming-diff\" || section === \"agent-monitor\"", "nodeKinds": [], - "fingerprint": "2d0d8a0556db1aa4cb5036c28dd86ab8450020ee2409622400ccfd1a752b2259" + "fingerprint": "8e2406cc9247eb34f831b65afc89a4ce1fd2aef2f08b581d58e53175ae78bb9e" }, "blocker": { "burnlistItem": "B17", @@ -3461,8 +3703,8 @@ } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:3d0b44c435f0a42b", - "fingerprint": "3d0b44c435f0a42b45ff78da1f72f9e3a9e9265d9bd5d3bba64ebe548015adf4", + "id": "branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", + "fingerprint": "a069f64c73d7a307c0df5508c92ad648fa90c4c15b19337613750ee92b179f34", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -3475,9 +3717,9 @@ "path": "dashboard/src/lib/route-model.mjs", "export": "module", "node": "ConditionalExpression", - "predicate": "section === \"streaming-diff\"", + "predicate": "source.has(name)", "nodeKinds": [], - "fingerprint": "3d0b44c435f0a42b45ff78da1f72f9e3a9e9265d9bd5d3bba64ebe548015adf4" + "fingerprint": "a069f64c73d7a307c0df5508c92ad648fa90c4c15b19337613750ee92b179f34" }, "blocker": { "burnlistItem": "B17", @@ -3485,8 +3727,8 @@ } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", - "fingerprint": "a069f64c73d7a307c0df5508c92ad648fa90c4c15b19337613750ee92b179f34", + "id": "branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:d74ac9f13debb02e", + "fingerprint": "d74ac9f13debb02ecc414b4e5d8960ed472eb5056c0b094a87c5db68c838080b", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -3499,9 +3741,9 @@ "path": "dashboard/src/lib/route-model.mjs", "export": "module", "node": "ConditionalExpression", - "predicate": "source.has(name)", + "predicate": "section === \"differential-testing\"", "nodeKinds": [], - "fingerprint": "a069f64c73d7a307c0df5508c92ad648fa90c4c15b19337613750ee92b179f34" + "fingerprint": "d74ac9f13debb02ecc414b4e5d8960ed472eb5056c0b094a87c5db68c838080b" }, "blocker": { "burnlistItem": "B17", @@ -3772,6 +4014,30 @@ "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:module" } }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:b6c40e5cf6100d60", + "fingerprint": "b6c40e5cf6100d60eae7a128219fc085a80faec412c3f170b478ee6631f63f03", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "module", + "node": "LogicalExpression", + "predicate": "section === \"streaming-diff\" || section === \"agent-monitor\"", + "nodeKinds": [], + "fingerprint": "b6c40e5cf6100d60eae7a128219fc085a80faec412c3f170b478ee6631f63f03" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:module" + } + }, { "id": "branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:bb5e2a54a028afc8", "fingerprint": "bb5e2a54a028afc8bf24a43c8c5c353694f8fb4440e39e24e680377fdf5cd000", @@ -3821,507 +4087,1927 @@ } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:ConditionalExpression:204400a3fe3e8e38", - "fingerprint": "204400a3fe3e8e38ea669c7df40b09e4a8f4a5cfb68a6baaa7185cced03e3952", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:ConditionalExpression:204400a3fe3e8e38", + "fingerprint": "204400a3fe3e8e38ea669c7df40b09e4a8f4a5cfb68a6baaa7185cced03e3952", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "ConditionalExpression", + "predicate": "plan.plan", + "nodeKinds": [], + "fingerprint": "204400a3fe3e8e38ea669c7df40b09e4a8f4a5cfb68a6baaa7185cced03e3952" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:ConditionalExpression:d9b7e7fd8ec8f2da", + "fingerprint": "d9b7e7fd8ec8f2da747af2fd53e01c29636c097cd1229128c135c24989f9c775", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "ConditionalExpression", + "predicate": "path[1] === \"new\"", + "nodeKinds": [], + "fingerprint": "d9b7e7fd8ec8f2da747af2fd53e01c29636c097cd1229128c135c24989f9c775" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:591fcc96cd5dc7ad", + "fingerprint": "591fcc96cd5dc7adfe952e27d332b4a9d8350c313204273bdd7ccf247f16b31e", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "IfStatement", + "predicate": "path.length === 2 && path[0] === \"ovens\"", + "nodeKinds": [], + "fingerprint": "591fcc96cd5dc7adfe952e27d332b4a9d8350c313204273bdd7ccf247f16b31e" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:5c83de377539a014", + "fingerprint": "5c83de377539a014f74673aef18027bf0b07bf29f8fa2c8476edcc463a8880f5", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "IfStatement", + "predicate": "path.length === 2 && ![\"api\", \"ovens\", \"runs\"].includes(path[0])", + "nodeKinds": [], + "fingerprint": "5c83de377539a014f74673aef18027bf0b07bf29f8fa2c8476edcc463a8880f5" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:5f384f1e23a54fea", + "fingerprint": "5f384f1e23a54fea5347184f2e646938d5280994d7663ffe7971b0117d798808", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "IfStatement", + "predicate": "path.length === 5 && path[0] === \"r\" && path[3] === \"o\"", + "nodeKinds": [], + "fingerprint": "5f384f1e23a54fea5347184f2e646938d5280994d7663ffe7971b0117d798808" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:7fa3666694a14a9c", + "fingerprint": "7fa3666694a14a9c8071e1343fce0f35594e292b2ae6b773e34a5f73374ac903", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "IfStatement", + "predicate": "path.length === 2 && path[0] === \"runs\" && path[1] === \"new\"", + "nodeKinds": [], + "fingerprint": "7fa3666694a14a9c8071e1343fce0f35594e292b2ae6b773e34a5f73374ac903" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:8412eac1f8c06ad2", + "fingerprint": "8412eac1f8c06ad2a06b2a4e7cf16cb1d7708a72baa5c7f4a01e5716a947903a", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "IfStatement", + "predicate": "path.length === 1 && path[0] === \"ovens\"", + "nodeKinds": [], + "fingerprint": "8412eac1f8c06ad2a06b2a4e7cf16cb1d7708a72baa5c7f4a01e5716a947903a" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:950dd3b4be5305ae", + "fingerprint": "950dd3b4be5305aed04dc9ee0cd375159c2fc5c4e160153a83e1600aa9e9f7c4", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "IfStatement", + "predicate": "path.length === 3 && path[0] === \"r\"", + "nodeKinds": [], + "fingerprint": "950dd3b4be5305aed04dc9ee0cd375159c2fc5c4e160153a83e1600aa9e9f7c4" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:953112651f1ef195", + "fingerprint": "953112651f1ef1953671f9611119c98e9132414ad40144f4088f6be17bd0970a", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "IfStatement", + "predicate": "path.length === 4 && path[0] === \"r\" && path[2] === \"o\"", + "nodeKinds": [], + "fingerprint": "953112651f1ef1953671f9611119c98e9132414ad40144f4088f6be17bd0970a" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:9ff15ff7ddaad92e", + "fingerprint": "9ff15ff7ddaad92edac558d48f7ffa0dfde0b1a1690465e279274730717d22e1", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "IfStatement", + "predicate": "path.length === 0", + "nodeKinds": [], + "fingerprint": "9ff15ff7ddaad92edac558d48f7ffa0dfde0b1a1690465e279274730717d22e1" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:0cb016eb49fe9293", + "fingerprint": "0cb016eb49fe92932b9bc04bc75dbc054436d56129256fea88781add3df228a4", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "LogicalExpression", + "predicate": "path.length === 2 && path[0] === \"runs\"", + "nodeKinds": [], + "fingerprint": "0cb016eb49fe92932b9bc04bc75dbc054436d56129256fea88781add3df228a4" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:238f33b58dd3b706", + "fingerprint": "238f33b58dd3b7067c3521ec7bc26a836b078b96db1fecbe6b69d4e5cc5ba076", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "LogicalExpression", + "predicate": "path.length === 2 && path[0] === \"ovens\"", + "nodeKinds": [], + "fingerprint": "238f33b58dd3b7067c3521ec7bc26a836b078b96db1fecbe6b69d4e5cc5ba076" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:2ae724c5f9dcec8d", + "fingerprint": "2ae724c5f9dcec8dba8e961268612bbedfc749fb44db4714c52628af7c2f087e", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "LogicalExpression", + "predicate": "path.length === 1 && path[0] === \"ovens\"", + "nodeKinds": [], + "fingerprint": "2ae724c5f9dcec8dba8e961268612bbedfc749fb44db4714c52628af7c2f087e" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:71e4f72b7e7eba13", + "fingerprint": "71e4f72b7e7eba13d3af2086619eb741ac34f24c6b70d5786442a9ff127e531c", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "LogicalExpression", + "predicate": "path.length === 4 && path[0] === \"r\"", + "nodeKinds": [], + "fingerprint": "71e4f72b7e7eba13d3af2086619eb741ac34f24c6b70d5786442a9ff127e531c" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:841542fb6a71f995", + "fingerprint": "841542fb6a71f995bbfe814bc0fa2e8f5c1782a7c69bded22e924bcaad666ddf", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "LogicalExpression", + "predicate": "path.length === 3 && path[0] === \"r\"", + "nodeKinds": [], + "fingerprint": "841542fb6a71f995bbfe814bc0fa2e8f5c1782a7c69bded22e924bcaad666ddf" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:93f9ee941d95b281", + "fingerprint": "93f9ee941d95b281f2143999ffcb10d8311bc2be10d71aab9bab3b4ada6b3e65", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "LogicalExpression", + "predicate": "path.length === 4 && path[0] === \"r\" && path[2] === \"o\"", + "nodeKinds": [], + "fingerprint": "93f9ee941d95b281f2143999ffcb10d8311bc2be10d71aab9bab3b4ada6b3e65" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:a647cc682d7569bd", + "fingerprint": "a647cc682d7569bdb3053d5af3205fae93299b2de042cbedbb2eff44fca359a2", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "LogicalExpression", + "predicate": "path.length === 2 && ![\"api\", \"ovens\", \"runs\"].includes(path[0])", + "nodeKinds": [], + "fingerprint": "a647cc682d7569bdb3053d5af3205fae93299b2de042cbedbb2eff44fca359a2" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:c6278027f91d5742", + "fingerprint": "c6278027f91d57426b3810136fc6a9fcd55cd584193562a7bca4cae458cd3e4f", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "LogicalExpression", + "predicate": "path.length === 5 && path[0] === \"r\" && path[3] === \"o\"", + "nodeKinds": [], + "fingerprint": "c6278027f91d57426b3810136fc6a9fcd55cd584193562a7bca4cae458cd3e4f" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:d1bc221bd65d1daf", + "fingerprint": "d1bc221bd65d1dafdb92f2f74f90e80c649f99c871d2b76217b95f5cd026e9c7", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "LogicalExpression", + "predicate": "path.length === 2 && path[0] === \"runs\" && path[1] === \"new\"", + "nodeKinds": [], + "fingerprint": "d1bc221bd65d1dafdb92f2f74f90e80c649f99c871d2b76217b95f5cd026e9c7" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:d215fd53248d72ed", + "fingerprint": "d215fd53248d72ed23992f16856fd756153dff0b941784d16b5d34bd92a37352", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "parseRoute", + "node": "LogicalExpression", + "predicate": "path.length === 5 && path[0] === \"r\"", + "nodeKinds": [], + "fingerprint": "d215fd53248d72ed23992f16856fd756153dff0b941784d16b5d34bd92a37352" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + } + }, + { + "id": "branch:dashboard/src/lib/route-model.mjs:repoOvenHref:ConditionalExpression:822b606e69383ea0", + "fingerprint": "822b606e69383ea067b1ffa4f3f2c5579b67b400b7fc766c90cd0f8542b41923", + "classification": "blocker-to-migrate", + "semanticOwner": { + "ownerType": "migration-target", + "ownerTarget": "B17", + "path": "dashboard/src/lib/route-model.mjs", + "export": "repoOvenHref", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/lib/route-model.mjs", + "export": "repoOvenHref", + "node": "ConditionalExpression", + "predicate": "repoKey", + "nodeKinds": [], + "fingerprint": "822b606e69383ea067b1ffa4f3f2c5579b67b400b7fc766c90cd0f8542b41923" + }, + "blocker": { + "burnlistItem": "B17", + "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:repoOvenHref" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:ConditionalExpression:b6f78ae235bd59a5", + "fingerprint": "b6f78ae235bd59a5a60b830bddcf514e46536a7be1e980e0d15ba4deb1eec005", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "AgentMonitorActivityChart", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "AgentMonitorActivityChart", + "node": "ConditionalExpression", + "predicate": "activity.total > 0", + "nodeKinds": [], + "fingerprint": "b6f78ae235bd59a5a60b830bddcf514e46536a7be1e980e0d15ba4deb1eec005" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:LogicalExpression:9cd8c9fbbdea0f72", + "fingerprint": "9cd8c9fbbdea0f72b1c4f58908044ca48ad9d543381a0363b3f7350b2ad74b36", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "AgentMonitorActivityChart", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "AgentMonitorActivityChart", + "node": "LogicalExpression", + "predicate": "activity.total > 0 &&

{activity.total} retained events · {activity.durationLabel}

", + "nodeKinds": [], + "fingerprint": "9cd8c9fbbdea0f72b1c4f58908044ca48ad9d543381a0363b3f7350b2ad74b36" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:37b90dc946c05849", + "fingerprint": "37b90dc946c0584952ab9043eb34656a32acb47e2bddeec836c25444898fe01b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "node": "ConditionalExpression", + "predicate": "Array.isArray(events)", + "nodeKinds": [], + "fingerprint": "37b90dc946c0584952ab9043eb34656a32acb47e2bddeec836c25444898fe01b" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:bd2fe94f3ec64d89", + "fingerprint": "bd2fe94f3ec64d89e205d90d253f74ece27afd251e0e43d376f3b3690db965d9", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "node": "ConditionalExpression", + "predicate": "firstTime === lastTime", + "nodeKinds": [], + "fingerprint": "bd2fe94f3ec64d89e205d90d253f74ece27afd251e0e43d376f3b3690db965d9" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:8a02a37013ec004d", + "fingerprint": "8a02a37013ec004d2eb88e1da5c1fb41236c261438e2464b50080a975cf5392e", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "node": "IfStatement", + "predicate": "point.failed", + "nodeKinds": [], + "fingerprint": "8a02a37013ec004d2eb88e1da5c1fb41236c261438e2464b50080a975cf5392e" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:b8a00595f6c90c2d", + "fingerprint": "b8a00595f6c90c2d58b323227dd0fa16c13bd2df27e00ae9a8822c2f0d07e379", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "node": "IfStatement", + "predicate": "point.category === \"message\" && point.userMessage", + "nodeKinds": [], + "fingerprint": "b8a00595f6c90c2d58b323227dd0fa16c13bd2df27e00ae9a8822c2f0d07e379" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:c5fc51c3d051eb7b", + "fingerprint": "c5fc51c3d051eb7bfb8a21ff3fa6b928bcc9ab1ab54a53023257f641de08decb", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "node": "IfStatement", + "predicate": "workCategories.includes(point.category)", + "nodeKinds": [], + "fingerprint": "c5fc51c3d051eb7bfb8a21ff3fa6b928bcc9ab1ab54a53023257f641de08decb" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:df92876c3244fe99", + "fingerprint": "df92876c3244fe99feb209a70fbe8cf3d5e4e179c66f3f4f1b67e3476ee2e4ff", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "node": "IfStatement", + "predicate": "!points.length", + "nodeKinds": [], + "fingerprint": "df92876c3244fe99feb209a70fbe8cf3d5e4e179c66f3f4f1b67e3476ee2e4ff" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:1537d76156c784c4", + "fingerprint": "1537d76156c784c4cd01bf33ca55c6efc73ac874c7fb9d9a26e2347ca3cc3058", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "node": "LogicalExpression", + "predicate": "event?.eventType ?? \"\"", + "nodeKinds": [], + "fingerprint": "1537d76156c784c4cd01bf33ca55c6efc73ac874c7fb9d9a26e2347ca3cc3058" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:2daff146483aa3ed", + "fingerprint": "2daff146483aa3eda0c8cc7396317da187032ce78f010eee939b377714bde82a", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "node": "LogicalExpression", + "predicate": "point.category !== null && Number.isFinite(point.time)", + "nodeKinds": [], + "fingerprint": "2daff146483aa3eda0c8cc7396317da187032ce78f010eee939b377714bde82a" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:41b5494efc170bac", + "fingerprint": "41b5494efc170bac8c45d8dc1ba06ce32703587782b8a372bdb558524043686c", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "node": "LogicalExpression", + "predicate": "points.at(-1)?.time ?? firstTime", + "nodeKinds": [], + "fingerprint": "41b5494efc170bac8c45d8dc1ba06ce32703587782b8a372bdb558524043686c" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:572a5e1546e4c285", + "fingerprint": "572a5e1546e4c28506544515fd8a58ad08e72cb2164d39a94a55d12e329557f4", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "node": "LogicalExpression", + "predicate": "point.category === \"message\" && point.userMessage", + "nodeKinds": [], + "fingerprint": "572a5e1546e4c28506544515fd8a58ad08e72cb2164d39a94a55d12e329557f4" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:e1324f975c7e1c55", + "fingerprint": "e1324f975c7e1c55c18b4b245f8de08f84d2173f07facdba1c0a9336002acce4", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "node": "LogicalExpression", + "predicate": "event?.time ?? \"\"", + "nodeKinds": [], + "fingerprint": "e1324f975c7e1c55c18b4b245f8de08f84d2173f07facdba1c0a9336002acce4" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:f237de9b55a180cf", + "fingerprint": "f237de9b55a180cf832c6f01d2a6848b5bf13312ce4fc319d0ddbf6fdc48955d", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "buildAgentMonitorActivity", + "node": "LogicalExpression", + "predicate": "Math.floor(requestedBinCount) || 12", + "nodeKinds": [], + "fingerprint": "f237de9b55a180cf832c6f01d2a6848b5bf13312ce4fc319d0ddbf6fdc48955d" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:02e8b0a59519d332", + "fingerprint": "02e8b0a59519d3328e829ecbcf443e2d9771a58218337e257d9be669f2d3aa20", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "node": "ConditionalExpression", + "predicate": "typeof value === \"string\" && activityCategories.some(({ key }) => key === value)", + "nodeKinds": [], + "fingerprint": "02e8b0a59519d3328e829ecbcf443e2d9771a58218337e257d9be669f2d3aa20" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:e2f711770a78ee3c", + "fingerprint": "e2f711770a78ee3ca0ee236477e0fe35452ca342114e434a34ab46bddf23e1a7", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "node": "ConditionalExpression", + "predicate": "height > 0", + "nodeKinds": [], + "fingerprint": "e2f711770a78ee3ca0ee236477e0fe35452ca342114e434a34ab46bddf23e1a7" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:61b80ed4f8b7138b", + "fingerprint": "61b80ed4f8b7138b6ce695ed9ecba5d49ed97dff3a02fa8c520ab1a348b7f3dd", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "milliseconds < 86_400_000", + "nodeKinds": [], + "fingerprint": "61b80ed4f8b7138b6ce695ed9ecba5d49ed97dff3a02fa8c520ab1a348b7f3dd" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:8933ea0d43090455", + "fingerprint": "8933ea0d430904550b9237bb86809ee799558e6f474d113850bbace76f8d5448", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "milliseconds < 60_000", + "nodeKinds": [], + "fingerprint": "8933ea0d430904550b9237bb86809ee799558e6f474d113850bbace76f8d5448" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:e55163fe990a35b8", + "fingerprint": "e55163fe990a35b805c2febe29de0014b26b77dc0655f9e742a426b246320b63", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "milliseconds < 3_600_000", + "nodeKinds": [], + "fingerprint": "e55163fe990a35b805c2febe29de0014b26b77dc0655f9e742a426b246320b63" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:8e582ac01f0a4722", + "fingerprint": "8e582ac01f0a4722ec1bdbddd15f923b97be7f5970d48f02fe729eaa7c954952", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "node": "LogicalExpression", + "predicate": "bin.failures > 0 && ", + "nodeKinds": [], + "fingerprint": "8e582ac01f0a4722ec1bdbddd15f923b97be7f5970d48f02fe729eaa7c954952" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:b8730e972bd990f9", + "fingerprint": "b8730e972bd990f9fb60751a576fa2f91f4310a92a4440bcac9630db4158a002", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "node": "LogicalExpression", + "predicate": "bin.userMessages > 0 && ", + "nodeKinds": [], + "fingerprint": "b8730e972bd990f9fb60751a576fa2f91f4310a92a4440bcac9630db4158a002" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:bd87e77e5bdcca76", + "fingerprint": "bd87e77e5bdcca76aeb0b8739bc3bee58db0016f945afd6b288a57430d9f4534", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "node": "LogicalExpression", + "predicate": "bin.counts.lifecycle > 0 && ", + "nodeKinds": [], + "fingerprint": "bd87e77e5bdcca76aeb0b8739bc3bee58db0016f945afd6b288a57430d9f4534" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:f92405e0bbb96d56", + "fingerprint": "f92405e0bbb96d56002d40c43343dbd99e1453f8e22e243a38262f4b6ac169dd", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module", + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "export": "module", + "node": "LogicalExpression", + "predicate": "typeof value === \"string\" && activityCategories.some(({ key }) => key === value)", + "nodeKinds": [], + "fingerprint": "f92405e0bbb96d56002d40c43343dbd99e1453f8e22e243a38262f4b6ac169dd" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:ConditionalExpression:f5d5a951381e35d2", + "fingerprint": "f5d5a951381e35d2561d57e9147a17b50201b48962f51bbc9cb47223ddb1bf2d", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "node": "ConditionalExpression", + "predicate": "category === \"message\"", + "nodeKinds": [], + "fingerprint": "f5d5a951381e35d2561d57e9147a17b50201b48962f51bbc9cb47223ddb1bf2d" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:5d0f63658a8a3daa", + "fingerprint": "5d0f63658a8a3daaa627977c1402573dc59c6492e4d010256de509958e9a15b2", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "node": "LogicalExpression", + "predicate": "category === \"diff\" && patch && ", + "nodeKinds": [], + "fingerprint": "5d0f63658a8a3daaa627977c1402573dc59c6492e4d010256de509958e9a15b2" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:a40200dac7d42ba7", + "fingerprint": "a40200dac7d42ba7c765ee8ece3b9f77bb2404f85e8e2a58d217820f36e5d8c0", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "node": "LogicalExpression", + "predicate": "time && <> · ", + "nodeKinds": [], + "fingerprint": "a40200dac7d42ba7c765ee8ece3b9f77bb2404f85e8e2a58d217820f36e5d8c0" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:c2173f9b14a3fd10", + "fingerprint": "c2173f9b14a3fd10d14e5fb5ec67db44bfdf6ed1b288e1446f882a86c2af8122", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "node": "LogicalExpression", + "predicate": "detail.subject && ` ${detail.subject}`", + "nodeKinds": [], + "fingerprint": "c2173f9b14a3fd10d14e5fb5ec67db44bfdf6ed1b288e1446f882a86c2af8122" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:d94410752185574f", + "fingerprint": "d94410752185574f217f5d39129b9fd69ccdc9f7c691e483f1e026aeef756c78", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "AgentMonitorEventCard", + "node": "LogicalExpression", + "predicate": "category === \"diff\" && patch", + "nodeKinds": [], + "fingerprint": "d94410752185574f217f5d39129b9fd69ccdc9f7c691e483f1e026aeef756c78" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:4ae31ffff8c4b4f3", + "fingerprint": "4ae31ffff8c4b4f33ee4f05b0fbf1f4b0fe4672e6ad61f8fa6ac5e434c72ecd5", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "ConditionalExpression", + "predicate": "typeof value === \"string\" && value in categoryLabels", + "nodeKinds": [], + "fingerprint": "4ae31ffff8c4b4f33ee4f05b0fbf1f4b0fe4672e6ad61f8fa6ac5e434c72ecd5" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:7c02222e4afb2871", + "fingerprint": "7c02222e4afb28717728a7b3fca9649e0187ec58395be1188388d6c2978e0b35", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "ConditionalExpression", + "predicate": "typeof value === \"string\" && value in resultLabels", + "nodeKinds": [], + "fingerprint": "7c02222e4afb28717728a7b3fca9649e0187ec58395be1188388d6c2978e0b35" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:855cf3c21f18a38a", + "fingerprint": "855cf3c21f18a38a4b3d33b00b80b92a64d46f3a1b518ac15f4b9bde842bf442", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "ConditionalExpression", + "predicate": "patch.truncated", + "nodeKinds": [], + "fingerprint": "855cf3c21f18a38a4b3d33b00b80b92a64d46f3a1b518ac15f4b9bde842bf442" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:8ff36defcde3a6bf", + "fingerprint": "8ff36defcde3a6bfcbabf8188bd570858c14cbdc95adf81c1e5994953edebb4e", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "ConditionalExpression", + "predicate": "separator < 0", + "nodeKinds": [], + "fingerprint": "8ff36defcde3a6bfcbabf8188bd570858c14cbdc95adf81c1e5994953edebb4e" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:945aaf2d9c633122", + "fingerprint": "945aaf2d9c63312207e2f69a4ca446027616e72b1315e483ed518e8ccf754b9a", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "ConditionalExpression", + "predicate": "typeof value === \"string\"", + "nodeKinds": [], + "fingerprint": "945aaf2d9c63312207e2f69a4ca446027616e72b1315e483ed518e8ccf754b9a" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:98554e201591453c", + "fingerprint": "98554e201591453c9b2802ce6cc62f03ec32932266f47b2b0ce6d2dc622d5136", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "ConditionalExpression", + "predicate": "Number.isSafeInteger(line) && line >= 0", + "nodeKinds": [], + "fingerprint": "98554e201591453c9b2802ce6cc62f03ec32932266f47b2b0ce6d2dc622d5136" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:b5a0348134741b50", + "fingerprint": "b5a0348134741b5027c22f80c26aa5bf39aa9d6e2514112355ed16948324fe56", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "ConditionalExpression", + "predicate": "separator < 0", + "nodeKinds": [], + "fingerprint": "b5a0348134741b5027c22f80c26aa5bf39aa9d6e2514112355ed16948324fe56" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:d561245c56bd4d59", + "fingerprint": "d561245c56bd4d59d8494253ca64c920c0164f27479971ce493e8dc5bc89456e", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "ConditionalExpression", + "predicate": "isSearch", + "nodeKinds": [], + "fingerprint": "d561245c56bd4d59d8494253ca64c920c0164f27479971ce493e8dc5bc89456e" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:ebbb3f793e157af6", + "fingerprint": "ebbb3f793e157af6116123f8e4dc9f6515b8fb8fcb934fc295903eea324b521b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "ConditionalExpression", + "predicate": "isSearch", + "nodeKinds": [], + "fingerprint": "ebbb3f793e157af6116123f8e4dc9f6515b8fb8fcb934fc295903eea324b521b" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:007847839945ed50", + "fingerprint": "007847839945ed502cac03cc978011f440d4c2374d3368e3789b07f627cc8baf", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "value[index] === \"“\"", + "nodeKinds": [], + "fingerprint": "007847839945ed502cac03cc978011f440d4c2374d3368e3789b07f627cc8baf" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:06b20eb8edee8716", + "fingerprint": "06b20eb8edee87169fb80e3a1ea11c9a2a15b07e6e638085511b959399fba9fa", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "category === \"message\"", + "nodeKinds": [], + "fingerprint": "06b20eb8edee87169fb80e3a1ea11c9a2a15b07e6e638085511b959399fba9fa" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:13592c46eb7bdc56", + "fingerprint": "13592c46eb7bdc56dfc1a2bc4d45ef5a4bdb9dc931cdd7304c13c4a1efa5484b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "index > cursor", + "nodeKinds": [], + "fingerprint": "13592c46eb7bdc56dfc1a2bc4d45ef5a4bdb9dc931cdd7304c13c4a1efa5484b" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:1f8bc3232d470327", + "fingerprint": "1f8bc3232d47032799d940755b4ca68b35bab5923f7b235d97f5234e0a0b48a9", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "!Array.isArray(candidate.lines) || candidate.lines.length < 1 || !candidate.lines.every((line) => typeof line === \"string\") || typeof candidate.truncated !== \"boolean\"", + "nodeKinds": [], + "fingerprint": "1f8bc3232d47032799d940755b4ca68b35bab5923f7b235d97f5234e0a0b48a9" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:3977a717ee26b4c0", + "fingerprint": "3977a717ee26b4c0bb2bd651f99dda74c06acec9ae507573fee361be798bc94c", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "line.startsWith(\"-\")", + "nodeKinds": [], + "fingerprint": "3977a717ee26b4c0bb2bd651f99dda74c06acec9ae507573fee361be798bc94c" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:44dcfe328c3e1826", + "fingerprint": "44dcfe328c3e1826aa37c4a49686c5bf4877192c52bd7b3f039d0b98cb72b01b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "token.startsWith(\"`\")", + "nodeKinds": [], + "fingerprint": "44dcfe328c3e1826aa37c4a49686c5bf4877192c52bd7b3f039d0b98cb72b01b" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:5f3c7ddd3c9e5299", + "fingerprint": "5f3c7ddd3c9e52991b41ce1627ca33648b5bc48a0df9a88f56e7033a06a480e1", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "!value || typeof value !== \"object\" || Array.isArray(value)", + "nodeKinds": [], + "fingerprint": "5f3c7ddd3c9e52991b41ce1627ca33648b5bc48a0df9a88f56e7033a06a480e1" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:6be06653e9876d6e", + "fingerprint": "6be06653e9876d6ea92a41dfb98b0327067cd4f6b9b9e963362cf3cf84f96c71", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "line.startsWith(\"@@\")", + "nodeKinds": [], + "fingerprint": "6be06653e9876d6ea92a41dfb98b0327067cd4f6b9b9e963362cf3cf84f96c71" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:9287495dc2447ef3", + "fingerprint": "9287495dc2447ef32961113cb30226e8010bcf8e812f828d7cae6af6b8be63d8", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "token.startsWith(\"**\")", + "nodeKinds": [], + "fingerprint": "9287495dc2447ef32961113cb30226e8010bcf8e812f828d7cae6af6b8be63d8" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:94cafd2f1f3e1c75", + "fingerprint": "94cafd2f1f3e1c753df6f9ce76c81eedeffac9ed8785339bf37f3ed2eaae0e15", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "!quoted && value.startsWith(\" · \", index)", + "nodeKinds": [], + "fingerprint": "94cafd2f1f3e1c753df6f9ce76c81eedeffac9ed8785339bf37f3ed2eaae0e15" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:98293e4922127ad1", + "fingerprint": "98293e4922127ad14153bf4465a59a7d2b58612c72094d6fa72a24d56a8a8d2f", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "typeof value !== \"string\" || !Number.isFinite(Date.parse(value))", + "nodeKinds": [], + "fingerprint": "98293e4922127ad14153bf4465a59a7d2b58612c72094d6fa72a24d56a8a8d2f" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:c47b24d096b3b9a7", + "fingerprint": "c47b24d096b3b9a7e91779a7472237f930a17e8a12c1dc792a718cf1429fc2cf", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "cursor < value.length", + "nodeKinds": [], + "fingerprint": "c47b24d096b3b9a7e91779a7472237f930a17e8a12c1dc792a718cf1429fc2cf" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d17b28be779777b8", + "fingerprint": "d17b28be779777b85291fdcc057dd1aaae9d9c86a86cf1c63d47aed819294bdd", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "link", + "nodeKinds": [], + "fingerprint": "d17b28be779777b85291fdcc057dd1aaae9d9c86a86cf1c63d47aed819294bdd" + } + }, + { + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d3c4e956c1948467", + "fingerprint": "d3c4e956c19484678c2137827d18f1e2599248e0775afe4dfcd121a707bc8a39", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", - "node": "ConditionalExpression", - "predicate": "plan.plan", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "terminalDetailLabels.has(parts.at(-1)?.toLowerCase() ?? \"\")", "nodeKinds": [], - "fingerprint": "204400a3fe3e8e38ea669c7df40b09e4a8f4a5cfb68a6baaa7185cced03e3952" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "d3c4e956c19484678c2137827d18f1e2599248e0775afe4dfcd121a707bc8a39" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:ConditionalExpression:d9b7e7fd8ec8f2da", - "fingerprint": "d9b7e7fd8ec8f2da747af2fd53e01c29636c097cd1229128c135c24989f9c775", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:da64481645c2b4f6", + "fingerprint": "da64481645c2b4f69ea8b311f33e628fcc0fa5fb989418d94273cca9f3499aea", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", - "node": "ConditionalExpression", - "predicate": "path[1] === \"new\"", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "IfStatement", + "predicate": "value[index] === \"”\"", "nodeKinds": [], - "fingerprint": "d9b7e7fd8ec8f2da747af2fd53e01c29636c097cd1229128c135c24989f9c775" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "da64481645c2b4f69ea8b311f33e628fcc0fa5fb989418d94273cca9f3499aea" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:591fcc96cd5dc7ad", - "fingerprint": "591fcc96cd5dc7adfe952e27d332b4a9d8350c313204273bdd7ccf247f16b31e", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:df82132ba73ce4e6", + "fingerprint": "df82132ba73ce4e6836c01b6584a4315d4df088ce465e081198bbf81ae158013", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "node": "IfStatement", - "predicate": "path.length === 2 && path[0] === \"ovens\"", + "predicate": "/^(?:\\*\\*\\* |diff --git |--- |\\+\\+\\+ )/u.test(line)", "nodeKinds": [], - "fingerprint": "591fcc96cd5dc7adfe952e27d332b4a9d8350c313204273bdd7ccf247f16b31e" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "df82132ba73ce4e6836c01b6584a4315d4df088ce465e081198bbf81ae158013" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:5c83de377539a014", - "fingerprint": "5c83de377539a014f74673aef18027bf0b07bf29f8fa2c8476edcc463a8880f5", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:f7da58c441dab76a", + "fingerprint": "f7da58c441dab76a02f8c637e8c79a1002f705cce799a7b2c5a3e831a0ee479c", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "node": "IfStatement", - "predicate": "path.length === 2 && ![\"api\", \"ovens\", \"runs\"].includes(path[0])", + "predicate": "line.startsWith(\"+\")", "nodeKinds": [], - "fingerprint": "5c83de377539a014f74673aef18027bf0b07bf29f8fa2c8476edcc463a8880f5" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "f7da58c441dab76a02f8c637e8c79a1002f705cce799a7b2c5a3e831a0ee479c" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:5f384f1e23a54fea", - "fingerprint": "5f384f1e23a54fea5347184f2e646938d5280994d7663ffe7971b0117d798808", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:11eb1346655210ad", + "fingerprint": "11eb1346655210add1115d8a440f544328b82a4fda8db9e621821cea6c1daaf7", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", - "node": "IfStatement", - "predicate": "path.length === 5 && path[0] === \"r\" && path[3] === \"o\"", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "LogicalExpression", + "predicate": "typeof value === \"string\" && value in categoryLabels", "nodeKinds": [], - "fingerprint": "5f384f1e23a54fea5347184f2e646938d5280994d7663ffe7971b0117d798808" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "11eb1346655210add1115d8a440f544328b82a4fda8db9e621821cea6c1daaf7" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:7fa3666694a14a9c", - "fingerprint": "7fa3666694a14a9c8071e1343fce0f35594e292b2ae6b773e34a5f73374ac903", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:22b3c14914342b73", + "fingerprint": "22b3c14914342b73074a5c379547340069daf6672b71ba248492e8a7e242a846", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", - "node": "IfStatement", - "predicate": "path.length === 2 && path[0] === \"runs\" && path[1] === \"new\"", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "LogicalExpression", + "predicate": "parts.shift() ?? \"Event recorded\"", "nodeKinds": [], - "fingerprint": "7fa3666694a14a9c8071e1343fce0f35594e292b2ae6b773e34a5f73374ac903" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "22b3c14914342b73074a5c379547340069daf6672b71ba248492e8a7e242a846" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:8412eac1f8c06ad2", - "fingerprint": "8412eac1f8c06ad2a06b2a4e7cf16cb1d7708a72baa5c7f4a01e5716a947903a", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:2d2c6d08639f12cd", + "fingerprint": "2d2c6d08639f12cdf9663da5a2dcb29b51683871a973266ea9f3b10e3546f976", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", - "node": "IfStatement", - "predicate": "path.length === 1 && path[0] === \"ovens\"", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "LogicalExpression", + "predicate": "match.index ?? 0", "nodeKinds": [], - "fingerprint": "8412eac1f8c06ad2a06b2a4e7cf16cb1d7708a72baa5c7f4a01e5716a947903a" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "2d2c6d08639f12cdf9663da5a2dcb29b51683871a973266ea9f3b10e3546f976" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:950dd3b4be5305ae", - "fingerprint": "950dd3b4be5305aed04dc9ee0cd375159c2fc5c4e160153a83e1600aa9e9f7c4", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:3fccfc6c117112bb", + "fingerprint": "3fccfc6c117112bb815dbe001c0ec05266dadbfb20389d4a2eb7c95093987a9e", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", - "node": "IfStatement", - "predicate": "path.length === 3 && path[0] === \"r\"", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "LogicalExpression", + "predicate": "!value || typeof value !== \"object\"", "nodeKinds": [], - "fingerprint": "950dd3b4be5305aed04dc9ee0cd375159c2fc5c4e160153a83e1600aa9e9f7c4" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "3fccfc6c117112bb815dbe001c0ec05266dadbfb20389d4a2eb7c95093987a9e" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:953112651f1ef195", - "fingerprint": "953112651f1ef1953671f9611119c98e9132414ad40144f4088f6be17bd0970a", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:48515b2a8e3fb0be", + "fingerprint": "48515b2a8e3fb0bee754f5f5abd556af1e5e2c12d027498eed60813d808f4acd", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", - "node": "IfStatement", - "predicate": "path.length === 4 && path[0] === \"r\" && path[2] === \"o\"", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "LogicalExpression", + "predicate": "!Array.isArray(candidate.lines) || candidate.lines.length < 1 || !candidate.lines.every((line) => typeof line === \"string\")", "nodeKinds": [], - "fingerprint": "953112651f1ef1953671f9611119c98e9132414ad40144f4088f6be17bd0970a" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "48515b2a8e3fb0bee754f5f5abd556af1e5e2c12d027498eed60813d808f4acd" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:IfStatement:9ff15ff7ddaad92e", - "fingerprint": "9ff15ff7ddaad92edac558d48f7ffa0dfde0b1a1690465e279274730717d22e1", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:5b629e3f0402920d", + "fingerprint": "5b629e3f0402920d652c2d39d9626dd01f52e67bcfb3ddfe15fabf7db663d37a", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", - "node": "IfStatement", - "predicate": "path.length === 0", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "LogicalExpression", + "predicate": "Number.isSafeInteger(line) && line >= 0", "nodeKinds": [], - "fingerprint": "9ff15ff7ddaad92edac558d48f7ffa0dfde0b1a1690465e279274730717d22e1" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "5b629e3f0402920d652c2d39d9626dd01f52e67bcfb3ddfe15fabf7db663d37a" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:0cb016eb49fe9293", - "fingerprint": "0cb016eb49fe92932b9bc04bc75dbc054436d56129256fea88781add3df228a4", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:705b20be0817e601", + "fingerprint": "705b20be0817e601c1068639e074aa2461eac28f3ed2df02b4ddfa10db02f0ce", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "node": "LogicalExpression", - "predicate": "path.length === 2 && path[0] === \"runs\"", + "predicate": "!quoted && value.startsWith(\" · \", index)", "nodeKinds": [], - "fingerprint": "0cb016eb49fe92932b9bc04bc75dbc054436d56129256fea88781add3df228a4" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "705b20be0817e601c1068639e074aa2461eac28f3ed2df02b4ddfa10db02f0ce" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:238f33b58dd3b706", - "fingerprint": "238f33b58dd3b7067c3521ec7bc26a836b078b96db1fecbe6b69d4e5cc5ba076", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:74b4829187561854", + "fingerprint": "74b4829187561854edb56f9950b7772c00acab326f9404071c7499770ee4238c", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "node": "LogicalExpression", - "predicate": "path.length === 2 && path[0] === \"ovens\"", + "predicate": "patch.truncated &&

The captured patch exceeded the monitor limit.

", "nodeKinds": [], - "fingerprint": "238f33b58dd3b7067c3521ec7bc26a836b078b96db1fecbe6b69d4e5cc5ba076" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "74b4829187561854edb56f9950b7772c00acab326f9404071c7499770ee4238c" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:2ae724c5f9dcec8d", - "fingerprint": "2ae724c5f9dcec8dba8e961268612bbedfc749fb44db4714c52628af7c2f087e", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:7c776ac90ed6c801", + "fingerprint": "7c776ac90ed6c8016a64c0c25d286c4c95891d25565e4301edd331534e76a3fe", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "node": "LogicalExpression", - "predicate": "path.length === 1 && path[0] === \"ovens\"", + "predicate": "!value || typeof value !== \"object\" || Array.isArray(value)", "nodeKinds": [], - "fingerprint": "2ae724c5f9dcec8dba8e961268612bbedfc749fb44db4714c52628af7c2f087e" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "7c776ac90ed6c8016a64c0c25d286c4c95891d25565e4301edd331534e76a3fe" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:71e4f72b7e7eba13", - "fingerprint": "71e4f72b7e7eba13d3af2086619eb741ac34f24c6b70d5786442a9ff127e531c", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:803ff61e52d117a8", + "fingerprint": "803ff61e52d117a899ace17c94d115f984922d23a61de4f0f6a9acf245487344", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "node": "LogicalExpression", - "predicate": "path.length === 4 && path[0] === \"r\"", + "predicate": "typeof value === \"string\" && value in resultLabels", "nodeKinds": [], - "fingerprint": "71e4f72b7e7eba13d3af2086619eb741ac34f24c6b70d5786442a9ff127e531c" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "803ff61e52d117a899ace17c94d115f984922d23a61de4f0f6a9acf245487344" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:841542fb6a71f995", - "fingerprint": "841542fb6a71f995bbfe814bc0fa2e8f5c1782a7c69bded22e924bcaad666ddf", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:9536c93d464ca696", + "fingerprint": "9536c93d464ca696240e88914677afd709f69c9c4e962915ae2f49089365296f", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "node": "LogicalExpression", - "predicate": "path.length === 3 && path[0] === \"r\"", + "predicate": "!Array.isArray(candidate.lines) || candidate.lines.length < 1 || !candidate.lines.every((line) => typeof line === \"string\") || typeof candidate.truncated !== \"boolean\"", "nodeKinds": [], - "fingerprint": "841542fb6a71f995bbfe814bc0fa2e8f5c1782a7c69bded22e924bcaad666ddf" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "9536c93d464ca696240e88914677afd709f69c9c4e962915ae2f49089365296f" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:93f9ee941d95b281", - "fingerprint": "93f9ee941d95b281f2143999ffcb10d8311bc2be10d71aab9bab3b4ada6b3e65", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:a4057d42367bac6b", + "fingerprint": "a4057d42367bac6ba45fdb6591a43e54b9cbb89bdc3b0f31f6de9bc2494ec4d9", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "node": "LogicalExpression", - "predicate": "path.length === 4 && path[0] === \"r\" && path[2] === \"o\"", + "predicate": "line || \" \"", "nodeKinds": [], - "fingerprint": "93f9ee941d95b281f2143999ffcb10d8311bc2be10d71aab9bab3b4ada6b3e65" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "a4057d42367bac6ba45fdb6591a43e54b9cbb89bdc3b0f31f6de9bc2494ec4d9" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:a647cc682d7569bd", - "fingerprint": "a647cc682d7569bdb3053d5af3205fae93299b2de042cbedbb2eff44fca359a2", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:aa5e8006f832cd2d", + "fingerprint": "aa5e8006f832cd2d68e6d486444fdd140ccddb0b77426e0bc44f50bc88cec9fd", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "node": "LogicalExpression", - "predicate": "path.length === 2 && ![\"api\", \"ovens\", \"runs\"].includes(path[0])", + "predicate": "parts.at(-1)?.toLowerCase() ?? \"\"", "nodeKinds": [], - "fingerprint": "a647cc682d7569bdb3053d5af3205fae93299b2de042cbedbb2eff44fca359a2" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "aa5e8006f832cd2d68e6d486444fdd140ccddb0b77426e0bc44f50bc88cec9fd" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:c6278027f91d5742", - "fingerprint": "c6278027f91d57426b3810136fc6a9fcd55cd584193562a7bca4cae458cd3e4f", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:b607cbb3ca271db0", + "fingerprint": "b607cbb3ca271db0c5e10918b3189757bed25a0198772cc6ec4f3e1dad5b881b", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "node": "LogicalExpression", - "predicate": "path.length === 5 && path[0] === \"r\" && path[3] === \"o\"", + "predicate": "value || \"Agent update\"", "nodeKinds": [], - "fingerprint": "c6278027f91d57426b3810136fc6a9fcd55cd584193562a7bca4cae458cd3e4f" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "b607cbb3ca271db0c5e10918b3189757bed25a0198772cc6ec4f3e1dad5b881b" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:d1bc221bd65d1daf", - "fingerprint": "d1bc221bd65d1dafdb92f2f74f90e80c649f99c871d2b76217b95f5cd026e9c7", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:c5ebcdcf4164d255", + "fingerprint": "c5ebcdcf4164d255fc87126cb87aae233f4bb3bd484a8e712b7f36bbb923e5e9", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "node": "LogicalExpression", - "predicate": "path.length === 2 && path[0] === \"runs\" && path[1] === \"new\"", + "predicate": "typeof value !== \"string\" || !Number.isFinite(Date.parse(value))", "nodeKinds": [], - "fingerprint": "d1bc221bd65d1dafdb92f2f74f90e80c649f99c871d2b76217b95f5cd026e9c7" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "c5ebcdcf4164d255fc87126cb87aae233f4bb3bd484a8e712b7f36bbb923e5e9" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:parseRoute:LogicalExpression:d215fd53248d72ed", - "fingerprint": "d215fd53248d72ed23992f16856fd756153dff0b941784d16b5d34bd92a37352", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:dbe2cff14f0a7242", + "fingerprint": "dbe2cff14f0a724228e8dfd5d61b3b6721bb6de6ead72bef7beb9b3f39337d57", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "parseRoute", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "node": "LogicalExpression", - "predicate": "path.length === 5 && path[0] === \"r\"", + "predicate": "value || \"Event recorded\"", "nodeKinds": [], - "fingerprint": "d215fd53248d72ed23992f16856fd756153dff0b941784d16b5d34bd92a37352" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:parseRoute" + "fingerprint": "dbe2cff14f0a724228e8dfd5d61b3b6721bb6de6ead72bef7beb9b3f39337d57" } }, { - "id": "branch:dashboard/src/lib/route-model.mjs:repoOvenHref:ConditionalExpression:822b606e69383ea0", - "fingerprint": "822b606e69383ea067b1ffa4f3f2c5579b67b400b7fc766c90cd0f8542b41923", - "classification": "blocker-to-migrate", + "id": "branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:f7531bbd732c637e", + "fingerprint": "f7531bbd732c637e7fe26337e05a5565606c804e55334ae4d94d14892ca45e9f", + "classification": "closed-shared-adapter", "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/lib/route-model.mjs", - "export": "repoOvenHref", + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/lib/route-model.mjs", - "export": "repoOvenHref", - "node": "ConditionalExpression", - "predicate": "repoKey", + "path": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "export": "module", + "node": "LogicalExpression", + "predicate": "!Array.isArray(candidate.lines) || candidate.lines.length < 1", "nodeKinds": [], - "fingerprint": "822b606e69383ea067b1ffa4f3f2c5579b67b400b7fc766c90cd0f8542b41923" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal runtime must implement dashboard/src/lib/route-model.mjs:repoOvenHref" + "fingerprint": "f7531bbd732c637e7fe26337e05a5565606c804e55334ae4d94d14892ca45e9f" } }, { @@ -4844,6 +6530,66 @@ "fingerprint": "7a6632d7fc7334b884302929bd8eb7cb936e3bee6673c019a67248e381ee595a" } }, + { + "id": "branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:2e07ddfa96aab527", + "fingerprint": "2e07ddfa96aab52767d63664b5a8ec98e9d0877f08325fd971b2e89eb461eeb7", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace", + "path": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx", + "export": "ChecklistWorkspace", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx", + "export": "ChecklistWorkspace", + "node": "LogicalExpression", + "predicate": "view !== \"items\" && ", + "nodeKinds": [], + "fingerprint": "2e07ddfa96aab52767d63664b5a8ec98e9d0877f08325fd971b2e89eb461eeb7" + } + }, + { + "id": "branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:3f3652279171acff", + "fingerprint": "3f3652279171acfff1411b296d526f2a19cf3ad26997fe4dbce84b017c6e2a9b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace", + "path": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx", + "export": "ChecklistWorkspace", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx", + "export": "ChecklistWorkspace", + "node": "LogicalExpression", + "predicate": "selectedItemId ?? data.selectedItemId", + "nodeKinds": [], + "fingerprint": "3f3652279171acfff1411b296d526f2a19cf3ad26997fe4dbce84b017c6e2a9b" + } + }, + { + "id": "branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:4102ac1c73e332c8", + "fingerprint": "4102ac1c73e332c8478df39803e1e9637f565bfcb95021c1d2d5d7ec432735a2", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace", + "path": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx", + "export": "ChecklistWorkspace", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx", + "export": "ChecklistWorkspace", + "node": "LogicalExpression", + "predicate": "view !== \"detail\" && ", + "nodeKinds": [], + "fingerprint": "4102ac1c73e332c8478df39803e1e9637f565bfcb95021c1d2d5d7ec432735a2" + } + }, { "id": "branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:module:ConditionalExpression:00e9febb41fb9293", "fingerprint": "00e9febb41fb9293514dd4935d76dfc3f5d9b86a6908dda94e2d672e5057b3dc", @@ -24065,8 +25811,8 @@ } }, { - "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:5dbc7cb76ae26938", - "fingerprint": "5dbc7cb76ae26938882433514518a70d837938f3a454b66e0293f735ab16a08e", + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:139ce3999bd34b95", + "fingerprint": "139ce3999bd34b95d1d20af5c2126c7c8ec2f04c41d22c4788c596a80d340024", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -24081,12 +25827,12 @@ "node": "ConditionalExpression", "predicate": "error", "nodeKinds": [], - "fingerprint": "5dbc7cb76ae26938882433514518a70d837938f3a454b66e0293f735ab16a08e" + "fingerprint": "139ce3999bd34b95d1d20af5c2126c7c8ec2f04c41d22c4788c596a80d340024" } }, { - "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:622a561a4a95288b", - "fingerprint": "622a561a4a95288b1a1cfc9dc10769035d3c962f19e29725039ac8012786eb29", + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:25c2bd2ab09cf3b6", + "fingerprint": "25c2bd2ab09cf3b6fd72d3e6482daa95ea1563ee86016d6b47135a6a89a6e23d", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -24099,14 +25845,14 @@ "path": "dashboard/src/oven/FeedList/FeedList.tsx", "export": "FeedList", "node": "ConditionalExpression", - "predicate": "loading", + "predicate": "!feeds.length", "nodeKinds": [], - "fingerprint": "622a561a4a95288b1a1cfc9dc10769035d3c962f19e29725039ac8012786eb29" + "fingerprint": "25c2bd2ab09cf3b6fd72d3e6482daa95ea1563ee86016d6b47135a6a89a6e23d" } }, { - "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:cd1bf78e83e8998c", - "fingerprint": "cd1bf78e83e8998cd5099cf1467acadf508463aa04768fae4a88790e7456123d", + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:8778c3eaee02a865", + "fingerprint": "8778c3eaee02a86553b058e3f07a8496d79b0a4ffc757bcf3ef9129e79a94f45", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -24119,9 +25865,69 @@ "path": "dashboard/src/oven/FeedList/FeedList.tsx", "export": "FeedList", "node": "ConditionalExpression", - "predicate": "!feeds.length", + "predicate": "loading", + "nodeKinds": [], + "fingerprint": "8778c3eaee02a86553b058e3f07a8496d79b0a4ffc757bcf3ef9129e79a94f45" + } + }, + { + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:1ca2c32c22777c90", + "fingerprint": "1ca2c32c22777c90066520b204d14560fd1285e9f76421b80804ebcd209371d0", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/FeedList/FeedList.tsx:FeedList", + "path": "dashboard/src/oven/FeedList/FeedList.tsx", + "export": "FeedList", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/FeedList/FeedList.tsx", + "export": "FeedList", + "node": "LogicalExpression", + "predicate": "feed.title ?? feed.identity.session", + "nodeKinds": [], + "fingerprint": "1ca2c32c22777c90066520b204d14560fd1285e9f76421b80804ebcd209371d0" + } + }, + { + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:616f67096c39e513", + "fingerprint": "616f67096c39e51368283664c953e7e3d571f463fb2e480686989d596c8aadf8", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/FeedList/FeedList.tsx:FeedList", + "path": "dashboard/src/oven/FeedList/FeedList.tsx", + "export": "FeedList", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/FeedList/FeedList.tsx", + "export": "FeedList", + "node": "LogicalExpression", + "predicate": "feed.detail && {feed.detail}", + "nodeKinds": [], + "fingerprint": "616f67096c39e51368283664c953e7e3d571f463fb2e480686989d596c8aadf8" + } + }, + { + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:61c56e7fe806d325", + "fingerprint": "61c56e7fe806d325d3ba2b2028acde8b26309cdb6ff16f6aad93053bdaa561e6", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/FeedList/FeedList.tsx:FeedList", + "path": "dashboard/src/oven/FeedList/FeedList.tsx", + "export": "FeedList", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/FeedList/FeedList.tsx", + "export": "FeedList", + "node": "LogicalExpression", + "predicate": "feed.state ?? undefined", "nodeKinds": [], - "fingerprint": "cd1bf78e83e8998cd5099cf1467acadf508463aa04768fae4a88790e7456123d" + "fingerprint": "61c56e7fe806d325d3ba2b2028acde8b26309cdb6ff16f6aad93053bdaa561e6" } }, { @@ -24145,8 +25951,8 @@ } }, { - "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:8b6418830b656eff", - "fingerprint": "8b6418830b656eff0209968dc6976886749182f15b6b3d9a49811bb1fc7e419d", + "id": "branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:aa474a2a03bfe367", + "fingerprint": "aa474a2a03bfe367f6e611a6b0a4f58f94424011bb99ac18f96b8def99d93e3a", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -24159,9 +25965,9 @@ "path": "dashboard/src/oven/FeedList/FeedList.tsx", "export": "FeedList", "node": "LogicalExpression", - "predicate": "showRepository && repository {feed.repoLabel}", + "predicate": "showRepository && repository {feed.repoLabel}", "nodeKinds": [], - "fingerprint": "8b6418830b656eff0209968dc6976886749182f15b6b3d9a49811bb1fc7e419d" + "fingerprint": "aa474a2a03bfe367f6e611a6b0a4f58f94424011bb99ac18f96b8def99d93e3a" } }, { @@ -26264,6 +28070,146 @@ "fingerprint": "28395a0107f10d736f20772960f47546e6aa1ee1de7638949a77f229e4617091" } }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:39eeec3add1ac5ec", + "fingerprint": "39eeec3add1ac5eca9b65a3f40331c548e41a36f5767f34115a084e00528aaa0", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "node": "ConditionalExpression", + "predicate": "value === false", + "nodeKinds": [], + "fingerprint": "39eeec3add1ac5eca9b65a3f40331c548e41a36f5767f34115a084e00528aaa0" + } + }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:3d39402c33fe783a", + "fingerprint": "3d39402c33fe783aea12a853001db01ba2204f94ffe59beff3c125bfb0000f0c", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "node": "ConditionalExpression", + "predicate": "value === null || value === undefined || value === \"\"", + "nodeKinds": [], + "fingerprint": "3d39402c33fe783aea12a853001db01ba2204f94ffe59beff3c125bfb0000f0c" + } + }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:437fa8c05ae07c3b", + "fingerprint": "437fa8c05ae07c3bb63fc637ce4d3905f6a5fa8bf024b07664e4610c5fe2c6e9", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "node": "ConditionalExpression", + "predicate": "visual == null || visual === false", + "nodeKinds": [], + "fingerprint": "437fa8c05ae07c3bb63fc637ce4d3905f6a5fa8bf024b07664e4610c5fe2c6e9" + } + }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:28cbf958e8e92b0d", + "fingerprint": "28cbf958e8e92b0d93c9c34b93c1369978df056b10d173f5dcc6ac4102445456", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "node": "LogicalExpression", + "predicate": "visual == null || visual === false", + "nodeKinds": [], + "fingerprint": "28cbf958e8e92b0d93c9c34b93c1369978df056b10d173f5dcc6ac4102445456" + } + }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:b34d755a3d9d24a9", + "fingerprint": "b34d755a3d9d24a97fad75cb98e916a03e04fac79562312033b948c02f9f842b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "node": "LogicalExpression", + "predicate": "[className, visual == null || visual === false ? \"is-visual-free\" : \"\"].filter(Boolean).join(\" \") || undefined", + "nodeKinds": [], + "fingerprint": "b34d755a3d9d24a97fad75cb98e916a03e04fac79562312033b948c02f9f842b" + } + }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d1fa5fe08a7dc0c9", + "fingerprint": "d1fa5fe08a7dc0c9abab868076a125280c8582444e68a0332f458e06a439d1ff", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "node": "LogicalExpression", + "predicate": "value === null || value === undefined", + "nodeKinds": [], + "fingerprint": "d1fa5fe08a7dc0c9abab868076a125280c8582444e68a0332f458e06a439d1ff" + } + }, + { + "id": "branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d940a4b58d02a9e7", + "fingerprint": "d940a4b58d02a9e7702fc8c268999f20fa41cecb2278f34455ab421744013ce7", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem", + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/KpiItem/KpiItem.tsx", + "export": "KpiItem", + "node": "LogicalExpression", + "predicate": "value === null || value === undefined || value === \"\"", + "nodeKinds": [], + "fingerprint": "d940a4b58d02a9e7702fc8c268999f20fa41cecb2278f34455ab421744013ce7" + } + }, { "id": "branch:dashboard/src/oven/LogTable/LogTable.tsx:LogTable:ConditionalExpression:4e3dabf51cd1fc67", "fingerprint": "4e3dabf51cd1fc67a15543f55ea4b439c5b42d4ccf995074ddde5ccc49253829", @@ -31352,6 +33298,26 @@ "fingerprint": "fc39e7631a5b14e8dbf6e5aa9caf356dd867e4776fc22d34d752c61b41329451" } }, + { + "id": "branch:dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter:ConditionalExpression:2bc22669a5696d0b", + "fingerprint": "2bc22669a5696d0bd76c7b03fe3e7dc87fce78436cef81c3e6a322061af30335", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter", + "path": "dashboard/src/oven/runtime/control-adapters.tsx", + "export": "PaginationAdapter", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/control-adapters.tsx", + "export": "PaginationAdapter", + "node": "ConditionalExpression", + "predicate": "typeof attrs(node).subject === \"string\"", + "nodeKinds": [], + "fingerprint": "2bc22669a5696d0bd76c7b03fe3e7dc87fce78436cef81c3e6a322061af30335" + } + }, { "id": "branch:dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter:ConditionalExpression:7cc43de1322ef602", "fingerprint": "7cc43de1322ef602cf344244126052653e6b05e136eecf357d3fa11c5bc76d56", @@ -32665,26 +34631,6 @@ "fingerprint": "fbf6d4564b415e0ce6a790dc9cd940eb2c704e483152a5ce7d483e3e0d483638" } }, - { - "id": "branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:2ce3337742db6ccc", - "fingerprint": "2ce3337742db6ccc23e5f082bc3936a2e5ab9159a3d4959962910bb611cb66ee", - "classification": "closed-shared-adapter", - "semanticOwner": { - "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps", - "path": "dashboard/src/oven/runtime/log-table-adapter.ts", - "export": "buildLogTableProps", - "version": "burnlist-console-oven-behavior@1" - }, - "source": { - "path": "dashboard/src/oven/runtime/log-table-adapter.ts", - "export": "buildLogTableProps", - "node": "ConditionalExpression", - "predicate": "source.length === 0 && emptyText !== undefined", - "nodeKinds": [], - "fingerprint": "2ce3337742db6ccc23e5f082bc3936a2e5ab9159a3d4959962910bb611cb66ee" - } - }, { "id": "branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:3ae1acde645995de", "fingerprint": "3ae1acde645995de093518cef12c7682b1a77169b7973c7ab3be724ef705de7f", @@ -32785,6 +34731,26 @@ "fingerprint": "c05afd10bd7c925faebaf676187bf7252588962ebc4f3eb84e7579e9865fac97" } }, + { + "id": "branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:cf811942c1b5778c", + "fingerprint": "cf811942c1b5778c5f559018b73df3320f1f996c0a122759258076836cdf41d3", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps", + "path": "dashboard/src/oven/runtime/log-table-adapter.ts", + "export": "buildLogTableProps", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/log-table-adapter.ts", + "export": "buildLogTableProps", + "node": "ConditionalExpression", + "predicate": "source.length === 0", + "nodeKinds": [], + "fingerprint": "cf811942c1b5778c5f559018b73df3320f1f996c0a122759258076836cdf41d3" + } + }, { "id": "branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:0217fcbd88b18e00", "fingerprint": "0217fcbd88b18e00353c321aa5c69500de6907ddf36126401994248372763fe4", @@ -32806,8 +34772,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2f2c1c0c8395b9d4", - "fingerprint": "2f2c1c0c8395b9d4b685fe92ccd6355562b266be5dfaed2afe2b96597f4b83f2", + "id": "branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2e8e45f47d7d9a90", + "fingerprint": "2e8e45f47d7d9a90658273972e2a68a30e8e20a013ce78fe088659314e0ef7b8", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -32820,9 +34786,9 @@ "path": "dashboard/src/oven/runtime/log-table-adapter.ts", "export": "buildLogTableProps", "node": "LogicalExpression", - "predicate": "source.length === 0 && emptyText !== undefined", + "predicate": "emptyText ?? \"No entries yet.\"", "nodeKinds": [], - "fingerprint": "2f2c1c0c8395b9d4b685fe92ccd6355562b266be5dfaed2afe2b96597f4b83f2" + "fingerprint": "2e8e45f47d7d9a90658273972e2a68a30e8e20a013ce78fe088659314e0ef7b8" } }, { @@ -33711,6 +35677,26 @@ "fingerprint": "09ce0d2f1a535c5109133595aed96c43d0f07cc42ebdf5f0b2aa88f507ad197c" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:0b57ea3c6689d2f6", + "fingerprint": "0b57ea3c6689d2f64ac89d3245a7f98b6a0a0c034ac6cb64d590ba0ae983a7a3", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "node": "IfStatement", + "predicate": "source", + "nodeKinds": [], + "fingerprint": "0b57ea3c6689d2f64ac89d3245a7f98b6a0a0c034ac6cb64d590ba0ae983a7a3" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:0ca4cc9617a9103e", "fingerprint": "0ca4cc9617a9103efb0b67f5d3fca6d03545e407bfd96d07cca422b034136da7", @@ -33847,6 +35833,28 @@ "fingerprint": "23105b5a15b2e12807a91c14c792a223164bf4a600cf8dd6a6ef69b032dc7f03" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:2ed2c44628ac80dd", + "fingerprint": "2ed2c44628ac80ddde377c25262969fcc3e850e5f8db95ecead4551b73274f08", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "node": "IfStatement", + "predicate": "node.kind === \"agent-monitor-event-card\"", + "nodeKinds": [ + "agent-monitor-event-card" + ], + "fingerprint": "2ed2c44628ac80ddde377c25262969fcc3e850e5f8db95ecead4551b73274f08" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:30486bd775f6ef05", "fingerprint": "30486bd775f6ef05132eb1d60eebc9af533f94384f656140aa4d67393d97fa9c", @@ -33991,6 +35999,28 @@ "fingerprint": "3d513e48e2ace2ae7a41db6ea0a9011a63fc5f5aadbc37eccaa87f15418c78a8" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3d88b2c3266a4540", + "fingerprint": "3d88b2c3266a45404116745a2f613f39e3cd44291492f743888c0d1bc6d9beed", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "node": "IfStatement", + "predicate": "node.kind === \"agent-monitor-activity-chart\"", + "nodeKinds": [ + "agent-monitor-activity-chart" + ], + "fingerprint": "3d88b2c3266a45404116745a2f613f39e3cd44291492f743888c0d1bc6d9beed" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3e553dc40a179dec", "fingerprint": "3e553dc40a179dec4cf45e9bf36cb17433d47c909433dd20eaca5f6d28dd9fe4", @@ -34115,6 +36145,26 @@ "fingerprint": "46da48f5b29785d731b26731c7cb1c984f6225a67c185bc149d1f35e577c2b94" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4b78900ec1977efb", + "fingerprint": "4b78900ec1977efb3870b3579b5d3ad3bb023cf91bd6ade6a3f156611639ea91", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "node": "IfStatement", + "predicate": "typeof attrs.role === \"string\"", + "nodeKinds": [], + "fingerprint": "4b78900ec1977efb3870b3579b5d3ad3bb023cf91bd6ade6a3f156611639ea91" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4c5fbf04d3060e3b", "fingerprint": "4c5fbf04d3060e3b452ec40ad46b48dd1629e257127ddf92c8388944b7192433", @@ -34135,6 +36185,49 @@ "fingerprint": "4c5fbf04d3060e3b452ec40ad46b48dd1629e257127ddf92c8388944b7192433" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d3e797d424b4eaa", + "fingerprint": "4d3e797d424b4eaadb60451a5159c7854af37e18065ef080e7656554110cdfa5", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "node": "IfStatement", + "predicate": "source", + "nodeKinds": [], + "fingerprint": "4d3e797d424b4eaadb60451a5159c7854af37e18065ef080e7656554110cdfa5" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d68ad0c6bd0f2f1", + "fingerprint": "4d68ad0c6bd0f2f102723b16d6d1488bb5b3e9ac941f84de18353bdc3abcbb61", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "node": "IfStatement", + "predicate": "node.kind === \"alert-title\" || node.kind === \"alert-description\"", + "nodeKinds": [ + "alert-description", + "alert-title" + ], + "fingerprint": "4d68ad0c6bd0f2f102723b16d6d1488bb5b3e9ac941f84de18353bdc3abcbb61" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4fd67de79ca1c5d7", "fingerprint": "4fd67de79ca1c5d78f79d36c9710cef513da0df6cbe531394133458c00f36bdd", @@ -34669,6 +36762,26 @@ "fingerprint": "9bb3970d515a2e96c0796ffce180636efad4ae7f1193b1eb3b43e2893a640c00" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:a29f0b9a5972e081", + "fingerprint": "a29f0b9a5972e081ce1beeb3edbf03449e29a8650d3f929da74da03a15230874", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "node": "IfStatement", + "predicate": "typeof attrs.variant === \"string\"", + "nodeKinds": [], + "fingerprint": "a29f0b9a5972e081ce1beeb3edbf03449e29a8650d3f929da74da03a15230874" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:a53d23e370714496", "fingerprint": "a53d23e370714496550b52c66fa162946f0dc28eb24e02d12c844bc2e494c787", @@ -34827,6 +36940,26 @@ "fingerprint": "bc7fe550f55fba916c64ee1a0aaa61f9af3d346395fb480a4e97140d5630565e" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:bfb49f6bdb565ae1", + "fingerprint": "bfb49f6bdb565ae1afcd9c0c270d7dd100677293c879388e453734cc0e1053a5", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "node": "IfStatement", + "predicate": "source", + "nodeKinds": [], + "fingerprint": "bfb49f6bdb565ae1afcd9c0c270d7dd100677293c879388e453734cc0e1053a5" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:c0fa3117f93e9928", "fingerprint": "c0fa3117f93e9928e46f21fc188da7df00d3ef8ec240dfc9e3dc6d3426359761", @@ -34991,6 +37124,28 @@ "fingerprint": "e7e11ec9074d2643406bef11989538ea878a6e15b08cde12244edcad455be317" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:fdfaa51bcb5f8827", + "fingerprint": "fdfaa51bcb5f882709d9746666d50b0b8d77148dace03e2df25dc5ef242d5f98", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "node": "IfStatement", + "predicate": "node.kind === \"alert\"", + "nodeKinds": [ + "alert" + ], + "fingerprint": "fdfaa51bcb5f882709d9746666d50b0b8d77148dace03e2df25dc5ef242d5f98" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:40b2646caf6e7a41", "fingerprint": "40b2646caf6e7a418ba083ef704ad11ad0a29bbaff483db8905c4ab6e9e1e8a1", @@ -35094,6 +37249,29 @@ "fingerprint": "5fac925f303319c127a644f1be69ea97b8cd9acb573a3681b2780a1489476204" } }, + { + "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:6bf505f9c18df2dc", + "fingerprint": "6bf505f9c18df2dce5e16de759d45f93c7e1ade218d66e5c70650620851caf03", + "classification": "validated-ir", + "semanticOwner": { + "ownerType": "generic-lowerer", + "ownerTarget": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/lower-oven-ir.ts", + "export": "module", + "node": "LogicalExpression", + "predicate": "node.kind === \"alert-title\" || node.kind === \"alert-description\"", + "nodeKinds": [ + "alert-description", + "alert-title" + ], + "fingerprint": "6bf505f9c18df2dce5e16de759d45f93c7e1ade218d66e5c70650620851caf03" + } + }, { "id": "branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:8224dbd215dfe1e9", "fingerprint": "8224dbd215dfe1e9178bf7d3967b9d94f8f7328a9e3a7442687d799c2f4d969a", @@ -35808,8 +37986,28 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:81c8ea6d16cba209", - "fingerprint": "81c8ea6d16cba2095ce4a70f345ab9fa7930791d18eac4e475b48f1dad70e733", + "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:ConditionalExpression:b034468485727f9f", + "fingerprint": "b034468485727f9f82a9b3dcf76aca1e02e2760e4b331298d94232725be8650e", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot", + "path": "dashboard/src/oven/runtime/oven-live-data.ts", + "export": "subscribeOvenRuntimeSnapshot", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/oven-live-data.ts", + "export": "subscribeOvenRuntimeSnapshot", + "node": "ConditionalExpression", + "predicate": "acceptedForSubscription", + "nodeKinds": [], + "fingerprint": "b034468485727f9f82a9b3dcf76aca1e02e2760e4b331298d94232725be8650e" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:74155c24d82b03e3", + "fingerprint": "74155c24d82b03e37922d65ec2c14a055585a08492392819ddb405c665b014e8", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -35822,14 +38020,14 @@ "path": "dashboard/src/oven/runtime/oven-live-data.ts", "export": "subscribeOvenRuntimeSnapshot", "node": "IfStatement", - "predicate": "!acceptedForSubscription && snapshot.data !== null", + "predicate": "snapshot.outcome === \"loading\"", "nodeKinds": [], - "fingerprint": "81c8ea6d16cba2095ce4a70f345ab9fa7930791d18eac4e475b48f1dad70e733" + "fingerprint": "74155c24d82b03e37922d65ec2c14a055585a08492392819ddb405c665b014e8" } }, { - "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:b5bedeb603105334", - "fingerprint": "b5bedeb60310533418cfd773e7a08e97c434159585f7b33a6d22cd9c90703d24", + "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:81c8ea6d16cba209", + "fingerprint": "81c8ea6d16cba2095ce4a70f345ab9fa7930791d18eac4e475b48f1dad70e733", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -35842,14 +38040,14 @@ "path": "dashboard/src/oven/runtime/oven-live-data.ts", "export": "subscribeOvenRuntimeSnapshot", "node": "IfStatement", - "predicate": "snapshot.outcome === \"missing\"", + "predicate": "!acceptedForSubscription && snapshot.data !== null", "nodeKinds": [], - "fingerprint": "b5bedeb60310533418cfd773e7a08e97c434159585f7b33a6d22cd9c90703d24" + "fingerprint": "81c8ea6d16cba2095ce4a70f345ab9fa7930791d18eac4e475b48f1dad70e733" } }, { - "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:bb9a8596ffcc3709", - "fingerprint": "bb9a8596ffcc370916e78ded085f4ecb48caa5af49f253c06555698109d52399", + "id": "branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:b5bedeb603105334", + "fingerprint": "b5bedeb60310533418cfd773e7a08e97c434159585f7b33a6d22cd9c90703d24", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -35862,9 +38060,9 @@ "path": "dashboard/src/oven/runtime/oven-live-data.ts", "export": "subscribeOvenRuntimeSnapshot", "node": "IfStatement", - "predicate": "snapshot.outcome === \"loading\"", + "predicate": "snapshot.outcome === \"missing\"", "nodeKinds": [], - "fingerprint": "bb9a8596ffcc370916e78ded085f4ecb48caa5af49f253c06555698109d52399" + "fingerprint": "b5bedeb60310533418cfd773e7a08e97c434159585f7b33a6d22cd9c90703d24" } }, { @@ -36807,6 +39005,46 @@ "fingerprint": "4f993687f4a8f9ba6c11293afeb160a3fd7aca829e595d2672bc6263314bc38b" } }, + { + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:55a8e91b26703b67", + "fingerprint": "55a8e91b26703b67a872fe8cbf2ed06e6c48daceac5ad3046ff1e959d7fef26f", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:module", + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "module", + "node": "ConditionalExpression", + "predicate": "filter", + "nodeKinds": [], + "fingerprint": "55a8e91b26703b67a872fe8cbf2ed06e6c48daceac5ad3046ff1e959d7fef26f" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:5847c052fe52b42c", + "fingerprint": "5847c052fe52b42cd3e2768dd44e6a8014c2f2a4f067830de7ecbe2e3d066c61", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:module", + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "module", + "node": "ConditionalExpression", + "predicate": "filter?.kind === \"mode-toggle\"", + "nodeKinds": [], + "fingerprint": "5847c052fe52b42cd3e2768dd44e6a8014c2f2a4f067830de7ecbe2e3d066c61" + } + }, { "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:6f73b4d6eda24324", "fingerprint": "6f73b4d6eda243247e8c821886191880a726655678adbc1d6e4d183410788b7e", @@ -37048,8 +39286,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:c88dfad89abd1ea6", - "fingerprint": "c88dfad89abd1ea6b9241aef9065ec3c154a8643aa188121c52f66d2b9af6cbd", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:e5d4d9fd380832ab", + "fingerprint": "e5d4d9fd380832abcc049095882641133cc317be7ae65901657cc9f671c30031", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -37062,14 +39300,14 @@ "path": "dashboard/src/oven/runtime/oven-reducer.ts", "export": "module", "node": "ConditionalExpression", - "predicate": "filter && controls[filter.id] === true", + "predicate": "typeof option === \"string\"", "nodeKinds": [], - "fingerprint": "c88dfad89abd1ea6b9241aef9065ec3c154a8643aa188121c52f66d2b9af6cbd" + "fingerprint": "e5d4d9fd380832abcc049095882641133cc317be7ae65901657cc9f671c30031" } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:e5d4d9fd380832ab", - "fingerprint": "e5d4d9fd380832abcc049095882641133cc317be7ae65901657cc9f671c30031", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f4682df3b7988e28", + "fingerprint": "f4682df3b7988e28cf7fbc264d43a5141e01dce8b0a288c9957ca531654015b9", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -37082,14 +39320,14 @@ "path": "dashboard/src/oven/runtime/oven-reducer.ts", "export": "module", "node": "ConditionalExpression", - "predicate": "typeof option === \"string\"", + "predicate": "typeof prior[item.id] === \"string\"", "nodeKinds": [], - "fingerprint": "e5d4d9fd380832abcc049095882641133cc317be7ae65901657cc9f671c30031" + "fingerprint": "f4682df3b7988e28cf7fbc264d43a5141e01dce8b0a288c9957ca531654015b9" } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f4682df3b7988e28", - "fingerprint": "f4682df3b7988e28cf7fbc264d43a5141e01dce8b0a288c9957ca531654015b9", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f5d95943521c70c9", + "fingerprint": "f5d95943521c70c9e125a20c69155268f35444894007bc545139def23ba22c9a", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -37102,9 +39340,29 @@ "path": "dashboard/src/oven/runtime/oven-reducer.ts", "export": "module", "node": "ConditionalExpression", - "predicate": "typeof prior[item.id] === \"string\"", + "predicate": "typeof filterValue === \"string\" && filterValue !== \"all\"", "nodeKinds": [], - "fingerprint": "f4682df3b7988e28cf7fbc264d43a5141e01dce8b0a288c9957ca531654015b9" + "fingerprint": "f5d95943521c70c9e125a20c69155268f35444894007bc545139def23ba22c9a" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:fb7bc6db5a947968", + "fingerprint": "fb7bc6db5a94796840f6c5aba1625e568581672c123beb9a3a99313f1b969a94", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:module", + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "module", + "node": "ConditionalExpression", + "predicate": "filter && filterValue === true", + "nodeKinds": [], + "fingerprint": "fb7bc6db5a94796840f6c5aba1625e568581672c123beb9a3a99313f1b969a94" } }, { @@ -37447,6 +39705,26 @@ "fingerprint": "1ab42ffb838878ea8d8fa4904ff0012dbad06baf004ab81e9ca863d6f317604e" } }, + { + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:4ce0e95591d8166e", + "fingerprint": "4ce0e95591d8166ef95d97c5da0cb6f1242b80ea773347dbcd249bd1a110ad78", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:module", + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "module", + "node": "LogicalExpression", + "predicate": "typeof filterValue === \"string\" && filterValue !== \"all\"", + "nodeKinds": [], + "fingerprint": "4ce0e95591d8166ef95d97c5da0cb6f1242b80ea773347dbcd249bd1a110ad78" + } + }, { "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:5e50bd428023e404", "fingerprint": "5e50bd428023e40432868d458a32543874ddad4db1ba452630d738f22f8dbe14", @@ -37568,8 +39846,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:887d32479e5ac373", - "fingerprint": "887d32479e5ac3734db272f0577d6efacfda22a76d2c8f1cc6320c67a18a99c9", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:8d47622d288b55a5", + "fingerprint": "8d47622d288b55a57fe42ae5e762e92d6a0d3d08297708112866c204db96b93e", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -37582,14 +39860,14 @@ "path": "dashboard/src/oven/runtime/oven-reducer.ts", "export": "module", "node": "LogicalExpression", - "predicate": "filter && controls[filter.id] === true", + "predicate": "value && typeof value === \"object\" && typeof (value as Record).id === \"string\"", "nodeKinds": [], - "fingerprint": "887d32479e5ac3734db272f0577d6efacfda22a76d2c8f1cc6320c67a18a99c9" + "fingerprint": "8d47622d288b55a57fe42ae5e762e92d6a0d3d08297708112866c204db96b93e" } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:8d47622d288b55a5", - "fingerprint": "8d47622d288b55a57fe42ae5e762e92d6a0d3d08297708112866c204db96b93e", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9495f48fd3f4ea0c", + "fingerprint": "9495f48fd3f4ea0c52778c921750e1d9c1bc50fa0809f9bcc12dc320b65de084", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -37602,14 +39880,14 @@ "path": "dashboard/src/oven/runtime/oven-reducer.ts", "export": "module", "node": "LogicalExpression", - "predicate": "value && typeof value === \"object\" && typeof (value as Record).id === \"string\"", + "predicate": "Number.isSafeInteger(serverPage.page) && serverPage.page >= 0 && Number.isSafeInteger(serverPage.pageSize) && serverPage.pageSize > 0", "nodeKinds": [], - "fingerprint": "8d47622d288b55a57fe42ae5e762e92d6a0d3d08297708112866c204db96b93e" + "fingerprint": "9495f48fd3f4ea0c52778c921750e1d9c1bc50fa0809f9bcc12dc320b65de084" } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9495f48fd3f4ea0c", - "fingerprint": "9495f48fd3f4ea0c52778c921750e1d9c1bc50fa0809f9bcc12dc320b65de084", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:996a10f85826063b", + "fingerprint": "996a10f85826063b3373765eb2d1ef290eb689be6f4922eaf79c91818ea8048e", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -37622,14 +39900,14 @@ "path": "dashboard/src/oven/runtime/oven-reducer.ts", "export": "module", "node": "LogicalExpression", - "predicate": "Number.isSafeInteger(serverPage.page) && serverPage.page >= 0 && Number.isSafeInteger(serverPage.pageSize) && serverPage.pageSize > 0", + "predicate": "candidate && typeof candidate === \"object\" && typeof (candidate as Record).id === \"string\"", "nodeKinds": [], - "fingerprint": "9495f48fd3f4ea0c52778c921750e1d9c1bc50fa0809f9bcc12dc320b65de084" + "fingerprint": "996a10f85826063b3373765eb2d1ef290eb689be6f4922eaf79c91818ea8048e" } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:996a10f85826063b", - "fingerprint": "996a10f85826063b3373765eb2d1ef290eb689be6f4922eaf79c91818ea8048e", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9993c329adc6195b", + "fingerprint": "9993c329adc6195bf4c5a85b7256f9cc442b74b2f6fbd7c0234b8ea5e7b47537", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -37642,9 +39920,9 @@ "path": "dashboard/src/oven/runtime/oven-reducer.ts", "export": "module", "node": "LogicalExpression", - "predicate": "candidate && typeof candidate === \"object\" && typeof (candidate as Record).id === \"string\"", + "predicate": "filter && filterValue === true", "nodeKinds": [], - "fingerprint": "996a10f85826063b3373765eb2d1ef290eb689be6f4922eaf79c91818ea8048e" + "fingerprint": "9993c329adc6195bf4c5a85b7256f9cc442b74b2f6fbd7c0234b8ea5e7b47537" } }, { @@ -38087,6 +40365,26 @@ "fingerprint": "83136d864e9d4fba019186832682410f756462dda1503c44c69989bb6a3e0264" } }, + { + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:b11770b9497382fe", + "fingerprint": "b11770b9497382fe94737e5f9b33b87544e1dd39beec8cabd2de286815c692be", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer", + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "ovenReducer", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "ovenReducer", + "node": "ConditionalExpression", + "predicate": "action.background", + "nodeKinds": [], + "fingerprint": "b11770b9497382fe94737e5f9b33b87544e1dd39beec8cabd2de286815c692be" + } + }, { "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:d82752f2718126bb", "fingerprint": "d82752f2718126bbabec1472991439dc2187612391cfb6235ab5cb2ba4f2b92d", @@ -38148,8 +40446,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:a929af546604bfaa", - "fingerprint": "a929af546604bfaa3964fbbce84202d315af17827eddc446c74ddd6d9b199ed2", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:b012bd24bbf5651b", + "fingerprint": "b012bd24bbf5651b51b46e78641eb63688395f0a4a5f9ddb3eaf4e9e7707dc0f", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -38164,7 +40462,7 @@ "node": "IfStatement", "predicate": "action.generation !== undefined", "nodeKinds": [], - "fingerprint": "a929af546604bfaa3964fbbce84202d315af17827eddc446c74ddd6d9b199ed2" + "fingerprint": "b012bd24bbf5651b51b46e78641eb63688395f0a4a5f9ddb3eaf4e9e7707dc0f" } }, { @@ -38427,6 +40725,26 @@ "fingerprint": "61b3f80b45b0585c34a13e8d711392dcdfe5e02019bc096146fd7f3d0b812005" } }, + { + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:69da497c6deca4cf", + "fingerprint": "69da497c6deca4cfa669dcc665ba0792e0fec03dabec3eea67246ee6ab0dcd89", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer", + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "ovenReducer", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/oven-reducer.ts", + "export": "ovenReducer", + "node": "SwitchCase", + "predicate": "\"modeSelected\"", + "nodeKinds": [], + "fingerprint": "69da497c6deca4cfa669dcc665ba0792e0fec03dabec3eea67246ee6ab0dcd89" + } + }, { "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:6bdd93adccb94f8e", "fingerprint": "6bdd93adccb94f8e1eaf9fdaa135879b195f6796eea9a5a31b6e0ad5b066c7f3", @@ -38448,8 +40766,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", - "fingerprint": "a1fecaf9c99c7303a8546286e404724414220f9d9313b55ed432f7a86e1b76e6", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:848fce5a596f1aff", + "fingerprint": "848fce5a596f1aff5e8b87a5b23888efab9ffb3a7e6df9a884b4097f8533af87", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -38462,14 +40780,14 @@ "path": "dashboard/src/oven/runtime/oven-reducer.ts", "export": "ovenReducer", "node": "SwitchCase", - "predicate": "\"pagePrevious\"", + "predicate": "\"payloadRequested\"", "nodeKinds": [], - "fingerprint": "a1fecaf9c99c7303a8546286e404724414220f9d9313b55ed432f7a86e1b76e6" + "fingerprint": "848fce5a596f1aff5e8b87a5b23888efab9ffb3a7e6df9a884b4097f8533af87" } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a3098ec8e3405f82", - "fingerprint": "a3098ec8e3405f82676b172411999c4d8238fcf98b3c6ab8a97428f8f040c5ee", + "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", + "fingerprint": "a1fecaf9c99c7303a8546286e404724414220f9d9313b55ed432f7a86e1b76e6", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -38482,9 +40800,9 @@ "path": "dashboard/src/oven/runtime/oven-reducer.ts", "export": "ovenReducer", "node": "SwitchCase", - "predicate": "\"modeSelected\"", + "predicate": "\"pagePrevious\"", "nodeKinds": [], - "fingerprint": "a3098ec8e3405f82676b172411999c4d8238fcf98b3c6ab8a97428f8f040c5ee" + "fingerprint": "a1fecaf9c99c7303a8546286e404724414220f9d9313b55ed432f7a86e1b76e6" } }, { @@ -38588,28 +40906,28 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:ea8520efb21e83f8", - "fingerprint": "ea8520efb21e83f85291f80ef2d3514340ff5d94c53a539f8ba6bc1ac0999627", + "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", + "fingerprint": "12aec929a10149521af5df56472dc7fe398875ba1f6e70bb5a717c8b519f00da", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer", - "path": "dashboard/src/oven/runtime/oven-reducer.ts", - "export": "ovenReducer", + "ownerTarget": "dashboard/src/oven/runtime/oven-selectors.ts:module", + "path": "dashboard/src/oven/runtime/oven-selectors.ts", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/oven/runtime/oven-reducer.ts", - "export": "ovenReducer", - "node": "SwitchCase", - "predicate": "\"payloadRequested\"", + "path": "dashboard/src/oven/runtime/oven-selectors.ts", + "export": "module", + "node": "ConditionalExpression", + "predicate": "typeof id === \"string\"", "nodeKinds": [], - "fingerprint": "ea8520efb21e83f85291f80ef2d3514340ff5d94c53a539f8ba6bc1ac0999627" + "fingerprint": "12aec929a10149521af5df56472dc7fe398875ba1f6e70bb5a717c8b519f00da" } }, { - "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", - "fingerprint": "12aec929a10149521af5df56472dc7fe398875ba1f6e70bb5a717c8b519f00da", + "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:6efb650d1c22a884", + "fingerprint": "6efb650d1c22a884a853cc702f6d86ad102f307826dc7a808795c83936b8db18", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -38622,9 +40940,29 @@ "path": "dashboard/src/oven/runtime/oven-selectors.ts", "export": "module", "node": "ConditionalExpression", - "predicate": "typeof id === \"string\"", + "predicate": "item", "nodeKinds": [], - "fingerprint": "12aec929a10149521af5df56472dc7fe398875ba1f6e70bb5a717c8b519f00da" + "fingerprint": "6efb650d1c22a884a853cc702f6d86ad102f307826dc7a808795c83936b8db18" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:74f2f8fa5a7c4245", + "fingerprint": "74f2f8fa5a7c42456f106e306cbffb812bcc1702fab18f0080492af9b39b3ff9", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-selectors.ts:module", + "path": "dashboard/src/oven/runtime/oven-selectors.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/oven-selectors.ts", + "export": "module", + "node": "ConditionalExpression", + "predicate": "typeof value === \"string\" && value !== \"all\"", + "nodeKinds": [], + "fingerprint": "74f2f8fa5a7c42456f106e306cbffb812bcc1702fab18f0080492af9b39b3ff9" } }, { @@ -38647,6 +40985,26 @@ "fingerprint": "a07e29f92f8a6b76d7b9d3270ba08f7c9bf93fd3bfc12e3b7b32ddea075c82ab" } }, + { + "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:IfStatement:ae216ce246107522", + "fingerprint": "ae216ce246107522e5b02ea57617cd1d6bcf2505d78c38ac17de8e3288943b7b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-selectors.ts:module", + "path": "dashboard/src/oven/runtime/oven-selectors.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/oven-selectors.ts", + "export": "module", + "node": "IfStatement", + "predicate": "item?.kind === \"mode-toggle\"", + "nodeKinds": [], + "fingerprint": "ae216ce246107522e5b02ea57617cd1d6bcf2505d78c38ac17de8e3288943b7b" + } + }, { "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:725ed4374f5bbb1e", "fingerprint": "725ed4374f5bbb1e6695c70e7be12960a29e82194b8a1d03df0ffd73cc799c64", @@ -38687,6 +41045,26 @@ "fingerprint": "7b47ac21e3add0617caad20b3b8cd0cd0465fe686942436801dd7cc14f766102" } }, + { + "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:ca102f31e96ee334", + "fingerprint": "ca102f31e96ee3346358f993e226496ab9f4c8ac4d7d516064a8db188860648c", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/oven-selectors.ts:module", + "path": "dashboard/src/oven/runtime/oven-selectors.ts", + "export": "module", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/oven-selectors.ts", + "export": "module", + "node": "LogicalExpression", + "predicate": "typeof value === \"string\" && value !== \"all\"", + "nodeKinds": [], + "fingerprint": "ca102f31e96ee3346358f993e226496ab9f4c8ac4d7d516064a8db188860648c" + } + }, { "id": "branch:dashboard/src/oven/runtime/oven-selectors.ts:selectCollection:ConditionalExpression:4f993687f4a8f9ba", "fingerprint": "4f993687f4a8f9ba6c11293afeb160a3fd7aca829e595d2672bc6263314bc38b", @@ -38887,6 +41265,66 @@ "fingerprint": "ccaa52a94542067376f367fc15ff69652d00761afee453d7132451ea2e05eb50" } }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:052617db78e67b3e", + "fingerprint": "052617db78e67b3e25bb0bb5d4ac4a7378b2a4ad6eeea631446e19450aa927a7", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "collectionItemIdentity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "collectionItemIdentity", + "node": "ConditionalExpression", + "predicate": "typeof value === \"string\" || typeof value === \"number\"", + "nodeKinds": [], + "fingerprint": "052617db78e67b3e25bb0bb5d4ac4a7378b2a4ad6eeea631446e19450aa927a7" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:b4524a7cc10fa52e", + "fingerprint": "b4524a7cc10fa52e863a06a9d2f871a55ea680f563ca5ffe39f0ce6aae054c16", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "collectionItemIdentity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "collectionItemIdentity", + "node": "ConditionalExpression", + "predicate": "typeof itemKey === \"string\"", + "nodeKinds": [], + "fingerprint": "b4524a7cc10fa52e863a06a9d2f871a55ea680f563ca5ffe39f0ce6aae054c16" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:LogicalExpression:25f15f29fc33edd8", + "fingerprint": "25f15f29fc33edd8c1e6c7e7fc2cc68f1987e68d1b664e09c0db9716f5015a4d", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "collectionItemIdentity", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "collectionItemIdentity", + "node": "LogicalExpression", + "predicate": "typeof value === \"string\" || typeof value === \"number\"", + "nodeKinds": [], + "fingerprint": "25f15f29fc33edd8c1e6c7e7fc2cc68f1987e68d1b664e09c0db9716f5015a4d" + } + }, { "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenDocument:LogicalExpression:0217fcbd88b18e00", "fingerprint": "0217fcbd88b18e00353c321aa5c69500de6907ddf36126401994248372763fe4", @@ -38924,6 +41362,11 @@ "node": "LogicalExpression", "predicate": "documentStaticKinds.has(node.kind) && (node.children ?? []).every(isStaticOvenDocument)", "nodeKinds": [ + "agent-monitor-activity-chart", + "agent-monitor-event-card", + "alert", + "alert-description", + "alert-title", "bind", "box", "burn-donut", @@ -38954,6 +41397,28 @@ "fingerprint": "541de9ba8d52d5bf4ec9a6cbbdfd2d34b9433fda9e67ef6e87898d3a95ab1e95" } }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:IfStatement:12957f0abdd8346b", + "fingerprint": "12957f0abdd8346b60a429549a716473e67cc124678e6b817173e2f1e95fd5a4", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "isStaticOvenNode", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "isStaticOvenNode", + "node": "IfStatement", + "predicate": "node.kind === \"section-header\" && typeof attrs(node).collectionFrom === \"string\"", + "nodeKinds": [ + "section-header" + ], + "fingerprint": "12957f0abdd8346b60a429549a716473e67cc124678e6b817173e2f1e95fd5a4" + } + }, { "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:0217fcbd88b18e00", "fingerprint": "0217fcbd88b18e00353c321aa5c69500de6907ddf36126401994248372763fe4", @@ -38974,6 +41439,28 @@ "fingerprint": "0217fcbd88b18e00353c321aa5c69500de6907ddf36126401994248372763fe4" } }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:15b3c0b681f25783", + "fingerprint": "15b3c0b681f25783d84e3a4a5eb322edfd2c349a934cba7de315963340bfe2ad", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "isStaticOvenNode", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "isStaticOvenNode", + "node": "LogicalExpression", + "predicate": "node.kind === \"section-header\" && typeof attrs(node).collectionFrom === \"string\"", + "nodeKinds": [ + "section-header" + ], + "fingerprint": "15b3c0b681f25783d84e3a4a5eb322edfd2c349a934cba7de315963340bfe2ad" + } + }, { "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:1c52a102506149b3", "fingerprint": "1c52a102506149b31d316c806a52311c1bdb271b6fcb594e8fec88327c43fc6e", @@ -38991,6 +41478,11 @@ "node": "LogicalExpression", "predicate": "staticKinds.has(node.kind) && (node.children ?? []).every(isStaticOvenNode)", "nodeKinds": [ + "agent-monitor-activity-chart", + "agent-monitor-event-card", + "alert", + "alert-description", + "alert-title", "bind", "box", "burn-donut", @@ -39681,8 +42173,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:97ee8237c820c21d", - "fingerprint": "97ee8237c820c21da325b35d2951fdd042abc410213cf0130e8d053a0e271b35", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:7f382864dfd4c1e1:1", + "fingerprint": "7f382864dfd4c1e1fa3641a1c0fe56fb85679951b6d907d61a67b109b3092755", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -39695,14 +42187,14 @@ "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "node": "ConditionalExpression", - "predicate": "typeof attrs(node).title === \"string\"", + "predicate": "typeof attrs(node).class === \"string\"", "nodeKinds": [], - "fingerprint": "97ee8237c820c21da325b35d2951fdd042abc410213cf0130e8d053a0e271b35" + "fingerprint": "7f382864dfd4c1e1fa3641a1c0fe56fb85679951b6d907d61a67b109b3092755" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:ad933f06fec6dd22", - "fingerprint": "ad933f06fec6dd2206ec9b9d4d334b860e4e7c22a3b9032ee8d88a6eb4c23f3b", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:88a71376bd465bae", + "fingerprint": "88a71376bd465baebbcb047962d8a128cf07377959de89e6aa1fa8e4936659d6", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -39715,16 +42207,14 @@ "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "node": "ConditionalExpression", - "predicate": "node.kind === \"panel\"", - "nodeKinds": [ - "panel" - ], - "fingerprint": "ad933f06fec6dd2206ec9b9d4d334b860e4e7c22a3b9032ee8d88a6eb4c23f3b" + "predicate": "typeof source === \"string\"", + "nodeKinds": [], + "fingerprint": "88a71376bd465baebbcb047962d8a128cf07377959de89e6aa1fa8e4936659d6" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:b7bc1169a2494266", - "fingerprint": "b7bc1169a2494266ba8fab2ea1d7117249055b68fd1c6a783f304ba3b1d26347", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:97ee8237c820c21d", + "fingerprint": "97ee8237c820c21da325b35d2951fdd042abc410213cf0130e8d053a0e271b35", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -39737,9 +42227,31 @@ "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "node": "ConditionalExpression", - "predicate": "typeof source === \"string\"", + "predicate": "typeof attrs(node).title === \"string\"", "nodeKinds": [], - "fingerprint": "b7bc1169a2494266ba8fab2ea1d7117249055b68fd1c6a783f304ba3b1d26347" + "fingerprint": "97ee8237c820c21da325b35d2951fdd042abc410213cf0130e8d053a0e271b35" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:ad933f06fec6dd22", + "fingerprint": "ad933f06fec6dd2206ec9b9d4d334b860e4e7c22a3b9032ee8d88a6eb4c23f3b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "node": "ConditionalExpression", + "predicate": "node.kind === \"panel\"", + "nodeKinds": [ + "panel" + ], + "fingerprint": "ad933f06fec6dd2206ec9b9d4d334b860e4e7c22a3b9032ee8d88a6eb4c23f3b" } }, { @@ -39768,8 +42280,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:12d28ad7a93133d3", - "fingerprint": "12d28ad7a93133d3d64b2f56a553c021056b1337a0ec708490c6f3712ecaa974", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1469e399f6ad7bc6", + "fingerprint": "1469e399f6ad7bc67f0d19fdc1369c62184740f1dd65abc37e0c2b4331f28e3e", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -39782,20 +42294,20 @@ "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "node": "IfStatement", - "predicate": "node.kind === \"collection\"", + "predicate": "node.kind === \"box\"", "nodeKinds": [ - "collection" + "box" ], - "fingerprint": "12d28ad7a93133d3d64b2f56a553c021056b1337a0ec708490c6f3712ecaa974" + "fingerprint": "1469e399f6ad7bc67f0d19fdc1369c62184740f1dd65abc37e0c2b4331f28e3e" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1469e399f6ad7bc6", - "fingerprint": "1469e399f6ad7bc67f0d19fdc1369c62184740f1dd65abc37e0c2b4331f28e3e", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1b146cc70f927c38", + "fingerprint": "1b146cc70f927c383e3c5036212ca98ba1c7e48162010842f6d4ebf4296b1e2c", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "ownerTarget": "ChecklistWidgetAdapter", "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "version": "burnlist-console-oven-behavior@1" @@ -39804,16 +42316,21 @@ "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "node": "IfStatement", - "predicate": "node.kind === \"box\"", + "predicate": "[\"checklist-current\", \"checklist-workspace\", \"checklist-tabs\", \"checklist-burn-panel\", \"checklist-ledger\", \"checklist-event-cards\"].includes(node.kind)", "nodeKinds": [ - "box" + "checklist-burn-panel", + "checklist-current", + "checklist-event-cards", + "checklist-ledger", + "checklist-tabs", + "checklist-workspace" ], - "fingerprint": "1469e399f6ad7bc67f0d19fdc1369c62184740f1dd65abc37e0c2b4331f28e3e" + "fingerprint": "1b146cc70f927c383e3c5036212ca98ba1c7e48162010842f6d4ebf4296b1e2c" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:20585287984dd9c1", - "fingerprint": "20585287984dd9c1811d5c9aa51d3e21a5ad4f69dfd489e18ff3e8bbf65a013a", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:2069312d4c66853f", + "fingerprint": "2069312d4c66853fd2004ce2a3127c322dc9dd5f24d9d603cff2f8665249aac3", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -39826,11 +42343,11 @@ "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "node": "IfStatement", - "predicate": "node.kind === \"switch\"", + "predicate": "child.kind === \"each\"", "nodeKinds": [ - "switch" + "each" ], - "fingerprint": "20585287984dd9c1811d5c9aa51d3e21a5ad4f69dfd489e18ff3e8bbf65a013a" + "fingerprint": "2069312d4c66853fd2004ce2a3127c322dc9dd5f24d9d603cff2f8665249aac3" } }, { @@ -39878,12 +42395,12 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5152465376a9c911", - "fingerprint": "5152465376a9c9114826b4c7e2eb3409a1b1d25cf6d56369894f8a0aae5fb147", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:3bffa6f115e3f864", + "fingerprint": "3bffa6f115e3f864cea230e4bec6f6c3865ab9e6478216106c03396ceb63fb50", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "ModelLabView", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "version": "burnlist-console-oven-behavior@1" @@ -39892,20 +42409,20 @@ "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "node": "IfStatement", - "predicate": "node.kind === \"model-lab-view\"", + "predicate": "node.kind === \"section-header\" && typeof attrs(node).collectionFrom === \"string\"", "nodeKinds": [ - "model-lab-view" + "section-header" ], - "fingerprint": "5152465376a9c9114826b4c7e2eb3409a1b1d25cf6d56369894f8a0aae5fb147" + "fingerprint": "3bffa6f115e3f864cea230e4bec6f6c3865ab9e6478216106c03396ceb63fb50" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:597b0aae4af34d5e", - "fingerprint": "597b0aae4af34d5e6ea453963b35421b10504eab972ee2a34b640a5d615299b5", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5152465376a9c911", + "fingerprint": "5152465376a9c9114826b4c7e2eb3409a1b1d25cf6d56369894f8a0aae5fb147", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "ownerTarget": "ModelLabView", "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "version": "burnlist-console-oven-behavior@1" @@ -39914,14 +42431,16 @@ "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "node": "IfStatement", - "predicate": "[\"grid\", \"panel\", \"stack\"]", - "nodeKinds": [], - "fingerprint": "597b0aae4af34d5e6ea453963b35421b10504eab972ee2a34b640a5d615299b5" + "predicate": "node.kind === \"model-lab-view\"", + "nodeKinds": [ + "model-lab-view" + ], + "fingerprint": "5152465376a9c9114826b4c7e2eb3409a1b1d25cf6d56369894f8a0aae5fb147" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5e7967abefb3bff9", - "fingerprint": "5e7967abefb3bff99f7e0b75dd2b9f3fff2a2d93d056443b4643c91588d2e3a5", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:597b0aae4af34d5e", + "fingerprint": "597b0aae4af34d5e6ea453963b35421b10504eab972ee2a34b640a5d615299b5", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -39934,11 +42453,9 @@ "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "node": "IfStatement", - "predicate": "child.kind === \"each\"", - "nodeKinds": [ - "each" - ], - "fingerprint": "5e7967abefb3bff99f7e0b75dd2b9f3fff2a2d93d056443b4643c91588d2e3a5" + "predicate": "[\"grid\", \"panel\", \"stack\"]", + "nodeKinds": [], + "fingerprint": "597b0aae4af34d5e6ea453963b35421b10504eab972ee2a34b640a5d615299b5" } }, { @@ -39964,12 +42481,12 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:8bcb1228c6d36d4c", - "fingerprint": "8bcb1228c6d36d4cf5bca470d5a7b14762351c4ea6358e50a33afb37c88b1181", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", + "fingerprint": "9213842995d448cb3211650e95e0fc4f0ff1dd41f180549595f6436e3246c064", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "ChecklistWidgetAdapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "version": "burnlist-console-oven-behavior@1" @@ -39978,20 +42495,14 @@ "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "node": "IfStatement", - "predicate": "[\"checklist-current\", \"checklist-workspace\", \"checklist-burn-panel\", \"checklist-ledger\", \"checklist-event-cards\"].includes(node.kind)", - "nodeKinds": [ - "checklist-burn-panel", - "checklist-current", - "checklist-event-cards", - "checklist-ledger", - "checklist-workspace" - ], - "fingerprint": "8bcb1228c6d36d4cf5bca470d5a7b14762351c4ea6358e50a33afb37c88b1181" + "predicate": "isStaticOvenNode(node)", + "nodeKinds": [], + "fingerprint": "9213842995d448cb3211650e95e0fc4f0ff1dd41f180549595f6436e3246c064" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", - "fingerprint": "9213842995d448cb3211650e95e0fc4f0ff1dd41f180549595f6436e3246c064", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:a4870193de2d95be", + "fingerprint": "a4870193de2d95be50ab9fb8929f044a48a725689c44d1a4e5b8b4d91a5df74e", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -40004,9 +42515,11 @@ "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "node": "IfStatement", - "predicate": "isStaticOvenNode(node)", - "nodeKinds": [], - "fingerprint": "9213842995d448cb3211650e95e0fc4f0ff1dd41f180549595f6436e3246c064" + "predicate": "node.kind === \"switch\"", + "nodeKinds": [ + "switch" + ], + "fingerprint": "a4870193de2d95be50ab9fb8929f044a48a725689c44d1a4e5b8b4d91a5df74e" } }, { @@ -40038,6 +42551,28 @@ "fingerprint": "bc77ef85f79304632aace3bd5b33ee3d7e1354a4755b38934804afae02bbef9d" } }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:ccfdba79ee088030", + "fingerprint": "ccfdba79ee08803084e86ed60425ead53315dc9996f6515ac878734cc5b90ecb", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "node": "IfStatement", + "predicate": "node.kind === \"collection\"", + "nodeKinds": [ + "collection" + ], + "fingerprint": "ccfdba79ee08803084e86ed60425ead53315dc9996f6515ac878734cc5b90ecb" + } + }, { "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:f4e0aadda15a4518", "fingerprint": "f4e0aadda15a451829446891d53b67dd57f9ed7112749db3a292b3027af08488", @@ -40202,6 +42737,48 @@ "fingerprint": "0246adb2e74a79234a1119d6a8864f0e5dc0fdbe53b0f00f4260bc96babaa9ca" } }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:15b3c0b681f25783", + "fingerprint": "15b3c0b681f25783d84e3a4a5eb322edfd2c349a934cba7de315963340bfe2ad", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "node": "LogicalExpression", + "predicate": "node.kind === \"section-header\" && typeof attrs(node).collectionFrom === \"string\"", + "nodeKinds": [ + "section-header" + ], + "fingerprint": "15b3c0b681f25783d84e3a4a5eb322edfd2c349a934cba7de315963340bfe2ad" + } + }, + { + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:1f60a643f29f64f0", + "fingerprint": "1f60a643f29f64f093d6901c976438f5be9e7d4b2daf223364e6e90c9f22223b", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "node": "LogicalExpression", + "predicate": "attrs(node).title ?? \"\"", + "nodeKinds": [], + "fingerprint": "1f60a643f29f64f093d6901c976438f5be9e7d4b2daf223364e6e90c9f22223b" + } + }, { "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:5486e403476c5820", "fingerprint": "5486e403476c5820f8eff1a7f1281108cabbfa591cfe23973af1f08b4c40e361", @@ -40307,8 +42884,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", - "fingerprint": "fbf6d4564b415e0ce6a790dc9cd940eb2c704e483152a5ce7d483e3e0d483638", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:f2dba9684502413d", + "fingerprint": "f2dba9684502413d92a3c066180cfb1a13d11c7b2c27d769448258fd647a9e36", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -40321,74 +42898,54 @@ "path": "dashboard/src/oven/runtime/OvenNode.tsx", "export": "OvenNode", "node": "LogicalExpression", - "predicate": "branch?.children ?? []", + "predicate": "attrs(node).itemKey ?? attrs(node)[\"item-key\"]", "nodeKinds": [], - "fingerprint": "fbf6d4564b415e0ce6a790dc9cd940eb2c704e483152a5ce7d483e3e0d483638" + "fingerprint": "f2dba9684502413d92a3c066180cfb1a13d11c7b2c27d769448258fd647a9e36" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572", - "fingerprint": "27b040b99478757271792668447a6cfc9bc285c3fea8ac1a5521996872f2a5f9", + "id": "branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", + "fingerprint": "fbf6d4564b415e0ce6a790dc9cd940eb2c704e483152a5ce7d483e3e0d483638", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime", - "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "export": "OvenRuntime", + "ownerTarget": "dashboard/src/oven/runtime/OvenNode.tsx:OvenNode", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", "version": "burnlist-console-oven-behavior@1" }, "source": { - "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "export": "OvenRuntime", - "node": "ConditionalExpression", - "predicate": "state.refresh.phase === \"failed\"", + "path": "dashboard/src/oven/runtime/OvenNode.tsx", + "export": "OvenNode", + "node": "LogicalExpression", + "predicate": "branch?.children ?? []", "nodeKinds": [], - "fingerprint": "27b040b99478757271792668447a6cfc9bc285c3fea8ac1a5521996872f2a5f9" + "fingerprint": "fbf6d4564b415e0ce6a790dc9cd940eb2c704e483152a5ce7d483e3e0d483638" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572:1", - "fingerprint": "27b040b99478757271792668447a6cfc9bc285c3fea8ac1a5521996872f2a5f9", + "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:module:ConditionalExpression:2368494c19944a82", + "fingerprint": "2368494c19944a82d030e648a18505d5abd9c74698d8752e58fb92501517c504", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime", - "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "export": "OvenRuntime", - "version": "burnlist-console-oven-behavior@1" - }, - "source": { + "ownerTarget": "dashboard/src/oven/runtime/OvenRuntime.tsx:module", "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "export": "OvenRuntime", - "node": "ConditionalExpression", - "predicate": "state.refresh.phase === \"failed\"", - "nodeKinds": [], - "fingerprint": "27b040b99478757271792668447a6cfc9bc285c3fea8ac1a5521996872f2a5f9" - } - }, - { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239", - "fingerprint": "2f315a5ca81752391d07fd68b5ed99d995803eca4ca66c619667af9170f0009e", - "classification": "closed-shared-adapter", - "semanticOwner": { - "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime", - "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "export": "OvenRuntime", + "export": "module", "version": "burnlist-console-oven-behavior@1" }, "source": { "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "export": "OvenRuntime", + "export": "module", "node": "ConditionalExpression", - "predicate": "state.refresh.phase === \"failed\"", + "predicate": "failed", "nodeKinds": [], - "fingerprint": "2f315a5ca81752391d07fd68b5ed99d995803eca4ca66c619667af9170f0009e" + "fingerprint": "2368494c19944a82d030e648a18505d5abd9c74698d8752e58fb92501517c504" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239:1", - "fingerprint": "2f315a5ca81752391d07fd68b5ed99d995803eca4ca66c619667af9170f0009e", + "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2773ca4334b3ed09", + "fingerprint": "2773ca4334b3ed09f1a869feec4d88f261911c2ea5f2e950798d4ac88ccd4555", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -40403,7 +42960,7 @@ "node": "ConditionalExpression", "predicate": "state.refresh.phase === \"failed\"", "nodeKinds": [], - "fingerprint": "2f315a5ca81752391d07fd68b5ed99d995803eca4ca66c619667af9170f0009e" + "fingerprint": "2773ca4334b3ed09f1a869feec4d88f261911c2ea5f2e950798d4ac88ccd4555" } }, { @@ -40447,8 +43004,8 @@ } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:4b58356b67031944", - "fingerprint": "4b58356b67031944382c95635421bdd5f0bd28d8a7f82c14de06c040fee09db7", + "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:43dafcf33b7efde7", + "fingerprint": "43dafcf33b7efde7eb6eb1fd63380a0a10116128e4fab49cc0234c6d8b71f4e1", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -40463,12 +43020,12 @@ "node": "ConditionalExpression", "predicate": "state.refresh.phase === \"failed\"", "nodeKinds": [], - "fingerprint": "4b58356b67031944382c95635421bdd5f0bd28d8a7f82c14de06c040fee09db7" + "fingerprint": "43dafcf33b7efde7eb6eb1fd63380a0a10116128e4fab49cc0234c6d8b71f4e1" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6501af3966fd5b7d", - "fingerprint": "6501af3966fd5b7d38213ca3bb2cd2fe04b6f5c2d687a204c4b64c76d3d19f28", + "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", + "fingerprint": "6a4da56a523f8edbcef9d3e2f4c92cea3caa4dac89dd1e175ecc85029a87ddef", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -40481,14 +43038,14 @@ "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", "export": "OvenRuntime", "node": "ConditionalExpression", - "predicate": "state.refresh.phase === \"failed\"", + "predicate": "!themedView && root.every(isStaticOvenDocument)", "nodeKinds": [], - "fingerprint": "6501af3966fd5b7d38213ca3bb2cd2fe04b6f5c2d687a204c4b64c76d3d19f28" + "fingerprint": "6a4da56a523f8edbcef9d3e2f4c92cea3caa4dac89dd1e175ecc85029a87ddef" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:663381afde3a27b9", - "fingerprint": "663381afde3a27b90e8d5486870213f237488f5a080ca0459dca07e9ecfb8b11", + "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:720b9ba1596aa0a5", + "fingerprint": "720b9ba1596aa0a52461e0d5fc90b6cf79ab5bad96deecb19a507d7652af11bd", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -40501,14 +43058,14 @@ "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", "export": "OvenRuntime", "node": "ConditionalExpression", - "predicate": "state.payload !== undefined && state.refresh.stale", + "predicate": "!themedView && state.payload === undefined", "nodeKinds": [], - "fingerprint": "663381afde3a27b90e8d5486870213f237488f5a080ca0459dca07e9ecfb8b11" + "fingerprint": "720b9ba1596aa0a52461e0d5fc90b6cf79ab5bad96deecb19a507d7652af11bd" } }, { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", - "fingerprint": "6a4da56a523f8edbcef9d3e2f4c92cea3caa4dac89dd1e175ecc85029a87ddef", + "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:8e3d9be74ca04c30", + "fingerprint": "8e3d9be74ca04c30fec489f2be3d46e66e0fa91ca7626c0db56afbf9a63e2bd1", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -40521,9 +43078,9 @@ "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", "export": "OvenRuntime", "node": "ConditionalExpression", - "predicate": "!themedView && root.every(isStaticOvenDocument)", + "predicate": "state.payload !== undefined && state.refresh.stale", "nodeKinds": [], - "fingerprint": "6a4da56a523f8edbcef9d3e2f4c92cea3caa4dac89dd1e175ecc85029a87ddef" + "fingerprint": "8e3d9be74ca04c30fec489f2be3d46e66e0fa91ca7626c0db56afbf9a63e2bd1" } }, { @@ -40546,26 +43103,6 @@ "fingerprint": "b2859638173d6220ad0c150bc494b807642c117e7f99b8c26ac6812c1341bee5" } }, - { - "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:f6355a08580bd4ed", - "fingerprint": "f6355a08580bd4edf9514d88fb6c7173202e2598feb7a50d7da2785c2505cb8a", - "classification": "closed-shared-adapter", - "semanticOwner": { - "ownerType": "named-adapter", - "ownerTarget": "dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime", - "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "export": "OvenRuntime", - "version": "burnlist-console-oven-behavior@1" - }, - "source": { - "path": "dashboard/src/oven/runtime/OvenRuntime.tsx", - "export": "OvenRuntime", - "node": "ConditionalExpression", - "predicate": "!themedView && state.payload === undefined", - "nodeKinds": [], - "fingerprint": "f6355a08580bd4edf9514d88fb6c7173202e2598feb7a50d7da2785c2505cb8a" - } - }, { "id": "branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:fb318987dcc2e6e0", "fingerprint": "fb318987dcc2e6e0c8f7773630e2338455777fc66eadf03d36c570074843262b", @@ -41190,6 +43727,28 @@ "condition": "terminal runtime must implement dashboard/src/oven/runtime/theme-registry.ts:getOvenTheme" } }, + { + "id": "branch:dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter:IfStatement:4aa2aac2689a6460", + "fingerprint": "4aa2aac2689a6460f5a7862594c0e4c1e8a136b04410798ed649f832a22779ec", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter", + "path": "dashboard/src/oven/runtime/widget-adapters.tsx", + "export": "ChecklistWidgetAdapter", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/runtime/widget-adapters.tsx", + "export": "ChecklistWidgetAdapter", + "node": "IfStatement", + "predicate": "node.kind === \"checklist-tabs\"", + "nodeKinds": [ + "checklist-tabs" + ], + "fingerprint": "4aa2aac2689a6460f5a7862594c0e4c1e8a136b04410798ed649f832a22779ec" + } + }, { "id": "branch:dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter:IfStatement:7f4e02b0deaaaf77", "fingerprint": "7f4e02b0deaaaf779c8e7ae189f2202a13cef5e7a8b12a3dac6b731da6401231", @@ -42103,8 +44662,8 @@ } }, { - "id": "branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:LogicalExpression:d2826138fda42cf5", - "fingerprint": "d2826138fda42cf51e11f67f71f5981a9e4a2edc696a068efc5750f806e76a46", + "id": "branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:29f4244244c3e4c7", + "fingerprint": "29f4244244c3e4c71347d82efc2eb3c08c5a3fed3eacda0343691ffde651ec72", "classification": "closed-shared-adapter", "semanticOwner": { "ownerType": "named-adapter", @@ -42116,10 +44675,30 @@ "source": { "path": "dashboard/src/oven/SectionHeader/SectionHeader.tsx", "export": "SectionHeader", - "node": "LogicalExpression", - "predicate": "children ?? ({count})", + "node": "IfStatement", + "predicate": "children != null", + "nodeKinds": [], + "fingerprint": "29f4244244c3e4c71347d82efc2eb3c08c5a3fed3eacda0343691ffde651ec72" + } + }, + { + "id": "branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:97380eef91c0afa1", + "fingerprint": "97380eef91c0afa1f8d685a076911287acb39ca95e8e01f49adc3413617e0005", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader", + "path": "dashboard/src/oven/SectionHeader/SectionHeader.tsx", + "export": "SectionHeader", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/SectionHeader/SectionHeader.tsx", + "export": "SectionHeader", + "node": "IfStatement", + "predicate": "count !== undefined", "nodeKinds": [], - "fingerprint": "d2826138fda42cf51e11f67f71f5981a9e4a2edc696a068efc5750f806e76a46" + "fingerprint": "97380eef91c0afa1f8d685a076911287acb39ca95e8e01f49adc3413617e0005" } }, { @@ -47602,6 +50181,101 @@ "fingerprint": "ffaad42e1e73bd693fddc6248fc2adf7df41cf4a33ac5c790556687c0c099fda" } }, + { + "id": "registry:componentRegistry:AgentMonitorActivityChart", + "fingerprint": "50325fd2df150a935af58ebf7fa82bef2e1ac75469220cd6505750a7a3ef1e74", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/OvenView/registries.ts:componentRegistry", + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "node": "registry-entry", + "key": "AgentMonitorActivityChart", + "fingerprint": "50325fd2df150a935af58ebf7fa82bef2e1ac75469220cd6505750a7a3ef1e74" + } + }, + { + "id": "registry:componentRegistry:AgentMonitorEventCard", + "fingerprint": "f418dbd1b6eb90718e14a612b03fa48cd25e660867a15eec78de9338c900df81", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/OvenView/registries.ts:componentRegistry", + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "node": "registry-entry", + "key": "AgentMonitorEventCard", + "fingerprint": "f418dbd1b6eb90718e14a612b03fa48cd25e660867a15eec78de9338c900df81" + } + }, + { + "id": "registry:componentRegistry:Alert", + "fingerprint": "44a57b22e03d9a661c22ffc5ffea51b3e1e33de24a53609e70f690dea8f70872", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/OvenView/registries.ts:componentRegistry", + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "node": "registry-entry", + "key": "Alert", + "fingerprint": "44a57b22e03d9a661c22ffc5ffea51b3e1e33de24a53609e70f690dea8f70872" + } + }, + { + "id": "registry:componentRegistry:AlertDescription", + "fingerprint": "ad2354424d862d9e421c3034be833adb82024447af2e26413e11b5f74999c1e5", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/OvenView/registries.ts:componentRegistry", + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "node": "registry-entry", + "key": "AlertDescription", + "fingerprint": "ad2354424d862d9e421c3034be833adb82024447af2e26413e11b5f74999c1e5" + } + }, + { + "id": "registry:componentRegistry:AlertTitle", + "fingerprint": "d6b0a1362484230e9391a05b841f44de8a4a381d823158f4182eeaf15909e6dc", + "classification": "closed-shared-adapter", + "semanticOwner": { + "ownerType": "named-adapter", + "ownerTarget": "dashboard/src/oven/OvenView/registries.ts:componentRegistry", + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "version": "burnlist-console-oven-behavior@1" + }, + "source": { + "path": "dashboard/src/oven/OvenView/registries.ts", + "export": "componentRegistry", + "node": "registry-entry", + "key": "AlertTitle", + "fingerprint": "d6b0a1362484230e9391a05b841f44de8a4a381d823158f4182eeaf15909e6dc" + } + }, { "id": "registry:componentRegistry:Box", "fingerprint": "512fd3c6042cd1d9150d46fa59b5911a1f97b8275d73eb0a841daa31e93bd349", @@ -48706,7 +51380,7 @@ }, { "id": "surface:dashboard/src/App.tsx", - "fingerprint": "080397df0fba73862698bb023ad8077a37c1a3ed9e3cca70f190346e4d2bbcab", + "fingerprint": "205aa6b64af24b68e4401120560ab28544d414b3912a95726dac2929410f3eba", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -48719,7 +51393,7 @@ "path": "dashboard/src/App.tsx", "export": "module", "node": "wrapper-surface", - "fingerprint": "080397df0fba73862698bb023ad8077a37c1a3ed9e3cca70f190346e4d2bbcab" + "fingerprint": "205aa6b64af24b68e4401120560ab28544d414b3912a95726dac2929410f3eba" }, "blocker": { "burnlistItem": "B17", @@ -48750,7 +51424,7 @@ }, { "id": "surface:dashboard/src/components/CustomOvenView/CustomOvenView.tsx", - "fingerprint": "50662dc969a5935aa0bb5a58f31fbabbf345f99c7528cf42fcf3a6ef623bf729", + "fingerprint": "dc954e87c8875e00caa73351fc2a118928610fd5a3a4091853b5f4aaf0b1ae4d", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -48763,7 +51437,7 @@ "path": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", "export": "module", "node": "wrapper-surface", - "fingerprint": "50662dc969a5935aa0bb5a58f31fbabbf345f99c7528cf42fcf3a6ef623bf729" + "fingerprint": "dc954e87c8875e00caa73351fc2a118928610fd5a3a4091853b5f4aaf0b1ae4d" }, "blocker": { "burnlistItem": "B17", @@ -48926,7 +51600,7 @@ }, { "id": "surface:dashboard/src/lib/hrefs.ts", - "fingerprint": "012245e959c91a44299f58a02f5edaa455a03bc9f1ec4136101635ff9b194532", + "fingerprint": "8cbb99bfcf27c70cefa93bc103c09d8e2ee76a5f873576396956d057e0e02575", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -48939,7 +51613,7 @@ "path": "dashboard/src/lib/hrefs.ts", "export": "module", "node": "wrapper-surface", - "fingerprint": "012245e959c91a44299f58a02f5edaa455a03bc9f1ec4136101635ff9b194532" + "fingerprint": "8cbb99bfcf27c70cefa93bc103c09d8e2ee76a5f873576396956d057e0e02575" }, "blocker": { "burnlistItem": "B17", @@ -48948,7 +51622,7 @@ }, { "id": "surface:dashboard/src/lib/route-model.mjs", - "fingerprint": "fc07733b2561fec878aba288d2573ae90a976afb2aa46d8fcc3e35efaac839f8", + "fingerprint": "1743650b45feee363b8fea7fb89182baa2e458f039fc54c6dff0be0a1d30b1f5", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -48961,7 +51635,7 @@ "path": "dashboard/src/lib/route-model.mjs", "export": "module", "node": "wrapper-surface", - "fingerprint": "fc07733b2561fec878aba288d2573ae90a976afb2aa46d8fcc3e35efaac839f8" + "fingerprint": "1743650b45feee363b8fea7fb89182baa2e458f039fc54c6dff0be0a1d30b1f5" }, "blocker": { "burnlistItem": "B17", @@ -49129,146 +51803,8 @@ "condition": "terminal theme equivalence for checklist:region:0:kind:kpi-strip" } }, - { - "id": "theme:checklist:region:1:className", - "fingerprint": "e11205f5d798b31ebb298daf14afd3fa0ba5ab2a8238387e0bd3cff68460b480", - "classification": "blocker-to-migrate", - "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "version": "burnlist-console-oven-behavior@1" - }, - "source": { - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "node": "theme-override", - "key": "className", - "fingerprint": "e11205f5d798b31ebb298daf14afd3fa0ba5ab2a8238387e0bd3cff68460b480" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:1:className" - } - }, { "id": "theme:checklist:region:1:element", - "fingerprint": "421d15c883daac9511703e79c2c30aeb9cb023b370a689b370dc81803c314b59", - "classification": "blocker-to-migrate", - "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "version": "burnlist-console-oven-behavior@1" - }, - "source": { - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "node": "theme-override", - "key": "element", - "fingerprint": "421d15c883daac9511703e79c2c30aeb9cb023b370a689b370dc81803c314b59" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:1:element" - } - }, - { - "id": "theme:checklist:region:1:kind:checklist-burn-panel", - "fingerprint": "2eab204aeb875fd2c925dc31ca7375d8e762b376cf982d40899979489f0f3979", - "classification": "blocker-to-migrate", - "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "version": "burnlist-console-oven-behavior@1" - }, - "source": { - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "node": "theme-override", - "key": "checklist-burn-panel", - "fingerprint": "2eab204aeb875fd2c925dc31ca7375d8e762b376cf982d40899979489f0f3979" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:1:kind:checklist-burn-panel" - } - }, - { - "id": "theme:checklist:region:1:kind:checklist-current", - "fingerprint": "785addb3437e213f01165aedbf760d9a34d0a68cf841e56560c98e9035d8dcad", - "classification": "blocker-to-migrate", - "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "version": "burnlist-console-oven-behavior@1" - }, - "source": { - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "node": "theme-override", - "key": "checklist-current", - "fingerprint": "785addb3437e213f01165aedbf760d9a34d0a68cf841e56560c98e9035d8dcad" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:1:kind:checklist-current" - } - }, - { - "id": "theme:checklist:region:1:kind:checklist-ledger", - "fingerprint": "8e1d79c9466767ade2fe49e57026373a6affc284e6ffd4c84c81eaf450fb33e1", - "classification": "blocker-to-migrate", - "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "version": "burnlist-console-oven-behavior@1" - }, - "source": { - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "node": "theme-override", - "key": "checklist-ledger", - "fingerprint": "8e1d79c9466767ade2fe49e57026373a6affc284e6ffd4c84c81eaf450fb33e1" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:1:kind:checklist-ledger" - } - }, - { - "id": "theme:checklist:region:1:props", - "fingerprint": "6542b9364f60e775787712d74dda2ea787d5d836d9778e68a53cde70a902c265", - "classification": "blocker-to-migrate", - "semanticOwner": { - "ownerType": "migration-target", - "ownerTarget": "B17", - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "version": "burnlist-console-oven-behavior@1" - }, - "source": { - "path": "dashboard/src/oven/runtime/theme-registry.ts", - "export": "checklist", - "node": "theme-override", - "key": "props", - "fingerprint": "6542b9364f60e775787712d74dda2ea787d5d836d9778e68a53cde70a902c265" - }, - "blocker": { - "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:1:props" - } - }, - { - "id": "theme:checklist:region:2:element", "fingerprint": "7d38929fd4356be35088cecc7928dce4abce59a11b1ef8a154982a091b4769c5", "classification": "blocker-to-migrate", "semanticOwner": { @@ -49287,12 +51823,12 @@ }, "blocker": { "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:2:element" + "condition": "terminal theme equivalence for checklist:region:1:element" } }, { - "id": "theme:checklist:region:2:kind:checklist-event-cards", - "fingerprint": "6e7e8ef772a4dabd52dced9f22dd0503c862288d34e51b7d992d122fdada7c6a", + "id": "theme:checklist:region:1:kind:checklist-tabs", + "fingerprint": "9bb2ec2b3157bd782208c9c0a2b58460de5d9509cbfa729d3a7998cb39f30994", "classification": "blocker-to-migrate", "semanticOwner": { "ownerType": "migration-target", @@ -49305,12 +51841,12 @@ "path": "dashboard/src/oven/runtime/theme-registry.ts", "export": "checklist", "node": "theme-override", - "key": "checklist-event-cards", - "fingerprint": "6e7e8ef772a4dabd52dced9f22dd0503c862288d34e51b7d992d122fdada7c6a" + "key": "checklist-tabs", + "fingerprint": "9bb2ec2b3157bd782208c9c0a2b58460de5d9509cbfa729d3a7998cb39f30994" }, "blocker": { "burnlistItem": "B17", - "condition": "terminal theme equivalence for checklist:region:2:kind:checklist-event-cards" + "condition": "terminal theme equivalence for checklist:region:1:kind:checklist-tabs" } }, { diff --git a/terminal-oven-parity-corpus.json b/audits/oven/terminal-oven-parity-corpus.json similarity index 56% rename from terminal-oven-parity-corpus.json rename to audits/oven/terminal-oven-parity-corpus.json index 3f7e7e66..af279306 100644 --- a/terminal-oven-parity-corpus.json +++ b/audits/oven/terminal-oven-parity-corpus.json @@ -1,11 +1,411 @@ { "schema": "burnlist-terminal-oven-corpus@1", "recipes": [ + { + "id": "attribute:agent-monitor-activity-chart:fallback", + "kind": "attribute", + "recipe": "", + "fingerprint": "b04c97bb90926c500175ab50c831c39b4b794bfb4b16218a986bb9d4695c8c2b", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-activity-chart:fallback", + "element": "agent-monitor-activity-chart", + "attributes": { + "fallback": "-" + } + } + } + }, + { + "id": "attribute:agent-monitor-activity-chart:format", + "kind": "attribute", + "recipe": "", + "fingerprint": "4bc6839047a9f35ccc8a6e2c3d133379f4e11c3480643848f0f4b360048e19ac", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-activity-chart:format", + "element": "agent-monitor-activity-chart", + "attributes": { + "format": "last-delta-percent" + } + } + } + }, + { + "id": "attribute:agent-monitor-activity-chart:id", + "kind": "attribute", + "recipe": "", + "fingerprint": "fb56707201ea74b1d203f2a455b8ff47b0cf215d358ca7552feb91d84635b143", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-activity-chart:id", + "element": "agent-monitor-activity-chart", + "attributes": { + "id": "node-471" + } + } + } + }, + { + "id": "attribute:agent-monitor-activity-chart:optional", + "kind": "attribute", + "recipe": "", + "fingerprint": "b89e29579a0739011680fec553dc451b07091d0be43d484f3f17b40b5e06a906", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-activity-chart:optional", + "element": "agent-monitor-activity-chart", + "attributes": { + "optional": "true" + } + } + } + }, + { + "id": "attribute:agent-monitor-activity-chart:slot", + "kind": "attribute", + "recipe": "", + "fingerprint": "fae3b60332ec152831a3367635227c46ae06fad4dae51f4e89e4a8d6584fdd7f", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-activity-chart:slot", + "element": "agent-monitor-activity-chart", + "attributes": { + "slot": "value" + } + } + } + }, + { + "id": "attribute:agent-monitor-activity-chart:source", + "kind": "attribute", + "recipe": "", + "fingerprint": "68cd6faeb4e40b91e74db5fbe552cb4b488b64d7272d23cf174735f3447c59d1", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-activity-chart:source", + "element": "agent-monitor-activity-chart", + "attributes": { + "source": "/value" + } + } + } + }, + { + "id": "attribute:agent-monitor-event-card:fallback", + "kind": "attribute", + "recipe": "", + "fingerprint": "0257dd611c02da4a1bf4e8e8f496f7348d41143e2ac32b10e9ff200bf2df0da5", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-event-card:fallback", + "element": "agent-monitor-event-card", + "attributes": { + "fallback": "-" + } + } + } + }, + { + "id": "attribute:agent-monitor-event-card:format", + "kind": "attribute", + "recipe": "", + "fingerprint": "ba2bfaa7bd6774485c94ee30c5ea8822013e8a388ac005f7cc9b2572b9aa7de5", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-event-card:format", + "element": "agent-monitor-event-card", + "attributes": { + "format": "delta" + } + } + } + }, + { + "id": "attribute:agent-monitor-event-card:id", + "kind": "attribute", + "recipe": "", + "fingerprint": "a0cd87d091f3e9fce4dc5529a4637c8ae34e6eada3db9413e6cfbd97d5a7370d", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-event-card:id", + "element": "agent-monitor-event-card", + "attributes": { + "id": "node-478" + } + } + } + }, + { + "id": "attribute:agent-monitor-event-card:optional", + "kind": "attribute", + "recipe": "", + "fingerprint": "50a79d66fa5878568968180b111f50a7aa132060f47506a20fbe5e8ceda61bad", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-event-card:optional", + "element": "agent-monitor-event-card", + "attributes": { + "optional": "true" + } + } + } + }, + { + "id": "attribute:agent-monitor-event-card:slot", + "kind": "attribute", + "recipe": "", + "fingerprint": "ee71f8f821f78d7431976370cb9f2fc18642d765e65c607dffcede7450631415", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-event-card:slot", + "element": "agent-monitor-event-card", + "attributes": { + "slot": "value" + } + } + } + }, + { + "id": "attribute:agent-monitor-event-card:source", + "kind": "attribute", + "recipe": "", + "fingerprint": "b9447a27424a5c56c5529f303852d5ff734ce5cfdfe7ef388e350d0679a8efba", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-event-card:source", + "element": "agent-monitor-event-card", + "attributes": { + "source": "/value" + } + } + } + }, + { + "id": "attribute:alert-description:fallback", + "kind": "attribute", + "recipe": "", + "fingerprint": "c80e3b17d211e031ebd077f3190a1af94d0205bdcc1222b354266f142097efa5", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-description:fallback", + "element": "alert-description", + "attributes": { + "fallback": "-" + } + } + } + }, + { + "id": "attribute:alert-description:format", + "kind": "attribute", + "recipe": "", + "fingerprint": "8a10e7befa029a0b8838be714c19b575e6f79e11151d9212ad1d7536365a9d2d", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-description:format", + "element": "alert-description", + "attributes": { + "format": "ratio-to-percent" + } + } + } + }, + { + "id": "attribute:alert-description:optional", + "kind": "attribute", + "recipe": "", + "fingerprint": "cbb6c0368f1014805779884d90e386920f6cbf60dd303f8b5b11dbf2abb4154a", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-description:optional", + "element": "alert-description", + "attributes": { + "optional": "true" + } + } + } + }, + { + "id": "attribute:alert-description:slot", + "kind": "attribute", + "recipe": "", + "fingerprint": "e54f973f50326400fcd92fc4e89e969962045661b18257d29841b136ce142943", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-description:slot", + "element": "alert-description", + "attributes": { + "slot": "value" + } + } + } + }, + { + "id": "attribute:alert-description:source", + "kind": "attribute", + "recipe": "", + "fingerprint": "0c19ea28141633897650d276837cc017330b7a296ad03a96bd07c4acaa571747", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-description:source", + "element": "alert-description", + "attributes": { + "source": "/value" + } + } + } + }, + { + "id": "attribute:alert-title:fallback", + "kind": "attribute", + "recipe": "", + "fingerprint": "a256060e1e5d856fae8dc3ae1494ea6140040767e081b8b3920cf566657dc7d7", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-title:fallback", + "element": "alert-title", + "attributes": { + "fallback": "-" + } + } + } + }, + { + "id": "attribute:alert-title:format", + "kind": "attribute", + "recipe": "", + "fingerprint": "3df1f7aba8d57165d07aa5ec76c8c1278c170dbcd9f69297f3abd840143fac99", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-title:format", + "element": "alert-title", + "attributes": { + "format": "telemetry-availability" + } + } + } + }, + { + "id": "attribute:alert-title:optional", + "kind": "attribute", + "recipe": "", + "fingerprint": "e762a8be50f3f171d76b851b30376ba21cc6ba930da868d4eed6a8bb5bfb65d2", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-title:optional", + "element": "alert-title", + "attributes": { + "optional": "true" + } + } + } + }, + { + "id": "attribute:alert-title:slot", + "kind": "attribute", + "recipe": "", + "fingerprint": "48e3e44675a208e700672871c7f5ba4a0832bd5ea9f867b0a82fc2c7bdbf80e2", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-title:slot", + "element": "alert-title", + "attributes": { + "slot": "value" + } + } + } + }, + { + "id": "attribute:alert-title:source", + "kind": "attribute", + "recipe": "", + "fingerprint": "005bc560b8815d79151b85a874a4f1c124c5ed989a11040cfda91e3fd6d4a39a", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-title:source", + "element": "alert-title", + "attributes": { + "source": "/value" + } + } + } + }, + { + "id": "attribute:alert:id", + "kind": "attribute", + "recipe": "", + "fingerprint": "12d473dbba1b9fcb0777ae9807728a60c838282a3b9ec426c579e967d397d7d2", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert:id", + "element": "alert", + "attributes": { + "id": "node-264" + } + } + } + }, + { + "id": "attribute:alert:role", + "kind": "attribute", + "recipe": "", + "fingerprint": "8481457afe2084a7625245ec025a347077b4fa7dc8bab5b4c117fc3fcca1f2e0", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert:role", + "element": "alert", + "attributes": { + "role": "alert" + } + } + } + }, + { + "id": "attribute:alert:variant", + "kind": "attribute", + "recipe": "", + "fingerprint": "712a952ce2b4a0884b502e72d9d4b64a46a7a8b734be2952bae9986331eae9a0", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert:variant", + "element": "alert", + "attributes": { + "variant": "default" + } + } + } + }, { "id": "attribute:ascii-block:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "619a04628ebd19155ce702d495b6c1354cca55818e814a58aaea7d56a68ae7c7", + "recipe": "", + "fingerprint": "4f00df175a5122eeaf705aeba36034b7d0b2f0199c70cae54454ba5143369443", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -20,15 +420,15 @@ { "id": "attribute:ascii-block:format", "kind": "attribute", - "recipe": "", - "fingerprint": "e1f3ca56970e915587e4bbc0f69c76bad8b2c4c5712e59b2d725af962798a52b", + "recipe": "", + "fingerprint": "53325215648e2330f4f8093cf870192db3fac23935b0b64af21b5cc6a668353f", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "ascii-block:format", "element": "ascii-block", "attributes": { - "format": "ratio-to-percent" + "format": "last-failed-percent" } } } @@ -36,15 +436,15 @@ { "id": "attribute:ascii-block:id", "kind": "attribute", - "recipe": "", - "fingerprint": "c167e42257a945c69666cd9fbb31920348955d06011896e3a12c9e3321c5d80f", + "recipe": "", + "fingerprint": "cce567a333c19c5e20d16124dfe93c19559da68dcde4aa9471a03516f624ca34", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "ascii-block:id", "element": "ascii-block", "attributes": { - "id": "node-360" + "id": "node-401" } } } @@ -52,8 +452,8 @@ { "id": "attribute:ascii-block:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "abe6ba0afd6f6288c02b1cb2a50d834b5afe19b7e46f9fe6806cc3da4e0af1c5", + "recipe": "", + "fingerprint": "bb3ee7a823f3b23851f9531db739b44e200cdf6475d52604695581d5b46e6321", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -68,8 +468,8 @@ { "id": "attribute:ascii-block:selection-from", "kind": "attribute", - "recipe": "", - "fingerprint": "28296d6c304906c4fb43091c98918400b14bbfb13867dfad06bd47c348c50ad5", + "recipe": "", + "fingerprint": "7ec49d4d1a34c9593bad04e815913d8eccdd362040937e061e8cc1f9269b0bc2", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -84,8 +484,8 @@ { "id": "attribute:ascii-block:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "e1973357d6d38063727b4655be605a9c52fec9d419e436da8064bdcc1ce87861", + "recipe": "", + "fingerprint": "7c6a5d42b4584ac8c492d90d0665d62004c515b93db4f24e17889725abe42bd9", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -100,8 +500,8 @@ { "id": "attribute:ascii-block:source", "kind": "attribute", - "recipe": "", - "fingerprint": "43f9359f6b22a5c39e0a66a6fb45ae2f63affd779ae2155fabd9fb41fd058812", + "recipe": "", + "fingerprint": "23eaf53c726079cf00f1baa9539abddb0ae8036a71336d189c6bf40618f719da", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -116,8 +516,8 @@ { "id": "attribute:bind:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "074d514f0bafba3d1aa991eebaf598f5ba64eef32ed4cce024860d3ec2a9077e", + "recipe": "", + "fingerprint": "8e312cbaaffbd6f561c19f838b9b697b7443a2c011a92d77cd7e3c0c021c4fb9", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -136,15 +536,15 @@ { "id": "attribute:bind:format", "kind": "attribute", - "recipe": "", - "fingerprint": "ec3f2c78a63242ef695b7651f8c2cee1e4d93c7f63f121b0d12adb403867e195", + "recipe": "", + "fingerprint": "65d6ba7b47938cb2ee3b0f0a83bfe015f229bc1fb151981b16359733dd8dfe50", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "bind:format", "element": "bind", "attributes": { - "format": "last-delta-percent" + "format": "last-frame-delta" }, "binding": { "prop": "value", @@ -156,8 +556,8 @@ { "id": "attribute:bind:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "6de13f9e3f00064f680674d1d5fe15416be90b1e3f5b9f24e50e80dc6ddd7077", + "recipe": "", + "fingerprint": "239c56a1f4aa50f2db16ade1c9c2ce779eed7e41c7ce414fad6e407f38e05dd9", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -176,8 +576,8 @@ { "id": "attribute:bind:prop", "kind": "attribute", - "recipe": "", - "fingerprint": "cc779220e65cde49af62a277bf2f08ae1e4f8276d32528fb9bf74f25bea56de0", + "recipe": "", + "fingerprint": "6bc75d95b50fc07d3787daae9c0ba30a3f1e74c089d9427289fdd9f53829a9b5", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -196,8 +596,8 @@ { "id": "attribute:bind:source", "kind": "attribute", - "recipe": "", - "fingerprint": "aa4b5d0ea6022e8346769fc02c12d5b9f5d0bd11b9fcc5e2ef85110447ab7f2f", + "recipe": "", + "fingerprint": "53b6bcd187967c8e76e2887a47f2120e5ad9c6a3f4678b0c036e67d2cf3d3dfb", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -216,8 +616,8 @@ { "id": "attribute:box:class", "kind": "attribute", - "recipe": "", - "fingerprint": "5781a7adc8657383d54441376e5a39a61aeea485dfd557aba597c95b55b5ba9b", + "recipe": "", + "fingerprint": "4692effa78167ad5f2c1a813a95c4794a241037ac1719a2b5f2b4fe23eec333c", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -232,8 +632,8 @@ { "id": "attribute:box:data-detail-tab", "kind": "attribute", - "recipe": "", - "fingerprint": "f99e9f4a9d20d0ba01afb4107d7b282c1a359183ffb9a643ab4a01faa6d74514", + "recipe": "", + "fingerprint": "4740521b9d7b70451f6bc65d298aed4f273b27ecbf2d33ba41e7110b044fee65", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -248,8 +648,8 @@ { "id": "attribute:box:element", "kind": "attribute", - "recipe": "", - "fingerprint": "228c51d1b595a9ac637b1e269e51220c7ede5911d408d483d7de0487fd1531fa", + "recipe": "", + "fingerprint": "fa72bbc4b7e074edeb92040d8d44cb845c917592a1ff9454b80f5100c2eedce4", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -264,15 +664,15 @@ { "id": "attribute:box:id", "kind": "attribute", - "recipe": "", - "fingerprint": "71691665d313b410c4faf15b199daf272094998217d87e642cf850db0d29fe8f", + "recipe": "", + "fingerprint": "3b2716f9026132b0c87f7cab1c87d2938795a8072063da346cca25136a79c793", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "box:id", "element": "box", "attributes": { - "id": "node-42" + "id": "node-45" } } } @@ -280,8 +680,8 @@ { "id": "attribute:box:text", "kind": "attribute", - "recipe": "", - "fingerprint": "b96c74907f2ea20ba701f109024a9f5482f1a6bf3a52079e9c59e88fb6c65322", + "recipe": "", + "fingerprint": "6face8b48f2dcd04ca07222d9c4fe6efe0775348f9ee9a733138c39f63975ac8", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -296,8 +696,8 @@ { "id": "attribute:burn-donut:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "6990fe49e1f0ca852144e9248f250ba161b8204ad9ba225a79528a1e3a6160c5", + "recipe": "", + "fingerprint": "6c427d2a257ab2bbaec54ac1a0943408fcb8f2490feb40885ef7f47721caa3ec", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -312,8 +712,8 @@ { "id": "attribute:burn-donut:format", "kind": "attribute", - "recipe": "", - "fingerprint": "24a2f1d9f5bde76b3f8d2fd129df90d55125b011e378433f0fccc5858aad6a2d", + "recipe": "", + "fingerprint": "317443a40e4a7da7cb463af9f02be4a2134c56e0f5527d2d5c6aaf2fb1e047a8", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -328,8 +728,8 @@ { "id": "attribute:burn-donut:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "65c92f1ae3b23bd63716ba8b5c48eb4c3fa122a3802e8700b5c45350730d00bf", + "recipe": "", + "fingerprint": "f861da8b9eee95668b0c4c179d7653fd7bf7f31e18d71a2cfec435d9a25322ee", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -344,8 +744,8 @@ { "id": "attribute:burn-donut:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "f42dbcc1bf8123bb77de2aa254faa3a74615cf8ec7ed42b2744b7f6824b49209", + "recipe": "", + "fingerprint": "3c685d8b7348ef719c9ecb72a588743f2a438090cf2a1b020a3e9822c64fc763", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -360,8 +760,8 @@ { "id": "attribute:burn-donut:source", "kind": "attribute", - "recipe": "", - "fingerprint": "5ed362af8ca3991741b98e02332687c105f941940349c3871b81e7a29dfe72eb", + "recipe": "", + "fingerprint": "5c31d8c081b69b9548ad7a72189d40928c9f3c20dc47d34963620a80a536fccc", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -376,8 +776,8 @@ { "id": "attribute:case:default", "kind": "attribute", - "recipe": "", - "fingerprint": "597417b16cc5b46a9faec3c6a500328861946d6cfc6b12e99145e7b43f842d05", + "recipe": "", + "fingerprint": "6d97bcaf50416d9d4baa9159e45ad31bf4ee22bf2b7cee9dc16ca2d694dc908e", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -392,8 +792,8 @@ { "id": "attribute:case:value", "kind": "attribute", - "recipe": "", - "fingerprint": "6428abdef951172e759f9edec9f1088f6d14013240a8817ea21d9da47f2d6a93", + "recipe": "", + "fingerprint": "02d5e4d36ab108b7db256cac2ea5e397e1325228c12658a830a87b27837c5700", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -408,8 +808,8 @@ { "id": "attribute:checklist-burn-panel:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "e9476d49c2361c3c7cb489b886b7b3d8a5dc1b14dbb100b9a7704d5d6b6ac452", + "recipe": "", + "fingerprint": "265519d84d895e8d1bc0f5fed7ad8bfac8658fe7b9f026724c45dbe0cf4b0542", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -424,15 +824,15 @@ { "id": "attribute:checklist-burn-panel:format", "kind": "attribute", - "recipe": "", - "fingerprint": "5deebf0b6ab9c0d481ed48d5cd6eb2ca00429884eca614deb59c44c8f9f2f423", + "recipe": "", + "fingerprint": "aaf2e92f3540ff3fe05a77eb9d25c0b3eb89e4d2e83b3af1a4cc2fdf0f884751", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "checklist-burn-panel:format", "element": "checklist-burn-panel", "attributes": { - "format": "last-failed-count" + "format": "identity" } } } @@ -440,8 +840,8 @@ { "id": "attribute:checklist-burn-panel:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "c6c8e6610940c7b43eaba961b9941af712d4740463b8f97a31d8cdb0a70eb141", + "recipe": "", + "fingerprint": "edcbcbe4557e32515ae706af260ecfd1f50eb993240fdd0b1410de285a7cda6a", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -456,8 +856,8 @@ { "id": "attribute:checklist-burn-panel:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "e6a3f877707fa1776ed266be49a088d834a2f08f13365299fae8a96ba42750b8", + "recipe": "", + "fingerprint": "32e37499ad2d699d513eb375c1be186459d9246924e8e8c9d9914541f69aaf79", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -472,8 +872,8 @@ { "id": "attribute:checklist-burn-panel:source", "kind": "attribute", - "recipe": "", - "fingerprint": "074c3acf4e629e6fe0c9e48d30ccbdfe01af82f01f6d736ffed1c5a297293167", + "recipe": "", + "fingerprint": "c75b9f1f9f1e5573048dde69ce54f2d98163343427dd2e658a36fe0ebd9118ba", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -488,8 +888,8 @@ { "id": "attribute:checklist-current:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "7bedadcc3dba60fb288e7b367364e3b3f24dcdf0cdb3cf093b3ab905ca9b47fc", + "recipe": "", + "fingerprint": "7dc32224c0968e9724cecfae3c052df91932e957baa8a48a6fbfa2ef8bcad6f6", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -504,8 +904,8 @@ { "id": "attribute:checklist-current:format", "kind": "attribute", - "recipe": "", - "fingerprint": "12bf24086f74dd2dc7146e6f0ae9b549e634e639b2954c3e15a3d1fc8305e2f4", + "recipe": "", + "fingerprint": "0cfbc19fdc0c71c93897da7fde637bd40f34be6e5db478cef493ce5d14023e03", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -520,8 +920,8 @@ { "id": "attribute:checklist-current:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "56387deabf47ad0cf20528fe322e974f83daeb5f579662966f68e4019e78afa1", + "recipe": "", + "fingerprint": "2c99d24c93f838bb490af484924b77a06ec52a0061874d59dd15d12028c12d06", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -536,8 +936,8 @@ { "id": "attribute:checklist-current:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "6244c7c0b43233b971df6e354261518e1f6f7165903d5c91d12d72999d49178b", + "recipe": "", + "fingerprint": "3170d9f31a4deec9cbf32c5cbf3178c4f90584f672d1afcb45b138fce3c0f35c", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -552,8 +952,8 @@ { "id": "attribute:checklist-current:source", "kind": "attribute", - "recipe": "", - "fingerprint": "82588dd4033ac9d34af873009169d67e7816b6f0051a831438ef3421aed1bd94", + "recipe": "", + "fingerprint": "99f2c23b8ef2c76b48912d7b9685ab363766994fa8e599fa8c76ce370ff2818e", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -568,8 +968,8 @@ { "id": "attribute:checklist-event-cards:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "b65c1e7e9fc575e3a8e9e2735fa40575f3cf82afb7172ce5b8ee2ab3e8dbb903", + "recipe": "", + "fingerprint": "1dba5aee8d3eea9e31e834a296b240f744601639d6aa77d6b477bf3783abcf20", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -584,15 +984,15 @@ { "id": "attribute:checklist-event-cards:format", "kind": "attribute", - "recipe": "", - "fingerprint": "75b102d3421a7cb9e5114126accb3b1bec3237a1ec4770bc8969998e408d4e41", + "recipe": "", + "fingerprint": "57535aa421b7ef4cc77f594233168974975ae607f456910cee9cc26f03e64c88", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "checklist-event-cards:format", "element": "checklist-event-cards", "attributes": { - "format": "length" + "format": "last-failed-percent" } } } @@ -600,8 +1000,8 @@ { "id": "attribute:checklist-event-cards:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "ee501af21fa46ef4e20bab59a1199cfe09b2168557d06d961f41499c2cd50267", + "recipe": "", + "fingerprint": "dc7cabe2d799816b7aef551e46274425e5bc8d278f6bbef73e3403138a7f74b6", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -616,8 +1016,8 @@ { "id": "attribute:checklist-event-cards:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "9a25e3ac21173c1d267729618b57a00768011c9cbb3cc28ea5679d38c61de1ee", + "recipe": "", + "fingerprint": "c624a9f9c3714f318ab1ffdb20f76aaffe211ad6d46dfa736c67ba0fcbb29d23", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -632,8 +1032,8 @@ { "id": "attribute:checklist-event-cards:source", "kind": "attribute", - "recipe": "", - "fingerprint": "ad266a261544d2ba9f6b84ccdbf9bc35dddea8f45b79a693a9ec768a6f2f80b9", + "recipe": "", + "fingerprint": "eaafe788f02b7483e66c2546be918b98f483692700d499bc925992af33b1e04b", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -648,8 +1048,8 @@ { "id": "attribute:checklist-ledger:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "e2cdf28c2e06957e00f2d2474d6fd1584984ad89b0f09b7015cc86ea2f8c8105", + "recipe": "", + "fingerprint": "ac831b4a479a49ae5a4f51e7755a7ac19b0dbb22827a2c874be89327233d2b8f", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -664,15 +1064,15 @@ { "id": "attribute:checklist-ledger:format", "kind": "attribute", - "recipe": "", - "fingerprint": "390e40a246805430ff466337bf1172444dcb0679694cc49aa90306971cd4c67f", + "recipe": "", + "fingerprint": "2abbfa61784ba01d529c3c5dd350342b5ba7cd6c14aaf14d86e0323f358369d3", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "checklist-ledger:format", "element": "checklist-ledger", "attributes": { - "format": "identity" + "format": "length" } } } @@ -680,8 +1080,8 @@ { "id": "attribute:checklist-ledger:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "cfbe5922ea8eff698efdc7d11bf8a80475bb3898c8d57176c8f4715a798177d7", + "recipe": "", + "fingerprint": "79e71b8f8a851ce22ff549607dd1bf62e4d4cb80ad2a05ea26909d7129c11bb2", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -696,8 +1096,8 @@ { "id": "attribute:checklist-ledger:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "80a6f1c89e5063d4f6d8db272ec3adb105ff7d704dbd31fa73918f86b8ae55b4", + "recipe": "", + "fingerprint": "4672c5c72650e61edc71fa9a2673f7586d90d94b4ce5c389356b006d28bdc51e", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -712,8 +1112,8 @@ { "id": "attribute:checklist-ledger:source", "kind": "attribute", - "recipe": "", - "fingerprint": "35dd761c7160cdc2adaa6dcc6ff4a5378bd35a9fdadc3af14dc91e2309f071b1", + "recipe": "", + "fingerprint": "a35084bc2ca3a7ce73c20406c38bc962c600cc369c13ce025f594fdf6b23c785", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -725,11 +1125,91 @@ } } }, + { + "id": "attribute:checklist-tabs:fallback", + "kind": "attribute", + "recipe": "", + "fingerprint": "9691d5f2c2f995c17a4fb5cab6f866f3884144e72d36c9323e50213af0f8b7dd", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "checklist-tabs:fallback", + "element": "checklist-tabs", + "attributes": { + "fallback": "-" + } + } + } + }, + { + "id": "attribute:checklist-tabs:format", + "kind": "attribute", + "recipe": "", + "fingerprint": "616a554d2de03b6f4395de850f10c00d45ac378dbbce4149bdaf00cbf0322e73", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "checklist-tabs:format", + "element": "checklist-tabs", + "attributes": { + "format": "last-failed-count" + } + } + } + }, + { + "id": "attribute:checklist-tabs:optional", + "kind": "attribute", + "recipe": "", + "fingerprint": "5fc3edd27ee407ce264fbea547220531492f664294c288a3d7decb9f1ecadccf", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "checklist-tabs:optional", + "element": "checklist-tabs", + "attributes": { + "optional": "true" + } + } + } + }, + { + "id": "attribute:checklist-tabs:slot", + "kind": "attribute", + "recipe": "", + "fingerprint": "4b25e19601badcef7ff7fcb8ea73203c9449c45e85a3de58b29395e1a401187b", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "checklist-tabs:slot", + "element": "checklist-tabs", + "attributes": { + "slot": "value" + } + } + } + }, + { + "id": "attribute:checklist-tabs:source", + "kind": "attribute", + "recipe": "", + "fingerprint": "581c4845e908573fb994bcee9dd5c33fbe3b4c7523dc8b92889655684bd735ef", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "checklist-tabs:source", + "element": "checklist-tabs", + "attributes": { + "source": "/value" + } + } + } + }, { "id": "attribute:checklist-workspace:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "436f013d66abec3cc80a0ffc038e0c4f625c198a49baf12948133600dc1feaef", + "recipe": "", + "fingerprint": "77245b84170e730077dba4a96a45e6abd60e7c52e074afb5dafac54f89c3f416", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -744,8 +1224,8 @@ { "id": "attribute:checklist-workspace:format", "kind": "attribute", - "recipe": "", - "fingerprint": "5496767c07f48502a10d882efae91c84389dd55d84e2f81cac9b9c469a169690", + "recipe": "", + "fingerprint": "41ec08b154a41e211888c6d56702e711a1aed5064ebe78219769e6bbd43c52ec", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -760,8 +1240,8 @@ { "id": "attribute:checklist-workspace:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "bf69de2401c46723128f5acbe82d325252793485207250a1ab82891a94cc76b1", + "recipe": "", + "fingerprint": "420b337adaa692dc589e22ba2ba75462ddd57dc0d91e585b702311b7651ea04d", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -776,8 +1256,8 @@ { "id": "attribute:checklist-workspace:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "4ad6943eb1647f4823cc3dd4ff6de075ffb01bb12dfd56cf5eff4f5c580057c9", + "recipe": "", + "fingerprint": "d325012c9b5a2974737c1626549553ce9d7d5e6b6c8cd0d59f78f532a560d89d", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -792,8 +1272,8 @@ { "id": "attribute:checklist-workspace:source", "kind": "attribute", - "recipe": "", - "fingerprint": "d76a9b53a7177203fac49af041d174d43d098b491fbaf52eb64a52887bbae808", + "recipe": "", + "fingerprint": "bca9f52c55daa9bf511f6d7e57337550ce6339777d04d76ef23fb984ac1e6342", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -808,8 +1288,8 @@ { "id": "attribute:collection:filter-from", "kind": "attribute", - "recipe": "", - "fingerprint": "306a0bfdc0ea203fba6f6d85ecec8157c276eaf3f24be9e80312fd1836815863", + "recipe": "", + "fingerprint": "98c5d837a4126250ba4c9f810cc6e5abfaf8d2f366949ff83900565da2e46f88", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -824,15 +1304,15 @@ { "id": "attribute:collection:id", "kind": "attribute", - "recipe": "", - "fingerprint": "37c2a226b4eacf61ee5f42b39439567b3cabe88a41c3a85bf8c347405afc06e2", + "recipe": "", + "fingerprint": "ab3d9f6e973dae14eae56595bf9a09c870906d543881e33b68ae8d000325d50a", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "collection:id", "element": "collection", "attributes": { - "id": "node-175" + "id": "node-189" } } } @@ -840,8 +1320,8 @@ { "id": "attribute:collection:item-key", "kind": "attribute", - "recipe": "", - "fingerprint": "6c2512b7af59c3151213c6d7d0927f86bde7a14ad0356ea501b5e55b43ca458e", + "recipe": "", + "fingerprint": "5a8e6a9908230e7a1e8b6b1d93e315fa081535657ba719353ab080599942d574", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -856,8 +1336,8 @@ { "id": "attribute:collection:page-size", "kind": "attribute", - "recipe": "", - "fingerprint": "21f3e0c2f7c5d588ecdb7d7eb679be3e0efc95e21d0cf24384b6d40abd5b1afe", + "recipe": "", + "fingerprint": "62e62e18a36705fd9d79a1a7384cbbd065a9ddcbd679666db5ff681354f69ad2", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -872,8 +1352,8 @@ { "id": "attribute:collection:paging", "kind": "attribute", - "recipe": "", - "fingerprint": "dcc4810a191cd2ea2635b4466597498346651b2078a52afeccbab63470dd33cd", + "recipe": "", + "fingerprint": "b6bdca17dd9079e4e3d4056cac78cc1fe1db3f1f375916d10843db5be7e8c00a", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -888,8 +1368,8 @@ { "id": "attribute:collection:search-from", "kind": "attribute", - "recipe": "", - "fingerprint": "1a7dab703bf4c66cd669b5300d99efe61b1294f20f03688eda1076b3bc370b19", + "recipe": "", + "fingerprint": "87e592154ff9a9c27b76f185b40608bfe48dc29b1cb24fb2772a604d41306111", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -904,8 +1384,8 @@ { "id": "attribute:collection:sort-from", "kind": "attribute", - "recipe": "", - "fingerprint": "d486c639415327bb7771a652c1001d5f301f1618d64bbd6332f2b19c5302ea15", + "recipe": "", + "fingerprint": "a813d35954862a2479942d75d554c3e44edf8c2b031e7d9fddc04a5d84a50aaf", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -920,8 +1400,8 @@ { "id": "attribute:collection:source", "kind": "attribute", - "recipe": "", - "fingerprint": "b573ae0f23ac0eb29ec3b3ee9a0d4595f46e434e7a6226076dd4942f818f7d4e", + "recipe": "", + "fingerprint": "a5d091e624c1238062f448654aa4e554dd39299fa51a8b24d1b2b90ed4358655", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -936,8 +1416,8 @@ { "id": "attribute:column:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "d69587f5f70d1491320fc4d97de9e2395dc14cf80da1765910fd79fbb8d6a1a8", + "recipe": "", + "fingerprint": "c2b5ea519b57278f61cf8deff7dec25927af35a10008c31914ff75a82771143d", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -952,15 +1432,15 @@ { "id": "attribute:column:format", "kind": "attribute", - "recipe": "", - "fingerprint": "b46a9724f9f9d63d29431c59dc81f3684c4ea37fe5424a53118d92e4bfb0829a", + "recipe": "", + "fingerprint": "55cef147ed5b2a7fc792c7d905f9f6f8fc882c05d7bc533ba695fb9bf59f8691", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "column:format", "element": "column", "attributes": { - "format": "last-frame-delta" + "format": "last-failed-percent" } } } @@ -968,8 +1448,8 @@ { "id": "attribute:column:label", "kind": "attribute", - "recipe": "", - "fingerprint": "3d0bf1aab4bd7ca17a63c2e1703fef1dd4911afbf58002481a0ad45a3f3b80cd", + "recipe": "", + "fingerprint": "a8dad69d1dd3115d6723c45334e36d24e2d2b1d3c7342cc8c8ceb281a772d70b", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -984,8 +1464,8 @@ { "id": "attribute:column:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "367d9495ccb244355c8c833216d3c45be6e9652e2a47f7b56fb4a6890c50b8a6", + "recipe": "", + "fingerprint": "466d569d28b879a5a03139edfb7d78d42e5b3c28e16db2285a046a146ac651c7", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1000,8 +1480,8 @@ { "id": "attribute:column:source", "kind": "attribute", - "recipe": "", - "fingerprint": "59063a43799084879a75d36c8e5321cdb12fd8bf6f71ac58b2d62b60cb433877", + "recipe": "", + "fingerprint": "b097f4b2d215ccf6251067b9169ed253cb54c0cde2403c4df0b310250e1201a0", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1016,8 +1496,8 @@ { "id": "attribute:column:tone", "kind": "attribute", - "recipe": "", - "fingerprint": "c9fe0eeb7c28d28bac577eabef5ce859329a45929be57707189ffaf56a8fff3a", + "recipe": "", + "fingerprint": "7310e353d2b8c3321f886e5047eb67a5a3161e1b04e8b35331d771532af746a4", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1032,8 +1512,8 @@ { "id": "attribute:diff-card:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "70666b55b7f49d5478b3aa972f3ecd9c12c55ca58e4a5f789f752359ee0b2aad", + "recipe": "", + "fingerprint": "0e20048cdb713e7d3a874c244499c72cb230574b1a0788ee929be6a9fe020f46", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1048,15 +1528,15 @@ { "id": "attribute:diff-card:format", "kind": "attribute", - "recipe": "", - "fingerprint": "8b35ef2b9cb03f9777b59bece25d901053e7d87fbcd7e83b72085aeabbf7bd76", + "recipe": "", + "fingerprint": "dcdd43aa7d4d76f0f07fbfae333928d8e229a28224bd0a826cd9aac05e741042", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "diff-card:format", "element": "diff-card", "attributes": { - "format": "identity" + "format": "time-only" } } } @@ -1064,15 +1544,15 @@ { "id": "attribute:diff-card:id", "kind": "attribute", - "recipe": "", - "fingerprint": "0b920886f96f90df3fdb9a58aa02c3301125f65b73895ca37a61b561d626426f", + "recipe": "", + "fingerprint": "7f03fe3c1c115b174dbfd7e179ce6c6daa33922f858bd85031ca84f863786c14", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "diff-card:id", "element": "diff-card", "attributes": { - "id": "node-372" + "id": "node-413" } } } @@ -1080,8 +1560,8 @@ { "id": "attribute:diff-card:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "77778c43dab69a24fdf4283a2366153f2a16cc3986b0572599ce323181c0704e", + "recipe": "", + "fingerprint": "872f677440a8acbd22844ee15d59ec4e0ba7159149066b7c4501c1b1a3110b42", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1096,8 +1576,8 @@ { "id": "attribute:diff-card:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "96ac36c967ac94990a062105e92603dd65e2c8e254c3e55cbc78db0ea9773b9d", + "recipe": "", + "fingerprint": "c1388df58e8272c9f2ad2aa3850b954f511618557a925c1f282e8f0b4c4b6881", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1112,8 +1592,8 @@ { "id": "attribute:diff-card:source", "kind": "attribute", - "recipe": "", - "fingerprint": "59e55c9cb28c45898add23dcd7bcf76e811616cc942a923a3e0383a90edb6e7c", + "recipe": "", + "fingerprint": "4da0d24fbe420281588038c937f931ccfe694c3f906bb96abddb1958d6b0b4bb", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1128,15 +1608,15 @@ { "id": "attribute:differential-empty-state:id", "kind": "attribute", - "recipe": "", - "fingerprint": "99c9b666e38d26fad4fffddef4d726faebcd0ba1b6e3a766f6c487c8b41417e1", + "recipe": "", + "fingerprint": "2876679abbcb3951c739f7285b3529199e86f2ae4b920196363486e1ac19d951", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "differential-empty-state:id", "element": "differential-empty-state", "attributes": { - "id": "node-427" + "id": "node-468" } } } @@ -1144,8 +1624,8 @@ { "id": "attribute:differential-empty-state:title", "kind": "attribute", - "recipe": "", - "fingerprint": "ed9ea5408049e395e27de3a5235b65d5c32746707e55031cf1cc22b9506aa572", + "recipe": "", + "fingerprint": "d812e1c53434743aad9862405915bc3612003aaad5af1453645b4d52f29b7f9c", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1160,8 +1640,8 @@ { "id": "attribute:differential-kpi-strip:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "fead352885fd7b26584141e093edf5ac8d489e90e0a8455a9519b6bd95df03b2", + "recipe": "", + "fingerprint": "dcdeb31b05e2418d8ae60589f7f34b0d4fa977be057d90a4b04930ee65e9f297", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1176,15 +1656,15 @@ { "id": "attribute:differential-kpi-strip:format", "kind": "attribute", - "recipe": "", - "fingerprint": "c29a2e17b9446274c8102ad47d7813decdb9ceedbfe233dd6d26674c231ecf89", + "recipe": "", + "fingerprint": "e4237e87d589be24089b2ce85181b8dac9a78a46c62c7f6d1518b590622be2ec", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "differential-kpi-strip:format", "element": "differential-kpi-strip", "attributes": { - "format": "last-progress-percent" + "format": "identity" } } } @@ -1192,15 +1672,15 @@ { "id": "attribute:differential-kpi-strip:id", "kind": "attribute", - "recipe": "", - "fingerprint": "d28668c5405d27de4d0aad765ac24d718328adf2615bf68bd04f777dfe760beb", + "recipe": "", + "fingerprint": "bee67536e62f942aa70d7e4cf52052caa178dd147b81c91309ab6c1b5ed79cf1", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "differential-kpi-strip:id", "element": "differential-kpi-strip", "attributes": { - "id": "node-399" + "id": "node-440" } } } @@ -1208,8 +1688,8 @@ { "id": "attribute:differential-kpi-strip:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "97e0626d3296633efad8d61373fd2b29822cb74621b97e686d947b11c05c5472", + "recipe": "", + "fingerprint": "7c1c6dc9c49581e9efddb095fcfc9933077d5ece3d0db873cdd10cb65213f3be", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1224,8 +1704,8 @@ { "id": "attribute:differential-kpi-strip:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "78374095ebf43a5cf5c4c3ff42b102c57d9df9777b4711c8c602fa28c97a2747", + "recipe": "", + "fingerprint": "cbdbe09824fc2844458dc89d95f1f66379d31fcaced6772762839cf98c320d1b", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1240,8 +1720,8 @@ { "id": "attribute:differential-kpi-strip:source", "kind": "attribute", - "recipe": "", - "fingerprint": "18c6cd87c8dfa1e8f50aaa287aa2e479f9e50417e31a48be206023a8bc05a971", + "recipe": "", + "fingerprint": "cda1f2224e945c198f9398d7b62b93cb55a142b3c7aed5978a71bbc7e6e9dfe6", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1256,8 +1736,8 @@ { "id": "attribute:differential-log-table:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "7cc1a44ad2050c2d6e3dbc2ca95969a12274481c2fa74203451500f6c5064afd", + "recipe": "", + "fingerprint": "e85fb3f5a1acd34430bac08641870f5684c67bf6a8c366bc34adee334b2bae7e", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1272,15 +1752,15 @@ { "id": "attribute:differential-log-table:format", "kind": "attribute", - "recipe": "", - "fingerprint": "8ca12e597f4545e09ca0cfd61cb0f9f06b069c6529927f89e0e53f2b54f6d14c", + "recipe": "", + "fingerprint": "9960b9cd5e20134f3a0afea6bd63a90a72025372402dd0e327e2593d53cb95ab", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "differential-log-table:format", "element": "differential-log-table", "attributes": { - "format": "identity" + "format": "time-only" } } } @@ -1288,15 +1768,15 @@ { "id": "attribute:differential-log-table:id", "kind": "attribute", - "recipe": "", - "fingerprint": "55f3d882c7dfed4b0efde7c738ece04624ad86ff41c3034d231ae2dcad3770e8", + "recipe": "", + "fingerprint": "60323d52eeacad1a5bd372c7fdb96cf90657816f30004916af7066e67423525e", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "differential-log-table:id", "element": "differential-log-table", "attributes": { - "id": "node-406" + "id": "node-447" } } } @@ -1304,8 +1784,8 @@ { "id": "attribute:differential-log-table:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "3aa5eb804de09df8db063f373cb1c68341f827bf0745578fb0fe9df8c753b29c", + "recipe": "", + "fingerprint": "e261fc63b60f1508632a4072fc88c5dff2b9fc211f45c06c0ee4ebb43bd5e09e", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1320,8 +1800,8 @@ { "id": "attribute:differential-log-table:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "1a31c39324b79fcde42aeb34c4d3826f3690c1fd5490e6c3d9b996b26d95ddf2", + "recipe": "", + "fingerprint": "1fb1fad38580f263e63697c2fa4e47a635c3ac4b3cfec01d894ebfce9d150584", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1336,8 +1816,8 @@ { "id": "attribute:differential-log-table:source", "kind": "attribute", - "recipe": "", - "fingerprint": "137e18be2143408c916c11db385ebf0f1dbb37d14cd1a80138bef1ce3c79ca6e", + "recipe": "", + "fingerprint": "511650e4695adc060bed73bc1553feba4ce34b582127836cf981c2185be35cce", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1352,15 +1832,15 @@ { "id": "attribute:domain-note:id", "kind": "attribute", - "recipe": "", - "fingerprint": "97b1a8becd50386c63c0d26bd51ab586a9754b7d1117f0662519b3c2ebf2bd52", + "recipe": "", + "fingerprint": "62f77c08bbe1b93827e6ea4adcfe18535f3f018d6a6f716f059a7485adfffb5c", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "domain-note:id", "element": "domain-note", "attributes": { - "id": "node-341" + "id": "node-382" } } } @@ -1368,8 +1848,8 @@ { "id": "attribute:domain-note:selection-from", "kind": "attribute", - "recipe": "", - "fingerprint": "2accbb62f8be064b9f759def3268739a5f73231bf037ee71bb31d91714b78c8b", + "recipe": "", + "fingerprint": "d1b517c6b0908aaf7ba65691fdf557b0de16c7997a9af22eb9cb31d124e5217b", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1384,8 +1864,8 @@ { "id": "attribute:domain-note:source", "kind": "attribute", - "recipe": "", - "fingerprint": "5030993e258768d94e00b2635365652ad09ba35377252e72cffb11c3b0d948f8", + "recipe": "", + "fingerprint": "ffdcfa037ddb3df000ca1eddfd1a0133cbb2425c0c2f1cb338ff072c4c314a05", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1400,15 +1880,15 @@ { "id": "attribute:domain-tabs:format", "kind": "attribute", - "recipe": "", - "fingerprint": "68232d0d5645bf5121aa6626969eece0b6657ad78ababbb6cede699e9c59783a", + "recipe": "", + "fingerprint": "c3604181392ff7551b3e182c1dd29a80b6658b9d37dcf443613a247bdf39920a", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "domain-tabs:format", "element": "domain-tabs", "attributes": { - "format": "telemetry-availability" + "format": "length" } } } @@ -1416,15 +1896,15 @@ { "id": "attribute:domain-tabs:id", "kind": "attribute", - "recipe": "", - "fingerprint": "ae96c8794afc8efff1f011c60cc4f654b979aeb5066eff0ca3548753c7f3416e", + "recipe": "", + "fingerprint": "b4755d9f3060e2e4083a69c1c65d1112c18c10b4b707c809378b10dd3db9c9c8", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "domain-tabs:id", "element": "domain-tabs", "attributes": { - "id": "node-336" + "id": "node-377" } } } @@ -1432,8 +1912,8 @@ { "id": "attribute:domain-tabs:initial-source", "kind": "attribute", - "recipe": "", - "fingerprint": "0cd19072ca50ba8f86ae57f37fc7e017923336344634a5b01a7fa794e45ed78b", + "recipe": "", + "fingerprint": "2e6cf603b8c1a1fd05c56bc29614f50361ed9fcf0e8211f71576fc9cb472ca69", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1448,8 +1928,8 @@ { "id": "attribute:domain-tabs:source", "kind": "attribute", - "recipe": "", - "fingerprint": "3583017074fc7b9bdfa42a2f4a65a5046db7157ebabb4a87c20751502d06893d", + "recipe": "", + "fingerprint": "2bc09a71a44c79ea06ea82d2e02bb7f0f6c39e79bcfb51a9405042bfe2df4779", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1464,15 +1944,15 @@ { "id": "attribute:feed-list:id", "kind": "attribute", - "recipe": "", - "fingerprint": "fe4cfc569ae91427aac75b525eb74a6278e10a27937ddf5ee4a0f43299dbba63", + "recipe": "", + "fingerprint": "8254d652e4cef23eba031c87d992ec32f92a4fe363b3d9f8f8a9d6e51d711516", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "feed-list:id", "element": "feed-list", "attributes": { - "id": "node-369" + "id": "node-410" } } } @@ -1480,8 +1960,8 @@ { "id": "attribute:field-list:collection-from", "kind": "attribute", - "recipe": "", - "fingerprint": "01f8757414ea5f446dbdd4af1607a7202f35ea866949323e65a30794943e9255", + "recipe": "", + "fingerprint": "a5cb5ef6c8b4fd2ce39659025b37bf497af3fe3f59b375e78e7db963f250021e", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1496,15 +1976,15 @@ { "id": "attribute:field-list:id", "kind": "attribute", - "recipe": "", - "fingerprint": "032d4350a56500cbf9875cb034d8011ac04f1e481beaaf34d4d2e12f985f475c", + "recipe": "", + "fingerprint": "74e6e4c02dca05e8c9dd9c093ffe08fba0680be11103a08fb7b5866d834acc22", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "field-list:id", "element": "field-list", "attributes": { - "id": "node-323" + "id": "node-364" } } } @@ -1512,8 +1992,8 @@ { "id": "attribute:field-list:mode-from", "kind": "attribute", - "recipe": "", - "fingerprint": "444747c13037c835397fb138a03e112f2bca55b36007ce3b65d51884c87ad21e", + "recipe": "", + "fingerprint": "3fcfb5f5e0cd7c89f78613c74168abee2fd7ea4351609527dd6bb1facdbb7837", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1528,15 +2008,15 @@ { "id": "attribute:field-toolbar:id", "kind": "attribute", - "recipe": "", - "fingerprint": "59a5bf38a09d4f229f3735ab6ce890b9dd13599b0224629fb6cda2c7c020412a", + "recipe": "", + "fingerprint": "39fcb410b8bff293ec53fdda381358f1efa03b16883bf296b7f324b67a9b9cb5", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "field-toolbar:id", "element": "field-toolbar", "attributes": { - "id": "node-448" + "id": "node-503" } } } @@ -1544,8 +2024,8 @@ { "id": "attribute:file-diff:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "9b472a79b43fbe1ab496a645178df241418b8067e1285623e00beda451843372", + "recipe": "", + "fingerprint": "6ba9b3179cf9a9fe88e9f2db4cf0ab7ad7def0ebee40aac8667f7ba6624e89e6", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1560,15 +2040,15 @@ { "id": "attribute:file-diff:format", "kind": "attribute", - "recipe": "", - "fingerprint": "223712531db7e6ecf7812c5fb4d615806bb4a048201ff4494f3d866d6ab38416", + "recipe": "", + "fingerprint": "25af3b177fb12b94708c859a9b2748d50425e8b1ad93dd09d2a865d8a8474ecf", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "file-diff:format", "element": "file-diff", "attributes": { - "format": "last-progress-percent" + "format": "identity" } } } @@ -1576,15 +2056,15 @@ { "id": "attribute:file-diff:id", "kind": "attribute", - "recipe": "", - "fingerprint": "885bb5565f9d20b807b017dcce94088f6c3c14743413be3617f301c098adcbce", + "recipe": "", + "fingerprint": "aaa6672e214558b68a01fe4840eddc6ff835d1c93cfa5db373c8b04869022193", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "file-diff:id", "element": "file-diff", "attributes": { - "id": "node-382" + "id": "node-423" } } } @@ -1592,8 +2072,8 @@ { "id": "attribute:file-diff:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "90542ba2a9c513e3a80f9250618038874eda2487c5b548c52090c80b7ac5ae4b", + "recipe": "", + "fingerprint": "7156839a807dbd2d1db6238df939bcc9d03b095b57edafcb51b85772b98874be", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1608,8 +2088,8 @@ { "id": "attribute:file-diff:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "82fcab3fcf799604fc834dbea2593e378dbbea81d5c3520b6288ea254b83be8a", + "recipe": "", + "fingerprint": "b83ace0e6f9d0afeae86c15b5c9907acc5e5a7e017c4cba8a9c4f316a7c1aba9", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1624,8 +2104,8 @@ { "id": "attribute:file-diff:source", "kind": "attribute", - "recipe": "", - "fingerprint": "101c4aa22cb633e340d96f0d8ce502a73049d1cfde45c3b31b04c4c13eed6f1a", + "recipe": "", + "fingerprint": "a370c59b0418859870afd09acee16910432fc07f167e3913516dfdfbf2f7ce62", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1640,15 +2120,15 @@ { "id": "attribute:filter-toggle:id", "kind": "attribute", - "recipe": "", - "fingerprint": "dcab87610e0fe763f4488fdb5e40077e8a4f2f62deaad41eb6ae522881957867", + "recipe": "", + "fingerprint": "cb55f7dfe3e33f8ca6fb2afe736860f7c36874ecd009b71468b55e4608e0aa54", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "filter-toggle:id", "element": "filter-toggle", "attributes": { - "id": "node-476" + "id": "node-531" } } } @@ -1656,8 +2136,8 @@ { "id": "attribute:filter-toggle:initial", "kind": "attribute", - "recipe": "", - "fingerprint": "a2b4853ed160ecc000b332a0839abaae21e37f44e834436d6d6db2ac280eab28", + "recipe": "", + "fingerprint": "c1ab91337708a1db714a0ddefc9692c67f17ae276df92cf41d85d97bd18e41e6", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1672,15 +2152,15 @@ { "id": "attribute:filter-toggle:key", "kind": "attribute", - "recipe": "", - "fingerprint": "9b8f3fa08e93f85742f8c938e33ca53269093e221061f9ba089d180b7eddd6c2", + "recipe": "", + "fingerprint": "fd6909a7e7ce6ab4c4414bb43b9d8970c0e8a49faa0025ff5c4ef229a8c3d21a", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "filter-toggle:key", "element": "filter-toggle", "attributes": { - "key": "non-pass" + "key": "command" } } } @@ -1688,8 +2168,8 @@ { "id": "attribute:filter-toggle:label", "kind": "attribute", - "recipe": "", - "fingerprint": "cdf76bc14e6a02ce104c72b734c62c7c0fd4620bd11558f80d0a100661eeba05", + "recipe": "", + "fingerprint": "1dc9f665b0fe25c666f534d86afa26a94acb37b259ffd4e91c0506ce10b19928", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1704,8 +2184,8 @@ { "id": "attribute:frame-card:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "79903a30fff7af88017062aaa677897b3dbe3e73d099fa576bc860b8fa431901", + "recipe": "", + "fingerprint": "c9f284d5d040ad9dc3c949a0687ec42762a4cb84d3bee901d0a93030ad2cead0", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1720,15 +2200,15 @@ { "id": "attribute:frame-card:format", "kind": "attribute", - "recipe": "", - "fingerprint": "26630f3f821757ae566480e553ab5685f3ea779804d31e3cc12aefeadb8e303d", + "recipe": "", + "fingerprint": "dc35867f88c1baa7b1fb2c581e8efa35659b924e0e6f7c68e73aa6076559d313", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "frame-card:format", "element": "frame-card", "attributes": { - "format": "relative-age" + "format": "index-by-id" } } } @@ -1736,15 +2216,15 @@ { "id": "attribute:frame-card:id", "kind": "attribute", - "recipe": "", - "fingerprint": "2e451f490ea8c5b98265286237d69fe1699631028773d7ec4cbf167f2d674740", + "recipe": "", + "fingerprint": "c62b629071e582f0391bd08d4b2361d8b12e9e51a1f9613742f04469a1f8354a", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "frame-card:id", "element": "frame-card", "attributes": { - "id": "node-346" + "id": "node-387" } } } @@ -1752,8 +2232,8 @@ { "id": "attribute:frame-card:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "9035d6e4b6c347b42e673cf26a7b06b74e7296b069270b10a268a62094bc6415", + "recipe": "", + "fingerprint": "39504280d9c82ed57e34164ca64428a1032ba7b82342ee3fca326ecd7eb50aab", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1768,8 +2248,8 @@ { "id": "attribute:frame-card:selection-from", "kind": "attribute", - "recipe": "", - "fingerprint": "2c09dc51210d1b03f31f546a889d567ed9f9ab91adcf83dbd82ba6b81bf5a62c", + "recipe": "", + "fingerprint": "d2ffdac86d3974cbd8f17ebb659ab9b7fafa5c662b04920c1fa106837eec4d8b", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1784,8 +2264,8 @@ { "id": "attribute:frame-card:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "40c7eb2495b16b163490a823d3f0ff1082c2d765ff03a9fd8ecacd1a0dbbd2a2", + "recipe": "", + "fingerprint": "f80f5260e5c201f8eed0e466446c84aad0001dd7cb189c60be3b772927c5e8e1", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1800,8 +2280,8 @@ { "id": "attribute:frame-card:source", "kind": "attribute", - "recipe": "", - "fingerprint": "6720a5ac94bea193729384bc828d0c1c8e22d5dfd381ba5b716ab970f55d4e90", + "recipe": "", + "fingerprint": "f6978c3d853297adc98f36441e404d9454a1193b782ab7276bb91d7dd9c1d7f2", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1816,8 +2296,8 @@ { "id": "attribute:frame-delta-chart:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "7037baa0e7ab0f99f22dc2e3ec398f8f68e0b47ef176af8118a3ba20a75f0ab9", + "recipe": "", + "fingerprint": "822a1cc2b24a84a0e5d871a49d24e96fea8e238693c48b084623b89ac949b622", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1832,15 +2312,15 @@ { "id": "attribute:frame-delta-chart:format", "kind": "attribute", - "recipe": "", - "fingerprint": "be6316ea8e9b6827507bb09c02648f1a19b2d211d24e6a02902201c4a4093a1c", + "recipe": "", + "fingerprint": "6051d1540e0a2765f09e0c050c1907db0a5f1333e0313fff63b4c0749ce51976", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "frame-delta-chart:format", "element": "frame-delta-chart", "attributes": { - "format": "last-delta-percent" + "format": "delta" } } } @@ -1848,15 +2328,15 @@ { "id": "attribute:frame-delta-chart:id", "kind": "attribute", - "recipe": "", - "fingerprint": "14126bc2c0191a7900996fe044a42393c7a0d5ef02de3d61b5375145788aab1a", + "recipe": "", + "fingerprint": "7e5a4c6cc0e96993dedb009eb1c88eccd8e0a0202753f2de8c65ed4c2aecff5a", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "frame-delta-chart:id", "element": "frame-delta-chart", "attributes": { - "id": "node-420" + "id": "node-461" } } } @@ -1864,8 +2344,8 @@ { "id": "attribute:frame-delta-chart:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "4dfd5a39a782f2392f85e8d0bc4255d9aae602aac30ca63bd9bd175599436541", + "recipe": "", + "fingerprint": "ccde8059607f99c8fff42273794cf235c7f6b620d93b395b2326f4823efd9f65", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1880,8 +2360,8 @@ { "id": "attribute:frame-delta-chart:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "3d161f0c7abc6c3c9efd8efcb66ccc80aedce67b42d2fec96afe34a91d3413b7", + "recipe": "", + "fingerprint": "565ccc84ec32821e8ba9f4bc0050d3f79e8fdfe17c8ca9d324dc967d78fecd80", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1896,8 +2376,8 @@ { "id": "attribute:frame-delta-chart:source", "kind": "attribute", - "recipe": "", - "fingerprint": "36e5fdddc7886572c90d6fbf7980d3029134e3b028f69b6dd359e929e4ed2de5", + "recipe": "", + "fingerprint": "ef17fcce9452776dee6d2f9dfb5ff742c37ce9a7da9a8d43ae7d02e3460b3ad7", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1912,8 +2392,8 @@ { "id": "attribute:grid:columns", "kind": "attribute", - "recipe": "", - "fingerprint": "80181d8673a556a8f2153cbedda7dd7c68c43bf50856c058e0ab4243c37fe4b3", + "recipe": "", + "fingerprint": "a3927ae9edc732e151c380eeb2636c59d7f2fa710328008b6827681236cec1bb", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1928,15 +2408,15 @@ { "id": "attribute:grid:id", "kind": "attribute", - "recipe": "", - "fingerprint": "2eb74f5af5e5d7d3f7eedabcffd1a9a2c9cc135792cfec13ca43b9634156ac79", + "recipe": "", + "fingerprint": "031546df7d6d078c8055c6aa792cd3c0394325f1854f3155ecb5da4527d17cdc", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "grid:id", "element": "grid", "attributes": { - "id": "node-76" + "id": "node-83" } } } @@ -1944,8 +2424,8 @@ { "id": "attribute:grid:row-height", "kind": "attribute", - "recipe": "", - "fingerprint": "98906974e55972ef1b62cc402040bf1cd447929dbc8b7b3e49b8960bbb6fa26f", + "recipe": "", + "fingerprint": "6987332a1e3cff33eb5660416ce0171ac6837656fc13ef5854e696553deee5b1", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1960,8 +2440,8 @@ { "id": "attribute:grid:rows", "kind": "attribute", - "recipe": "", - "fingerprint": "e5d6114d5a51c45aa3d81ba0bf0561cb04200e45368751423baa5570aad50fce", + "recipe": "", + "fingerprint": "ba0fcc9a8b8ad942c1d35760aa7723ee57a4aa47b9fa974c32cdb05dad14f1e3", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1976,8 +2456,8 @@ { "id": "attribute:icon:name", "kind": "attribute", - "recipe": "", - "fingerprint": "cc4010a4099a9d49cbb14a1a8341f759138dc74d3051913b5e9a8ee8539017c4", + "recipe": "", + "fingerprint": "c65ec16e0e18ee090dd0dd4a609b871f089f0f49f7869d25b3956fa058df85ba", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -1992,8 +2472,8 @@ { "id": "attribute:icon:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "12c4434cfad8b0c30819422179de11828b2042d7826a010cd29aa008362d015c", + "recipe": "", + "fingerprint": "565b5abf157f3a6dbefc7df8315fe8a6be32fdf9e45874a4657223fe44585611", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2008,15 +2488,15 @@ { "id": "attribute:image-triptych:id", "kind": "attribute", - "recipe": "", - "fingerprint": "96c1fbcad926c93d01390ce433d95a9b740646722a3e179d94987f6fdabf13a9", + "recipe": "", + "fingerprint": "b945dc1540f29f714a358b8ec00ea2700d042e8d76336f110d31a607639a2ed5", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "image-triptych:id", "element": "image-triptych", "attributes": { - "id": "node-357" + "id": "node-398" } } } @@ -2024,8 +2504,8 @@ { "id": "attribute:kpi-item:class", "kind": "attribute", - "recipe": "", - "fingerprint": "3a3663751ab9b3aea560884ba2222d90582ad6409439be4d490bc444b71c0918", + "recipe": "", + "fingerprint": "f4ba387274664acb95642eb0b0009a649e48637e97c7fb5ecb4961de03338a9f", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2040,8 +2520,8 @@ { "id": "attribute:kpi-item:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "1a6729045b1d859c8aac5e5fb861277eb4d3939e26bb41498eb28ad5d73f4d48", + "recipe": "", + "fingerprint": "12377fc975a1dbe37d28780271deb7d6e05dfa243543dd5668f8974a828a9fd2", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2056,15 +2536,15 @@ { "id": "attribute:kpi-item:format", "kind": "attribute", - "recipe": "", - "fingerprint": "8fb1095c4b6a48d26ce0d7b7b94f1cbaf7b8852ea40d552d5374e194017ab879", + "recipe": "", + "fingerprint": "e412eb397edd34aee64ee367098440319ad6b810c2275d067879bd898fbe6136", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "kpi-item:format", "element": "kpi-item", "attributes": { - "format": "index-by-id" + "format": "last-delta-percent" } } } @@ -2072,8 +2552,8 @@ { "id": "attribute:kpi-item:heading", "kind": "attribute", - "recipe": "", - "fingerprint": "d28cfde7bead1257a1920320c3bb3cf6a504e7826545c5155941d854e3eed7fe", + "recipe": "", + "fingerprint": "6cca2abdbf3b1818a7b4c1221c27bf47d32b4a6e14b1f456e6f37474f66ce529", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2088,8 +2568,8 @@ { "id": "attribute:kpi-item:icon", "kind": "attribute", - "recipe": "", - "fingerprint": "eec534e94d5c5d5f4c1534b7781b7d3cac491a1d6ab33c02e3c07ff9611aaf4e", + "recipe": "", + "fingerprint": "1cfa94d93e1928227d29bb2890339fce7b3e6b3622af16e3343d5942d6dae75a", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2104,15 +2584,15 @@ { "id": "attribute:kpi-item:id", "kind": "attribute", - "recipe": "", - "fingerprint": "d418b4c46e03a5a5fb0cd5719b4238224c192e555bdef1e372c981f2746b69f4", + "recipe": "", + "fingerprint": "6bfe7b8df31a516fa1281847b7babab6e5451160434060d3defd28c350bb0206", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "kpi-item:id", "element": "kpi-item", "attributes": { - "id": "node-228" + "id": "node-244" } } } @@ -2120,8 +2600,8 @@ { "id": "attribute:kpi-item:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "506ee81bdecf82ddc190ec0691ce3c1bea9bb8c584d83623b2a5460b483aa086", + "recipe": "", + "fingerprint": "6dcb34565c9403c3761823df6e283faf258ae035ada2ae520b63eb242ec9f937", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2136,8 +2616,8 @@ { "id": "attribute:kpi-item:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "cc60b9b86efde33160041ef93b90d590534e58567c065e2a2946effe4722d777", + "recipe": "", + "fingerprint": "90415617146139117b081e815c0abc60aea9511ff2ad18e63dc9ecaaa32e054e", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2152,8 +2632,8 @@ { "id": "attribute:kpi-item:source", "kind": "attribute", - "recipe": "", - "fingerprint": "6f11bb6d4b0925d44e52dff3525eac55f814dadf4be4aadfbf9fbd6858b8fab5", + "recipe": "", + "fingerprint": "ea08b20d79e061d4f19069e0368d7033085aae4a7edb05ceafa943cfe01c4061", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2168,8 +2648,8 @@ { "id": "attribute:kpi-item:title", "kind": "attribute", - "recipe": "", - "fingerprint": "92a8cefdbf3e9f56dcbd60a911d2e50c2067d645a250b3cac477c25991fa1fb1", + "recipe": "", + "fingerprint": "92a95c7db442f50b391ef75b4bb65e60894fb9e4052150be29668e95a3aa10b4", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2184,8 +2664,8 @@ { "id": "attribute:kpi-item:value", "kind": "attribute", - "recipe": "", - "fingerprint": "af69fb360a66a1833268c7b5e988047e7171385892c6581935fa629de8bdfca6", + "recipe": "", + "fingerprint": "7660a4845780f9f1566ed986ec467f2ae1f891a1638c91b67c6ee5e19b3ec8ec", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2200,8 +2680,8 @@ { "id": "attribute:kpi-item:variant", "kind": "attribute", - "recipe": "", - "fingerprint": "fd08c0288bbcc5f384b090f57aab11e86a6ba10e4fe76e4aac8eea011629e9e3", + "recipe": "", + "fingerprint": "2f2df2501ee976fce6e447021bb5cb3b6d5d597b369060074b0b756e4de158ef", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2216,8 +2696,8 @@ { "id": "attribute:kpi-strip:aria-label", "kind": "attribute", - "recipe": "", - "fingerprint": "878b12affc3306fcacc18a1929125c9a39e856d8ebda735735a034b2c888595b", + "recipe": "", + "fingerprint": "2ee4c95053de1a40f62f853f28abb7a4a92a53e90f84884ebc29e610669e14df", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2232,8 +2712,8 @@ { "id": "attribute:kpi-strip:class", "kind": "attribute", - "recipe": "", - "fingerprint": "a5489c1f6296db6dde088cf1a9782265e7754c0de20f9d99503c436720326587", + "recipe": "", + "fingerprint": "a0279c56871327a04447649e954e0d24b82c842304f74a4848f60c41b6a0ca9f", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2248,15 +2728,15 @@ { "id": "attribute:kpi-strip:id", "kind": "attribute", - "recipe": "", - "fingerprint": "0bf744ab558306faed137c0ee24174f310b240d03b54166bfdd2f24941bd2483", + "recipe": "", + "fingerprint": "f3dc81f8713deed5aa7c75967da8c80c07c5f1fa71fedfb67e1791be22150a64", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "kpi-strip:id", "element": "kpi-strip", "attributes": { - "id": "node-222" + "id": "node-238" } } } @@ -2264,8 +2744,8 @@ { "id": "attribute:kpi-strip:title", "kind": "attribute", - "recipe": "", - "fingerprint": "2b4efc7e967d30efe80a5c4e2a585399c89dded7d20b5c3159198e15905263d8", + "recipe": "", + "fingerprint": "5c1eec573f48dd7510185de528b99e3ba8dbc87e31c1b778c700bc72015a68c4", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2280,8 +2760,8 @@ { "id": "attribute:log-table:class", "kind": "attribute", - "recipe": "", - "fingerprint": "37ee36e49f32c8ae2d5100b6be560d889f2010cad5d9215cac87c90b536fda8e", + "recipe": "", + "fingerprint": "9809de96322516498ad219f0097bea5cdba6f05e149e449020d7152b1a6119aa", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2296,8 +2776,8 @@ { "id": "attribute:log-table:empty-text", "kind": "attribute", - "recipe": "", - "fingerprint": "dc12100ffbf4af33c7c517bc3b78b8e717102661c857a4152692552c28c24f69", + "recipe": "", + "fingerprint": "0797623f2134e6fa91411dce3c6010743a7f2bae3041e6798c48632d7eae1ccc", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2312,15 +2792,15 @@ { "id": "attribute:log-table:id", "kind": "attribute", - "recipe": "", - "fingerprint": "ca0c5ff0ca92dce7765ab056189ffe09cade9b4bafc4a23e920781c9e554732c", + "recipe": "", + "fingerprint": "b4b72e8fc1b864f3ab552894ff25e5d5146ef21285e69da2df1590c07f16e600", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "log-table:id", "element": "log-table", "attributes": { - "id": "node-300" + "id": "node-340" } } } @@ -2328,8 +2808,8 @@ { "id": "attribute:log-table:source", "kind": "attribute", - "recipe": "", - "fingerprint": "04c6c098209b8a729724bb2b1ab2a805a7c49ebce89032bc11899e8b2a7bcf73", + "recipe": "", + "fingerprint": "2930650d040835fbb824d4d0ad569ede5b13197952b13967e2f72f3d60ba7696", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2344,8 +2824,8 @@ { "id": "attribute:log-table:title", "kind": "attribute", - "recipe": "", - "fingerprint": "c2c1f7c44ece4ba178b06c4a589ad98de572e2ac8807e34a1eb2e47ca572c3e1", + "recipe": "", + "fingerprint": "bf2314a5a1c009c9f4708fc6b609f0d90a817f9f003f7327fbca043d6e3e97f3", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2360,8 +2840,8 @@ { "id": "attribute:loop-graph:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "864c9828f780e2adc910a317e9bf7b3892f5654b8ebaccccf474b6dc9ff9de59", + "recipe": "", + "fingerprint": "26c1c37d8e8b48282e8b913f8f9f7edd73fbdbecb73285a1d4b1c8bedadd1d03", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2376,15 +2856,15 @@ { "id": "attribute:loop-graph:format", "kind": "attribute", - "recipe": "", - "fingerprint": "60efdcf7f43ed1e1d04ffd0c280c96b5d25ce34d3580b791016b13fe85c7bb9f", + "recipe": "", + "fingerprint": "106e238702313f04eadf351ec8486f4f38253d89691ec6984ea7c402ac02ebf2", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "loop-graph:format", "element": "loop-graph", "attributes": { - "format": "last-failed-count" + "format": "index-by-id" } } } @@ -2392,15 +2872,15 @@ { "id": "attribute:loop-graph:id", "kind": "attribute", - "recipe": "", - "fingerprint": "92c2f3676213d5fcedcad2bf3d47b5ab507cb37aade28abbce72126d29eedea9", + "recipe": "", + "fingerprint": "e5898d164851e15cb32e54ec588e8507aba88725c76fe350a89178eb95fc32bc", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "loop-graph:id", "element": "loop-graph", "attributes": { - "id": "node-433" + "id": "node-488" } } } @@ -2408,8 +2888,8 @@ { "id": "attribute:loop-graph:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "d7d8e204a2a5fc516eaea17821440a46dc8bfa73e2b1104eb648d18bdbfefcdd", + "recipe": "", + "fingerprint": "8a533fe4897c2a0cb0b643b7eafdc2de786d204ce1a395ecce623bc6a3509e94", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2424,8 +2904,8 @@ { "id": "attribute:loop-graph:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "f3ad36d0324724fee1c7f1bd31ac19d0a7464f83b2fdcabd23231b7368632b18", + "recipe": "", + "fingerprint": "a62707ae3f69a9046ba8ba4c988a96fd1dd58133742acd17778b057929639072", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2440,8 +2920,8 @@ { "id": "attribute:loop-graph:source", "kind": "attribute", - "recipe": "", - "fingerprint": "6991a099b3485ef0503c62030757f92430b351613101ea65db53ca1cc10865db", + "recipe": "", + "fingerprint": "d6d5445a77db6efd7327d453aec8c79a2c839b7ad02348fa1d79407123f9b531", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2456,8 +2936,8 @@ { "id": "attribute:loop-graph:title", "kind": "attribute", - "recipe": "", - "fingerprint": "ad40863011416ebd854539bbf1b42b4c175b2407f27da31f24cac8c7ec1981e5", + "recipe": "", + "fingerprint": "8906a817b1631774731b3d29ac6483c79f2a7a1813d0f30ad5796e1280137e38", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2472,8 +2952,8 @@ { "id": "attribute:loop-progress:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "9af5fe1fe8d958745ef12e9edbaf4ae82bf092621815f68d99f57857448939a2", + "recipe": "", + "fingerprint": "10141dddac60ca3738e09abbecd7741639d47e78d46747ab34ef45565fadf887", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2488,15 +2968,15 @@ { "id": "attribute:loop-progress:format", "kind": "attribute", - "recipe": "", - "fingerprint": "6a32d56ac8703400766f6f4892ab7bac5ec4c0c69e28376c9868453fd1c6055f", + "recipe": "", + "fingerprint": "14a9c64b98c74c293123a900823a01b43b4fb5c63950d27dec49927ab95b2d99", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "loop-progress:format", "element": "loop-progress", "attributes": { - "format": "identity" + "format": "ratio-to-percent" } } } @@ -2504,15 +2984,15 @@ { "id": "attribute:loop-progress:id", "kind": "attribute", - "recipe": "", - "fingerprint": "80451b078b149a133ceef5606b4d164d6127a7b710316d3492058790ceb0374e", + "recipe": "", + "fingerprint": "65b14635a4964932049b0fa6f44157247c0210472d22b92a2442f0919dac2e60", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "loop-progress:id", "element": "loop-progress", "attributes": { - "id": "node-441" + "id": "node-496" } } } @@ -2520,8 +3000,8 @@ { "id": "attribute:loop-progress:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "2275002f6f1a943d768bb03ee158435c06009481f6b070f920a0fba57204e4f8", + "recipe": "", + "fingerprint": "2287a428871747ac7aedd55e16dc49cc21c4e2c0b36bf8f1e5870c73fa59edbb", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2536,8 +3016,8 @@ { "id": "attribute:loop-progress:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "97b6942a3f51da2acbd4a37294dee652eb693cd01a5d1e686bb39adfbb006b0a", + "recipe": "", + "fingerprint": "fc6b0889a32d6461d60c3b3daba81362c984f785a520e55e5d3850e4c5f420c1", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2552,8 +3032,8 @@ { "id": "attribute:loop-progress:source", "kind": "attribute", - "recipe": "", - "fingerprint": "4eb0bcf11fc47c76514f0e860284169581702f07bc25ba7894a791360ff0d8e6", + "recipe": "", + "fingerprint": "cdcc33c58f382cbaa4a804ce130306a7ce08846d607b5637fdd95e9569d3da86", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2568,15 +3048,15 @@ { "id": "attribute:metric-tiles:id", "kind": "attribute", - "recipe": "", - "fingerprint": "5c327ab52fb2d49ff62b9ec2ec129d8ce06d5cb2c45e11b6eb2d2551a99cbbcb", + "recipe": "", + "fingerprint": "c2a16db79ad7e317ae7a7b20e3a3cc75cebb8599784dfc4b7bd63695175abfad", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "metric-tiles:id", "element": "metric-tiles", "attributes": { - "id": "node-328" + "id": "node-369" } } } @@ -2584,8 +3064,8 @@ { "id": "attribute:metric-tiles:selection-from", "kind": "attribute", - "recipe": "", - "fingerprint": "5dcd6fdee7c99a1e11c8c53f4bffac50a4a41908ba6f9bbe4c4b57fa30a7dcf5", + "recipe": "", + "fingerprint": "9066d94fc0849d299fb85085535bfecbd37af23fdcdb89e84e009c31a2159dc4", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2600,8 +3080,8 @@ { "id": "attribute:metric-tiles:source", "kind": "attribute", - "recipe": "", - "fingerprint": "dfc656b4407e3df2592d6e0037787791510c025177aa76f0018458e317fc7201", + "recipe": "", + "fingerprint": "b6cf9aa4e46441b800d7ec595e0caf0a020381439aca2cb410ed6ee736bd2602", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2616,8 +3096,8 @@ { "id": "attribute:mode-toggle:aria-label", "kind": "attribute", - "recipe": "", - "fingerprint": "7cc3a8143f9e1a105d5237b5137cb7a484cbbbab69821ff2a71d3165fe627768", + "recipe": "", + "fingerprint": "37360ce23bcbabcac1efedc25f5327c5f6ff34255d40807d3323d71e3cebfb68", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2632,15 +3112,15 @@ { "id": "attribute:mode-toggle:id", "kind": "attribute", - "recipe": "", - "fingerprint": "87030ed7ed63a958097bdd0d639a05b2e2712ceee3f85bff17b5a54c63822d8e", + "recipe": "", + "fingerprint": "77205555259acfc7a16e0fda6fe76c3169c3a16942205b05f54f547a7050902a", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "mode-toggle:id", "element": "mode-toggle", "attributes": { - "id": "node-454" + "id": "node-509" } } } @@ -2648,8 +3128,8 @@ { "id": "attribute:mode-toggle:initial", "kind": "attribute", - "recipe": "", - "fingerprint": "bfc16f7037c562b4d45cbd33cc36625ffeeb1273ff37e7f4c993212afdf86a16", + "recipe": "", + "fingerprint": "1ea053587a7fa2ee51a5b064af487572b46daea97f9f1ffc897c3a7bffb3634c", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2664,15 +3144,15 @@ { "id": "attribute:model-lab-view:id", "kind": "attribute", - "recipe": "", - "fingerprint": "1989789b704b7722fe0767e684ebc1e002af08f8967710b797cae23e2211c89a", + "recipe": "", + "fingerprint": "23954b5e36ded3328049941c78e0228ffcbd1424f9ef9e3aac4aba2d04536c67", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "model-lab-view:id", "element": "model-lab-view", "attributes": { - "id": "node-430" + "id": "node-485" } } } @@ -2680,8 +3160,8 @@ { "id": "attribute:model-lab-view:source", "kind": "attribute", - "recipe": "", - "fingerprint": "18df550ea010d56df70a6bf69b22bc0cc1ad28e8d5bfd6d0713430ea62cc170d", + "recipe": "", + "fingerprint": "3fa92cda278007b635be4f325c162f1762ae855f6e7fcc54e6fa69d89f583cb6", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2696,8 +3176,8 @@ { "id": "attribute:option:label", "kind": "attribute", - "recipe": "", - "fingerprint": "b40436c76d76300b19f03e6a4b51500687f3d001ae4a24045c0ff91ea7cbe4c5", + "recipe": "", + "fingerprint": "f42990ef3704cd5e2ff12fc60f8280e7ea738043c8bd63bd7ca0ab68afe248f4", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2712,8 +3192,8 @@ { "id": "attribute:option:value", "kind": "attribute", - "recipe": "", - "fingerprint": "a7cad1ae04cd8a26f727bac9e0e97f34f8137008f8840f2390c8e8a9cd487a9f", + "recipe": "", + "fingerprint": "f9b30249203a4b36aa10efdfc200213cc6ec4ad859629989ea606d2b65a3410f", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2808,8 +3288,8 @@ { "id": "attribute:pagination:collection-from", "kind": "attribute", - "recipe": "", - "fingerprint": "b9563394244875c18c1aed8300199494ebeebd798673e70b86f1e3a47bd07b82", + "recipe": "", + "fingerprint": "07a7d39adc9f4c772b92285d784426e7fb1a04ab81dcff7bf14d5290986a226c", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2824,8 +3304,8 @@ { "id": "attribute:pagination:page-sizes", "kind": "attribute", - "recipe": "", - "fingerprint": "5237d9669ca1d68693c086d4c72f423a149dc97cac9bb879fab921bf5b34fa42", + "recipe": "", + "fingerprint": "7196dbee36495224a52fbfc86d159bcf4a1f886ac5d8e29e81beb0ee93c22d86", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2837,11 +3317,27 @@ } } }, + { + "id": "attribute:pagination:subject", + "kind": "attribute", + "recipe": "", + "fingerprint": "33a566056e53ff3038139964150d82c88ec8991cbd1b09d8d090dc7597dfd600", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "pagination:subject", + "element": "pagination", + "attributes": { + "subject": "value" + } + } + } + }, { "id": "attribute:panel:column", "kind": "attribute", - "recipe": "", - "fingerprint": "2fa3b7a1d5ca0b5c7079ea66c60b60d74c01b8b42dc694b65c3761606c28b559", + "recipe": "", + "fingerprint": "e7107e334ae748ef2e797b9b045f79c29e76d2de6d2ac5f8b93d5ea6588d2ec2", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2856,8 +3352,8 @@ { "id": "attribute:panel:column-span", "kind": "attribute", - "recipe": "", - "fingerprint": "841fd157a23b9e4ffebe826f72298736bfde6c07e8f26d4494cb63bbfdc17f67", + "recipe": "", + "fingerprint": "fcc32b1fe13924dabfc603217ca7081ae82c83011c84d7b65f54b61142cccd49", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2872,15 +3368,15 @@ { "id": "attribute:panel:id", "kind": "attribute", - "recipe": "", - "fingerprint": "5ec472a5553d9f5681c80d48b979ba3a2892f816d0abd5f1a06ae3751869c53d", + "recipe": "", + "fingerprint": "616a36c3a40f9949257f38c4b006ef866292a21e13520d154b81b0b6199faed7", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "panel:id", "element": "panel", "attributes": { - "id": "node-122" + "id": "node-133" } } } @@ -2888,8 +3384,8 @@ { "id": "attribute:panel:row", "kind": "attribute", - "recipe": "", - "fingerprint": "d88a1bb64a4a547821e041a1d9992f82d2b2204c5004f0a871336b83e3f29af5", + "recipe": "", + "fingerprint": "edb775b31c3e698b1113e12f63620b417f186499398c538f7bd8ab3872bfc405", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2904,8 +3400,8 @@ { "id": "attribute:panel:row-span", "kind": "attribute", - "recipe": "", - "fingerprint": "60a7db64b5806f9ad47887a635e462b2221b93f54ce1aeeb870149cca5b3f92c", + "recipe": "", + "fingerprint": "11eb1a80074f7b32d502c8388f77886c882d5aa2bf226bd977f797c9e933cd0e", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2920,8 +3416,8 @@ { "id": "attribute:panel:title", "kind": "attribute", - "recipe": "", - "fingerprint": "586cb99460da4687ba19c3dcc1dcfe04d1a55bfcaec7f266ec08edabbf861545", + "recipe": "", + "fingerprint": "8d08827d316fa79fcab053188de0935c599729e7410ee8e356914f9a009a0da5", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2936,8 +3432,8 @@ { "id": "attribute:progress-chart:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "b06f95121a19ac7d3bd7e6dd705de210bfbff309e1e5ee5cc85e485b87f09876", + "recipe": "", + "fingerprint": "f13e4e60d0860ac3185ef1924017eb15909a18bc05d0caf92f8ab1fcadc8b5aa", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -2952,15 +3448,15 @@ { "id": "attribute:progress-chart:format", "kind": "attribute", - "recipe": "", - "fingerprint": "94bb452cf832ec1bf86fa7081b9cfe9fe2c3fc78f35fa5ea912e45f8b94ca36a", + "recipe": "", + "fingerprint": "cdc1eacc1338247f9021f254549de6feaab4db1c9b649e52eea8b7c9a5b9e7bf", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "progress-chart:format", "element": "progress-chart", "attributes": { - "format": "time-only" + "format": "last-delta-percent" } } } @@ -2968,15 +3464,15 @@ { "id": "attribute:progress-chart:id", "kind": "attribute", - "recipe": "", - "fingerprint": "9eb760762d01600fe364b671b4e64eae5bed8f3033f155b8bcea5cd0fe391174", + "recipe": "", + "fingerprint": "614aae7a56d84674a15c3f31c98cc2420ec21b529daa184d3b4e4f66d12af3b7", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "progress-chart:id", "element": "progress-chart", "attributes": { - "id": "node-413" + "id": "node-454" } } } @@ -2984,8 +3480,8 @@ { "id": "attribute:progress-chart:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "cca528b7851a74aead17bed08689b70f3e97a12f5e051a701f96413a93c11926", + "recipe": "", + "fingerprint": "5d8c3320318a084c9aedaca836438256ce04400ac04c2238fdd968dcf6736bc7", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3000,8 +3496,8 @@ { "id": "attribute:progress-chart:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "d20e9fef4edaff157740910d8742c0871884a154e5aa00803cc6ff9ba7f0213c", + "recipe": "", + "fingerprint": "6c5b8f8b0d27a6a21643bcf9332b79e1142e7ed3dfabecc2c26d47a36a79437a", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3016,8 +3512,8 @@ { "id": "attribute:progress-chart:source", "kind": "attribute", - "recipe": "", - "fingerprint": "fc1f6e0c723370a492acd364ac488e16a1ab2dc56e3392c269ec9b147706c65f", + "recipe": "", + "fingerprint": "2e3f4412e2ccab20d173350757c91a0f706fcb2f3f8930e933fc46e020abd690", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3032,8 +3528,8 @@ { "id": "attribute:progress-donut:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "27dd3483121bd33f83e144f376d852ebd76940a331570d6dbc289099060d38f6", + "recipe": "", + "fingerprint": "500b5a940ae9511c2ae2671b7132b2ca3443ebaf44860221ae611b45febc2d32", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3048,8 +3544,8 @@ { "id": "attribute:progress-donut:format", "kind": "attribute", - "recipe": "", - "fingerprint": "bd07616b9b5393386a8f8b8860a3b0703e5b7c54f4c22f2cac9f23262b2ec072", + "recipe": "", + "fingerprint": "bfdecc7646599c2988747dfda22a81b28056049cc9293891a61de0897ca96ab1", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3064,8 +3560,8 @@ { "id": "attribute:progress-donut:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "f11041b7a9c10bfd0b98ef4850489ed661ea0447cca99832a166a16fe8c158c4", + "recipe": "", + "fingerprint": "5439ffbd0ddcf110cdeaf3bdb85a3d4e000c90bd5b1d82f953c0a6d0d9a3fea3", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3080,8 +3576,8 @@ { "id": "attribute:progress-donut:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "cd9e0b661d57954da459d20943ce99cd2f7e781d07d8b571252301e84a5ebcf5", + "recipe": "", + "fingerprint": "76af79ad437c594d4823c10d1834d19cf8b316c20e115bda175c4f4bcb7f4934", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3096,8 +3592,8 @@ { "id": "attribute:progress-donut:source", "kind": "attribute", - "recipe": "", - "fingerprint": "d3fa05c4cb298f8ac31493734e1f68e1c386a24c635ee061c669e7ca908341ff", + "recipe": "", + "fingerprint": "46bf22c3a01bd9799f620c1d540c6d0f9fd1db8b011e081c3b3e3ee8cbb4d599", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3112,8 +3608,8 @@ { "id": "attribute:progress-value:done", "kind": "attribute", - "recipe": "", - "fingerprint": "930e616a6375ea2b0cb8565aa5e9ecca6c4bdc65a66cdc0a429c005806c32aff", + "recipe": "", + "fingerprint": "2a430067d8361499782ad5e315a91e2a5b365ef706a31e39f1473c3fa3b979d9", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3128,8 +3624,8 @@ { "id": "attribute:progress-value:percent", "kind": "attribute", - "recipe": "", - "fingerprint": "c7ea7304194fe46f57452300d3bb90f5919c1b18a2d0777e13c14251dbedfa9c", + "recipe": "", + "fingerprint": "99646cebb0d1ea6663e98f3478e71d261d8adc4ada99db55abb3aba0cae8cf07", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3144,8 +3640,8 @@ { "id": "attribute:progress-value:total", "kind": "attribute", - "recipe": "", - "fingerprint": "ebb6bf997203c4602be26ebabc6f46c49cc2cbabbe6cf44cc405c6d6bb65dcd6", + "recipe": "", + "fingerprint": "1a8f1b8226a1b09884057771b87c91ff5239e74d79850029bbc0c010065809e6", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3160,8 +3656,8 @@ { "id": "attribute:refresh-status:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "c448c5aceee509469c12f0155bdb10d9f45d5634f9d440aa97d03b786adf92d2", + "recipe": "", + "fingerprint": "06c26581d14324cf5fd6b582d7b370f1c173566cf294c3ee7b03ebbee94d45fe", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3176,15 +3672,15 @@ { "id": "attribute:refresh-status:format", "kind": "attribute", - "recipe": "", - "fingerprint": "0607586cdb61f66d184752b5c4e03d9bb72a31e836873fa0d325c0f88d22bc5b", + "recipe": "", + "fingerprint": "ccba73f203f93cb3cb57c1f3f474613d39bf3ca8fe75a0cebdb31477801fd3d7", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "refresh-status:format", "element": "refresh-status", "attributes": { - "format": "percent" + "format": "last-progress-percent" } } } @@ -3192,15 +3688,15 @@ { "id": "attribute:refresh-status:id", "kind": "attribute", - "recipe": "", - "fingerprint": "52445d8caa65b16cd2f2a7da9ea027ebf7844e8d39e4617afe1bc88254381833", + "recipe": "", + "fingerprint": "7d7f53edf80ab75dbd96a1d32c0c71f2f165ec87f28d1e7278bc5fcfbf378363", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "refresh-status:id", "element": "refresh-status", "attributes": { - "id": "node-392" + "id": "node-433" } } } @@ -3208,8 +3704,8 @@ { "id": "attribute:refresh-status:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "23b27640e9a58d897963bb069c5b1f0f2050482eb5757ec60647cd5cfa680427", + "recipe": "", + "fingerprint": "750b3ef9794f03366487f2462afe74b155ff402ab6521ef160ff06185cd99a2a", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3224,8 +3720,8 @@ { "id": "attribute:refresh-status:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "13fa828a020f494270d6327c37d2a28f61acf1cd6920f0f7f52347a07ec684ff", + "recipe": "", + "fingerprint": "9970ba5d276c45026e428e170ced6f6851d3b0598bc366da1b1ca42acfc371cb", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3240,8 +3736,8 @@ { "id": "attribute:refresh-status:source", "kind": "attribute", - "recipe": "", - "fingerprint": "dd6681f826b11aec9c44ecc61bdf24b8119ee012b83c68cefbaf0fe75685a4e5", + "recipe": "", + "fingerprint": "be4124a22891e0848d83b7758c88cd244239226f8a5113f79fb76391970401f0", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3256,8 +3752,8 @@ { "id": "attribute:search:aria-label", "kind": "attribute", - "recipe": "", - "fingerprint": "4025d21e7349d334dabf220587ba80cae4ad58cf796d9de6dd67b9249f3edc76", + "recipe": "", + "fingerprint": "44f96a525803d93df66c162f11d731229348231ce707ff885f3b1c49ee3f885f", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3272,8 +3768,8 @@ { "id": "attribute:search:debounce-ms", "kind": "attribute", - "recipe": "", - "fingerprint": "0f418dd28ed5abe233c7d6e6abaab723bd94b049dc47d240cffa007553b82381", + "recipe": "", + "fingerprint": "45c2cdfa5f972966d340b681d2e587898bc05878c72a2838a8f4ff47b8de88c0", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3288,15 +3784,15 @@ { "id": "attribute:search:id", "kind": "attribute", - "recipe": "", - "fingerprint": "305a3199e17c1958fb8d9f361c0064dbe91aaf142d3274a7ac42d97e8126a056", + "recipe": "", + "fingerprint": "fe81879e9c8b965a04bfc5e415a583d38531f8e1fa92cc249f8deb15dde734bc", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "search:id", "element": "search", "attributes": { - "id": "node-462" + "id": "node-517" } } } @@ -3304,8 +3800,8 @@ { "id": "attribute:search:match-fields", "kind": "attribute", - "recipe": "", - "fingerprint": "26750a7ad3ee8a3983328dcb0de048b8777b779e05808bdaea205d1d4f3f2149", + "recipe": "", + "fingerprint": "ebb93ab336d96fae14fc405368202852c048cd758ee48b8a4a00ba1a2ec76754", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3320,8 +3816,8 @@ { "id": "attribute:search:placeholder", "kind": "attribute", - "recipe": "", - "fingerprint": "07bb4245525fd1670b0f6ef04e7838f370e2b1580b8eff9fac8f98479f18189c", + "recipe": "", + "fingerprint": "6b25cae209aeeeff099a5d57120b9af0fb039dea37dd0e27716048e34cafc680", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3336,8 +3832,8 @@ { "id": "attribute:section-header:class", "kind": "attribute", - "recipe": "", - "fingerprint": "181c882e8756a809ca594c241e540aa14f9ddc24ab0c78869230805d3822b92f", + "recipe": "", + "fingerprint": "80c400a495a0175d60aa0cc9a1e2e3e46a4a32a44952b601f2d8e210793f1242", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3349,11 +3845,27 @@ } } }, + { + "id": "attribute:section-header:collection-from", + "kind": "attribute", + "recipe": "", + "fingerprint": "cadd8fea4e9d24971a03be9777e328c542a539ef4372c94f4e64287daa8355fc", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "section-header:collection-from", + "element": "section-header", + "attributes": { + "collectionFrom": "collection" + } + } + } + }, { "id": "attribute:section-header:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "7512dce07f36607647bd231ccc1a33399f5b89edfc40a2305c278df32fcf8224", + "recipe": "", + "fingerprint": "0011973dbcabcd907d93383d0f6cb51301c3a5a05ef5efa7e1de5c9bd94f4854", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3368,15 +3880,15 @@ { "id": "attribute:section-header:format", "kind": "attribute", - "recipe": "", - "fingerprint": "ba79cce2544771e6c215ec6dbf75598f60f4d0649712fc8e05acc46039d2ac5c", + "recipe": "", + "fingerprint": "60567e727f6fa22f19c6035348360f113e5fe9acbb0c9bf3bf978aaa4202a56b", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "section-header:format", "element": "section-header", "attributes": { - "format": "ratio-to-percent" + "format": "last-failed-percent" } } } @@ -3384,15 +3896,15 @@ { "id": "attribute:section-header:id", "kind": "attribute", - "recipe": "", - "fingerprint": "f2bf18e4d04b90b065efbaba17be9eed7be48ff3ee3dd458ca1efd62c03d8055", + "recipe": "", + "fingerprint": "2666da9760005ed26d4198e189b8231ff02c0d17769142579d0886c0ecdf7240", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "section-header:id", "element": "section-header", "attributes": { - "id": "node-307" + "id": "node-347" } } } @@ -3400,8 +3912,8 @@ { "id": "attribute:section-header:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "0c0986da3113edd2b92a182927e23585fc0e9485066274d00b8a7891a9b691a2", + "recipe": "", + "fingerprint": "89bb8cc73768b36c2ddc370390db836c035a621837448ff05634661d31ebe9a9", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3416,8 +3928,8 @@ { "id": "attribute:section-header:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "d030823e91ca0944859b58b184ada9282fd0c3c72599252a13f4780c07eeb613", + "recipe": "", + "fingerprint": "1f6b435b67a8a8e190db931b46210e1bc00a8a7023ed7a7deb14c6cba63100cc", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3432,8 +3944,8 @@ { "id": "attribute:section-header:source", "kind": "attribute", - "recipe": "", - "fingerprint": "7cccdce03f297937b89ff11e6e812c7863c3b75e8f6f09b3f9d31d8745819d26", + "recipe": "", + "fingerprint": "9e3e02cbf0a8a9e74db77e0238cb076394866bf197375ca159ce18d74b5984d6", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3448,8 +3960,8 @@ { "id": "attribute:section-header:title", "kind": "attribute", - "recipe": "", - "fingerprint": "9454d7b6608786e48767f2b4dbc4430d1acfcce0af81a2a666447a9530896ee8", + "recipe": "", + "fingerprint": "563ecb1dd15650cd1a2006ccd494e17ee38ac94caad96cd48dc7e64603e822ba", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3464,15 +3976,15 @@ { "id": "attribute:sort-toggle:id", "kind": "attribute", - "recipe": "", - "fingerprint": "96c1c989916db140a5168288c981dda2e490591609535106965109c8ea5a1805", + "recipe": "", + "fingerprint": "22f2f9c486d9e6e86fe09d05972fbbfdd81f667ae69bae52c9dd9b1777ebea43", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "sort-toggle:id", "element": "sort-toggle", "attributes": { - "id": "node-468" + "id": "node-523" } } } @@ -3480,8 +3992,8 @@ { "id": "attribute:sort-toggle:initial", "kind": "attribute", - "recipe": "", - "fingerprint": "329e393c184f1c3c97fcda82306f7a42100975982a827a5220819234ad91152c", + "recipe": "", + "fingerprint": "eac531477b3ac436ebce4ccb1f39aee820a5c4eea6dc42897fb49c8f4d3a26a3", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3496,8 +4008,8 @@ { "id": "attribute:sort-toggle:key", "kind": "attribute", - "recipe": "", - "fingerprint": "f243e816dcac60d1a137fce6897e2cdbfa8a831a3c9769638f0b3432899aa29b", + "recipe": "", + "fingerprint": "3b574eadd4a207d8241e434e07b1be6fb700d2460128b733688fdd15df3d6d83", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3512,8 +4024,8 @@ { "id": "attribute:sort-toggle:label", "kind": "attribute", - "recipe": "", - "fingerprint": "ffca46e2bdcddd483f935f26ca405e851a3a862da15e5b340205b8324f63003f", + "recipe": "", + "fingerprint": "4d3222fbe3636e7a48ce9db2cff1d2c78293d36b1438ed362d89c12da1ae7b9e", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3528,8 +4040,8 @@ { "id": "attribute:sort-toggle:requires-source", "kind": "attribute", - "recipe": "", - "fingerprint": "a53080fa03f00c4a81073caff0c401f02fb36c7471cd7a7cde3bb0b33fdc273a", + "recipe": "", + "fingerprint": "5ce68da81f2ad475eaf073ac511b20d3e8c942d3b30bbf9bb785bc52a036a697", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3544,8 +4056,8 @@ { "id": "attribute:sort-toggle:requires-value", "kind": "attribute", - "recipe": "", - "fingerprint": "624f0d5a3ab3be5c47af457b638d0ff69f5dde05d9801725c7c31d1d875cd358", + "recipe": "", + "fingerprint": "2be133a29efda8c72920c394ade406499883130ce042ac60d1c4333e075e49a0", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3560,8 +4072,8 @@ { "id": "attribute:sort-toggle:unavailable-text", "kind": "attribute", - "recipe": "", - "fingerprint": "649fbfe470eaad1e400f6c1591230748202fb030bc44b5d83f725913706e2ec6", + "recipe": "", + "fingerprint": "92ce59d0571139641aef9b24667e1c3c7cb379e32984a08e2aae756be44430e2", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3576,8 +4088,8 @@ { "id": "attribute:stack:direction", "kind": "attribute", - "recipe": "", - "fingerprint": "54ad0294e30183b76e94647cef27a21feef26552e956ffde481274323852fd9a", + "recipe": "", + "fingerprint": "4f62b7e376a6d5c61ac4b22a28ada0844bed21e16c38aabe914d71392c03877a", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3592,8 +4104,8 @@ { "id": "attribute:stack:gap", "kind": "attribute", - "recipe": "", - "fingerprint": "113c92aa57d86d214bf1dfc65ddd8ca409dc376f9ea156686c6c47f875c0408b", + "recipe": "", + "fingerprint": "2f25e00990f0aef8d1a4a96ffcfbd1690a4a79dab3777c0e368df64708a8ddf6", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3608,15 +4120,15 @@ { "id": "attribute:stack:id", "kind": "attribute", - "recipe": "", - "fingerprint": "527f3c66f7a636e9918e195d409c84587bafd5fe04d8667e70c9cc570be79ad0", + "recipe": "", + "fingerprint": "a76b4418d970032dc4d08587127ce8c286151326aa6cc014d9e5aa1f4b85abda", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "stack:id", "element": "stack", "attributes": { - "id": "node-98" + "id": "node-107" } } } @@ -3624,8 +4136,8 @@ { "id": "attribute:streaming-diff-heading:back-href", "kind": "attribute", - "recipe": "", - "fingerprint": "e7ac1802774941a8803351a987a98ebf7bb9eb24c6408da0c398b54f1815cc4d", + "recipe": "", + "fingerprint": "8deb5c790e3f9c397d0164f0815ebe88388ae0da9df8f9aaf4d80dc45fa42274", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3640,15 +4152,15 @@ { "id": "attribute:streaming-diff-heading:id", "kind": "attribute", - "recipe": "", - "fingerprint": "fc9906a6d00f3b501f31db9e13a3f072a62ac65298a00e4b9d9eaaa1afd0c3c9", + "recipe": "", + "fingerprint": "21baa91bcf4c3dcb02931d5cf44a3ec531a31d83850f5e4b50af5c27e0035298", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "streaming-diff-heading:id", "element": "streaming-diff-heading", "attributes": { - "id": "node-319" + "id": "node-360" } } } @@ -3656,8 +4168,8 @@ { "id": "attribute:streaming-diff-heading:session", "kind": "attribute", - "recipe": "", - "fingerprint": "e95eb5076cc2b2c0335bd9b69aaeb83deeefdd91ab62ff0add1cba7a6362a26b", + "recipe": "", + "fingerprint": "1efa21ac7f5448bc1d6f790be308fb711caa502164d9c7adef9d7cac805e7e4b", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3672,15 +4184,15 @@ { "id": "attribute:switch:id", "kind": "attribute", - "recipe": "", - "fingerprint": "f064acabf158338d39255bfe092828af3118552ed9d1a155c5102350e2be7982", + "recipe": "", + "fingerprint": "9bea8ffd70c98ff84b471ff8466cd68571be26b248351c11022f10d0e817c784", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "switch:id", "element": "switch", "attributes": { - "id": "node-148" + "id": "node-161" } } } @@ -3688,8 +4200,8 @@ { "id": "attribute:switch:mode-from", "kind": "attribute", - "recipe": "", - "fingerprint": "4f26a43ce7e70484482edf9c0c460bc335159b4d22ce68ff18a13e30db55646d", + "recipe": "", + "fingerprint": "48581817554b56e3006773261df1aec33edb2f02cde7f61ed825a84754d66e62", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3704,8 +4216,8 @@ { "id": "attribute:switch:source", "kind": "attribute", - "recipe": "", - "fingerprint": "f99ce2b03764df987b8a6d37654c45f6ffdf393fea6ae158219d1566eb845223", + "recipe": "", + "fingerprint": "755fa5a5b8383eeed02308a40e795136a3c41e62b1eec906b449aecb0a646468", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3720,8 +4232,8 @@ { "id": "attribute:text:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "7bd27f6569099ca81e1deb0a9f81ff535e6f4aee791ccc200fd8a10951581160", + "recipe": "", + "fingerprint": "74045e715cc9a9587c609230a4f9b03268a16dcd9cd4141f92fd3fc21604842a", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3736,15 +4248,15 @@ { "id": "attribute:text:format", "kind": "attribute", - "recipe": "", - "fingerprint": "6553202305d9a6a0b8854da3a55274aba86c864c63d6e275374058d1f42671b5", + "recipe": "", + "fingerprint": "682025891d941e78591c861df7f9208a0d048fdf6eb8103c36a6dcda8217c04c", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "text:format", "element": "text", "attributes": { - "format": "delta" + "format": "percent" } } } @@ -3752,8 +4264,8 @@ { "id": "attribute:text:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "591ccf5a365239ed854fb5214e878c03ca9a4d24178be0faaf14950f48dd8ec1", + "recipe": "", + "fingerprint": "188b46a9fdc70f12777ad7967d3a69fb4a734726c0fdd50f757c3e57a4377d61", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3768,8 +4280,8 @@ { "id": "attribute:text:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "0d58305b06ae48bb22433f16bf5a36d105abb9e04329fa18a2dc052e67acba89", + "recipe": "", + "fingerprint": "00ab7ee410e80de3a36d8a5c990651d0b389956c15cc5688df5d147ab81efdd0", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3784,8 +4296,8 @@ { "id": "attribute:text:source", "kind": "attribute", - "recipe": "", - "fingerprint": "9c4ea73590233beac15535253013857ec0afab143f7f7715386248021278fe14", + "recipe": "", + "fingerprint": "3df67ebe3319f3281e452f13d1e55e9c9ddb31b46a62c7231d23c4c1c03662c0", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3800,8 +4312,8 @@ { "id": "attribute:text:text", "kind": "attribute", - "recipe": "", - "fingerprint": "9638ebb47c5d17a3f45d968e5e1c3b6a7b42749cfcb04a39a4c3f1971f4ea015", + "recipe": "", + "fingerprint": "a5e1a9b0ad49de9e95a32925fac3d7f65788b2e9864812078ed3943ee9c90fb0", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3816,15 +4328,15 @@ { "id": "attribute:verdict-header:id", "kind": "attribute", - "recipe": "", - "fingerprint": "1b0b97675da4e87c815fae6dfd35f906d6b0321c018a1668bee2e894974c49d5", + "recipe": "", + "fingerprint": "0451538b851640624deede3e7e01a7098cc636d37440e50bfa43c97c3a78875f", "expectedTarget": { "coverageTarget": { "kind": "attribute", "id": "verdict-header:id", "element": "verdict-header", "attributes": { - "id": "node-333" + "id": "node-374" } } } @@ -3832,8 +4344,8 @@ { "id": "attribute:waffle-metric:fallback", "kind": "attribute", - "recipe": "", - "fingerprint": "2a42179d70544565ca2e8cce33e3925b67e06bfa011c45c61d7b7ca7db6eeb7d", + "recipe": "", + "fingerprint": "043a86d81bd2cca24faeaa6a6f5e5223b3ecadcf9c97fb652b653a80796c7ed4", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3848,8 +4360,8 @@ { "id": "attribute:waffle-metric:format", "kind": "attribute", - "recipe": "", - "fingerprint": "318ccd8f7c2db7ed1cf0d434777e82eb1bbd0a20ac03c37cc66da0af4c4ff197", + "recipe": "", + "fingerprint": "442c11af127b5b9552ff6fff21f3a97ca7dc595ad17668068f1cbc600af1adfa", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3864,8 +4376,8 @@ { "id": "attribute:waffle-metric:optional", "kind": "attribute", - "recipe": "", - "fingerprint": "3b3158c6087739c8c9fe11580775f9c9ba680491a463506ab02c73080f15fee6", + "recipe": "", + "fingerprint": "bbb77322f3a5c6dbc83b7ecfcdd651e5b0f786e0e13a4f2ce0b34f87f3e82dbf", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3880,8 +4392,8 @@ { "id": "attribute:waffle-metric:slot", "kind": "attribute", - "recipe": "", - "fingerprint": "358574bffecf34d1bfaab5e7027858ef25bc9dc2a9c9988349977618756d4272", + "recipe": "", + "fingerprint": "2e84264440fc36b695fa0d96a6472ff11cda6fc0fbe5047112f382d6182957b9", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3896,8 +4408,8 @@ { "id": "attribute:waffle-metric:source", "kind": "attribute", - "recipe": "", - "fingerprint": "ca0893744e8053f682f89ec5e68e53fbdb014c8a2927489159ed7379b36844dc", + "recipe": "", + "fingerprint": "24f0f423cef7d0dbc091869fbf69dbdc996d4745d36e6e9df807d619bb1b1e21", "expectedTarget": { "coverageTarget": { "kind": "attribute", @@ -3912,8 +4424,8 @@ { "id": "contract:burnlist-differential-testing-data@1", "kind": "contract", - "recipe": "", - "fingerprint": "f7aad512a1aeb43bafeb296eb5b17682391a02ca057cf8f39daf63800b1a87a2", + "recipe": "", + "fingerprint": "8a01a670e02e9a9dac82e427910ae54127eb1dc1d1aa15719c92854bc48ed4e5", "expectedTarget": { "coverageTarget": { "kind": "contract", @@ -3930,8 +4442,8 @@ { "id": "contract:burnlist-model-lab-data@1", "kind": "contract", - "recipe": "", - "fingerprint": "bdc32b546d50514588b7520be1b72980add3d0b6487596e2bb279caa74058c19", + "recipe": "", + "fingerprint": "eb350b005b4ce73d76e6eb0163845da0ef655dd5756949e5f144422bd12eda5b", "expectedTarget": { "coverageTarget": { "kind": "contract", @@ -3948,8 +4460,8 @@ { "id": "contract:burnlist-streaming-diff-data@2", "kind": "contract", - "recipe": "", - "fingerprint": "41a9d4cbd8236d83ab12d9673a57961b9ad695dd85be72f07c639bdcf4ea81f4", + "recipe": "", + "fingerprint": "46727df7275f5c7385bf0e6d183d89b8dc1b7cececed9f7cba0383fba07df690", "expectedTarget": { "coverageTarget": { "kind": "contract", @@ -3966,8 +4478,8 @@ { "id": "contract:burnlist-visual-parity-data@1", "kind": "contract", - "recipe": "", - "fingerprint": "9b628df1a45059a33ea1eed51c362fffa087ec05af5a4328d90028009b49e082", + "recipe": "", + "fingerprint": "39169685c9f181b18559c194e17a49869924ee54e716033dd149dcbfb6987249", "expectedTarget": { "coverageTarget": { "kind": "contract", @@ -3984,8 +4496,8 @@ { "id": "contract:checklist-progress@1", "kind": "contract", - "recipe": "", - "fingerprint": "567ac6b7fecc045f0d1d1b2cdf13be3628a256f189fc2fa4b919ce02cd6b48fe", + "recipe": "", + "fingerprint": "1f3b0bdc80aaf8fa3242689ffc602d50c831966b2ea427555c8ef5b8a508ad2f", "expectedTarget": { "coverageTarget": { "kind": "contract", @@ -4002,8 +4514,8 @@ { "id": "control-transition:domain-tabs", "kind": "control-transition", - "recipe": "", - "fingerprint": "6437eca3dd1aae4ddfebef9024e8226ffbc1b82b37a886914f799102802a330f", + "recipe": "", + "fingerprint": "8f0e47113c8eed0c657c5155ce76b7f4e0d3ad6f51c5de79d6dafd041c1c9991", "expectedTarget": { "coverageTarget": { "kind": "control-transition", @@ -4017,8 +4529,8 @@ { "id": "control-transition:filter-toggle", "kind": "control-transition", - "recipe": "", - "fingerprint": "b2c2356dcd0b4116ed08132a8abe610e3c21b1c908416e4029fab50598b949cd", + "recipe": "", + "fingerprint": "d147da8b625ef23280e576d0ad6e33748a7a1fd7df72cdf9e35a61652cc4c274", "expectedTarget": { "coverageTarget": { "kind": "control-transition", @@ -4032,8 +4544,8 @@ { "id": "control-transition:mode-toggle:option", "kind": "control-transition", - "recipe": "", - "fingerprint": "89718d74f249c520d86ac9e05f8ff2f9a2644a332a8399c4354d0e09d1043ab1", + "recipe": "", + "fingerprint": "cebc8e55163c9895a60b4e42267144249c4d0324248f0c2eb45ced387cf1bf99", "expectedTarget": { "coverageTarget": { "kind": "control-transition", @@ -4047,8 +4559,8 @@ { "id": "control-transition:pagination", "kind": "control-transition", - "recipe": "", - "fingerprint": "f2d5c6de7efb8457a2740987a93ad844866ff3c14752ec0ed27f6016062f0c4f", + "recipe": "", + "fingerprint": "57f5fb0aee602ebc0416daee85df92c5f87fcd9e52a08532d54a2b822b7d1e1f", "expectedTarget": { "coverageTarget": { "kind": "control-transition", @@ -4062,8 +4574,8 @@ { "id": "control-transition:search", "kind": "control-transition", - "recipe": "", - "fingerprint": "8f24470c97455d2917ca37dbb1c0dd1ae34a33b6c224261f0ba401b7d974cc14", + "recipe": "", + "fingerprint": "e0d5489ec534d0c0f33b5772e28429d6754e125ca79aec91038b10dec2e5b8fe", "expectedTarget": { "coverageTarget": { "kind": "control-transition", @@ -4077,8 +4589,8 @@ { "id": "control-transition:sort-toggle", "kind": "control-transition", - "recipe": "", - "fingerprint": "751f4f9ec1be20905e6eeceeba3058aaf5c361a3c2bdd7e87ab95ed56586ae2d", + "recipe": "", + "fingerprint": "a0a8d8f07b83d11a57ae08baeb5952eb2fa4300b39a9edeb62cee4c502e7f2da", "expectedTarget": { "coverageTarget": { "kind": "control-transition", @@ -4089,11 +4601,41 @@ } } }, + { + "id": "edge:alert>alert-description", + "kind": "edge", + "recipe": "", + "fingerprint": "e7283077c33ece5be90cc98a5fd9d6706f7e18e30a34528414a44fc93ab1d6af", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "alert>alert-description", + "element": "alert", + "attributes": {}, + "child": "alert-description" + } + } + }, + { + "id": "edge:alert>alert-title", + "kind": "edge", + "recipe": "", + "fingerprint": "80edbd55f7c9160af090d16ec434ee04c775e2bc154483b02b3265c8412fbcda", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "alert>alert-title", + "element": "alert", + "attributes": {}, + "child": "alert-title" + } + } + }, { "id": "edge:ascii-block>bind", "kind": "edge", - "recipe": "", - "fingerprint": "a15af911846f884513bda46d86b5c262fd8a788cc13ec55756d8d7b31f9bf4c3", + "recipe": "", + "fingerprint": "2d01c7838b74e3c6b8ef9f2cddea086e989746a9c231656785167aaa6720397f", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4104,11 +4646,41 @@ } } }, + { + "id": "edge:box>agent-monitor-activity-chart", + "kind": "edge", + "recipe": "", + "fingerprint": "e9cde69e6597db03d829203bd91e2c3374978f5e42016235f7fffcfbca52da6f", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "box>agent-monitor-activity-chart", + "element": "box", + "attributes": {}, + "child": "agent-monitor-activity-chart" + } + } + }, + { + "id": "edge:box>alert", + "kind": "edge", + "recipe": "", + "fingerprint": "7f2bd41981d6cb3e3881c1203047889e01ec0a8233ed655ba979c234b36bfff9", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "box>alert", + "element": "box", + "attributes": {}, + "child": "alert" + } + } + }, { "id": "edge:box>ascii-block", "kind": "edge", - "recipe": "", - "fingerprint": "467d9555ec1d60d3a0e484b29e563d2d27dea2ce0fc501a90dc9fa29e5aa7d80", + "recipe": "", + "fingerprint": "67df1e2f11c0aa7ae77c47580029b66d8c4cc78f48ac39a524cfd3ba82b259ac", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4122,8 +4694,8 @@ { "id": "edge:box>box", "kind": "edge", - "recipe": "", - "fingerprint": "0b0c5f7b3748dfd6ff136068e6941f8b591ca8d6df090f48433762fe3a0ffe19", + "recipe": "", + "fingerprint": "f14f1d9918fe949cd499a36918e3047035a16faad818f3927cc2a61c3b22eb46", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4137,8 +4709,8 @@ { "id": "edge:box>checklist-burn-panel", "kind": "edge", - "recipe": "", - "fingerprint": "e3059f57e9119156eae21aead3c02a2185ac1ba0e627b6a318610a1340299c44", + "recipe": "", + "fingerprint": "cd7c47dfafd7d939edb49390205e0dc0e4137250357d3558c11a88668f1bd244", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4152,8 +4724,8 @@ { "id": "edge:box>checklist-event-cards", "kind": "edge", - "recipe": "", - "fingerprint": "51759ed362104107a3b034849aa8614267260fed1cad0227e5138e3392005ee3", + "recipe": "", + "fingerprint": "92fb80a3fad689576a8e0b77fc06defedc081800f18332cfb7534d6fc3639d6d", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4167,8 +4739,8 @@ { "id": "edge:box>checklist-ledger", "kind": "edge", - "recipe": "", - "fingerprint": "f90fd23a50ccf973b242cfdd65dfaed49f301fe416f0bdc7b68b3c12427676b3", + "recipe": "", + "fingerprint": "a1ab023306faa864ce068a74d5fc0b764ab64449deaa11fccab2527ad7abe218", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4179,11 +4751,26 @@ } } }, + { + "id": "edge:box>checklist-tabs", + "kind": "edge", + "recipe": "", + "fingerprint": "e0b61d9db14578d80a65416bd75475db48df7719bb6ed064e3e1852a1a1d0d49", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "box>checklist-tabs", + "element": "box", + "attributes": {}, + "child": "checklist-tabs" + } + } + }, { "id": "edge:box>checklist-workspace", "kind": "edge", - "recipe": "", - "fingerprint": "cf44004902c7ddd9cc94f220b997a74a7d8de4636dbe15dd3896f3ef1b7d9d86", + "recipe": "", + "fingerprint": "f6b0ba002c10637908f600aa15522ecd552c32785205101721b277b67831e7fe", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4197,8 +4784,8 @@ { "id": "edge:box>collection", "kind": "edge", - "recipe": "", - "fingerprint": "dd18c55f5a118a7502753b712deedbdad30b8ebc994bce7b2bdcc0e0b6f7d585", + "recipe": "", + "fingerprint": "532d7c62701590afbe8088a535db887f3c7140e9549e04bfcf76c7870e35900c", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4212,8 +4799,8 @@ { "id": "edge:box>diff-card", "kind": "edge", - "recipe": "", - "fingerprint": "52ea7e147cc2f3c06c596df5bf8054e2223cb6aa9146651a8eb3795ef41d3b36", + "recipe": "", + "fingerprint": "fa3317756d90059aff053ea38026e87e702f80c18ef96bb6800f4e7aeed63e6b", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4227,8 +4814,8 @@ { "id": "edge:box>domain-note", "kind": "edge", - "recipe": "", - "fingerprint": "99b886fd0f58f21c386abc8d041a2a176b8c1617fc399a1ea9b26d772293bf72", + "recipe": "", + "fingerprint": "0ed6c4441831eaf99e298a5b12ef424852a4017fc1f5c52dbffe2e5e854109c3", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4242,8 +4829,8 @@ { "id": "edge:box>domain-tabs", "kind": "edge", - "recipe": "", - "fingerprint": "0a5a91179eab7acd24d4641cc1416fe2c1154b447867c029b03fcdc7961ab232", + "recipe": "", + "fingerprint": "20867e408c80e7077a32265d3ba26ec85265de961c90f6141e22c2e98d24ae0b", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4257,8 +4844,8 @@ { "id": "edge:box>feed-list", "kind": "edge", - "recipe": "", - "fingerprint": "582ad569f7812fbcdf6d0f751fe37f6f3638a437a2be6752a3963d557d8a001f", + "recipe": "", + "fingerprint": "dcd9ed2ce96ecf970968c74e3663d29f61322ec4c71285919e81ee56f19ce34a", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4272,8 +4859,8 @@ { "id": "edge:box>field-toolbar", "kind": "edge", - "recipe": "", - "fingerprint": "f08bb13cfdf837909f319fd0aeec3f801846a06a1ed79b57c5ca3d54c81960ac", + "recipe": "", + "fingerprint": "c51bae01c9ac19ca33fc3cc26749666dcf3f36aebf129e7266e443aa54408a98", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4287,8 +4874,8 @@ { "id": "edge:box>file-diff", "kind": "edge", - "recipe": "", - "fingerprint": "489fae4f78b3a895bbc1bd0f8ce2f2e66b297bf6950afbe617ec0c2b4936132c", + "recipe": "", + "fingerprint": "8da1b13ae0df4e46d5c1fcc01048e9f4891fc34117096a0178d9efbc2dacccba", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4302,8 +4889,8 @@ { "id": "edge:box>frame-card", "kind": "edge", - "recipe": "", - "fingerprint": "5884491d3e633f0b9512c626b993f33526cb88fa24ad4586a017483dd7b3bd40", + "recipe": "", + "fingerprint": "42bf58fa78bd695d79552a16efb57fdecb70294b1a2ef94f4141c7318af48435", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4317,8 +4904,8 @@ { "id": "edge:box>grid", "kind": "edge", - "recipe": "", - "fingerprint": "8541d1fafea70a18fb008643d6d550e959080e891cebaf4ad139dd6efcca2c8d", + "recipe": "", + "fingerprint": "b63b273c6f7af650a7229c01bfa32bf6530cb07babe1238beb60ebf93f49a511", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4332,8 +4919,8 @@ { "id": "edge:box>image-triptych", "kind": "edge", - "recipe": "", - "fingerprint": "901bf22055f7eb052907cfec51d2e32e1f2bcbd5c80475d75bf49e19459b45e0", + "recipe": "", + "fingerprint": "add5f680911a569730a649645c5ac8a9507b72a771eedacac6895b7b09742283", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4347,8 +4934,8 @@ { "id": "edge:box>kpi-item", "kind": "edge", - "recipe": "", - "fingerprint": "130f7056629d5ff78fe21bb6746da67c4a1060d26b180d7f5b835bed3b92c4df", + "recipe": "", + "fingerprint": "2666937954a02af1506b3096f5c1fc40e40fe9f611a5dfc385e7e34f63caf5c6", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4362,8 +4949,8 @@ { "id": "edge:box>kpi-strip", "kind": "edge", - "recipe": "", - "fingerprint": "6b6078f11b580acca154b45a76a6e4b9d4d1b64f64bb4d9ee7cd7aaa6ee2c181", + "recipe": "", + "fingerprint": "8dac72647bf0eec64386511b1c82f3987df8c33a4e7e1206308c441061c41733", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4377,8 +4964,8 @@ { "id": "edge:box>log-table", "kind": "edge", - "recipe": "", - "fingerprint": "64c9d00c9028d865e95791d41d60fa12fa7a63f562279129b3c52178d354b39c", + "recipe": "", + "fingerprint": "c2c6708ee8b31eaee884603a4c5680286455d991008f23e4b96ee70a6dc7374f", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4392,8 +4979,8 @@ { "id": "edge:box>loop-graph", "kind": "edge", - "recipe": "", - "fingerprint": "3d054af5543f33db10e59faf4177d9af119130f720c00612e58ecc3217de1940", + "recipe": "", + "fingerprint": "a0e1315c829b51c4c625f90b25a2301115a2b2e68206a1419836ecca826b3345", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4407,38 +4994,53 @@ { "id": "edge:box>loop-progress", "kind": "edge", - "recipe": "", - "fingerprint": "c0d15408ff90c7897810d69f7aa2fda1522a032fbe5003991af1603e55b81e8f", + "recipe": "", + "fingerprint": "8c1815a1877d7bcf873cec832b5f38235ddf046926d1cd5996b3247ae19c3f61", "expectedTarget": { "coverageTarget": { "kind": "edge", "id": "box>loop-progress", "element": "box", "attributes": {}, - "child": "loop-progress" + "child": "loop-progress" + } + } + }, + { + "id": "edge:box>metric-tiles", + "kind": "edge", + "recipe": "", + "fingerprint": "e49a426b08addfc9e9fabb42674067a0af22e32b9542a9ecdaa2a92104ce4873", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "box>metric-tiles", + "element": "box", + "attributes": {}, + "child": "metric-tiles" } } }, { - "id": "edge:box>metric-tiles", + "id": "edge:box>mode-toggle", "kind": "edge", - "recipe": "", - "fingerprint": "abfb7d1bf95b8e0316d805a4e85ebb081501578b892997dfda05ec755dc6b5c4", + "recipe": "", + "fingerprint": "32052fe6c35e67eb98f54e8ab5a26081a1a1ccb35f02e3c8eb969a933f8aadea", "expectedTarget": { "coverageTarget": { "kind": "edge", - "id": "box>metric-tiles", + "id": "box>mode-toggle", "element": "box", "attributes": {}, - "child": "metric-tiles" + "child": "mode-toggle" } } }, { "id": "edge:box>panel", "kind": "edge", - "recipe": "", - "fingerprint": "cc9f9026fa3b29e3b7be062c2316fbfbfc55a46709a28459d881dbf814a8004c", + "recipe": "", + "fingerprint": "17d3b8ca70f99c492f45ac6d9ada45a0a05bf4791e10ba63c977565acc08567c", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4452,8 +5054,8 @@ { "id": "edge:box>refresh-status", "kind": "edge", - "recipe": "", - "fingerprint": "48ac19d31576076239e5168fdc339b0f03e48d2e5dd02dc0997324ee57984603", + "recipe": "", + "fingerprint": "a40d6dc1ea20d2ad42854eada4c84d2696e864e62415d3473ff6ee46a5a08d5a", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4467,8 +5069,8 @@ { "id": "edge:box>section-header", "kind": "edge", - "recipe": "", - "fingerprint": "ebb05a4528857f12be6c13edbec6c4cb997230fdbe132167d56bc48db024d9fb", + "recipe": "", + "fingerprint": "ab276baa3c01f53e783b1a8a8050ec7da57d3dec515edc80f451b8213e88d6f1", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4482,8 +5084,8 @@ { "id": "edge:box>stack", "kind": "edge", - "recipe": "", - "fingerprint": "11fa567190a47bb3a8b98033537a52304b0105664695caddb23e99f55beb43b4", + "recipe": "", + "fingerprint": "8dc63bc64114852a7911023dfbd2d467d7e9185b920a17754589c597fcb28048", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4497,8 +5099,8 @@ { "id": "edge:box>switch", "kind": "edge", - "recipe": "", - "fingerprint": "c98bcb2cb533eb9eb8b7fbed5cea5af21a1691a2f2dcc5702fb548353b3ad8c9", + "recipe": "", + "fingerprint": "5576ee670d5ac1dc590a6e466e71e8040cafd200ecdb21efb8385968b21a33a8", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4512,8 +5114,8 @@ { "id": "edge:box>verdict-header", "kind": "edge", - "recipe": "", - "fingerprint": "6602a67be63acfd49b794328891129f3434ccca17f29d6e67132767a4c612955", + "recipe": "", + "fingerprint": "47d55827757571a108bc4d759770a2b505e712d5fbb917a425ecb72b8c7b55b9", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4524,11 +5126,26 @@ } } }, + { + "id": "edge:case>alert", + "kind": "edge", + "recipe": "", + "fingerprint": "4476c8751f2d02cc78b7eb349b64b46f49b319954985a217cef5232effea5f86", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "case>alert", + "element": "case", + "attributes": {}, + "child": "alert" + } + } + }, { "id": "edge:case>collection", "kind": "edge", - "recipe": "", - "fingerprint": "4cdfd1c3517313e7508a66983632413fa07e626c16a943703af61642e7e3bf58", + "recipe": "", + "fingerprint": "9639d52a06d8965a525f95971b0af7fe7ea13ccef3fd42bbbf9758087fcb191d", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4542,8 +5159,8 @@ { "id": "edge:case>differential-empty-state", "kind": "edge", - "recipe": "", - "fingerprint": "5a33758c64cc860519f90f48b72ca5e41c13da2c36e6908cf663964e1f188e6a", + "recipe": "", + "fingerprint": "052cd102b4d0e0c204fa4aeffb5cef28d2caa4619f1ccec50b8e5436133215c4", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4557,8 +5174,8 @@ { "id": "edge:case>differential-kpi-strip", "kind": "edge", - "recipe": "", - "fingerprint": "7b23e6c17822edf0962eceb384949e2eb6a1ac0c00f9121a6a4989c27c5f2737", + "recipe": "", + "fingerprint": "6ffff0a594a04832a14f2e834c21259b130800e4731c3c41d467ceec651b4acf", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4572,8 +5189,8 @@ { "id": "edge:case>differential-log-table", "kind": "edge", - "recipe": "", - "fingerprint": "d9f4fbd470a2c95df1bc6e2feea7b4d206162a86df99774b541594f9eef59e47", + "recipe": "", + "fingerprint": "6ae5f6f2a79e9eb329d316d460245b6c538b0ac528c9a1090c40795a8ab3a932", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4587,8 +5204,8 @@ { "id": "edge:case>field-toolbar", "kind": "edge", - "recipe": "", - "fingerprint": "4bb08e1fd053e8375e81b8c8d6facd9c63bda98ae6acbc1ae4a3dac0e6e11cdf", + "recipe": "", + "fingerprint": "c3aa0aa4bf33e52f8072c234f43e46000f69e3a4028b536f94a2d0759fae8b61", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4602,8 +5219,8 @@ { "id": "edge:case>frame-delta-chart", "kind": "edge", - "recipe": "", - "fingerprint": "07ac9bd9732745c2ea007b5b60dbfe9153563d5929d85dca2d93552f1eecb8fb", + "recipe": "", + "fingerprint": "bb6906683809c5fc8a67515665b803b7209a80a23083385bbc3438a106726804", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4617,8 +5234,8 @@ { "id": "edge:case>grid", "kind": "edge", - "recipe": "", - "fingerprint": "89df1aaed060ee18276e0e318ca1c984f88113333b83b9d770445a7cb58db17c", + "recipe": "", + "fingerprint": "6a1e69bb0e677e875f2fe73c5cb1b2891007769bced827769277f3cf76cffb38", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4632,8 +5249,8 @@ { "id": "edge:case>kpi-item", "kind": "edge", - "recipe": "", - "fingerprint": "41e0617ff85aa11842e131f84b82df056bde916a28d964dcf0a5f7bb99c4833a", + "recipe": "", + "fingerprint": "10b3b3e61f81204c3f3609fa1223ff5d2de936338f11a336a1e91e5d34b41824", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4647,8 +5264,8 @@ { "id": "edge:case>kpi-strip", "kind": "edge", - "recipe": "", - "fingerprint": "bff2e6d36b38217e511bb71dd1af89affa245ef28321ff3df9118dd690a4ff23", + "recipe": "", + "fingerprint": "5aedf3d074df0f765bcab0b0409825fc2285c3398567fb24b94e6ddf67d10625", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4662,8 +5279,8 @@ { "id": "edge:case>log-table", "kind": "edge", - "recipe": "", - "fingerprint": "95603f885e876fa56814b4e553593035b3be01b433a201d3c18404eec6dce8de", + "recipe": "", + "fingerprint": "328aba7151fc1a59e4678b7c6d95c2caae15db08488a826ff6bfc8d1bcdd8d91", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4677,8 +5294,8 @@ { "id": "edge:case>loop-graph", "kind": "edge", - "recipe": "", - "fingerprint": "d57736ccf01835f381f2f9a22f347242d7d8ae07b8e6371d62f3ff0d299da5b2", + "recipe": "", + "fingerprint": "2fc287ded474bba0c6e978ff0db14fdd08e9084a86c204b8e1e8de7da1524815", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4692,8 +5309,8 @@ { "id": "edge:case>loop-progress", "kind": "edge", - "recipe": "", - "fingerprint": "33cc3dbd5f7dd2b0c2e2404aeae591be5587397d797d6a6138fb44fa0800f713", + "recipe": "", + "fingerprint": "282b2837169b5cfc9a6eb40fd20076ea263339fb2823dd54ebe60a49019fa262", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4707,8 +5324,8 @@ { "id": "edge:case>mode-toggle", "kind": "edge", - "recipe": "", - "fingerprint": "3f6e9efe198cdecddf4c276faf13c390c85243a13531349e5f82b40a76e27ec0", + "recipe": "", + "fingerprint": "9b8858f17c364d408fe66749f937a3115ad58335278872109f32637f6882992f", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4722,8 +5339,8 @@ { "id": "edge:case>panel", "kind": "edge", - "recipe": "", - "fingerprint": "546507f49930992a5a9999fc5682a70ff2e9c37368841cd7be85123b5e3c70b0", + "recipe": "", + "fingerprint": "089d6cad8365bc6053db89b975b6ea7e00a3cc89690a13699557f0cc3c3c2b3a", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4737,8 +5354,8 @@ { "id": "edge:case>progress-chart", "kind": "edge", - "recipe": "", - "fingerprint": "64162cc4263ed8c75428f28bf23553a65df06e2817e8aad20db623e9f020a63a", + "recipe": "", + "fingerprint": "02c5c49d32e1574abc4d33bb5b65184b677f164a3f8a925e52336f28889c1f99", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4752,8 +5369,8 @@ { "id": "edge:case>refresh-status", "kind": "edge", - "recipe": "", - "fingerprint": "ebf45df9bbe38f5b6878a64e095d702dc41e2e86d4813cb264c5c4147d173198", + "recipe": "", + "fingerprint": "f828b028c0fa2b364c5529bf61f2be301f8d2b8ad9d770e5ba7d8d34f7a701e2", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4767,8 +5384,8 @@ { "id": "edge:case>section-header", "kind": "edge", - "recipe": "", - "fingerprint": "9a5a072a99302f8ad2240e098f16cc9c82e3b3b31e8cab70265391a745d116bc", + "recipe": "", + "fingerprint": "7436fe8f31438b1bccbf73f2b1a0449bac9186b90637ba954744d0e0c39e7c55", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4782,8 +5399,8 @@ { "id": "edge:case>stack", "kind": "edge", - "recipe": "", - "fingerprint": "b986cfe5b00ac972ef0dd6be181d653673cfebce9986216b0d0e1f2ed5721177", + "recipe": "", + "fingerprint": "496656a31ffe74f3e45a0a4c4dccf929aec4eb5e68b8973997f1d641badbd982", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4797,8 +5414,8 @@ { "id": "edge:case>switch", "kind": "edge", - "recipe": "", - "fingerprint": "55f388fd1fd2977b148a6073aaa2edfc2021b7608b82d62a97db39449fb133f4", + "recipe": "", + "fingerprint": "e74c447dd1c18fa5297b9d2dac526d22e76fdaf96400b89d223e7d87ff01a8db", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4812,8 +5429,8 @@ { "id": "edge:collection>each", "kind": "edge", - "recipe": "", - "fingerprint": "e361e1c6f96a956f0c457aad8564468fc668277bee6cc7541bc28e2f6b58faf9", + "recipe": "", + "fingerprint": "ff13ddf72a7708eb7fb1072ace284a416c46988d480b4dbc10aee2127192bb4f", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4827,8 +5444,8 @@ { "id": "edge:collection>field-list", "kind": "edge", - "recipe": "", - "fingerprint": "61be351ae5bd092c2604e53bd991598803c552110f745d522b4a16f159e057f1", + "recipe": "", + "fingerprint": "3b6e9107a964277cf7c742572a5373e30603084e61d80b5f2ea59aff84e22d5c", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4842,8 +5459,8 @@ { "id": "edge:collection>pagination", "kind": "edge", - "recipe": "", - "fingerprint": "1042e298ab1a9fd6726a2312f4902f47e0c3fdd1d643588b9c2bb84308187e95", + "recipe": "", + "fingerprint": "db7db6353750fef5693422b343fb51067a9e277cc7ca6a207f701d75e71c2841", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4857,8 +5474,8 @@ { "id": "edge:diff-card>bind", "kind": "edge", - "recipe": "", - "fingerprint": "59e5433d6d5b0138587df472b1956abdb31a792588ab625c65631eec95d550e4", + "recipe": "", + "fingerprint": "fd1f38da5a5c4fa616f143036f1f3d84a0c3085a87cb735d853f280a3209551a", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4872,8 +5489,8 @@ { "id": "edge:diff-card>icon", "kind": "edge", - "recipe": "", - "fingerprint": "69074fe181853706c192426689842e171fcd8f887945f02426698ea304e1b120", + "recipe": "", + "fingerprint": "0b11ed2b5ffb4b630d4f3eff5f05a233bcda7e51340b2f966f0e4eada5aa9ac3", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4887,8 +5504,8 @@ { "id": "edge:diff-card>text", "kind": "edge", - "recipe": "", - "fingerprint": "2123610080c28de2e8896775e43edbd3c4708db2df7b689bfd178319f2763edb", + "recipe": "", + "fingerprint": "6c07560d228a4b44d95387592931d9b19820971dab368de1d4927dbf3ad728e2", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4902,8 +5519,8 @@ { "id": "edge:domain-note>bind", "kind": "edge", - "recipe": "", - "fingerprint": "d7c6917e605327ee8a7858de5a4838d8548073a2b25fa71b78c9f2f6e5a3ab01", + "recipe": "", + "fingerprint": "11d1982453649ce3f7caa6dbd852490c633e623c2b9a54364d61be6b65ca219b", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4914,11 +5531,41 @@ } } }, + { + "id": "edge:each>agent-monitor-event-card", + "kind": "edge", + "recipe": "", + "fingerprint": "5b1fc6e5e265ffce77458752adf8e2984c0caf74e2d5e27ac11e27537d08fe3c", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "each>agent-monitor-event-card", + "element": "each", + "attributes": {}, + "child": "agent-monitor-event-card" + } + } + }, + { + "id": "edge:each>alert", + "kind": "edge", + "recipe": "", + "fingerprint": "b84b721998a6d212d3b624bcf32cb984dbd6946c78f1d5cbdde2de68762ee477", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "each>alert", + "element": "each", + "attributes": {}, + "child": "alert" + } + } + }, { "id": "edge:each>ascii-block", "kind": "edge", - "recipe": "", - "fingerprint": "539a531e496018573a54fcfde9b35d3c1e6af624b0745868e7930c481eefb494", + "recipe": "", + "fingerprint": "6d83c941acebd840298c699411fafc0c44f301d868f4a6bb2426046c5a997a60", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4932,8 +5579,8 @@ { "id": "edge:each>grid", "kind": "edge", - "recipe": "", - "fingerprint": "5bd95d3897bf8cd878b7c36e29528ecb42bc643b1de1e96f731b562ddcbcf731", + "recipe": "", + "fingerprint": "a58d5f34623e3e94780133b18cfdee81182c88f20454f7a4b6ed121151102304", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4947,8 +5594,8 @@ { "id": "edge:each>image-triptych", "kind": "edge", - "recipe": "", - "fingerprint": "77d81e920831bbda1ea00ff1d866c7314814544b94848ffc5a03c5be88d9980c", + "recipe": "", + "fingerprint": "072d8eaf7b12e976c6fd58388d62ddd12333490624190d0c01cb2e8489f69afa", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4962,8 +5609,8 @@ { "id": "edge:each>kpi-item", "kind": "edge", - "recipe": "", - "fingerprint": "705de481d8bc6e2e24e423d2455891f4bd96ec18e1418b18add1994373cc31d5", + "recipe": "", + "fingerprint": "b46695b37295e89d942e9090737d5df9b58a3531cd5359e573e8e34b9b1a867e", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4977,8 +5624,8 @@ { "id": "edge:each>log-table", "kind": "edge", - "recipe": "", - "fingerprint": "b6aa24a8f67cf8ea037ae6387235a5b499c7525a9bd98ba4545ef6b7a6270329", + "recipe": "", + "fingerprint": "7a3eea5133afca7cb87ef41959d93364d61dafa5914fda71c832982931a1cc8d", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -4992,8 +5639,8 @@ { "id": "edge:each>loop-graph", "kind": "edge", - "recipe": "", - "fingerprint": "14c08d5b47235a668e056d1675d05a5b72ef23ac4e30c318871dfd6f4e57f393", + "recipe": "", + "fingerprint": "1747696f9e5c3098ed4a4f29c894f142f90e719034737561170d7f22ab178ae2", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5007,8 +5654,8 @@ { "id": "edge:each>loop-progress", "kind": "edge", - "recipe": "", - "fingerprint": "1d4af630b81f11c50f18bb492a8a8e6d45c69905a09016168875455247b93ee6", + "recipe": "", + "fingerprint": "b670902f346fd1b55d213f8509576a7c171ff0d72a9ce564c803a9c0eb8e8e0b", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5022,8 +5669,8 @@ { "id": "edge:each>panel", "kind": "edge", - "recipe": "", - "fingerprint": "9d00ccf21225e40d8e792ed68f48c082d4377029d1635788c35ab6b2ded1e87c", + "recipe": "", + "fingerprint": "4d25370a1e696d0138cbe217086021832fe52abe5c986457a077b0b6a0bd556e", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5037,8 +5684,8 @@ { "id": "edge:each>section-header", "kind": "edge", - "recipe": "", - "fingerprint": "cb05f95cf932894f8b970b8aa995ef0529febb3006d6fb56bd47234d7de8acfa", + "recipe": "", + "fingerprint": "360f9ccc56a7e5929adb652f1aa32c4c9e953bbca8c56f002c0447c8c7f967c5", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5052,8 +5699,8 @@ { "id": "edge:each>stack", "kind": "edge", - "recipe": "", - "fingerprint": "fc3819e6d14ebc6785295f86102452e72157abf5de8471ea1a0186e87bc4597f", + "recipe": "", + "fingerprint": "be0e37fcce9432a471b5077b66673e1571f341748bc4196f859568f1b1c891a4", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5067,8 +5714,8 @@ { "id": "edge:each>switch", "kind": "edge", - "recipe": "", - "fingerprint": "90743324a6f27987bb84fa156542b0e443461ca83875fa73688c2917ae7613b5", + "recipe": "", + "fingerprint": "6573596e44e55781afa785eb63a99e82f7ae49af6ad4b4c11b591292571aab1f", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5082,8 +5729,8 @@ { "id": "edge:feed-list>bind", "kind": "edge", - "recipe": "", - "fingerprint": "7322c936725c8cd56d04ccd32588bca6c6256afe8e15513d31a06f200c35cf93", + "recipe": "", + "fingerprint": "1e3d36b0525dc25cd0ba294674092e7e5ecb155334655b6cc042974ecb5cf1cd", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5097,8 +5744,8 @@ { "id": "edge:field-list>bind", "kind": "edge", - "recipe": "", - "fingerprint": "a013e4df982d1ccce354e012d262c2b3ec2739a5ea15064fc406b08ff12e0b1f", + "recipe": "", + "fingerprint": "e83ec749d8e375c60affd625bb64b141ef72b92a1eac7bcf3593749c9f48239e", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5112,8 +5759,8 @@ { "id": "edge:field-toolbar>filter-toggle", "kind": "edge", - "recipe": "", - "fingerprint": "81cb8ad2f58a2d22928c473fa2ed204bc56e6aeee224db009f28206b895a27c6", + "recipe": "", + "fingerprint": "7aa5aae68e3e195ce0bf90cb266fd20a47545eeba4b32878f07d824e4ffc2b9a", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5127,8 +5774,8 @@ { "id": "edge:field-toolbar>mode-toggle", "kind": "edge", - "recipe": "", - "fingerprint": "63e1b31b0741e10f89b70b21a829df9311f374248106cffaefa3ccb5fe596719", + "recipe": "", + "fingerprint": "6958c13990bf9a721635f5ac7a558e67adbc44accfa21858e54e64afa1d7b6d9", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5142,8 +5789,8 @@ { "id": "edge:field-toolbar>search", "kind": "edge", - "recipe": "", - "fingerprint": "be231d18f9327ebdd2400c5ec820f16695243e7ed2852c05c9dc2828acfa82b5", + "recipe": "", + "fingerprint": "dee4ed32d56ebade2c4b1d61d66895993eaee6f48ffd13f904aeedf81ee6a9ad", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5157,8 +5804,8 @@ { "id": "edge:field-toolbar>sort-toggle", "kind": "edge", - "recipe": "", - "fingerprint": "3127cf260eae3fce9162dd3483fe23621753e4a59b53dffd3e9fc0269ef6faf7", + "recipe": "", + "fingerprint": "62d865febbda5f211261e56c2ad415ce06ebc789ce9889005ed51bf03c21dee3", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5172,8 +5819,8 @@ { "id": "edge:file-diff>bind", "kind": "edge", - "recipe": "", - "fingerprint": "17dd248a443c35af058a2bd85565b4cf0950cc5f92b484f9fcc3af5db522d41e", + "recipe": "", + "fingerprint": "33dca25800c50d0daace6984ff70e000b5a6970f2726ba18f90d988a3b23cff2", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5187,8 +5834,8 @@ { "id": "edge:file-diff>icon", "kind": "edge", - "recipe": "", - "fingerprint": "1a311e9f229aa21f1ddf6023fe4e61313605b33138f1b3ada1503423782737c7", + "recipe": "", + "fingerprint": "48944dcb95ef4c05f069bc693474e804e835ab0c0cd971aa0a59d825ffd966be", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5202,8 +5849,8 @@ { "id": "edge:file-diff>text", "kind": "edge", - "recipe": "", - "fingerprint": "00c6cffafe327b6598843892a103b489ef4fc7ccdd31d874f6cd77e640c2904e", + "recipe": "", + "fingerprint": "6fd141599dff9fe2fdc090c7f356364f6248ab979e7d137d686b2463ac0836c7", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5217,8 +5864,8 @@ { "id": "edge:frame-card>bind", "kind": "edge", - "recipe": "", - "fingerprint": "97ee191827a774725bdb1c20b8c914ff7f9a462399e1dc9f58450f5a0863a0df", + "recipe": "", + "fingerprint": "0fa0f85a6d1e48b1efb187373ee7c524a81d7a20bd246f8239ece7284783ef11", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5232,8 +5879,8 @@ { "id": "edge:frame-card>icon", "kind": "edge", - "recipe": "", - "fingerprint": "ed9dcb5a28440ee32eebea765e50bbafe9a1565129ae41eb8e1ad63c2851af4f", + "recipe": "", + "fingerprint": "bf2adc447474e9f0746c846bd10fd439e70559998a0a71e4a5635e875826e3d6", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5247,8 +5894,8 @@ { "id": "edge:frame-card>text", "kind": "edge", - "recipe": "", - "fingerprint": "3468dda39dc0844a4ff13616e80fcb9500cd63d7241a89f4d7b4be331c538bca", + "recipe": "", + "fingerprint": "e848436627ec313dab12c17ad63214cdfee46b445305ea239ad68bb8e8e02f9f", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5259,11 +5906,26 @@ } } }, + { + "id": "edge:grid>alert", + "kind": "edge", + "recipe": "", + "fingerprint": "0498d2f64a36ef32636093486bddd8980fb844ecad2e9aa5d896c8138a60f216", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "grid>alert", + "element": "grid", + "attributes": {}, + "child": "alert" + } + } + }, { "id": "edge:grid>ascii-block", "kind": "edge", - "recipe": "", - "fingerprint": "55245248041ab0cbeba0c1d28de59edb1e0c0a4aebd8d47564668ba90ef11df6", + "recipe": "", + "fingerprint": "4700a677003587e4933e0db60983b5422085e55b3aaafc16ae0fb9c738f786d0", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5277,8 +5939,8 @@ { "id": "edge:grid>box", "kind": "edge", - "recipe": "", - "fingerprint": "f2e8df580d6294aba2a9abc23abf7f89d1f843071c6e55e3d25d42feb336c01f", + "recipe": "", + "fingerprint": "a2ad78b69dbca6dcf7abe4f3293bbebac41f3ca115c7126dc7bf74cc9c3cac4e", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5292,8 +5954,8 @@ { "id": "edge:grid>checklist-burn-panel", "kind": "edge", - "recipe": "", - "fingerprint": "44e87aef72dc22a34bc43adb402a4606c46712ce149bf3807878f6266c09c33e", + "recipe": "", + "fingerprint": "972561cd1e8fc16598c77a6433c5a270f7ed74a67aa72b6bdf95bc1dff42ed0a", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5307,8 +5969,8 @@ { "id": "edge:grid>checklist-event-cards", "kind": "edge", - "recipe": "", - "fingerprint": "548a377894c44fbf7bcca8943f07b33b43a2caf5beffb6c68996cd0256b9e642", + "recipe": "", + "fingerprint": "11ba50c3dccd58610e23eb649e530874b3150228a71a4ed1937c85deb165dca4", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5322,8 +5984,8 @@ { "id": "edge:grid>checklist-ledger", "kind": "edge", - "recipe": "", - "fingerprint": "6f30012338ef66a1a3c112203128b4cda3432d2afb50fec77e30e2e514328a8b", + "recipe": "", + "fingerprint": "d429633af7e90ad973cd2ae1df26844e4645be2ad3bfceaf1deef08d1606a684", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5334,11 +5996,26 @@ } } }, + { + "id": "edge:grid>checklist-tabs", + "kind": "edge", + "recipe": "", + "fingerprint": "58c3ea3ce1c64de75d681ca219f641be9e407fdce1dc297c5e9f8f16774552c1", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "grid>checklist-tabs", + "element": "grid", + "attributes": {}, + "child": "checklist-tabs" + } + } + }, { "id": "edge:grid>checklist-workspace", "kind": "edge", - "recipe": "", - "fingerprint": "183f7846f876cbc38ae9d3871c7c8f65949cb819774201aef4a07bc0507f9bb1", + "recipe": "", + "fingerprint": "7adaf0e983e93102fff78a5e493d7c319fa7e332507a0de4d9318179c26082e9", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5352,8 +6029,8 @@ { "id": "edge:grid>collection", "kind": "edge", - "recipe": "", - "fingerprint": "6486dcf49245557af8a32b16372cc54d80e04ff25807c8db0e0fa78f4ee392de", + "recipe": "", + "fingerprint": "b911b359ea7f53a28767f41178e442b7f3ac9758ac4e5af29b5952cdc7974bda", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5367,8 +6044,8 @@ { "id": "edge:grid>field-toolbar", "kind": "edge", - "recipe": "", - "fingerprint": "ff759f7a8c1378f99b5867530bd3b3b1bcc4d7b566da06786514c471482fea9d", + "recipe": "", + "fingerprint": "5cbb3b886c822dfaea04c835a57717644e5d77c6ecf824a7275c7f5a4e8ff836", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5382,8 +6059,8 @@ { "id": "edge:grid>image-triptych", "kind": "edge", - "recipe": "", - "fingerprint": "c62912109f67a6860ac8f5607b4a04aedc562109b5a258ab08d21c94155ea4d2", + "recipe": "", + "fingerprint": "fbf1f0879acbbea3abf9c70b22fe2704919ca89ed41e88fcaa660c4f10a39a83", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5397,8 +6074,8 @@ { "id": "edge:grid>kpi-strip", "kind": "edge", - "recipe": "", - "fingerprint": "5002c406d8708db613a6f1114ea75626e21e54f1dccb9eeb80ad01d9c2275eee", + "recipe": "", + "fingerprint": "74e2cd08938dcb716fb0f66b2d8657ff8051851aedf5b2bdd814682929410bcd", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5412,8 +6089,8 @@ { "id": "edge:grid>log-table", "kind": "edge", - "recipe": "", - "fingerprint": "6a7b9de736c5cb908e7bf330d8baf4d26ffc244b976beae066c0042d4677d31c", + "recipe": "", + "fingerprint": "447102641712d83281cded9b683c6d10815088369a17b3039b8e0c9a45294689", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5427,8 +6104,8 @@ { "id": "edge:grid>loop-graph", "kind": "edge", - "recipe": "", - "fingerprint": "47d18c65f491a652522e17abec34fdebf1d19063483bda2c91f37cdf6e9a6fd5", + "recipe": "", + "fingerprint": "55d247f0e13b6010cff029a66255907f44759db0fe9260b1890b6262c1dcce73", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5442,8 +6119,8 @@ { "id": "edge:grid>loop-progress", "kind": "edge", - "recipe": "", - "fingerprint": "7664892b6612e2a1a87932da708881adbfc964ab1e454bc578e94b9692cd670d", + "recipe": "", + "fingerprint": "d4a2552f324064c49c80b7864294ccb58f0ea080303f5fda87088f731b547c7f", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5457,8 +6134,8 @@ { "id": "edge:grid>panel", "kind": "edge", - "recipe": "", - "fingerprint": "9c15266cfeadcc1a7e3434c9b1e89c62e95b03e19ac8655144fe5efc94ff1fd6", + "recipe": "", + "fingerprint": "af7a82f79bef66be1a799146ac30a2513c8b59d655bffeafca961e03e72fff24", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5472,8 +6149,8 @@ { "id": "edge:grid>section-header", "kind": "edge", - "recipe": "", - "fingerprint": "290f087182c92eb84d4ae91916acecb07784a663721c3c82f00d435f65f1206f", + "recipe": "", + "fingerprint": "ba77591c3811e9e743e35b7329a18247b43e167c829e65db9718249f4b09914f", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5487,8 +6164,8 @@ { "id": "edge:grid>stack", "kind": "edge", - "recipe": "", - "fingerprint": "09e76a15b3308968eaf51977b23e93d2a40299de3ce06b6d02d9139545ec5eb2", + "recipe": "", + "fingerprint": "d22f60465db90a46e3e1cd55b292e5c8738cf19ffc6b772c5e1ef65d0f085970", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5502,8 +6179,8 @@ { "id": "edge:grid>switch", "kind": "edge", - "recipe": "", - "fingerprint": "dc29d4f2afa641fb3a24cb38db1d35fac41d9a3cf05ff942fed8af1954a96272", + "recipe": "", + "fingerprint": "fa52f1b0bebf4a178fab95893f9a1fb4580cd5784587b507a29db385505c2d22", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5517,8 +6194,8 @@ { "id": "edge:image-triptych>bind", "kind": "edge", - "recipe": "", - "fingerprint": "f049e5aaea03260020e673ec13f688c9ec2dbf5fbc006bd5ab06dc6ccf7dd6a6", + "recipe": "", + "fingerprint": "145f19a4080f834b0138eb10321f7400c69366c9e4161f02e0a43f138ac26da8", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5532,8 +6209,8 @@ { "id": "edge:kpi-item>bind", "kind": "edge", - "recipe": "", - "fingerprint": "c492e03ab57002ad2ac7b2982c4d041be8ed9ff7047279b611d08de5a9703fee", + "recipe": "", + "fingerprint": "466bd17c95aa9443a16e139e279b26f36ce7e4b2e631f7242c6d36fcf0652d7b", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5547,8 +6224,8 @@ { "id": "edge:kpi-item>burn-donut", "kind": "edge", - "recipe": "", - "fingerprint": "631161838c8333063cefd4e71e49101a8b39f9fff48efb4fe9a35545c371b87d", + "recipe": "", + "fingerprint": "58837e7ad6aac9f339bcf9e3e40123364460fef4af0614d2a5bb8adb4c199f8b", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5562,8 +6239,8 @@ { "id": "edge:kpi-item>icon", "kind": "edge", - "recipe": "", - "fingerprint": "8766e620dff32d975df9b0a8acc63e1011f047c0f6e160cfb914857c6d31d23b", + "recipe": "", + "fingerprint": "1081493ac1c261060d50f0f8044a87de5d97386f8766ede06e947bb3d9cb516b", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5577,8 +6254,8 @@ { "id": "edge:kpi-item>progress-donut", "kind": "edge", - "recipe": "", - "fingerprint": "b0dc2c40c6e3442b52dd60bc1d26ca568341020e381a1acd650a981c68501635", + "recipe": "", + "fingerprint": "683212ee975440493db5ffc8aa79937ab9a8aff4daac820b6bf2c76114540da9", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5592,8 +6269,8 @@ { "id": "edge:kpi-item>progress-value", "kind": "edge", - "recipe": "", - "fingerprint": "03c1b2a820026820c24396c290aae77390f338177b7e8884460197d7d055a48a", + "recipe": "", + "fingerprint": "07cad151fea3152f9ac271b2fe19bb09301f56330355e5522152e46934f2298d", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5607,8 +6284,8 @@ { "id": "edge:kpi-item>text", "kind": "edge", - "recipe": "", - "fingerprint": "0befa382363fa54ccf7dd5c260db33a6d052a1715ddf3753fb312c0797f7dac2", + "recipe": "", + "fingerprint": "663b66fbf7e8da35a90c394dbd4b5449d3abb49356feca19db4e90f9c2434697", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5622,8 +6299,8 @@ { "id": "edge:kpi-item>waffle-metric", "kind": "edge", - "recipe": "", - "fingerprint": "fdcdc174f59e48139776518750709adf8741f8916ddbdc3265cf363f5d683b4e", + "recipe": "", + "fingerprint": "f7ede8afd313fd6e2ccbf43810cc1da74f4856b19685bb28887a1e5e1a22080a", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5637,8 +6314,8 @@ { "id": "edge:kpi-strip>kpi-item", "kind": "edge", - "recipe": "", - "fingerprint": "fdfe994ac20dbfbceb117cd639061c33ee48617b43075981e561e756d6faf9dd", + "recipe": "", + "fingerprint": "75cee98dffb78a0ad8481eb168dc3cd1b82adca6208d8a93f244430968a39fe9", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5652,8 +6329,8 @@ { "id": "edge:log-table>column", "kind": "edge", - "recipe": "", - "fingerprint": "a6dabfb44653b8defd0eb14dff1bbabb8141857aa82c4d8d477216689937f6a5", + "recipe": "", + "fingerprint": "67ceab46d53079d5898c0b52925b9e4f1d827058215d88e048caccca2f52aee0", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5667,8 +6344,8 @@ { "id": "edge:metric-tiles>bind", "kind": "edge", - "recipe": "", - "fingerprint": "8626a2f2c32d9afe1bf987c4f397ec714baf6cfc2d9bd5ddd3fbb7098ff857a8", + "recipe": "", + "fingerprint": "cbd53b274277627a95c8d0b268812bcc6b5d90a87556618bf4aa11177feb3fc9", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5682,8 +6359,8 @@ { "id": "edge:mode-toggle>option", "kind": "edge", - "recipe": "", - "fingerprint": "ebbf4f153082d27a6d2bce844d915e1f2d5134d7acb1ede8fc4fc3ef8e3bc4ed", + "recipe": "", + "fingerprint": "260b3af747b47ec652a9ae2f19364087094ff4acf8fbbb68eab7ed1e850de037", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5694,11 +6371,41 @@ } } }, + { + "id": "edge:oven>agent-monitor-activity-chart", + "kind": "edge", + "recipe": "", + "fingerprint": "493dbe7bd0f093f7078e3dfc4e34f4e1f5900c81d2187d78fd5d17a13642e8b7", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "oven>agent-monitor-activity-chart", + "element": "oven", + "attributes": {}, + "child": "agent-monitor-activity-chart" + } + } + }, + { + "id": "edge:oven>alert", + "kind": "edge", + "recipe": "", + "fingerprint": "1969c89d6d448e787dc24684efac402acf581a1911fd8204abf02b91eed7c881", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "oven>alert", + "element": "oven", + "attributes": {}, + "child": "alert" + } + } + }, { "id": "edge:oven>ascii-block", "kind": "edge", - "recipe": "", - "fingerprint": "640209ea4bffa20c3da95081cb7ea34b8005012209fdbeab3788367678f96ceb", + "recipe": "", + "fingerprint": "5baf9967ce57b151d370393b8029f9b30a00a2bc82096b1be953f6e8f3edc724", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5712,8 +6419,8 @@ { "id": "edge:oven>box", "kind": "edge", - "recipe": "", - "fingerprint": "329880df4175aa494e598ff0e1bea4f52a974c1f72c7a7d848bd5dcf63162c99", + "recipe": "", + "fingerprint": "9fb2a32253d87b3b73e91e53601a453bb95e40b0fab99c6e8e6d493648327273", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5727,8 +6434,8 @@ { "id": "edge:oven>checklist-burn-panel", "kind": "edge", - "recipe": "", - "fingerprint": "a2ad0237c18d23ee71d261e6f317a77e0b796602487c81008e8fe2940c7072a4", + "recipe": "", + "fingerprint": "b4e5b86a333bf949723107b3c469dcec2f565834c8d0b8761b3350442575a3b1", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5742,8 +6449,8 @@ { "id": "edge:oven>checklist-current", "kind": "edge", - "recipe": "", - "fingerprint": "93087b613a7ccff3af6cb428cd56ac1a1407a0690722a5f152f73980fe8fe90e", + "recipe": "", + "fingerprint": "a8d49c5a2837d98d3f3c777dde061986de0e05f7176d8a130fd6e3b72b1604d9", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5757,8 +6464,8 @@ { "id": "edge:oven>checklist-event-cards", "kind": "edge", - "recipe": "", - "fingerprint": "e40d9c9a22e92a901546f5041be0c835bfd816d9ab86ab5f067776cbaa9e34ac", + "recipe": "", + "fingerprint": "c8b33fdc79469e521d66918e66185da91b4a9b16ec19553ea3dbb890fd3a5000", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5772,8 +6479,8 @@ { "id": "edge:oven>checklist-ledger", "kind": "edge", - "recipe": "", - "fingerprint": "12a65f5558142bdff32f19dba3eccbeebb8e278c0cead27419dbb937e85130b7", + "recipe": "", + "fingerprint": "0aa240fc0066227d14eb7ac37c33c9710f106706c5dee0d07360f3182f911d6e", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5784,11 +6491,26 @@ } } }, + { + "id": "edge:oven>checklist-tabs", + "kind": "edge", + "recipe": "", + "fingerprint": "7f8648987a561688144a5460acbeab5f37332c144c27f373d424821e06ea11f8", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "oven>checklist-tabs", + "element": "oven", + "attributes": {}, + "child": "checklist-tabs" + } + } + }, { "id": "edge:oven>checklist-workspace", "kind": "edge", - "recipe": "", - "fingerprint": "7b607e0b24393f5582b534effe2b5e32ae94db2ae6c60f792f0b26fdc026e183", + "recipe": "", + "fingerprint": "cb267336e8004c2b5fa452932cccc7fd5bf0c4f49a9f9f446ecd72c2448bb7e3", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5802,8 +6524,8 @@ { "id": "edge:oven>collection", "kind": "edge", - "recipe": "", - "fingerprint": "7a609758029da8881dbe239822cf183fa7bdfb0567db41ece0387e5d3b68f3e3", + "recipe": "", + "fingerprint": "ece7e2446bb36bde5948233c093e6614c5182b920edba11be7b7a6d088ca1e91", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5817,8 +6539,8 @@ { "id": "edge:oven>diff-card", "kind": "edge", - "recipe": "", - "fingerprint": "96ae6013dd5221054eafd3527dd9983c7c70793256f62485e7cb34de8df4e336", + "recipe": "", + "fingerprint": "ebfd7ee43060e636eee05a94b65dc4751fcc71284d910d13d430395ad06c9b85", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5832,8 +6554,8 @@ { "id": "edge:oven>differential-empty-state", "kind": "edge", - "recipe": "", - "fingerprint": "6c92d9719a1eec4dc12074175ed82e5338561453bc1fa90db8d235caa9e044ad", + "recipe": "", + "fingerprint": "c54952ea6ffbb0c31001ba3b39a08c7742fa4641bdc159563da2089de79fb324", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5847,8 +6569,8 @@ { "id": "edge:oven>differential-kpi-strip", "kind": "edge", - "recipe": "", - "fingerprint": "034e7e7be2c06d936f78abafb66755a790e9c4e9647bab1e6d5ed34a6b6cb604", + "recipe": "", + "fingerprint": "97c648344378c965bd94b6240d7d7b1a7d92141fc941b5babbff33780865e513", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5862,8 +6584,8 @@ { "id": "edge:oven>differential-log-table", "kind": "edge", - "recipe": "", - "fingerprint": "aff7ccc5d188798087a90b053122edfc64c1e5b93bb0f5a76adfbaac01ac1976", + "recipe": "", + "fingerprint": "f61a07d234b771697b62e74880b65cf89e62e6ab12734c1e4667a53d47d714a7", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5877,8 +6599,8 @@ { "id": "edge:oven>domain-note", "kind": "edge", - "recipe": "", - "fingerprint": "36b85f5e3c8b007b5aa2689093de48ca0353402b1bd4b7412e968074fdf2387a", + "recipe": "", + "fingerprint": "6543273f10d9421e35d85210f32c7ef4bde7687eb7576a9e937a7064ea92ddc8", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5892,8 +6614,8 @@ { "id": "edge:oven>domain-tabs", "kind": "edge", - "recipe": "", - "fingerprint": "27152fe24bc239646f2444a15c1c06a0f3fa261c6494764baaab18d0f44b7795", + "recipe": "", + "fingerprint": "693c59cc94f437cdf5fcc371bc30064ba59042fcdeeafe938dd7ce2858dfa3e2", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5907,8 +6629,8 @@ { "id": "edge:oven>feed-list", "kind": "edge", - "recipe": "", - "fingerprint": "eaaa9acdedb8cc1436de8e30b352692ab2f1e7bb4dcd9b31e0cf972598e896b9", + "recipe": "", + "fingerprint": "23f93aa9892b22e4f92aac90c6a092507e28dd47ebb699d2e6c07715a4b78e25", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5922,8 +6644,8 @@ { "id": "edge:oven>field-toolbar", "kind": "edge", - "recipe": "", - "fingerprint": "75d1ac6ec3c4356e43f855a84614600ec39bcf1c8ebcbdfc1e7dc983e4c2a08d", + "recipe": "", + "fingerprint": "bc25b60d9f64ea1e727747bc1129b7e6eb2c5bda4f344de11f9d9d1e759856aa", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5937,8 +6659,8 @@ { "id": "edge:oven>file-diff", "kind": "edge", - "recipe": "", - "fingerprint": "1758e1bf6340d91ef1846200906caddc540006df613ccf1d7c33c71ebbf2f358", + "recipe": "", + "fingerprint": "900a89541416f65367405442862191a0b732becc5c85fc71f0e5c1a5de901057", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5952,8 +6674,8 @@ { "id": "edge:oven>frame-card", "kind": "edge", - "recipe": "", - "fingerprint": "0963c4d70571e29cc6c495d1b23d76418b022d0d1fe07bfc35283c6971221950", + "recipe": "", + "fingerprint": "5c752a416b3401c65608f5385950586c5cf09d2485ac5bff1ae1bc97451ae384", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5967,8 +6689,8 @@ { "id": "edge:oven>frame-delta-chart", "kind": "edge", - "recipe": "", - "fingerprint": "26f3c3da58c325aeaf8cf22bf8058460b790cce7046005f78405f7c4d5e9bbee", + "recipe": "", + "fingerprint": "5534d390a578d3f69ea2f6e46baf99f7bd18a96872e8ccd186786db9ac69a78d", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5982,8 +6704,8 @@ { "id": "edge:oven>grid", "kind": "edge", - "recipe": "", - "fingerprint": "962660d74ec2e9f29cfa34ddca3797f8ae83dd3fd7e0880872fec049c48d7e7f", + "recipe": "", + "fingerprint": "9af7289b7a421ca5e73b4b2d324f89a4cd8d86b11fd907edcca5fcadd22232d6", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -5997,8 +6719,8 @@ { "id": "edge:oven>image-triptych", "kind": "edge", - "recipe": "", - "fingerprint": "247ce41785978868c52e59e38e76e8b449845ef68d9213c0bfb1a1ac21467434", + "recipe": "", + "fingerprint": "5d733b280003debac0071b25fa7a25538b52197b953a33a2e73d333a3bcaaf27", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6012,8 +6734,8 @@ { "id": "edge:oven>kpi-strip", "kind": "edge", - "recipe": "", - "fingerprint": "152c19951c03aa163c78b3b4db5c7007122e8fd5161bf011538e37be2de6cd8b", + "recipe": "", + "fingerprint": "f1e3a605922ad0a32d1f1e0c0b1b659c6f50a8fe0f9cffa7b0a76cc6509f79e8", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6027,8 +6749,8 @@ { "id": "edge:oven>log-table", "kind": "edge", - "recipe": "", - "fingerprint": "f061df654d3de52a5a686cc1875c08b4d00007600304399752226a66798d99a6", + "recipe": "", + "fingerprint": "bb995598affa4caf5fc959f0706b6dd7ea19c0c01087d5693c1977f6ff85a8bb", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6042,8 +6764,8 @@ { "id": "edge:oven>loop-graph", "kind": "edge", - "recipe": "", - "fingerprint": "199d2a17e686a5dee87f04da708f6d5e8b344417013317eb9e3792c26614d6ad", + "recipe": "", + "fingerprint": "0a4ab921df7ab60721252ed522c6a09e0f2e8f0a1b74c009d106ef132d0fcd62", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6057,8 +6779,8 @@ { "id": "edge:oven>loop-progress", "kind": "edge", - "recipe": "", - "fingerprint": "a6a69fc9a87ce2630ed68553e543cf4b468bae5d910387df03aed2ac6624f962", + "recipe": "", + "fingerprint": "9fe4ab8ad8c9cbf8898197448c17d1723fdae2b0bf9d07126c48b576eca8e685", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6072,8 +6794,8 @@ { "id": "edge:oven>metric-tiles", "kind": "edge", - "recipe": "", - "fingerprint": "e6d7767eebab6bda077c0b0df557fb73ffe55e185911b5421b0654533a9da586", + "recipe": "", + "fingerprint": "7156c95593dbc49afebc7420f0323d75573f526047701692d79f7c6f811b01f4", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6087,8 +6809,8 @@ { "id": "edge:oven>model-lab-view", "kind": "edge", - "recipe": "", - "fingerprint": "88ad3c991ae0e95b76dac320323e349c2f89256bcff6a735f2b327d579a6cc08", + "recipe": "", + "fingerprint": "86c8da0e83bb15e3fa79e2a27c9a4da42b27c18e83be276328883038d99bbfd4", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6102,8 +6824,8 @@ { "id": "edge:oven>panel", "kind": "edge", - "recipe": "", - "fingerprint": "ac383b06ef35f1bd8e15f68a66c2eab8c3626d77f2cb02d43c7d87782a561199", + "recipe": "", + "fingerprint": "e3d6e183a5d3870b55a5149975459c07d7c3111c19349462954119587e81f8b9", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6117,8 +6839,8 @@ { "id": "edge:oven>progress-chart", "kind": "edge", - "recipe": "", - "fingerprint": "6f3ec1ad2696993fc4335e27b1328f70d2d8660b2bdfc21c9f3fa48730f58f0a", + "recipe": "", + "fingerprint": "dfad7d5a60b72ddf44d773eeaa7ca197da9cac5daab68a4a23e3bd6b20a43682", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6132,8 +6854,8 @@ { "id": "edge:oven>refresh-status", "kind": "edge", - "recipe": "", - "fingerprint": "901024e2aaf05c63e4cb3f114f0e39de2c33d107fc82caa56f9b27d7c0265379", + "recipe": "", + "fingerprint": "b560f2c83262a86ba4b143271c708a7cfdc3a4252cd6225b364402034b2e366a", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6147,8 +6869,8 @@ { "id": "edge:oven>section-header", "kind": "edge", - "recipe": "", - "fingerprint": "134ce43e651f6e2ca4ab3f066fab224d029e063d3e69f7ba2153a8cb91c629f8", + "recipe": "", + "fingerprint": "61f5cce635ef02d5fb936ee24426b9f8b9812331a494b72cb8549bf72a2450e1", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6162,8 +6884,8 @@ { "id": "edge:oven>stack", "kind": "edge", - "recipe": "", - "fingerprint": "b78f475c7ab5a2fed3b91b6252f6e4ae4ead5ba6a68b4d38b3343a5bd0b6c09e", + "recipe": "", + "fingerprint": "29efd7e5161b9566ed2c6988150826946273f1caae1fa61455ca63a494e36498", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6177,8 +6899,8 @@ { "id": "edge:oven>streaming-diff-heading", "kind": "edge", - "recipe": "", - "fingerprint": "7112f2e64d26393663c1df240d1a17e5d1960d6c795cb5a97f4286d2288fe86c", + "recipe": "", + "fingerprint": "bbf9892df2d2db4311671ce89d658a51e2422a218c6b13889c150e7ac361b36f", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6192,8 +6914,8 @@ { "id": "edge:oven>switch", "kind": "edge", - "recipe": "", - "fingerprint": "0b558cf1eadb54aabb136d4ac168d45ed02c3b774013c04959aa410a3b2b8cea", + "recipe": "", + "fingerprint": "acbf9e5397dd4f11293d8bd077417e813937044df64ca5d709cc6ff5e20c7bcc", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6207,8 +6929,8 @@ { "id": "edge:oven>verdict-header", "kind": "edge", - "recipe": "", - "fingerprint": "6899a153997112bb0b59b937ca44a454b8f50ab5a9e0eff04b997a4a074745fb", + "recipe": "", + "fingerprint": "64d9c51af2dfb3fc59b17aa7dbea1a5dae1634f6a4677d0c8b20289a92ecefbe", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6219,11 +6941,26 @@ } } }, + { + "id": "edge:panel>alert", + "kind": "edge", + "recipe": "", + "fingerprint": "ae8416289f5d45d7e8968d0b7a5683c5ef0efa8a00e093536bbfaba98355f279", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "panel>alert", + "element": "panel", + "attributes": {}, + "child": "alert" + } + } + }, { "id": "edge:panel>ascii-block", "kind": "edge", - "recipe": "", - "fingerprint": "b2256813862175072f48067fa2e35cc55935aefd1c38e01ea31d8c8a188dde64", + "recipe": "", + "fingerprint": "bb931a11fe8ab175bb8193fdb2fbf3fe007056e0ed5d625b4c94f0a0537c169b", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6237,8 +6974,8 @@ { "id": "edge:panel>box", "kind": "edge", - "recipe": "", - "fingerprint": "c984bedc9f8665d75b99e20e4f8f9a9f9d7e34bb4754e78fc82f2cb43b27ca04", + "recipe": "", + "fingerprint": "3cbdc2a9dd860f668579d00d124aebfce31448d8f11a2e268f52f72a13bbd6ec", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6252,8 +6989,8 @@ { "id": "edge:panel>checklist-burn-panel", "kind": "edge", - "recipe": "", - "fingerprint": "4c97e663106a5de2935c9bef238d15de9e8d88ccdc17e01a3660f91445f95769", + "recipe": "", + "fingerprint": "7080dea5c34b26e0eb82f8b3234966d6a4416294575903f79c62a6f738e97d22", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6267,8 +7004,8 @@ { "id": "edge:panel>checklist-event-cards", "kind": "edge", - "recipe": "", - "fingerprint": "12860515fac216772bae03c221ce0b2938ad97fc770e6470908ad4f9a5a25f0a", + "recipe": "", + "fingerprint": "340eead45406e61ae133a27ce9255f568e0c2deb4fc86cb054c5a3c99d205372", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6282,8 +7019,8 @@ { "id": "edge:panel>checklist-ledger", "kind": "edge", - "recipe": "", - "fingerprint": "5890dd957e68ba42ad5c6062b5f9cb4dae8d9dafb38bdeb9397ac9fcc2e47b21", + "recipe": "", + "fingerprint": "c8f4e32f66872bc8142225cd11e147bbc92daf22ef3e71d7be898249da73cc83", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6294,11 +7031,26 @@ } } }, + { + "id": "edge:panel>checklist-tabs", + "kind": "edge", + "recipe": "", + "fingerprint": "500ff922ae8b158f60f82b521a1082401a3e5e74b6c7e8ea0b97d487d46af506", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "panel>checklist-tabs", + "element": "panel", + "attributes": {}, + "child": "checklist-tabs" + } + } + }, { "id": "edge:panel>checklist-workspace", "kind": "edge", - "recipe": "", - "fingerprint": "22bffd2d63fe843dd6f7da2e898cf3d6ba5420b048dc5cc910a378a405fea320", + "recipe": "", + "fingerprint": "b396be86eac6176a8a0ef5a2833d1af1112d09e0ec96c46b670f40288a615852", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6312,8 +7064,8 @@ { "id": "edge:panel>collection", "kind": "edge", - "recipe": "", - "fingerprint": "c662d35b9f4292fa25d7ec7ac01c03aceb1c9f2597525ab555e5308fb3a501cb", + "recipe": "", + "fingerprint": "d5e664cdda00cee0df3019fd1c2357dd15257ca0e74e4d59bb1f6926696c3fbc", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6327,8 +7079,8 @@ { "id": "edge:panel>field-toolbar", "kind": "edge", - "recipe": "", - "fingerprint": "0a58111146d4bcf8e7b7639bc8a18539f80b719788a1c7bf9562eb2590cc0bb7", + "recipe": "", + "fingerprint": "a836e2c268c7d732bba1fdd3a0c6489f0727985a4acc9b0c4452b9c3db8de9ce", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6342,8 +7094,8 @@ { "id": "edge:panel>grid", "kind": "edge", - "recipe": "", - "fingerprint": "f28f46b469381a0a2a3dff861ee8bbe6f52079f2e595379cff13abeb3e5b9955", + "recipe": "", + "fingerprint": "0becb1d08778d592ae00e54bb74c5f0b15db3a839998093eb6ca6d44b56870eb", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6357,8 +7109,8 @@ { "id": "edge:panel>image-triptych", "kind": "edge", - "recipe": "", - "fingerprint": "c00c035c55a7567cf02fa2c60d7281cf365b9be18e05d651a0e8316abef86730", + "recipe": "", + "fingerprint": "47c3f41455afea79ee0b3285639990ae7112ac3d8da1cb9dd1cb4e7cbd810cb4", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6372,8 +7124,8 @@ { "id": "edge:panel>kpi-item", "kind": "edge", - "recipe": "", - "fingerprint": "826944f24d9f57c4e88cc0ba9ff8c04e4255ee671ddee40215673c2df6b9cd9d", + "recipe": "", + "fingerprint": "7ee7a337aee6de829ae92cade0f6f009cbe9e4e6fc5d543bdfd75c32ef4d3773", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6387,8 +7139,8 @@ { "id": "edge:panel>kpi-strip", "kind": "edge", - "recipe": "", - "fingerprint": "d51d6236dcd690e211de2d96483a2ebc4e268b75ce8112e016b0c07ee4b45b7a", + "recipe": "", + "fingerprint": "823b3dab068b8eb6fa4c3d44e90cf1f883343a91e01238a65d0ba92c21e41aa1", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6402,8 +7154,8 @@ { "id": "edge:panel>log-table", "kind": "edge", - "recipe": "", - "fingerprint": "da27fdd014cbfebca99ba55fa0e279d096b3f73515736b7d2662d7a727fe6f0a", + "recipe": "", + "fingerprint": "5833caa72ccb351a8297a450ecb72378e4af748b6ed674ca7a27f6806d7d9f4e", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6417,8 +7169,8 @@ { "id": "edge:panel>loop-graph", "kind": "edge", - "recipe": "", - "fingerprint": "630e7ba9b054d1f1933dd9ebc14aab368177aced11626e05a7c0648171f42a3d", + "recipe": "", + "fingerprint": "438758c7500d5adcdcca1f18cd0caac59ebb277873de77249ff16072bd66ac45", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6432,8 +7184,8 @@ { "id": "edge:panel>loop-progress", "kind": "edge", - "recipe": "", - "fingerprint": "7786fedc3b39c26d3152e8c2c381a0be0646c23296dd916f2485ef4ef89980fe", + "recipe": "", + "fingerprint": "41a858e1aead8b0082f4028da657ce91fd75c84d2f9064698b128d9e7999e70f", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6447,8 +7199,8 @@ { "id": "edge:panel>mode-toggle", "kind": "edge", - "recipe": "", - "fingerprint": "2d4f9ca0ca1c099ab0efcb8ad64fa05bf3a004358bd713bf16268e923a83fd10", + "recipe": "", + "fingerprint": "95e3b30c4078465a63b00446ef4da2510182a754003116fe9f7fce5348473af2", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6462,8 +7214,8 @@ { "id": "edge:panel>section-header", "kind": "edge", - "recipe": "", - "fingerprint": "05a3beb3a2e310374bf5ad4321e028f4997bf7dee9f287a434da37e674f7d874", + "recipe": "", + "fingerprint": "7b3960d2a1a6a7487aa4618c279613ad790ab170f009c527d8eaf3f91af5a812", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6477,8 +7229,8 @@ { "id": "edge:panel>stack", "kind": "edge", - "recipe": "", - "fingerprint": "74d0a12cbb762bd32297dfbc15c6494960bd5173fe3272be1e4f1438af1c2739", + "recipe": "", + "fingerprint": "309ee2806754cd7c871c8e1049246b6ba1d503c3a240815719d21a7f7809e26a", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6492,8 +7244,8 @@ { "id": "edge:panel>switch", "kind": "edge", - "recipe": "", - "fingerprint": "d4409167a44860e11d6e96d87f32a8fcc5ed3b10f77b6fb4fae9b5bd9118c64c", + "recipe": "", + "fingerprint": "e871acfe076a2c2313cc21f9e6e241b7806b2a91b9b57af6ff354923ed1371ad", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6507,8 +7259,8 @@ { "id": "edge:section-header>bind", "kind": "edge", - "recipe": "", - "fingerprint": "91e864eff53f516b5a60f6b78f75ced257bb28704482392f366802485dda8a7b", + "recipe": "", + "fingerprint": "0312601aad1d26692c4381305d82c5d99851c3021c1cf553908f9f7ee114f83e", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6522,8 +7274,8 @@ { "id": "edge:section-header>icon", "kind": "edge", - "recipe": "", - "fingerprint": "5c43eec9730b44371804ad964e9efc185e8bf13498cf5eb2228d0d0784b1ee48", + "recipe": "", + "fingerprint": "d9564b3b2ff29549777a33714f4e1050da980ba99783dfbad4dc72701ee61c41", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6537,8 +7289,8 @@ { "id": "edge:section-header>text", "kind": "edge", - "recipe": "", - "fingerprint": "f71b5f8dada00a1a237c9bab0aea898aeda7f0b89d986f4158c2317a677f4612", + "recipe": "", + "fingerprint": "56603d36d264cea28d68c653bf50a4ecc6dd0c0c01dbeb3a79b96af6db45376f", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6549,11 +7301,26 @@ } } }, + { + "id": "edge:stack>alert", + "kind": "edge", + "recipe": "", + "fingerprint": "050306ad147752ecbe4f8edff49db77ae3fbc51be02a189c11552a639406a8f4", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "stack>alert", + "element": "stack", + "attributes": {}, + "child": "alert" + } + } + }, { "id": "edge:stack>ascii-block", "kind": "edge", - "recipe": "", - "fingerprint": "6c27f30d1ae0cd90912326ff4327c9487dd9ed85559fe6bd3efef7bb3a15b856", + "recipe": "", + "fingerprint": "f71071e39bd85f79d96672fce08520d1ac03ea26f6e0657e1ecff9ad70386127", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6567,8 +7334,8 @@ { "id": "edge:stack>box", "kind": "edge", - "recipe": "", - "fingerprint": "91e00fe7c953f5e3d076179505e45bb86ef66296e27d0966ab440a992b06a84b", + "recipe": "", + "fingerprint": "5ce51aef330bd5938ecbc8938cc70df866a6c3dabd4b3b847874f730ebf575a4", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6582,8 +7349,8 @@ { "id": "edge:stack>checklist-burn-panel", "kind": "edge", - "recipe": "", - "fingerprint": "86d324ab3c9ba9739c4f167cd97143a5f24cbd32a17760a4a26b7fac78346374", + "recipe": "", + "fingerprint": "ef6810e5501e8b8e3778de8a40d379cba567daabca965584a8eabe0d7c4905cc", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6597,8 +7364,8 @@ { "id": "edge:stack>checklist-event-cards", "kind": "edge", - "recipe": "", - "fingerprint": "ac653bea4c56b82b46f699268b58674d20a246616ab00e717a1e23b77c09bfd5", + "recipe": "", + "fingerprint": "e5da4f2df2464b24f521808274757cb61262ba89eebf16a4238dfa82d8b8e57a", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6612,8 +7379,8 @@ { "id": "edge:stack>checklist-ledger", "kind": "edge", - "recipe": "", - "fingerprint": "4608c8169252e96b13950650f4e1840f1edd7df9fe114d9b09d69721c632d9b9", + "recipe": "", + "fingerprint": "abf34531d14fb205548ee83406d0c57b205dc13f9a8de3f157c847fb099071b7", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6624,11 +7391,26 @@ } } }, + { + "id": "edge:stack>checklist-tabs", + "kind": "edge", + "recipe": "", + "fingerprint": "173fd805aa74179ada7a17c8667ce4fd39895cc46ded40d9e8c64f1644bc9a43", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "stack>checklist-tabs", + "element": "stack", + "attributes": {}, + "child": "checklist-tabs" + } + } + }, { "id": "edge:stack>checklist-workspace", "kind": "edge", - "recipe": "", - "fingerprint": "950ebb505aa129bdb6b0d2dd8247bf15db0aab6e3b064db107698d62afcd3203", + "recipe": "", + "fingerprint": "a9044b3483bd025445be82de603fb63c5457146313c5f0cd43281175f5d5b451", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6642,8 +7424,8 @@ { "id": "edge:stack>collection", "kind": "edge", - "recipe": "", - "fingerprint": "34d25491613ae2522afa72b3ea253f78fe375aed33ccf1a5355580a3c43af276", + "recipe": "", + "fingerprint": "57cf092f9c71a8394cc7185453d1699df3d6adfe1447187e7689c83938426944", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6657,8 +7439,8 @@ { "id": "edge:stack>field-toolbar", "kind": "edge", - "recipe": "", - "fingerprint": "081357aae6242841eb4e65486e796bdddd5f9b2177c89e9c8546e043f0d56c14", + "recipe": "", + "fingerprint": "48b3081908ad9d4ca9f9e286a147c89b180feeb9f854c7a1e2941a0d7a747235", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6672,8 +7454,8 @@ { "id": "edge:stack>grid", "kind": "edge", - "recipe": "", - "fingerprint": "5e84e54bf9375021b7158c3f33a7fda575e3354d6db9e267efcd6520b146e9eb", + "recipe": "", + "fingerprint": "fb45b40cbdb3e04b248e34ea600e6e62e0d2cedfea56ebd36822db6216853bb8", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6687,8 +7469,8 @@ { "id": "edge:stack>image-triptych", "kind": "edge", - "recipe": "", - "fingerprint": "2805b2d0ac2d701fa3584c5852567da55a600d93977508d4cfc844eabe120f0f", + "recipe": "", + "fingerprint": "877e223cc389c4bad96731e8d47b34aaa421259f357542f438b777b2ff8cb180", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6702,8 +7484,8 @@ { "id": "edge:stack>kpi-item", "kind": "edge", - "recipe": "", - "fingerprint": "4e84b62085b33a9a0a677f20b35863722e3b2f2d978120127aa3e18827bcd349", + "recipe": "", + "fingerprint": "a08b5515fc7fe3e27dece3a134d435d01f6ada8008508dc3aaa0780a17299084", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6717,8 +7499,8 @@ { "id": "edge:stack>kpi-strip", "kind": "edge", - "recipe": "", - "fingerprint": "5033c57e523113de7454f0c4b3c46c529cfd9b1c158b8b7c0815a8d04d9e946f", + "recipe": "", + "fingerprint": "b12487f4e391539fb2ba10076db4deb7bfe910074aa66bdf1ff2e1138771a77f", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6732,8 +7514,8 @@ { "id": "edge:stack>log-table", "kind": "edge", - "recipe": "", - "fingerprint": "15f570099a3187fa659c38037641c897d7acbc0ecbd85bb92bdb874334412859", + "recipe": "", + "fingerprint": "944574dcc1e151a5beeaba800aab33522bb2f69715d97d3cc81326581eec9304", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6747,8 +7529,8 @@ { "id": "edge:stack>loop-graph", "kind": "edge", - "recipe": "", - "fingerprint": "06e50123a0cd6b94ba9b7df6775a164dcd2e17dc0c46613a5b6caf0a6cfd2199", + "recipe": "", + "fingerprint": "7393b412de2e529c982df264842b9a84ca3a41a61b6816b8f0d963b0449ae660", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6762,8 +7544,8 @@ { "id": "edge:stack>loop-progress", "kind": "edge", - "recipe": "", - "fingerprint": "d2925f774889a0f2c7291dfaa4963e90de516cf2c6401cc07c07ffcc5b29f559", + "recipe": "", + "fingerprint": "892608fbab4df05bb1186f7a1aa368c4a16aa1451ba7a54f87fa3293ef3f6e89", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6777,8 +7559,8 @@ { "id": "edge:stack>panel", "kind": "edge", - "recipe": "", - "fingerprint": "e304a80f62367e652c9827b4b4c54b83aab9b45785868cfcc902bf58c845ed32", + "recipe": "", + "fingerprint": "00a5f020151d0bdc99930258f05b3f324b376f6ebd3d29bac40c9ce7bdaabb49", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6792,8 +7574,8 @@ { "id": "edge:stack>refresh-status", "kind": "edge", - "recipe": "", - "fingerprint": "29264e25d262c79b83d73848b532db5d8c9e7bd75f457c95c378d0bc44d41d47", + "recipe": "", + "fingerprint": "167ef37364adec054640491b1edb68efbff4a866e6bd7af09aa99e911b115e8b", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6807,8 +7589,8 @@ { "id": "edge:stack>section-header", "kind": "edge", - "recipe": "", - "fingerprint": "6412269cad0188a3ef3fa11d3631afab2cf759a31d3136b43c2ca042cd77738a", + "recipe": "", + "fingerprint": "08999507bc9e065b3cf3d7d15ee6378bee8bb2b04c8fcea271cda5e0140b6aea", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6822,8 +7604,8 @@ { "id": "edge:stack>stack", "kind": "edge", - "recipe": "", - "fingerprint": "e14fbb188d2181614440ee902d092a83b97ae837532e2d436bd10f3499eaf83c", + "recipe": "", + "fingerprint": "305b19dcafcb55b69c84c611ace2c94d2d55395e3caf352aee3f21b0fd0e6a39", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6837,8 +7619,8 @@ { "id": "edge:stack>switch", "kind": "edge", - "recipe": "", - "fingerprint": "a0761499bfb9cc93904c4c265a76ef689febda96539fa09b52b69b80f200512b", + "recipe": "", + "fingerprint": "aae5765f85fdbdab82f0ce6c4b570ce3b6fe984f87f40d18adf3a2ca648b610a", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6852,8 +7634,8 @@ { "id": "edge:switch>case", "kind": "edge", - "recipe": "", - "fingerprint": "d7b2fab10cc84fafef9373a679e31f577891730b91b07e708e6191cca41b949d", + "recipe": "", + "fingerprint": "ffca3310d113c0ac811a22d7f10db8c2da8f41e72ed3445a7938706effdfc6aa", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6867,8 +7649,8 @@ { "id": "edge:verdict-header>bind", "kind": "edge", - "recipe": "", - "fingerprint": "87acb47615a0cc48ddbb0bc5d72c6a1504e17f406a9d5b3f833cf85da1b25759", + "recipe": "", + "fingerprint": "52d30f2c43ad285cfe6546d5ebeaeea929d249cf8955edf5ae9e87875a0145c6", "expectedTarget": { "coverageTarget": { "kind": "edge", @@ -6879,11 +7661,81 @@ } } }, + { + "id": "element:agent-monitor-activity-chart", + "kind": "element", + "recipe": "", + "fingerprint": "fc01812c9fa1893d14a739e26a051dd192d082eec40239f43dc912192fb83965", + "expectedTarget": { + "coverageTarget": { + "kind": "element", + "id": "agent-monitor-activity-chart", + "element": "agent-monitor-activity-chart", + "attributes": {} + } + } + }, + { + "id": "element:agent-monitor-event-card", + "kind": "element", + "recipe": "", + "fingerprint": "635b3fd908956969150e5593971775379729d4a17ddbd8c15e3cf2ee5fe036f3", + "expectedTarget": { + "coverageTarget": { + "kind": "element", + "id": "agent-monitor-event-card", + "element": "agent-monitor-event-card", + "attributes": {} + } + } + }, + { + "id": "element:alert", + "kind": "element", + "recipe": "", + "fingerprint": "1f8c4559a89011bac8a225e4302505d64bfafaace1098bc31ba373bc0fe5e180", + "expectedTarget": { + "coverageTarget": { + "kind": "element", + "id": "alert", + "element": "alert", + "attributes": {} + } + } + }, + { + "id": "element:alert-description", + "kind": "element", + "recipe": "", + "fingerprint": "976f61aa2ac51b16e055c8b50758147d737060f709bf3b400a0486fbba7c2662", + "expectedTarget": { + "coverageTarget": { + "kind": "element", + "id": "alert-description", + "element": "alert-description", + "attributes": {} + } + } + }, + { + "id": "element:alert-title", + "kind": "element", + "recipe": "", + "fingerprint": "6a044787d8c99f9fe0cf8f1825450de73547c0b139f108af6d509e608e9fa3bf", + "expectedTarget": { + "coverageTarget": { + "kind": "element", + "id": "alert-title", + "element": "alert-title", + "attributes": {} + } + } + }, { "id": "element:ascii-block", "kind": "element", - "recipe": "", - "fingerprint": "54158a213f973a8543fd687a15e03567a06e75aa4f25cb909edb150ea9fe735b", + "recipe": "", + "fingerprint": "7942d337ff5bab05bd492de181e2308e05053351877a1390a6d656766f155590", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -6896,8 +7748,8 @@ { "id": "element:bind", "kind": "element", - "recipe": "", - "fingerprint": "2f1801217ed948fd0e308a2f9cbda5315b48931613b7b9b9aeddf0b09474022e", + "recipe": "", + "fingerprint": "4f7bbc02f3d9e976f24294d804b5825f5d068aad1d189f20f005b27c67644f04", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -6914,8 +7766,8 @@ { "id": "element:box", "kind": "element", - "recipe": "", - "fingerprint": "c8a5986ef940def0fe0a5b5f37eb9b5450baf2107edcb97252bc2b07af6abed5", + "recipe": "", + "fingerprint": "a0f65e2742eb58ce743a2514819443a56f03ec1d9539f52be97df908aa049fa2", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -6928,8 +7780,8 @@ { "id": "element:burn-donut", "kind": "element", - "recipe": "", - "fingerprint": "bedea8d33fae175005667c23979c7b4c50bab2e5f19d0ea3903687b6642cf587", + "recipe": "", + "fingerprint": "c9f37d5fc1c9a45e5ddd237b1159886b8c5cf74c4317f3207a0bad9893559a03", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -6942,8 +7794,8 @@ { "id": "element:case", "kind": "element", - "recipe": "", - "fingerprint": "cc3bc0f153975c669f283fe9216d8decd580b8d6a45f3180458d49190a8cc75c", + "recipe": "", + "fingerprint": "d572b3586057208e6e20252ec848dcb44aecc35d46ba4c56de3f60cd360b3ef5", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -6956,8 +7808,8 @@ { "id": "element:checklist-burn-panel", "kind": "element", - "recipe": "", - "fingerprint": "7d40ad44fa24e02305294c43bcb4d01dfeced3e9e4f564ec6b20ee31b5229111", + "recipe": "", + "fingerprint": "ccb8e229fde8f8369249a5c0f322e5b5473cd84d32d665023db64fe6c5cffef5", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -6970,8 +7822,8 @@ { "id": "element:checklist-current", "kind": "element", - "recipe": "", - "fingerprint": "fe73dfa1d58ef0ec9d301cb0b155764038021fee95316066a26cb528499a0f07", + "recipe": "", + "fingerprint": "c88943cb5045000b0a6c2721e3c5ea6e612df802295991c459021a867c3f19db", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -6984,8 +7836,8 @@ { "id": "element:checklist-event-cards", "kind": "element", - "recipe": "", - "fingerprint": "d7bafcc492a59197833d5731b1b317cc85fd1c82c29208aa74d35c395da4fd55", + "recipe": "", + "fingerprint": "d687077753698abe0b0cc73e6db5ed58272b9ef2a888d75eb1aa57a5e56db6c3", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -6998,8 +7850,8 @@ { "id": "element:checklist-ledger", "kind": "element", - "recipe": "", - "fingerprint": "b5d51c3d795d5462e8170f909ee8dd28956cc74413b46d6b1404d8080a890190", + "recipe": "", + "fingerprint": "2a07f37902c8317feeb87c50dfdd780aaa2880e913e7f680a28abd9594f52777", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7009,11 +7861,25 @@ } } }, + { + "id": "element:checklist-tabs", + "kind": "element", + "recipe": "", + "fingerprint": "c86d9c204c0abeecd5a3a3c9cab4cadaabaccd38091f7a0471e8e46186a6aaf0", + "expectedTarget": { + "coverageTarget": { + "kind": "element", + "id": "checklist-tabs", + "element": "checklist-tabs", + "attributes": {} + } + } + }, { "id": "element:checklist-workspace", "kind": "element", - "recipe": "", - "fingerprint": "6be647d9a7d71b3376ddb8304110c38b3723afa751a2bfb1acbed015814bdcba", + "recipe": "", + "fingerprint": "e764f786d5edbc773ac31b200c97548e461bcae8ac964c11b57e9094d42d466e", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7026,8 +7892,8 @@ { "id": "element:collection", "kind": "element", - "recipe": "", - "fingerprint": "12ade42fc824179425db14b4e5eb75bd704eb8f848086a26bb7f8fae8424e205", + "recipe": "", + "fingerprint": "bbb8e6ae4edd45b3991be29ff1a3842bc70e10f3a7a1112a797d64a48fd44daf", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7040,8 +7906,8 @@ { "id": "element:column", "kind": "element", - "recipe": "", - "fingerprint": "867a75e6762c9831a1489248d2607e63ff1d08b0572a3a3b603a7007ad8c012c", + "recipe": "", + "fingerprint": "15389c3f7f3ada6cbf74feda3c350c553871613fbf666f48af2324dc15895c83", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7054,8 +7920,8 @@ { "id": "element:diff-card", "kind": "element", - "recipe": "", - "fingerprint": "a6ab2aee7119813b68c55f4cff77deb6568b2b3caeeada7c0e8b1aec6afce3ac", + "recipe": "", + "fingerprint": "2f5da11b5f7de6de6c256d1cfbee76ce6a21be304ae90ac18a566a1e73795329", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7068,8 +7934,8 @@ { "id": "element:differential-empty-state", "kind": "element", - "recipe": "", - "fingerprint": "fc9ffed6912f085ee3517d48beefd8dc3f7a7ac9d7cedb62f816bb62a11681a5", + "recipe": "", + "fingerprint": "74df453d70040bc76f25d13b7bb063b37c2e665cfd5bba8cd387062fd3a2a39b", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7082,8 +7948,8 @@ { "id": "element:differential-kpi-strip", "kind": "element", - "recipe": "", - "fingerprint": "ae7dbd2c5cab6a25d57fbf5238c4e5241c958f3f57b0107e79be1777debbc2b2", + "recipe": "", + "fingerprint": "a3d4735c51d42fe786bf87d3a66cc9e24230b8e133c85a46b868592be522aa14", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7096,8 +7962,8 @@ { "id": "element:differential-log-table", "kind": "element", - "recipe": "", - "fingerprint": "5a2334b13048b135549ab5f1e5dd10e602d2eb229cd80713950fafd4addfecfd", + "recipe": "", + "fingerprint": "fd09404d3572a81c6a91b8152164c7847d33a1b63c83ad1b58c3e020498fc444", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7110,8 +7976,8 @@ { "id": "element:domain-note", "kind": "element", - "recipe": "", - "fingerprint": "96aeeef4b9e2099a198674e565e41050ebf5d9f7ae6f0582767013dec7184bf5", + "recipe": "", + "fingerprint": "3f84411900f13adad22abf7dc78e3f637e16168989ad8b6784270868e72166d5", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7124,8 +7990,8 @@ { "id": "element:domain-tabs", "kind": "element", - "recipe": "", - "fingerprint": "5ef11c6bb73af3b54c61210275a84a8e1702aa128af99c9d9939634b241a7321", + "recipe": "", + "fingerprint": "83b6fd232abf498ae1a52e70c89feb8d0492d79359cf59b0654ef69315d5e98a", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7138,8 +8004,8 @@ { "id": "element:each", "kind": "element", - "recipe": "", - "fingerprint": "a3d22cb6a83ec83b276f528d97df3456fee83bd7c9cdc2c8576418feab04f2a2", + "recipe": "", + "fingerprint": "82c22568314d76e6617d2b3be83c227ba2afb45bdfa189c4815075cda0a90c65", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7152,8 +8018,8 @@ { "id": "element:feed-list", "kind": "element", - "recipe": "", - "fingerprint": "12759afe4162f5ebc2f6a845bcb9164ea8dddbf17d7efdbe39dda4f0bd7a5c7c", + "recipe": "", + "fingerprint": "ae59bd3f0eecd2eaf1bb3c040dd4f450d25474c5cef04b144f571ac9c2cdf862", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7166,8 +8032,8 @@ { "id": "element:field-list", "kind": "element", - "recipe": "", - "fingerprint": "ad0ed4b92d3925de27c349465d5d937bb3c3c3e3b0cee04d8de71dc4cc0cd37a", + "recipe": "", + "fingerprint": "f57ad4b54b6191f47c1daba7d3f93a85c477a7ee118d3d178e448bdd0f6838a6", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7180,8 +8046,8 @@ { "id": "element:field-toolbar", "kind": "element", - "recipe": "", - "fingerprint": "eb916d6eb9a85be5170869a6f81194520c5d1322d7e993fd5f5a3d4a028c3a12", + "recipe": "", + "fingerprint": "a271a9b8f30287077932666a80fe46cac611dc910a363a66ee4ba53e6701fe41", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7194,8 +8060,8 @@ { "id": "element:file-diff", "kind": "element", - "recipe": "", - "fingerprint": "5acf6962b71d25abe59292c8730bc25e6605d7ddfe7cbfed465006f3707f6dc5", + "recipe": "", + "fingerprint": "f28c657c44e3684a542a81530282d8d4705bf1583cec66c8317250680185d3a8", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7208,8 +8074,8 @@ { "id": "element:filter-toggle", "kind": "element", - "recipe": "", - "fingerprint": "598ce6fcfb630e5023fb4fa92a44c530f10e6c8365505fa107bf2a145f655209", + "recipe": "", + "fingerprint": "f578fb513ee168910639b8d7fa61e24c23a63ea4fb9026ed333e9851e9b89722", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7222,8 +8088,8 @@ { "id": "element:frame-card", "kind": "element", - "recipe": "", - "fingerprint": "e666933b461b847e5d948ed9e8ea8beb22c6e4e6bc7e81660c26009d8961d2a7", + "recipe": "", + "fingerprint": "b5951147169449195ec6ab246ed2bfb45620c6ef44cf0f5f9302d200651e20d0", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7236,8 +8102,8 @@ { "id": "element:frame-delta-chart", "kind": "element", - "recipe": "", - "fingerprint": "5fb746568fb468fcfe771d1d31d86f41ba14ff405fdfc6b64ebf3291f7f1bd68", + "recipe": "", + "fingerprint": "e7f8915c5f8fdf7d626e43a3c2b8e56b4199b66d99bc53c68bc63f61c5176044", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7250,8 +8116,8 @@ { "id": "element:grid", "kind": "element", - "recipe": "", - "fingerprint": "5788252130500232cfaa12ffb285bd2e7724ab91bc0a309475b74b51af58a7fe", + "recipe": "", + "fingerprint": "035c70b917d4c6b6b27ca7f74f97560d1b2ac0c342a270fb09150c1e8de0789f", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7264,8 +8130,8 @@ { "id": "element:icon", "kind": "element", - "recipe": "", - "fingerprint": "48e1f85b30240f0f7e809cff9bdce42b1e3f3c482d339fc289920f575941d773", + "recipe": "", + "fingerprint": "f3be9588a96c98ef5394f922f63ebc654e5916fbc70f8aa9eabce7712d78feab", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7278,8 +8144,8 @@ { "id": "element:image-triptych", "kind": "element", - "recipe": "", - "fingerprint": "adbb85e2355627690b284a54954e6cc9bfb1c85db21607d384c97bf1d576f5cb", + "recipe": "", + "fingerprint": "bdec4d9afd7f5d289fb978ac59a047c741ec3e2c100037f012b6db7bbe8a9f2d", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7292,8 +8158,8 @@ { "id": "element:kpi-item", "kind": "element", - "recipe": "", - "fingerprint": "4166cab6674c51fe2b2318e5f0c8ea3e3636e238075be1260e4efe77fa2dbc94", + "recipe": "", + "fingerprint": "dfed32e0d931b15ff2a6b70a83ab7f8ec1278fa7525839f224d3a2f8524b7d41", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7306,8 +8172,8 @@ { "id": "element:kpi-strip", "kind": "element", - "recipe": "", - "fingerprint": "3487cea04c56d46f01f9192567003b592f34668c9f07015e64a478a8b0cf1841", + "recipe": "", + "fingerprint": "63be410ba610c46d8f255dbde015122d09cdbeb950e6bff31887cd73a9cd6b5b", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7320,8 +8186,8 @@ { "id": "element:log-table", "kind": "element", - "recipe": "", - "fingerprint": "f10dd79d8ba3dd5d69eba96be1d3bcc5a5e8a3c000a789a82f89ed2be844ed1e", + "recipe": "", + "fingerprint": "4d821eb4d6e509d6e6d897826841fa4462073a6d881cd2231414da766d8d32cc", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7334,8 +8200,8 @@ { "id": "element:loop-graph", "kind": "element", - "recipe": "", - "fingerprint": "fbb2c07916ef1f502bdf36b753eceb6bc44c1be1576482e81c457ce4fb363720", + "recipe": "", + "fingerprint": "72465e91c7c22ac65814eff6fe88716fb02cd3e684d678ddd4017d69889c5291", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7348,8 +8214,8 @@ { "id": "element:loop-progress", "kind": "element", - "recipe": "", - "fingerprint": "169d77152e938a77868de20598aebbc01a5a72c2be4aa70af7d6018089d66695", + "recipe": "", + "fingerprint": "9a2638cc2ccbb7733eadc6a05800a4f599c4e473e5b3ba1dde2d5adc99e9991a", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7362,8 +8228,8 @@ { "id": "element:metric-tiles", "kind": "element", - "recipe": "", - "fingerprint": "9096be3f5add49d41395a406005baca0b77c0cd883f906c4a1e0c98377159511", + "recipe": "", + "fingerprint": "3830b4dddf9d958f4c041b3027f9cdfefd9498504e1d248cd8e53aa3c5b99a0a", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7376,8 +8242,8 @@ { "id": "element:mode-toggle", "kind": "element", - "recipe": "", - "fingerprint": "bd5a6a2d4c8bd99668573fc287b9dba3c0842caee6a9b455f0e69e7a6bfd32b4", + "recipe": "", + "fingerprint": "1849a3088b293f2d42b8a1894bd3c534dfac3cda9b88b2f47478dc2b213f5687", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7390,8 +8256,8 @@ { "id": "element:model-lab-view", "kind": "element", - "recipe": "", - "fingerprint": "b86b1188bf3d7f05298e2db98bae92045016141c90c4e9c39f958b56b4c692d7", + "recipe": "", + "fingerprint": "eac96777d4e108b2ef1a3f4c1d643bdcac03326eac9caa58e7a36b9e2b334e47", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7404,8 +8270,8 @@ { "id": "element:option", "kind": "element", - "recipe": "", - "fingerprint": "f3a73e64c898cfbfea5334fef72f6fb288368dfb2c7189ab5e8536116247a7e7", + "recipe": "", + "fingerprint": "cfa25d1e519d944170cf7648b552e86344e9a6f9bbfa9e9bebd793de46e10b38", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7432,8 +8298,8 @@ { "id": "element:pagination", "kind": "element", - "recipe": "", - "fingerprint": "140754d5800ce3832dda3dff5cdf20a09cecf1ca4c25949a23f81a9aae8cdc95", + "recipe": "", + "fingerprint": "0189cc78a343b095be02b4bf75e3c81a3f7ea186691d1de1467bf836102dc05f", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7446,8 +8312,8 @@ { "id": "element:panel", "kind": "element", - "recipe": "", - "fingerprint": "0b0672913acc0cfa9e6612537be6591843d8eeb1c810a6af8feebadbe3e12e30", + "recipe": "", + "fingerprint": "e31ddbd15e9012c9096e950008c7cfed4784a2f59601ceb4b22594755deec34b", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7460,8 +8326,8 @@ { "id": "element:progress-chart", "kind": "element", - "recipe": "", - "fingerprint": "ff05d3ac306ff6737bc7e95a5f99d8b6bc4028d849fb53878410fa4148c20411", + "recipe": "", + "fingerprint": "7882ca99f8e4f7935f1b38ae222111ac4a770e7020f374842b2454d3941c6a82", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7474,8 +8340,8 @@ { "id": "element:progress-donut", "kind": "element", - "recipe": "", - "fingerprint": "8ae792bb6f755992b3fdd027b5913ccd4e51f58a7311db812606d0619769b05b", + "recipe": "", + "fingerprint": "a339d864a2817bda40b7691abe00f460022860279114fa548f0515577d497e6d", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7488,8 +8354,8 @@ { "id": "element:progress-value", "kind": "element", - "recipe": "", - "fingerprint": "c01e380fd7b36716d42a64e2b1da56649c8f1569784b7ffced8b7594d0ce7cbd", + "recipe": "", + "fingerprint": "2288ce8ce9181e2c4b97fff1887e2278a60c03b774048f508dca0f53f7675647", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7502,8 +8368,8 @@ { "id": "element:refresh-status", "kind": "element", - "recipe": "", - "fingerprint": "e43cf5af31a48ebebfc89905e6ff6a01ecbc8195484790a92f81c2ee61250dbe", + "recipe": "", + "fingerprint": "0a66301d65a00721ebf0db75d8e5fb58aba5ca529c71128007d110c79ed6ba69", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7516,8 +8382,8 @@ { "id": "element:search", "kind": "element", - "recipe": "", - "fingerprint": "a8ba47218c8ada367a77b584d4f5a5266ba7a86a923b06c3b922a3a9c3198016", + "recipe": "", + "fingerprint": "929170629614ac0ba2e28077851fbde8d727859c6b58d5b86e021f0e8fca4376", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7530,8 +8396,8 @@ { "id": "element:section-header", "kind": "element", - "recipe": "", - "fingerprint": "f30165e7db5c072d1ff3fb87fed58f3c7e4d4eba25fce965f95009ce02065559", + "recipe": "", + "fingerprint": "9d49ef7d75025864768a603f4cbcafd50ce3aea02088535e836b54d0f6dba955", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7544,8 +8410,8 @@ { "id": "element:sort-toggle", "kind": "element", - "recipe": "", - "fingerprint": "bfc76d7a07258149b8cb7b7f4db07987cab0824d058ae30153eec5a016478683", + "recipe": "", + "fingerprint": "e63fcd39f87ad6a8b018789f786c13e8581349bf929ebb0c803c71c48d975cb4", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7558,8 +8424,8 @@ { "id": "element:stack", "kind": "element", - "recipe": "", - "fingerprint": "5524dee93541738ae453d53b329c4a927e5116cd8ccb08ba7d08cc96a5d4d88f", + "recipe": "", + "fingerprint": "5a22f1b214a6a4b5bb623feaef52a45afe8be3d8e27dd6c368a894e3ded91b9c", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7572,8 +8438,8 @@ { "id": "element:streaming-diff-heading", "kind": "element", - "recipe": "", - "fingerprint": "4b9908280bcfdef5550d4b86df58e4fa871f7c3d0ac9dda8ccae98d3fdc9ab34", + "recipe": "", + "fingerprint": "658592c0fe8a300510b2c9dac55df6f88be10e8ec5031546e3c7eac25cf8485c", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7586,8 +8452,8 @@ { "id": "element:switch", "kind": "element", - "recipe": "", - "fingerprint": "2d99a0f25778e86677aa896858d53e2beba70dce95a4f726c17089ea35a4c4cf", + "recipe": "", + "fingerprint": "9a5a072a99302f8ad2240e098f16cc9c82e3b3b31e8cab70265391a745d116bc", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7600,8 +8466,8 @@ { "id": "element:text", "kind": "element", - "recipe": "", - "fingerprint": "dc7a96953cfbe9e686bf0ca000531a565ffaae5810e711310f9de75b32b89977", + "recipe": "", + "fingerprint": "08869c8ee5b05fd1f5a961debeb5444d5d82c5f11a9e3aa04baebe1d20b3c1cc", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7614,8 +8480,8 @@ { "id": "element:verdict-header", "kind": "element", - "recipe": "", - "fingerprint": "bea282c436e8a4ebe4aec46ba470d3bd7b35b3d7d8fb9df1a339299245a755a0", + "recipe": "", + "fingerprint": "c7f709407099d304b95bb61871cb71113314f59269057c72956370a8b359a324", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7628,8 +8494,8 @@ { "id": "element:waffle-metric", "kind": "element", - "recipe": "", - "fingerprint": "357079c6245a8b2a3fef05471c34e273f4f15deee190e264f9ecbccee0627f50", + "recipe": "", + "fingerprint": "b34fc7e4f396cbd404df959e49776eed9070d19958f37519cd6de79a4689ed71", "expectedTarget": { "coverageTarget": { "kind": "element", @@ -7639,11 +8505,101 @@ } } }, + { + "id": "filter:command", + "kind": "filter", + "recipe": "", + "fingerprint": "48d8811afd138f72648d434d49914b60d3b394120e48d37e16fe78c5de8b18a4", + "expectedTarget": { + "coverageTarget": { + "kind": "filter", + "id": "command", + "element": "filter-toggle", + "attributes": { + "key": "command" + }, + "registry": "filter", + "registryValue": "command" + } + } + }, + { + "id": "filter:diff", + "kind": "filter", + "recipe": "", + "fingerprint": "da256356ed2325c6c3707cc5cba9451e29dc414cbbfa48b989586a05dd4bdb77", + "expectedTarget": { + "coverageTarget": { + "kind": "filter", + "id": "diff", + "element": "filter-toggle", + "attributes": { + "key": "diff" + }, + "registry": "filter", + "registryValue": "diff" + } + } + }, + { + "id": "filter:failed", + "kind": "filter", + "recipe": "", + "fingerprint": "11871be3999b1da576dd68d6cb029339a2a6f66bd8a3b009a23c4c771045455f", + "expectedTarget": { + "coverageTarget": { + "kind": "filter", + "id": "failed", + "element": "filter-toggle", + "attributes": { + "key": "failed" + }, + "registry": "filter", + "registryValue": "failed" + } + } + }, + { + "id": "filter:lifecycle", + "kind": "filter", + "recipe": "", + "fingerprint": "32178e9c61db19ee01cc645602dbd938e8cad489dfab9e2a983f81c551af375c", + "expectedTarget": { + "coverageTarget": { + "kind": "filter", + "id": "lifecycle", + "element": "filter-toggle", + "attributes": { + "key": "lifecycle" + }, + "registry": "filter", + "registryValue": "lifecycle" + } + } + }, + { + "id": "filter:message", + "kind": "filter", + "recipe": "", + "fingerprint": "ea6a3f708c5f7713ae0285d9742977ba4b8457002670264f165a0ddc1ae1c044", + "expectedTarget": { + "coverageTarget": { + "kind": "filter", + "id": "message", + "element": "filter-toggle", + "attributes": { + "key": "message" + }, + "registry": "filter", + "registryValue": "message" + } + } + }, { "id": "filter:non-pass", "kind": "filter", - "recipe": "", - "fingerprint": "9403d64fd059d09c56f32e429558fef09eaa33999efe3dcba18a3b2bf2c2c2d3", + "recipe": "", + "fingerprint": "0e4f614a05c2a93d9b34c0a98af67081d94729670ee3b2186dee42469d71aae1", "expectedTarget": { "coverageTarget": { "kind": "filter", @@ -7657,11 +8613,29 @@ } } }, + { + "id": "filter:tool", + "kind": "filter", + "recipe": "", + "fingerprint": "652f728354483b4072af78c99463c72ec97c840b8ebccf62035f374c4fbb12cd", + "expectedTarget": { + "coverageTarget": { + "kind": "filter", + "id": "tool", + "element": "filter-toggle", + "attributes": { + "key": "tool" + }, + "registry": "filter", + "registryValue": "tool" + } + } + }, { "id": "format:delta", "kind": "format", - "recipe": "", - "fingerprint": "419b314773a9a5369122c8e2af181c2c3f7beff005cd9bc082c5d7d0fc1794d8", + "recipe": "", + "fingerprint": "b8a85784fb380c39be3da224da11a67585c413822de8dc9acb65c6ba6a6f42b6", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7678,8 +8652,8 @@ { "id": "format:identity", "kind": "format", - "recipe": "", - "fingerprint": "e069810116196893b90f9574e1dedd4c0479d4d27f5a8b999a63b5699cf385d9", + "recipe": "", + "fingerprint": "09d005a1d7807bc819d91abd8aa7c49d77ca0562c8756fca138d51c447d986c6", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7696,8 +8670,8 @@ { "id": "format:index-by-id", "kind": "format", - "recipe": "", - "fingerprint": "0e020351d05f72f828a20c4cde19702b4f00c85820d3191ebd47f82935e1744d", + "recipe": "", + "fingerprint": "0eb4e1df76e0a6c0350fbc99e59620625bd8d4a015b4ddf7b1c2e723c111af64", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7714,8 +8688,8 @@ { "id": "format:last-delta-percent", "kind": "format", - "recipe": "", - "fingerprint": "65b12aaafe4d02df02457cf010d3dbfb5e4fab7ca0951e1834cf424b41dd0d27", + "recipe": "", + "fingerprint": "6936a5e310a2865dd58540a1a1d0bacd9cacc1e067f162f04415e37e5fdca93f", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7732,8 +8706,8 @@ { "id": "format:last-failed-count", "kind": "format", - "recipe": "", - "fingerprint": "98fa4ce7ba52dd2251ee5f32abb9fd835489cd84bf34b49e6c2a48e865e70c26", + "recipe": "", + "fingerprint": "2802ef3ff8241e15cf17d0f82d353579482a55d6f19048dd93f930546a2149f4", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7750,8 +8724,8 @@ { "id": "format:last-failed-percent", "kind": "format", - "recipe": "", - "fingerprint": "889a71d9932955c2477f8b3d09b7d510a71f433e08d881427d984fdd8f575eb1", + "recipe": "", + "fingerprint": "d0416534e6f10d17e17fe55103d75a58659049b7e4202a577f2f190d32427fbf", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7768,8 +8742,8 @@ { "id": "format:last-frame-delta", "kind": "format", - "recipe": "", - "fingerprint": "1fc747c90903c3c4e3e584c2df238edeeab61790070b61798ef9f5e2968f5eaf", + "recipe": "", + "fingerprint": "3923f5e3ac8f137bc54d8327f38d67d7cc90e4bbafe19f26b4881d2479586f0f", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7786,8 +8760,8 @@ { "id": "format:last-progress-percent", "kind": "format", - "recipe": "", - "fingerprint": "f8d59487e79caab614a173f8583f2170d0151b5e388d40017a42f4af5c3f58f0", + "recipe": "", + "fingerprint": "371c65805583b70b89b45b9aa4c9e59abb41533cf6a8334f094069e3f12fc8ef", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7804,8 +8778,8 @@ { "id": "format:length", "kind": "format", - "recipe": "", - "fingerprint": "8e1e13b314a162e32706193cad1509101b03e7eb048e4dc86c82fd81a1eef40b", + "recipe": "", + "fingerprint": "d07af523dc7a5bdbca916ce5512f621fe54e574a51138ee1267672fd68d283c5", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7822,8 +8796,8 @@ { "id": "format:number", "kind": "format", - "recipe": "", - "fingerprint": "b36f38e12058388377ec892a70437ffa093faba84ac3ae40b3828bc1d44a4de2", + "recipe": "", + "fingerprint": "3d92a0b200bdc20458268ad7b4f03aac0dd8adac49fa680b59382c894c7cc92b", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7840,8 +8814,8 @@ { "id": "format:percent", "kind": "format", - "recipe": "", - "fingerprint": "fcd9ac293c5bc7cfa78dacf31b6888c5afcaea5994b0114f152de8ddd7ab75c9", + "recipe": "", + "fingerprint": "3c674ef7f5ece654b44de31480dcfb926635d251676d9b5218ebacccec426239", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7858,8 +8832,8 @@ { "id": "format:plain", "kind": "format", - "recipe": "", - "fingerprint": "22ec889b156880359ba83f22510c477d79b9f3118af9316b55aa38475a9ad732", + "recipe": "", + "fingerprint": "5247b4187b3c4a52a311821f68987b47f0112e532e2123cae09069f75332a852", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7876,8 +8850,8 @@ { "id": "format:progress-headline", "kind": "format", - "recipe": "", - "fingerprint": "da2274586c2267ebb922318ca30812cb04a2c8ec57d0ea16011eecf7e378dfa4", + "recipe": "", + "fingerprint": "5a471b5be6426e405eb3813288beeed13d4236ccc532a21ec61008745a77ed8a", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7894,8 +8868,8 @@ { "id": "format:ratio-to-percent", "kind": "format", - "recipe": "", - "fingerprint": "e811e225f7294fde49328074f246bb4d3e9098d6f12c9232b3e9d90cacf866df", + "recipe": "", + "fingerprint": "59af5612153bb18514ea36bcf2e75540dd04047ac5c698f61bce79e2659e7c6f", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7912,8 +8886,8 @@ { "id": "format:relative-age", "kind": "format", - "recipe": "", - "fingerprint": "8bc5398e57448e8ed4a92c5af167619a6abea0271773c27ee6a0dd1bd0e976c1", + "recipe": "", + "fingerprint": "c9856ee1eaead639622dfd1a22f7e670d7d595078bb02342a846003b57c62993", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7930,8 +8904,8 @@ { "id": "format:telemetry-availability", "kind": "format", - "recipe": "", - "fingerprint": "7aab5d0c8ce5a869353463449e0f1c39c41534e59fd195991034f2a84e0bfaf5", + "recipe": "", + "fingerprint": "ba1539a1053386aa67c168001f04204e4f65195b50e848e770dd0b0136d85bc1", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7948,8 +8922,8 @@ { "id": "format:time-only", "kind": "format", - "recipe": "", - "fingerprint": "3ce770d2f5a85c1689d9f0e6eaa30d11e900efed078009e039f8e1652f0d135b", + "recipe": "", + "fingerprint": "68f76db64daf3b02eff506540a484f2c129fac33afc046d9f5e67cfc9fa413b1", "expectedTarget": { "coverageTarget": { "kind": "format", @@ -7966,8 +8940,8 @@ { "id": "icon:ClipboardList", "kind": "icon", - "recipe": "", - "fingerprint": "b4ffb7ee5b60aabbc18e368f2a04b1521dd4c7fbe13deebf4ca933aaf8fec9c6", + "recipe": "", + "fingerprint": "da7f001cf72a6255e394d873ec8cb1a424cee00318e19ba668b840f7bbb38222", "expectedTarget": { "coverageTarget": { "kind": "icon", @@ -7984,8 +8958,8 @@ { "id": "icon:Clock3", "kind": "icon", - "recipe": "", - "fingerprint": "e7f802bfc7c0d2dcb9f3c5685206b8f3723395a4e50d346eb62b62d9db84e375", + "recipe": "", + "fingerprint": "35c7091e96776c4bef0e29eb967aef1539c2824a6d649b09a9d8e001357704ca", "expectedTarget": { "coverageTarget": { "kind": "icon", @@ -8002,8 +8976,8 @@ { "id": "icon:Gauge", "kind": "icon", - "recipe": "", - "fingerprint": "fb5cfbb9b976244395dc18680e259d34201e91297f557bc76f014d3939f51ff5", + "recipe": "", + "fingerprint": "804071e535f429440b75a51a15c71ec3aa1f9d8a8308adcacb23c6548352f893", "expectedTarget": { "coverageTarget": { "kind": "icon", @@ -8020,8 +8994,8 @@ { "id": "icon:TimerReset", "kind": "icon", - "recipe": "", - "fingerprint": "6bc7ab4ab683897bd4092107bc23f4d144ff9bf6fdddaa8a91e31174b1e880c1", + "recipe": "", + "fingerprint": "63a46da0273f6c7bacb43dd1357d9090a9cbb2cee0f30d3403f3439808a42c85", "expectedTarget": { "coverageTarget": { "kind": "icon", @@ -8038,8 +9012,8 @@ { "id": "sort:changed", "kind": "sort", - "recipe": "", - "fingerprint": "689d72b415a1ef9692fed002390c84bef2e0fd93d6d2891d963c17b15109a37a", + "recipe": "", + "fingerprint": "4386c19f590b87d9b5e03c1bebb7031546f7172516610e8a6293075b7caa5921", "expectedTarget": { "coverageTarget": { "kind": "sort", @@ -8056,8 +9030,8 @@ { "id": "theme:checklist", "kind": "theme", - "recipe": "", - "fingerprint": "7a29deac9297813115d7d89d55744ff692c8791eda0dd96b10b5d7d5dd677c5c", + "recipe": "", + "fingerprint": "2e3c82324da71d3e60e08e08edad51f1088c908d1294b033e122d5fc4690664e", "expectedTarget": { "coverageTarget": { "kind": "theme", @@ -8074,8 +9048,8 @@ { "id": "theme:differential-testing", "kind": "theme", - "recipe": "", - "fingerprint": "540f6ad8b751bb02c5a0bf89e46431f1d6de196db18e8c4c97a4898120fd223d", + "recipe": "", + "fingerprint": "1c9baedfb48119b1775d4acd193a498805097159069ff5c95fdc8a86d7325b99", "expectedTarget": { "coverageTarget": { "kind": "theme", @@ -8092,8 +9066,8 @@ { "id": "theme:streaming-diff", "kind": "theme", - "recipe": "", - "fingerprint": "8ae9d5299dc2dd3214e7bb795e4e00d7d62b9ef84c3434668b13c46551cd8c0e", + "recipe": "", + "fingerprint": "58598d810e4498a008dc682800babde9063aa1a851023ffc54d98c5eadbabace", "expectedTarget": { "coverageTarget": { "kind": "theme", @@ -8110,8 +9084,8 @@ { "id": "theme:visual-parity", "kind": "theme", - "recipe": "", - "fingerprint": "052a55eba654c226d3c4942f4f748b6d6c1dd5d1bb3124cc51876315199b4afe", + "recipe": "", + "fingerprint": "7d1b993a5d3b8fd43bc0b9df538b7bcbae117705dfc0adb576a5a17c12c464f3", "expectedTarget": { "coverageTarget": { "kind": "theme", diff --git a/terminal-oven-parity.json b/audits/oven/terminal-oven-parity.json similarity index 98% rename from terminal-oven-parity.json rename to audits/oven/terminal-oven-parity.json index cec2a576..b6a9d1bc 100644 --- a/terminal-oven-parity.json +++ b/audits/oven/terminal-oven-parity.json @@ -1,23 +1,23 @@ { "schema": "burnlist-terminal-oven-parity@1", - "b34ArtifactDigest": "cfbb394f310675aaa636f15b24b5238c974b43d12e1596543f69be1f69e8adc8", + "b34ArtifactDigest": "e3745cc25767799922964b2926afda3f62ef0bada1c90b7c77a9f93a6b32db3c", "atomicDenominator": [ { - "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:08345a6407cfa04e", - "familyId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:08345a6407cfa04e", - "rowId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:08345a6407cfa04e", + "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", + "familyId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", + "rowId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:08345a6407cfa04e", + "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", - "familyId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", - "rowId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", + "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:28670509b2644dea", + "familyId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:28670509b2644dea", + "rowId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:28670509b2644dea", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", + "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:28670509b2644dea", "mappingStatus": "gap" }, { @@ -74,6 +74,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:7d3765175c92ae64", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:869312be2760fd24", + "familyId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:869312be2760fd24", + "rowId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:869312be2760fd24", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:869312be2760fd24", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:879c4c24e5fd2fba", "familyId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:879c4c24e5fd2fba", @@ -155,6 +164,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:c91790aa853c7954", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:db078c47db3e50c3", + "familyId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:db078c47db3e50c3", + "rowId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:db078c47db3e50c3", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:db078c47db3e50c3", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:e5e69239b717d7ed", "familyId": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:e5e69239b717d7ed", @@ -200,15 +218,6 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:LogicalExpression:3651b5c07432da72", "mappingStatus": "gap" }, - { - "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:38edea39933b2588", - "familyId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:38edea39933b2588", - "rowId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:38edea39933b2588", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:LogicalExpression:38edea39933b2588", - "mappingStatus": "gap" - }, { "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e", "familyId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e", @@ -237,21 +246,30 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", - "familyId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", - "rowId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", + "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:6ea5a02132549b79", + "familyId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:6ea5a02132549b79", + "rowId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:6ea5a02132549b79", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", + "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:LogicalExpression:6ea5a02132549b79", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:c0f673b28a57b32f", - "familyId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:c0f673b28a57b32f", - "rowId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:c0f673b28a57b32f", + "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:ac413be8f7156f5a", + "familyId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:ac413be8f7156f5a", + "rowId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:ac413be8f7156f5a", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:LogicalExpression:c0f673b28a57b32f", + "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:LogicalExpression:ac413be8f7156f5a", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", + "familyId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", + "rowId": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", "mappingStatus": "gap" }, { @@ -273,12 +291,30 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:IfStatement:0950e6df7876e854", - "familyId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:IfStatement:0950e6df7876e854", - "rowId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:IfStatement:0950e6df7876e854", + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:09ecd391a41039f5", + "familyId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:09ecd391a41039f5", + "rowId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:09ecd391a41039f5", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:IfStatement:0950e6df7876e854", + "evidenceTarget": "atom:b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:09ecd391a41039f5", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:26457aa74ab00355", + "familyId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:26457aa74ab00355", + "rowId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:26457aa74ab00355", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:26457aa74ab00355", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:cf12e3a823885859", + "familyId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:cf12e3a823885859", + "rowId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:cf12e3a823885859", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:cf12e3a823885859", "mappingStatus": "gap" }, { @@ -300,30 +336,30 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:314348123bf12d0b", - "familyId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:314348123bf12d0b", - "rowId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:314348123bf12d0b", + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:34fa1aff9e378f1e", + "familyId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:34fa1aff9e378f1e", + "rowId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:34fa1aff9e378f1e", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:314348123bf12d0b", + "evidenceTarget": "atom:b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:34fa1aff9e378f1e", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:e1457c38a8dc8ad8", - "familyId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:e1457c38a8dc8ad8", - "rowId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:e1457c38a8dc8ad8", + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:35b0b741e18369cd", + "familyId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:35b0b741e18369cd", + "rowId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:35b0b741e18369cd", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:e1457c38a8dc8ad8", + "evidenceTarget": "atom:b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:35b0b741e18369cd", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:ecc4476a0741b0dd", - "familyId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:ecc4476a0741b0dd", - "rowId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:ecc4476a0741b0dd", + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:639201685d8fe452", + "familyId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:639201685d8fe452", + "rowId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:639201685d8fe452", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:ecc4476a0741b0dd", + "evidenceTarget": "atom:b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:639201685d8fe452", "mappingStatus": "gap" }, { @@ -425,6 +461,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:module:LogicalExpression:87e96ae238bb09cf", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:module:LogicalExpression:fec06bb1848c20a0", + "familyId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:module:LogicalExpression:fec06bb1848c20a0", + "rowId": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:module:LogicalExpression:fec06bb1848c20a0", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:module:LogicalExpression:fec06bb1848c20a0", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/components/DifferentialTestingOven/DifferentialTestingOven.tsx:module:ConditionalExpression:fb8af5b091d0b677", "familyId": "b34:branch:dashboard/src/components/DifferentialTestingOven/DifferentialTestingOven.tsx:module:ConditionalExpression:fb8af5b091d0b677", @@ -695,6 +740,42 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/hooks/useOvenDefinition.ts:useOvenDefinition:LogicalExpression:8c1a07148196b45c", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:ConditionalExpression:2cf6dc473679913c", + "familyId": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:ConditionalExpression:2cf6dc473679913c", + "rowId": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:ConditionalExpression:2cf6dc473679913c", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:ConditionalExpression:2cf6dc473679913c", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:83d6cd7e558f513e", + "familyId": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:83d6cd7e558f513e", + "rowId": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:83d6cd7e558f513e", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:83d6cd7e558f513e", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:9d1b7f9c32e0502c", + "familyId": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:9d1b7f9c32e0502c", + "rowId": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:9d1b7f9c32e0502c", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:9d1b7f9c32e0502c", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:dc8f4f096cae1e89", + "familyId": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:dc8f4f096cae1e89", + "rowId": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:dc8f4f096cae1e89", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:dc8f4f096cae1e89", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/lib/hrefs.ts:burnlistHref:ConditionalExpression:20611b6b08a46bac", "familyId": "b34:branch:dashboard/src/lib/hrefs.ts:burnlistHref:ConditionalExpression:20611b6b08a46bac", @@ -858,12 +939,12 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:83e728cef8897dcd", - "familyId": "b34:branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:83e728cef8897dcd", - "rowId": "b34:branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:83e728cef8897dcd", + "id": "b34:branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:26cbb2fb634679a0", + "familyId": "b34:branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:26cbb2fb634679a0", + "rowId": "b34:branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:26cbb2fb634679a0", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:83e728cef8897dcd", + "evidenceTarget": "atom:b34:branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:26cbb2fb634679a0", "mappingStatus": "gap" }, { @@ -993,30 +1074,30 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:2d0d8a0556db1aa4", - "familyId": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:2d0d8a0556db1aa4", - "rowId": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:2d0d8a0556db1aa4", + "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:8e2406cc9247eb34", + "familyId": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:8e2406cc9247eb34", + "rowId": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:8e2406cc9247eb34", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:2d0d8a0556db1aa4", + "evidenceTarget": "atom:b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:8e2406cc9247eb34", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:3d0b44c435f0a42b", - "familyId": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:3d0b44c435f0a42b", - "rowId": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:3d0b44c435f0a42b", + "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", + "familyId": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", + "rowId": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:3d0b44c435f0a42b", + "evidenceTarget": "atom:b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", - "familyId": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", - "rowId": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", + "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:d74ac9f13debb02e", + "familyId": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:d74ac9f13debb02e", + "rowId": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:d74ac9f13debb02e", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", + "evidenceTarget": "atom:b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:d74ac9f13debb02e", "mappingStatus": "gap" }, { @@ -1118,6 +1199,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:803b0edd36de52b7", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:b6c40e5cf6100d60", + "familyId": "b34:branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:b6c40e5cf6100d60", + "rowId": "b34:branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:b6c40e5cf6100d60", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:b6c40e5cf6100d60", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:bb5e2a54a028afc8", "familyId": "b34:branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:bb5e2a54a028afc8", @@ -1325,6 +1415,645 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/lib/route-model.mjs:repoOvenHref:ConditionalExpression:822b606e69383ea0", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:ConditionalExpression:b6f78ae235bd59a5", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:ConditionalExpression:b6f78ae235bd59a5", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:ConditionalExpression:b6f78ae235bd59a5", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:ConditionalExpression:b6f78ae235bd59a5", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:LogicalExpression:9cd8c9fbbdea0f72", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:LogicalExpression:9cd8c9fbbdea0f72", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:LogicalExpression:9cd8c9fbbdea0f72", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:LogicalExpression:9cd8c9fbbdea0f72", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:37b90dc946c05849", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:37b90dc946c05849", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:37b90dc946c05849", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:37b90dc946c05849", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:bd2fe94f3ec64d89", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:bd2fe94f3ec64d89", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:bd2fe94f3ec64d89", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:bd2fe94f3ec64d89", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:8a02a37013ec004d", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:8a02a37013ec004d", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:8a02a37013ec004d", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:8a02a37013ec004d", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:b8a00595f6c90c2d", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:b8a00595f6c90c2d", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:b8a00595f6c90c2d", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:b8a00595f6c90c2d", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:c5fc51c3d051eb7b", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:c5fc51c3d051eb7b", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:c5fc51c3d051eb7b", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:c5fc51c3d051eb7b", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:df92876c3244fe99", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:df92876c3244fe99", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:df92876c3244fe99", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:df92876c3244fe99", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:1537d76156c784c4", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:1537d76156c784c4", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:1537d76156c784c4", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:1537d76156c784c4", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:2daff146483aa3ed", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:2daff146483aa3ed", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:2daff146483aa3ed", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:2daff146483aa3ed", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:41b5494efc170bac", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:41b5494efc170bac", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:41b5494efc170bac", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:41b5494efc170bac", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:572a5e1546e4c285", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:572a5e1546e4c285", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:572a5e1546e4c285", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:572a5e1546e4c285", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:e1324f975c7e1c55", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:e1324f975c7e1c55", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:e1324f975c7e1c55", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:e1324f975c7e1c55", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:f237de9b55a180cf", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:f237de9b55a180cf", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:f237de9b55a180cf", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:f237de9b55a180cf", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:02e8b0a59519d332", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:02e8b0a59519d332", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:02e8b0a59519d332", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:02e8b0a59519d332", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:e2f711770a78ee3c", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:e2f711770a78ee3c", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:e2f711770a78ee3c", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:e2f711770a78ee3c", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:61b80ed4f8b7138b", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:61b80ed4f8b7138b", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:61b80ed4f8b7138b", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:61b80ed4f8b7138b", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:8933ea0d43090455", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:8933ea0d43090455", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:8933ea0d43090455", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:8933ea0d43090455", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:e55163fe990a35b8", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:e55163fe990a35b8", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:e55163fe990a35b8", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:e55163fe990a35b8", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:8e582ac01f0a4722", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:8e582ac01f0a4722", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:8e582ac01f0a4722", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:8e582ac01f0a4722", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:b8730e972bd990f9", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:b8730e972bd990f9", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:b8730e972bd990f9", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:b8730e972bd990f9", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:bd87e77e5bdcca76", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:bd87e77e5bdcca76", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:bd87e77e5bdcca76", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:bd87e77e5bdcca76", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:f92405e0bbb96d56", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:f92405e0bbb96d56", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:f92405e0bbb96d56", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:f92405e0bbb96d56", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:ConditionalExpression:f5d5a951381e35d2", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:ConditionalExpression:f5d5a951381e35d2", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:ConditionalExpression:f5d5a951381e35d2", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:ConditionalExpression:f5d5a951381e35d2", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:5d0f63658a8a3daa", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:5d0f63658a8a3daa", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:5d0f63658a8a3daa", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:5d0f63658a8a3daa", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:a40200dac7d42ba7", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:a40200dac7d42ba7", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:a40200dac7d42ba7", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:a40200dac7d42ba7", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:c2173f9b14a3fd10", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:c2173f9b14a3fd10", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:c2173f9b14a3fd10", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:c2173f9b14a3fd10", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:d94410752185574f", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:d94410752185574f", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:d94410752185574f", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:d94410752185574f", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:4ae31ffff8c4b4f3", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:4ae31ffff8c4b4f3", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:4ae31ffff8c4b4f3", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:4ae31ffff8c4b4f3", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:7c02222e4afb2871", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:7c02222e4afb2871", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:7c02222e4afb2871", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:7c02222e4afb2871", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:855cf3c21f18a38a", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:855cf3c21f18a38a", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:855cf3c21f18a38a", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:855cf3c21f18a38a", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:8ff36defcde3a6bf", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:8ff36defcde3a6bf", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:8ff36defcde3a6bf", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:8ff36defcde3a6bf", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:945aaf2d9c633122", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:945aaf2d9c633122", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:945aaf2d9c633122", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:945aaf2d9c633122", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:98554e201591453c", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:98554e201591453c", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:98554e201591453c", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:98554e201591453c", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:b5a0348134741b50", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:b5a0348134741b50", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:b5a0348134741b50", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:b5a0348134741b50", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:d561245c56bd4d59", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:d561245c56bd4d59", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:d561245c56bd4d59", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:d561245c56bd4d59", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:ebbb3f793e157af6", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:ebbb3f793e157af6", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:ebbb3f793e157af6", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:ebbb3f793e157af6", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:007847839945ed50", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:007847839945ed50", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:007847839945ed50", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:007847839945ed50", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:06b20eb8edee8716", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:06b20eb8edee8716", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:06b20eb8edee8716", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:06b20eb8edee8716", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:13592c46eb7bdc56", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:13592c46eb7bdc56", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:13592c46eb7bdc56", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:13592c46eb7bdc56", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:1f8bc3232d470327", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:1f8bc3232d470327", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:1f8bc3232d470327", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:1f8bc3232d470327", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:3977a717ee26b4c0", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:3977a717ee26b4c0", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:3977a717ee26b4c0", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:3977a717ee26b4c0", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:44dcfe328c3e1826", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:44dcfe328c3e1826", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:44dcfe328c3e1826", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:44dcfe328c3e1826", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:5f3c7ddd3c9e5299", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:5f3c7ddd3c9e5299", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:5f3c7ddd3c9e5299", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:5f3c7ddd3c9e5299", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:6be06653e9876d6e", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:6be06653e9876d6e", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:6be06653e9876d6e", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:6be06653e9876d6e", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:9287495dc2447ef3", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:9287495dc2447ef3", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:9287495dc2447ef3", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:9287495dc2447ef3", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:94cafd2f1f3e1c75", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:94cafd2f1f3e1c75", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:94cafd2f1f3e1c75", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:94cafd2f1f3e1c75", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:98293e4922127ad1", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:98293e4922127ad1", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:98293e4922127ad1", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:98293e4922127ad1", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:c47b24d096b3b9a7", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:c47b24d096b3b9a7", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:c47b24d096b3b9a7", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:c47b24d096b3b9a7", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d17b28be779777b8", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d17b28be779777b8", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d17b28be779777b8", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d17b28be779777b8", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d3c4e956c1948467", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d3c4e956c1948467", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d3c4e956c1948467", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d3c4e956c1948467", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:da64481645c2b4f6", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:da64481645c2b4f6", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:da64481645c2b4f6", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:da64481645c2b4f6", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:df82132ba73ce4e6", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:df82132ba73ce4e6", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:df82132ba73ce4e6", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:df82132ba73ce4e6", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:f7da58c441dab76a", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:f7da58c441dab76a", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:f7da58c441dab76a", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:f7da58c441dab76a", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:11eb1346655210ad", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:11eb1346655210ad", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:11eb1346655210ad", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:11eb1346655210ad", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:22b3c14914342b73", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:22b3c14914342b73", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:22b3c14914342b73", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:22b3c14914342b73", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:2d2c6d08639f12cd", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:2d2c6d08639f12cd", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:2d2c6d08639f12cd", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:2d2c6d08639f12cd", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:3fccfc6c117112bb", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:3fccfc6c117112bb", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:3fccfc6c117112bb", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:3fccfc6c117112bb", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:48515b2a8e3fb0be", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:48515b2a8e3fb0be", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:48515b2a8e3fb0be", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:48515b2a8e3fb0be", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:5b629e3f0402920d", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:5b629e3f0402920d", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:5b629e3f0402920d", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:5b629e3f0402920d", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:705b20be0817e601", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:705b20be0817e601", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:705b20be0817e601", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:705b20be0817e601", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:74b4829187561854", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:74b4829187561854", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:74b4829187561854", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:74b4829187561854", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:7c776ac90ed6c801", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:7c776ac90ed6c801", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:7c776ac90ed6c801", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:7c776ac90ed6c801", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:803ff61e52d117a8", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:803ff61e52d117a8", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:803ff61e52d117a8", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:803ff61e52d117a8", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:9536c93d464ca696", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:9536c93d464ca696", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:9536c93d464ca696", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:9536c93d464ca696", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:a4057d42367bac6b", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:a4057d42367bac6b", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:a4057d42367bac6b", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:a4057d42367bac6b", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:aa5e8006f832cd2d", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:aa5e8006f832cd2d", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:aa5e8006f832cd2d", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:aa5e8006f832cd2d", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:b607cbb3ca271db0", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:b607cbb3ca271db0", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:b607cbb3ca271db0", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:b607cbb3ca271db0", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:c5ebcdcf4164d255", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:c5ebcdcf4164d255", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:c5ebcdcf4164d255", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:c5ebcdcf4164d255", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:dbe2cff14f0a7242", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:dbe2cff14f0a7242", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:dbe2cff14f0a7242", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:dbe2cff14f0a7242", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:f7531bbd732c637e", + "familyId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:f7531bbd732c637e", + "rowId": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:f7531bbd732c637e", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:f7531bbd732c637e", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/AsciiBlock/AsciiBlock.tsx:AsciiBlock:ConditionalExpression:a3d1557b0a99751e", "familyId": "b34:branch:dashboard/src/oven/AsciiBlock/AsciiBlock.tsx:AsciiBlock:ConditionalExpression:a3d1557b0a99751e", @@ -1559,6 +2288,33 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/ChecklistCurrent/ChecklistCurrent.tsx:module:LogicalExpression:7a6632d7fc7334b8", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:2e07ddfa96aab527", + "familyId": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:2e07ddfa96aab527", + "rowId": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:2e07ddfa96aab527", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:2e07ddfa96aab527", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:3f3652279171acff", + "familyId": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:3f3652279171acff", + "rowId": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:3f3652279171acff", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:3f3652279171acff", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:4102ac1c73e332c8", + "familyId": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:4102ac1c73e332c8", + "rowId": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:4102ac1c73e332c8", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:4102ac1c73e332c8", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:module:ConditionalExpression:00e9febb41fb9293", "familyId": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:module:ConditionalExpression:00e9febb41fb9293", @@ -10209,30 +10965,57 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:5dbc7cb76ae26938", - "familyId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:5dbc7cb76ae26938", - "rowId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:5dbc7cb76ae26938", + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:139ce3999bd34b95", + "familyId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:139ce3999bd34b95", + "rowId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:139ce3999bd34b95", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:5dbc7cb76ae26938", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:139ce3999bd34b95", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:622a561a4a95288b", - "familyId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:622a561a4a95288b", - "rowId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:622a561a4a95288b", + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:25c2bd2ab09cf3b6", + "familyId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:25c2bd2ab09cf3b6", + "rowId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:25c2bd2ab09cf3b6", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:622a561a4a95288b", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:25c2bd2ab09cf3b6", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:cd1bf78e83e8998c", - "familyId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:cd1bf78e83e8998c", - "rowId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:cd1bf78e83e8998c", + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:8778c3eaee02a865", + "familyId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:8778c3eaee02a865", + "rowId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:8778c3eaee02a865", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:cd1bf78e83e8998c", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:8778c3eaee02a865", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:1ca2c32c22777c90", + "familyId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:1ca2c32c22777c90", + "rowId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:1ca2c32c22777c90", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:1ca2c32c22777c90", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:616f67096c39e513", + "familyId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:616f67096c39e513", + "rowId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:616f67096c39e513", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:616f67096c39e513", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:61c56e7fe806d325", + "familyId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:61c56e7fe806d325", + "rowId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:61c56e7fe806d325", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:61c56e7fe806d325", "mappingStatus": "gap" }, { @@ -10245,12 +11028,12 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:8b6418830b656eff", - "familyId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:8b6418830b656eff", - "rowId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:8b6418830b656eff", + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:aa474a2a03bfe367", + "familyId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:aa474a2a03bfe367", + "rowId": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:aa474a2a03bfe367", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:8b6418830b656eff", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:aa474a2a03bfe367", "mappingStatus": "gap" }, { @@ -11198,6 +11981,69 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/ImageTriptych/ImageTriptych.tsx:ImageTriptych:LogicalExpression:28395a0107f10d73", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:39eeec3add1ac5ec", + "familyId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:39eeec3add1ac5ec", + "rowId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:39eeec3add1ac5ec", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:39eeec3add1ac5ec", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:3d39402c33fe783a", + "familyId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:3d39402c33fe783a", + "rowId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:3d39402c33fe783a", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:3d39402c33fe783a", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:437fa8c05ae07c3b", + "familyId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:437fa8c05ae07c3b", + "rowId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:437fa8c05ae07c3b", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:437fa8c05ae07c3b", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:28cbf958e8e92b0d", + "familyId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:28cbf958e8e92b0d", + "rowId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:28cbf958e8e92b0d", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:28cbf958e8e92b0d", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:b34d755a3d9d24a9", + "familyId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:b34d755a3d9d24a9", + "rowId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:b34d755a3d9d24a9", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:b34d755a3d9d24a9", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d1fa5fe08a7dc0c9", + "familyId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d1fa5fe08a7dc0c9", + "rowId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d1fa5fe08a7dc0c9", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d1fa5fe08a7dc0c9", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d940a4b58d02a9e7", + "familyId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d940a4b58d02a9e7", + "rowId": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d940a4b58d02a9e7", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d940a4b58d02a9e7", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/LogTable/LogTable.tsx:LogTable:ConditionalExpression:4e3dabf51cd1fc67", "familyId": "b34:branch:dashboard/src/oven/LogTable/LogTable.tsx:LogTable:ConditionalExpression:4e3dabf51cd1fc67", @@ -13484,6 +14330,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/control-adapters.tsx:module:LogicalExpression:fc39e7631a5b14e8", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter:ConditionalExpression:2bc22669a5696d0b", + "familyId": "b34:branch:dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter:ConditionalExpression:2bc22669a5696d0b", + "rowId": "b34:branch:dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter:ConditionalExpression:2bc22669a5696d0b", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter:ConditionalExpression:2bc22669a5696d0b", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter:ConditionalExpression:7cc43de1322ef602", "familyId": "b34:branch:dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter:ConditionalExpression:7cc43de1322ef602", @@ -14069,15 +14924,6 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/differential-testing-theme-view.tsx:module:LogicalExpression:fbf6d4564b415e0c", "mappingStatus": "gap" }, - { - "id": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:2ce3337742db6ccc", - "familyId": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:2ce3337742db6ccc", - "rowId": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:2ce3337742db6ccc", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:2ce3337742db6ccc", - "mappingStatus": "gap" - }, { "id": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:3ae1acde645995de", "familyId": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:3ae1acde645995de", @@ -14123,6 +14969,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:c05afd10bd7c925f", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:cf811942c1b5778c", + "familyId": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:cf811942c1b5778c", + "rowId": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:cf811942c1b5778c", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:cf811942c1b5778c", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:0217fcbd88b18e00", "familyId": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:0217fcbd88b18e00", @@ -14133,12 +14988,12 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2f2c1c0c8395b9d4", - "familyId": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2f2c1c0c8395b9d4", - "rowId": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2f2c1c0c8395b9d4", + "id": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2e8e45f47d7d9a90", + "familyId": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2e8e45f47d7d9a90", + "rowId": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2e8e45f47d7d9a90", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2f2c1c0c8395b9d4", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2e8e45f47d7d9a90", "mappingStatus": "gap" }, { @@ -14537,6 +15392,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:09ce0d2f1a535c51", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:0b57ea3c6689d2f6", + "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:0b57ea3c6689d2f6", + "rowId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:0b57ea3c6689d2f6", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:0b57ea3c6689d2f6", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:0ca4cc9617a9103e", "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:0ca4cc9617a9103e", @@ -14582,6 +15446,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:23105b5a15b2e128", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:2ed2c44628ac80dd", + "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:2ed2c44628ac80dd", + "rowId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:2ed2c44628ac80dd", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:2ed2c44628ac80dd", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:30486bd775f6ef05", "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:30486bd775f6ef05", @@ -14645,6 +15518,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3d513e48e2ace2ae", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3d88b2c3266a4540", + "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3d88b2c3266a4540", + "rowId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3d88b2c3266a4540", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3d88b2c3266a4540", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3e553dc40a179dec", "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3e553dc40a179dec", @@ -14699,6 +15581,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:46da48f5b29785d7", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4b78900ec1977efb", + "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4b78900ec1977efb", + "rowId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4b78900ec1977efb", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4b78900ec1977efb", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4c5fbf04d3060e3b", "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4c5fbf04d3060e3b", @@ -14708,6 +15599,24 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4c5fbf04d3060e3b", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d3e797d424b4eaa", + "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d3e797d424b4eaa", + "rowId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d3e797d424b4eaa", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d3e797d424b4eaa", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d68ad0c6bd0f2f1", + "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d68ad0c6bd0f2f1", + "rowId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d68ad0c6bd0f2f1", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d68ad0c6bd0f2f1", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4fd67de79ca1c5d7", "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4fd67de79ca1c5d7", @@ -14933,6 +15842,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:9bb3970d515a2e96", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:a29f0b9a5972e081", + "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:a29f0b9a5972e081", + "rowId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:a29f0b9a5972e081", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:a29f0b9a5972e081", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:a53d23e370714496", "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:a53d23e370714496", @@ -14996,6 +15914,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:bc7fe550f55fba91", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:bfb49f6bdb565ae1", + "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:bfb49f6bdb565ae1", + "rowId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:bfb49f6bdb565ae1", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:bfb49f6bdb565ae1", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:c0fa3117f93e9928", "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:c0fa3117f93e9928", @@ -15068,6 +15995,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:e7e11ec9074d2643", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:fdfaa51bcb5f8827", + "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:fdfaa51bcb5f8827", + "rowId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:fdfaa51bcb5f8827", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:fdfaa51bcb5f8827", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:40b2646caf6e7a41", "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:40b2646caf6e7a41", @@ -15113,6 +16049,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:5fac925f303319c1", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:6bf505f9c18df2dc", + "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:6bf505f9c18df2dc", + "rowId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:6bf505f9c18df2dc", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:6bf505f9c18df2dc", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:8224dbd215dfe1e9", "familyId": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:8224dbd215dfe1e9", @@ -15428,6 +16373,24 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:scenarioSearch:LogicalExpression:c297f37e87777888", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:ConditionalExpression:b034468485727f9f", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:ConditionalExpression:b034468485727f9f", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:ConditionalExpression:b034468485727f9f", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:ConditionalExpression:b034468485727f9f", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:74155c24d82b03e3", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:74155c24d82b03e3", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:74155c24d82b03e3", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:74155c24d82b03e3", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:81c8ea6d16cba209", "familyId": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:81c8ea6d16cba209", @@ -15446,15 +16409,6 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:b5bedeb603105334", "mappingStatus": "gap" }, - { - "id": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:bb9a8596ffcc3709", - "familyId": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:bb9a8596ffcc3709", - "rowId": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:bb9a8596ffcc3709", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:bb9a8596ffcc3709", - "mappingStatus": "gap" - }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:d825cf30a48fb49e", "familyId": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:d825cf30a48fb49e", @@ -15878,6 +16832,24 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:4f993687f4a8f9ba", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:55a8e91b26703b67", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:55a8e91b26703b67", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:55a8e91b26703b67", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:55a8e91b26703b67", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:5847c052fe52b42c", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:5847c052fe52b42c", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:5847c052fe52b42c", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:5847c052fe52b42c", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:6f73b4d6eda24324", "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:6f73b4d6eda24324", @@ -15986,15 +16958,6 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:c363aa9d954776ae", "mappingStatus": "gap" }, - { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:c88dfad89abd1ea6", - "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:c88dfad89abd1ea6", - "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:c88dfad89abd1ea6", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:c88dfad89abd1ea6", - "mappingStatus": "gap" - }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:e5d4d9fd380832ab", "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:e5d4d9fd380832ab", @@ -16013,6 +16976,24 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f4682df3b7988e28", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f5d95943521c70c9", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f5d95943521c70c9", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f5d95943521c70c9", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f5d95943521c70c9", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:fb7bc6db5a947968", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:fb7bc6db5a947968", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:fb7bc6db5a947968", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:fb7bc6db5a947968", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:fe8c6137592e866c", "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:fe8c6137592e866c", @@ -16166,6 +17147,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:1ab42ffb838878ea", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:4ce0e95591d8166e", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:4ce0e95591d8166e", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:4ce0e95591d8166e", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:4ce0e95591d8166e", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:5e50bd428023e404", "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:5e50bd428023e404", @@ -16220,15 +17210,6 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:7a9b0e0a0bf1c08e", "mappingStatus": "gap" }, - { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:887d32479e5ac373", - "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:887d32479e5ac373", - "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:887d32479e5ac373", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:887d32479e5ac373", - "mappingStatus": "gap" - }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:8d47622d288b55a5", "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:8d47622d288b55a5", @@ -16256,6 +17237,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:996a10f85826063b", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9993c329adc6195b", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9993c329adc6195b", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9993c329adc6195b", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9993c329adc6195b", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:a18ba010fbbb62ec", "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:a18ba010fbbb62ec", @@ -16454,6 +17444,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:83136d864e9d4fba", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:b11770b9497382fe", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:b11770b9497382fe", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:b11770b9497382fe", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:b11770b9497382fe", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:d82752f2718126bb", "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:d82752f2718126bb", @@ -16482,12 +17481,12 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:a929af546604bfaa", - "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:a929af546604bfaa", - "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:a929af546604bfaa", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:b012bd24bbf5651b", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:b012bd24bbf5651b", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:b012bd24bbf5651b", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:a929af546604bfaa", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:b012bd24bbf5651b", "mappingStatus": "gap" }, { @@ -16607,6 +17606,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:61b3f80b45b0585c", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:69da497c6deca4cf", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:69da497c6deca4cf", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:69da497c6deca4cf", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:69da497c6deca4cf", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:6bdd93adccb94f8e", "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:6bdd93adccb94f8e", @@ -16617,21 +17625,21 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", - "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", - "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:848fce5a596f1aff", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:848fce5a596f1aff", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:848fce5a596f1aff", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:848fce5a596f1aff", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a3098ec8e3405f82", - "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a3098ec8e3405f82", - "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a3098ec8e3405f82", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a3098ec8e3405f82", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", "mappingStatus": "gap" }, { @@ -16680,21 +17688,30 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:ea8520efb21e83f8", - "familyId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:ea8520efb21e83f8", - "rowId": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:ea8520efb21e83f8", + "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:ea8520efb21e83f8", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", - "familyId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", - "rowId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", + "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:6efb650d1c22a884", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:6efb650d1c22a884", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:6efb650d1c22a884", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:6efb650d1c22a884", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:74f2f8fa5a7c4245", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:74f2f8fa5a7c4245", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:74f2f8fa5a7c4245", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:74f2f8fa5a7c4245", "mappingStatus": "gap" }, { @@ -16706,6 +17723,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:a07e29f92f8a6b76", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:IfStatement:ae216ce246107522", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:IfStatement:ae216ce246107522", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:IfStatement:ae216ce246107522", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:IfStatement:ae216ce246107522", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:725ed4374f5bbb1e", "familyId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:725ed4374f5bbb1e", @@ -16724,6 +17750,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:7b47ac21e3add061", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:ca102f31e96ee334", + "familyId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:ca102f31e96ee334", + "rowId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:ca102f31e96ee334", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:ca102f31e96ee334", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:selectCollection:ConditionalExpression:4f993687f4a8f9ba", "familyId": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:selectCollection:ConditionalExpression:4f993687f4a8f9ba", @@ -16814,6 +17849,33 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:selectMode:ConditionalExpression:ccaa52a945420673", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:052617db78e67b3e", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:052617db78e67b3e", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:052617db78e67b3e", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:052617db78e67b3e", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:b4524a7cc10fa52e", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:b4524a7cc10fa52e", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:b4524a7cc10fa52e", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:b4524a7cc10fa52e", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:LogicalExpression:25f15f29fc33edd8", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:LogicalExpression:25f15f29fc33edd8", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:LogicalExpression:25f15f29fc33edd8", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:LogicalExpression:25f15f29fc33edd8", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenDocument:LogicalExpression:0217fcbd88b18e00", "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenDocument:LogicalExpression:0217fcbd88b18e00", @@ -16832,6 +17894,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenDocument:LogicalExpression:541de9ba8d52d5bf", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:IfStatement:12957f0abdd8346b", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:IfStatement:12957f0abdd8346b", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:IfStatement:12957f0abdd8346b", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:IfStatement:12957f0abdd8346b", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:0217fcbd88b18e00", "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:0217fcbd88b18e00", @@ -16841,6 +17912,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:0217fcbd88b18e00", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:15b3c0b681f25783", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:15b3c0b681f25783", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:15b3c0b681f25783", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:15b3c0b681f25783", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:1c52a102506149b3", "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:1c52a102506149b3", @@ -17147,6 +18227,24 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:7f382864dfd4c1e1", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:7f382864dfd4c1e1:1", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:7f382864dfd4c1e1:1", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:7f382864dfd4c1e1:1", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:7f382864dfd4c1e1:1", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:88a71376bd465bae", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:88a71376bd465bae", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:88a71376bd465bae", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:88a71376bd465bae", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:97ee8237c820c21d", "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:97ee8237c820c21d", @@ -17165,15 +18263,6 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:ad933f06fec6dd22", "mappingStatus": "gap" }, - { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:b7bc1169a2494266", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:b7bc1169a2494266", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:b7bc1169a2494266", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:b7bc1169a2494266", - "mappingStatus": "gap" - }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:0a393a50d3ea29ed", "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:0a393a50d3ea29ed", @@ -17184,30 +18273,30 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:12d28ad7a93133d3", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:12d28ad7a93133d3", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:12d28ad7a93133d3", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1469e399f6ad7bc6", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1469e399f6ad7bc6", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1469e399f6ad7bc6", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:12d28ad7a93133d3", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1469e399f6ad7bc6", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1469e399f6ad7bc6", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1469e399f6ad7bc6", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1469e399f6ad7bc6", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1b146cc70f927c38", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1b146cc70f927c38", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1b146cc70f927c38", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1469e399f6ad7bc6", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1b146cc70f927c38", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:20585287984dd9c1", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:20585287984dd9c1", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:20585287984dd9c1", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:2069312d4c66853f", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:2069312d4c66853f", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:2069312d4c66853f", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:20585287984dd9c1", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:2069312d4c66853f", "mappingStatus": "gap" }, { @@ -17228,6 +18317,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:3964d6fb6bcb9769", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:3bffa6f115e3f864", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:3bffa6f115e3f864", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:3bffa6f115e3f864", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:3bffa6f115e3f864", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5152465376a9c911", "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5152465376a9c911", @@ -17246,15 +18344,6 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:597b0aae4af34d5e", "mappingStatus": "gap" }, - { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5e7967abefb3bff9", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5e7967abefb3bff9", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5e7967abefb3bff9", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5e7967abefb3bff9", - "mappingStatus": "gap" - }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:6b1c6039aa38946d", "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:6b1c6039aa38946d", @@ -17265,21 +18354,21 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:8bcb1228c6d36d4c", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:8bcb1228c6d36d4c", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:8bcb1228c6d36d4c", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:8bcb1228c6d36d4c", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:a4870193de2d95be", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:a4870193de2d95be", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:a4870193de2d95be", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:a4870193de2d95be", "mappingStatus": "gap" }, { @@ -17291,6 +18380,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:bc77ef85f7930463", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:ccfdba79ee088030", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:ccfdba79ee088030", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:ccfdba79ee088030", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:ccfdba79ee088030", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:f4e0aadda15a4518", "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:f4e0aadda15a4518", @@ -17363,6 +18461,24 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:0246adb2e74a7923", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:15b3c0b681f25783", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:15b3c0b681f25783", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:15b3c0b681f25783", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:15b3c0b681f25783", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:1f60a643f29f64f0", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:1f60a643f29f64f0", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:1f60a643f29f64f0", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:1f60a643f29f64f0", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:5486e403476c5820", "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:5486e403476c5820", @@ -17409,48 +18525,39 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:f2dba9684502413d", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:f2dba9684502413d", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:f2dba9684502413d", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:f2dba9684502413d", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572", - "mappingStatus": "gap" - }, - { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572:1", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572:1", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572:1", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572:1", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:module:ConditionalExpression:2368494c19944a82", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:module:ConditionalExpression:2368494c19944a82", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:module:ConditionalExpression:2368494c19944a82", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:module:ConditionalExpression:2368494c19944a82", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239:1", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239:1", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239:1", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2773ca4334b3ed09", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2773ca4334b3ed09", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2773ca4334b3ed09", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239:1", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2773ca4334b3ed09", "mappingStatus": "gap" }, { @@ -17472,39 +18579,39 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:4b58356b67031944", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:4b58356b67031944", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:4b58356b67031944", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:43dafcf33b7efde7", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:43dafcf33b7efde7", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:43dafcf33b7efde7", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:4b58356b67031944", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:43dafcf33b7efde7", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6501af3966fd5b7d", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6501af3966fd5b7d", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6501af3966fd5b7d", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6501af3966fd5b7d", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:663381afde3a27b9", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:663381afde3a27b9", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:663381afde3a27b9", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:720b9ba1596aa0a5", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:720b9ba1596aa0a5", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:720b9ba1596aa0a5", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:663381afde3a27b9", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:720b9ba1596aa0a5", "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:8e3d9be74ca04c30", + "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:8e3d9be74ca04c30", + "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:8e3d9be74ca04c30", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:8e3d9be74ca04c30", "mappingStatus": "gap" }, { @@ -17516,15 +18623,6 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:b2859638173d6220", "mappingStatus": "gap" }, - { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:f6355a08580bd4ed", - "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:f6355a08580bd4ed", - "rowId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:f6355a08580bd4ed", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:f6355a08580bd4ed", - "mappingStatus": "gap" - }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:fb318987dcc2e6e0", "familyId": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:fb318987dcc2e6e0", @@ -17804,6 +18902,15 @@ "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/theme-registry.ts:getOvenTheme:ConditionalExpression:0241e9c1eff263e2", "mappingStatus": "gap" }, + { + "id": "b34:branch:dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter:IfStatement:4aa2aac2689a6460", + "familyId": "b34:branch:dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter:IfStatement:4aa2aac2689a6460", + "rowId": "b34:branch:dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter:IfStatement:4aa2aac2689a6460", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter:IfStatement:4aa2aac2689a6460", + "mappingStatus": "gap" + }, { "id": "b34:branch:dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter:IfStatement:7f4e02b0deaaaf77", "familyId": "b34:branch:dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter:IfStatement:7f4e02b0deaaaf77", @@ -18201,12 +19308,21 @@ "mappingStatus": "gap" }, { - "id": "b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:LogicalExpression:d2826138fda42cf5", - "familyId": "b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:LogicalExpression:d2826138fda42cf5", - "rowId": "b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:LogicalExpression:d2826138fda42cf5", + "id": "b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:29f4244244c3e4c7", + "familyId": "b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:29f4244244c3e4c7", + "rowId": "b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:29f4244244c3e4c7", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:29f4244244c3e4c7", + "mappingStatus": "gap" + }, + { + "id": "b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:97380eef91c0afa1", + "familyId": "b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:97380eef91c0afa1", + "rowId": "b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:97380eef91c0afa1", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:LogicalExpression:d2826138fda42cf5", + "evidenceTarget": "atom:b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:97380eef91c0afa1", "mappingStatus": "gap" }, { @@ -20675,6 +21791,51 @@ "evidenceTarget": "atom:b34:branch:src/ovens/oven-value-runtime.mjs:resolveOvenPointer:LogicalExpression:ffaad42e1e73bd69", "mappingStatus": "gap" }, + { + "id": "b34:registry:componentRegistry:AgentMonitorActivityChart", + "familyId": "b34:registry:componentRegistry:AgentMonitorActivityChart", + "rowId": "b34:registry:componentRegistry:AgentMonitorActivityChart", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:registry:componentRegistry:AgentMonitorActivityChart", + "mappingStatus": "gap" + }, + { + "id": "b34:registry:componentRegistry:AgentMonitorEventCard", + "familyId": "b34:registry:componentRegistry:AgentMonitorEventCard", + "rowId": "b34:registry:componentRegistry:AgentMonitorEventCard", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:registry:componentRegistry:AgentMonitorEventCard", + "mappingStatus": "gap" + }, + { + "id": "b34:registry:componentRegistry:Alert", + "familyId": "b34:registry:componentRegistry:Alert", + "rowId": "b34:registry:componentRegistry:Alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:registry:componentRegistry:Alert", + "mappingStatus": "gap" + }, + { + "id": "b34:registry:componentRegistry:AlertDescription", + "familyId": "b34:registry:componentRegistry:AlertDescription", + "rowId": "b34:registry:componentRegistry:AlertDescription", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:registry:componentRegistry:AlertDescription", + "mappingStatus": "gap" + }, + { + "id": "b34:registry:componentRegistry:AlertTitle", + "familyId": "b34:registry:componentRegistry:AlertTitle", + "rowId": "b34:registry:componentRegistry:AlertTitle", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:b34:registry:componentRegistry:AlertTitle", + "mappingStatus": "gap" + }, { "id": "b34:registry:componentRegistry:Box", "familyId": "b34:registry:componentRegistry:Box", @@ -21368,15 +22529,6 @@ "evidenceTarget": "atom:b34:theme:checklist:region:0:kind:kpi-strip", "mappingStatus": "gap" }, - { - "id": "b34:theme:checklist:region:1:className", - "familyId": "b34:theme:checklist:region:1:className", - "rowId": "b34:theme:checklist:region:1:className", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:theme:checklist:region:1:className", - "mappingStatus": "gap" - }, { "id": "b34:theme:checklist:region:1:element", "familyId": "b34:theme:checklist:region:1:element", @@ -21387,57 +22539,12 @@ "mappingStatus": "gap" }, { - "id": "b34:theme:checklist:region:1:kind:checklist-burn-panel", - "familyId": "b34:theme:checklist:region:1:kind:checklist-burn-panel", - "rowId": "b34:theme:checklist:region:1:kind:checklist-burn-panel", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:theme:checklist:region:1:kind:checklist-burn-panel", - "mappingStatus": "gap" - }, - { - "id": "b34:theme:checklist:region:1:kind:checklist-current", - "familyId": "b34:theme:checklist:region:1:kind:checklist-current", - "rowId": "b34:theme:checklist:region:1:kind:checklist-current", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:theme:checklist:region:1:kind:checklist-current", - "mappingStatus": "gap" - }, - { - "id": "b34:theme:checklist:region:1:kind:checklist-ledger", - "familyId": "b34:theme:checklist:region:1:kind:checklist-ledger", - "rowId": "b34:theme:checklist:region:1:kind:checklist-ledger", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:theme:checklist:region:1:kind:checklist-ledger", - "mappingStatus": "gap" - }, - { - "id": "b34:theme:checklist:region:1:props", - "familyId": "b34:theme:checklist:region:1:props", - "rowId": "b34:theme:checklist:region:1:props", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:theme:checklist:region:1:props", - "mappingStatus": "gap" - }, - { - "id": "b34:theme:checklist:region:2:element", - "familyId": "b34:theme:checklist:region:2:element", - "rowId": "b34:theme:checklist:region:2:element", - "kind": "row", - "owner": null, - "evidenceTarget": "atom:b34:theme:checklist:region:2:element", - "mappingStatus": "gap" - }, - { - "id": "b34:theme:checklist:region:2:kind:checklist-event-cards", - "familyId": "b34:theme:checklist:region:2:kind:checklist-event-cards", - "rowId": "b34:theme:checklist:region:2:kind:checklist-event-cards", + "id": "b34:theme:checklist:region:1:kind:checklist-tabs", + "familyId": "b34:theme:checklist:region:1:kind:checklist-tabs", + "rowId": "b34:theme:checklist:region:1:kind:checklist-tabs", "kind": "row", "owner": null, - "evidenceTarget": "atom:b34:theme:checklist:region:2:kind:checklist-event-cards", + "evidenceTarget": "atom:b34:theme:checklist:region:1:kind:checklist-tabs", "mappingStatus": "gap" }, { @@ -21827,6 +22934,231 @@ "evidenceTarget": "atom:b34:theme:visual-parity:view", "mappingStatus": "gap" }, + { + "id": "compiled:attribute:agent-monitor-activity-chart:fallback", + "familyId": "compiled:attribute:agent-monitor-activity-chart:fallback", + "rowId": "compiled:attribute:agent-monitor-activity-chart:fallback", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:agent-monitor-activity-chart:fallback", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:agent-monitor-activity-chart:format", + "familyId": "compiled:attribute:agent-monitor-activity-chart:format", + "rowId": "compiled:attribute:agent-monitor-activity-chart:format", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:agent-monitor-activity-chart:format", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:agent-monitor-activity-chart:id", + "familyId": "compiled:attribute:agent-monitor-activity-chart:id", + "rowId": "compiled:attribute:agent-monitor-activity-chart:id", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:agent-monitor-activity-chart:id", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:agent-monitor-activity-chart:optional", + "familyId": "compiled:attribute:agent-monitor-activity-chart:optional", + "rowId": "compiled:attribute:agent-monitor-activity-chart:optional", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:agent-monitor-activity-chart:optional", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:agent-monitor-activity-chart:slot", + "familyId": "compiled:attribute:agent-monitor-activity-chart:slot", + "rowId": "compiled:attribute:agent-monitor-activity-chart:slot", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:agent-monitor-activity-chart:slot", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:agent-monitor-activity-chart:source", + "familyId": "compiled:attribute:agent-monitor-activity-chart:source", + "rowId": "compiled:attribute:agent-monitor-activity-chart:source", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:agent-monitor-activity-chart:source", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:agent-monitor-event-card:fallback", + "familyId": "compiled:attribute:agent-monitor-event-card:fallback", + "rowId": "compiled:attribute:agent-monitor-event-card:fallback", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:agent-monitor-event-card:fallback", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:agent-monitor-event-card:format", + "familyId": "compiled:attribute:agent-monitor-event-card:format", + "rowId": "compiled:attribute:agent-monitor-event-card:format", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:agent-monitor-event-card:format", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:agent-monitor-event-card:id", + "familyId": "compiled:attribute:agent-monitor-event-card:id", + "rowId": "compiled:attribute:agent-monitor-event-card:id", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:agent-monitor-event-card:id", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:agent-monitor-event-card:optional", + "familyId": "compiled:attribute:agent-monitor-event-card:optional", + "rowId": "compiled:attribute:agent-monitor-event-card:optional", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:agent-monitor-event-card:optional", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:agent-monitor-event-card:slot", + "familyId": "compiled:attribute:agent-monitor-event-card:slot", + "rowId": "compiled:attribute:agent-monitor-event-card:slot", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:agent-monitor-event-card:slot", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:agent-monitor-event-card:source", + "familyId": "compiled:attribute:agent-monitor-event-card:source", + "rowId": "compiled:attribute:agent-monitor-event-card:source", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:agent-monitor-event-card:source", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert-description:fallback", + "familyId": "compiled:attribute:alert-description:fallback", + "rowId": "compiled:attribute:alert-description:fallback", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert-description:fallback", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert-description:format", + "familyId": "compiled:attribute:alert-description:format", + "rowId": "compiled:attribute:alert-description:format", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert-description:format", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert-description:optional", + "familyId": "compiled:attribute:alert-description:optional", + "rowId": "compiled:attribute:alert-description:optional", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert-description:optional", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert-description:slot", + "familyId": "compiled:attribute:alert-description:slot", + "rowId": "compiled:attribute:alert-description:slot", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert-description:slot", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert-description:source", + "familyId": "compiled:attribute:alert-description:source", + "rowId": "compiled:attribute:alert-description:source", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert-description:source", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert-title:fallback", + "familyId": "compiled:attribute:alert-title:fallback", + "rowId": "compiled:attribute:alert-title:fallback", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert-title:fallback", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert-title:format", + "familyId": "compiled:attribute:alert-title:format", + "rowId": "compiled:attribute:alert-title:format", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert-title:format", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert-title:optional", + "familyId": "compiled:attribute:alert-title:optional", + "rowId": "compiled:attribute:alert-title:optional", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert-title:optional", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert-title:slot", + "familyId": "compiled:attribute:alert-title:slot", + "rowId": "compiled:attribute:alert-title:slot", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert-title:slot", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert-title:source", + "familyId": "compiled:attribute:alert-title:source", + "rowId": "compiled:attribute:alert-title:source", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert-title:source", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert:id", + "familyId": "compiled:attribute:alert:id", + "rowId": "compiled:attribute:alert:id", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert:id", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert:role", + "familyId": "compiled:attribute:alert:role", + "rowId": "compiled:attribute:alert:role", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert:role", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:alert:variant", + "familyId": "compiled:attribute:alert:variant", + "rowId": "compiled:attribute:alert:variant", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:alert:variant", + "mappingStatus": "gap" + }, { "id": "compiled:attribute:ascii-block:fallback", "familyId": "compiled:attribute:ascii-block:fallback", @@ -22223,6 +23555,51 @@ "evidenceTarget": "atom:compiled:attribute:checklist-ledger:source", "mappingStatus": "gap" }, + { + "id": "compiled:attribute:checklist-tabs:fallback", + "familyId": "compiled:attribute:checklist-tabs:fallback", + "rowId": "compiled:attribute:checklist-tabs:fallback", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:checklist-tabs:fallback", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:checklist-tabs:format", + "familyId": "compiled:attribute:checklist-tabs:format", + "rowId": "compiled:attribute:checklist-tabs:format", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:checklist-tabs:format", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:checklist-tabs:optional", + "familyId": "compiled:attribute:checklist-tabs:optional", + "rowId": "compiled:attribute:checklist-tabs:optional", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:checklist-tabs:optional", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:checklist-tabs:slot", + "familyId": "compiled:attribute:checklist-tabs:slot", + "rowId": "compiled:attribute:checklist-tabs:slot", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:checklist-tabs:slot", + "mappingStatus": "gap" + }, + { + "id": "compiled:attribute:checklist-tabs:source", + "familyId": "compiled:attribute:checklist-tabs:source", + "rowId": "compiled:attribute:checklist-tabs:source", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:checklist-tabs:source", + "mappingStatus": "gap" + }, { "id": "compiled:attribute:checklist-workspace:fallback", "familyId": "compiled:attribute:checklist-workspace:fallback", @@ -23411,6 +24788,15 @@ "evidenceTarget": "atom:compiled:attribute:pagination:page-sizes", "mappingStatus": "gap" }, + { + "id": "compiled:attribute:pagination:subject", + "familyId": "compiled:attribute:pagination:subject", + "rowId": "compiled:attribute:pagination:subject", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:pagination:subject", + "mappingStatus": "gap" + }, { "id": "compiled:attribute:panel:column", "familyId": "compiled:attribute:panel:column", @@ -23699,6 +25085,15 @@ "evidenceTarget": "atom:compiled:attribute:section-header:class", "mappingStatus": "gap" }, + { + "id": "compiled:attribute:section-header:collection-from", + "familyId": "compiled:attribute:section-header:collection-from", + "rowId": "compiled:attribute:section-header:collection-from", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:attribute:section-header:collection-from", + "mappingStatus": "gap" + }, { "id": "compiled:attribute:section-header:fallback", "familyId": "compiled:attribute:section-header:fallback", @@ -24113,6 +25508,24 @@ "evidenceTarget": "atom:compiled:control-transition:sort-toggle", "mappingStatus": "gap" }, + { + "id": "compiled:edge:alert>alert-description", + "familyId": "compiled:edge:alert>alert-description", + "rowId": "compiled:edge:alert>alert-description", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:alert>alert-description", + "mappingStatus": "gap" + }, + { + "id": "compiled:edge:alert>alert-title", + "familyId": "compiled:edge:alert>alert-title", + "rowId": "compiled:edge:alert>alert-title", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:alert>alert-title", + "mappingStatus": "gap" + }, { "id": "compiled:edge:ascii-block>bind", "familyId": "compiled:edge:ascii-block>bind", @@ -24122,6 +25535,24 @@ "evidenceTarget": "atom:compiled:edge:ascii-block>bind", "mappingStatus": "gap" }, + { + "id": "compiled:edge:box>agent-monitor-activity-chart", + "familyId": "compiled:edge:box>agent-monitor-activity-chart", + "rowId": "compiled:edge:box>agent-monitor-activity-chart", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:box>agent-monitor-activity-chart", + "mappingStatus": "gap" + }, + { + "id": "compiled:edge:box>alert", + "familyId": "compiled:edge:box>alert", + "rowId": "compiled:edge:box>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:box>alert", + "mappingStatus": "gap" + }, { "id": "compiled:edge:box>ascii-block", "familyId": "compiled:edge:box>ascii-block", @@ -24167,6 +25598,15 @@ "evidenceTarget": "atom:compiled:edge:box>checklist-ledger", "mappingStatus": "gap" }, + { + "id": "compiled:edge:box>checklist-tabs", + "familyId": "compiled:edge:box>checklist-tabs", + "rowId": "compiled:edge:box>checklist-tabs", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:box>checklist-tabs", + "mappingStatus": "gap" + }, { "id": "compiled:edge:box>checklist-workspace", "familyId": "compiled:edge:box>checklist-workspace", @@ -24320,6 +25760,15 @@ "evidenceTarget": "atom:compiled:edge:box>metric-tiles", "mappingStatus": "gap" }, + { + "id": "compiled:edge:box>mode-toggle", + "familyId": "compiled:edge:box>mode-toggle", + "rowId": "compiled:edge:box>mode-toggle", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:box>mode-toggle", + "mappingStatus": "gap" + }, { "id": "compiled:edge:box>panel", "familyId": "compiled:edge:box>panel", @@ -24374,6 +25823,15 @@ "evidenceTarget": "atom:compiled:edge:box>verdict-header", "mappingStatus": "gap" }, + { + "id": "compiled:edge:case>alert", + "familyId": "compiled:edge:case>alert", + "rowId": "compiled:edge:case>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:case>alert", + "mappingStatus": "gap" + }, { "id": "compiled:edge:case>collection", "familyId": "compiled:edge:case>collection", @@ -24608,6 +26066,24 @@ "evidenceTarget": "atom:compiled:edge:domain-note>bind", "mappingStatus": "gap" }, + { + "id": "compiled:edge:each>agent-monitor-event-card", + "familyId": "compiled:edge:each>agent-monitor-event-card", + "rowId": "compiled:edge:each>agent-monitor-event-card", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:each>agent-monitor-event-card", + "mappingStatus": "gap" + }, + { + "id": "compiled:edge:each>alert", + "familyId": "compiled:edge:each>alert", + "rowId": "compiled:edge:each>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:each>alert", + "mappingStatus": "gap" + }, { "id": "compiled:edge:each>ascii-block", "familyId": "compiled:edge:each>ascii-block", @@ -24815,6 +26291,15 @@ "evidenceTarget": "atom:compiled:edge:frame-card>text", "mappingStatus": "gap" }, + { + "id": "compiled:edge:grid>alert", + "familyId": "compiled:edge:grid>alert", + "rowId": "compiled:edge:grid>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:grid>alert", + "mappingStatus": "gap" + }, { "id": "compiled:edge:grid>ascii-block", "familyId": "compiled:edge:grid>ascii-block", @@ -24860,6 +26345,15 @@ "evidenceTarget": "atom:compiled:edge:grid>checklist-ledger", "mappingStatus": "gap" }, + { + "id": "compiled:edge:grid>checklist-tabs", + "familyId": "compiled:edge:grid>checklist-tabs", + "rowId": "compiled:edge:grid>checklist-tabs", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:grid>checklist-tabs", + "mappingStatus": "gap" + }, { "id": "compiled:edge:grid>checklist-workspace", "familyId": "compiled:edge:grid>checklist-workspace", @@ -25076,6 +26570,24 @@ "evidenceTarget": "atom:compiled:edge:mode-toggle>option", "mappingStatus": "gap" }, + { + "id": "compiled:edge:oven>agent-monitor-activity-chart", + "familyId": "compiled:edge:oven>agent-monitor-activity-chart", + "rowId": "compiled:edge:oven>agent-monitor-activity-chart", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:oven>agent-monitor-activity-chart", + "mappingStatus": "gap" + }, + { + "id": "compiled:edge:oven>alert", + "familyId": "compiled:edge:oven>alert", + "rowId": "compiled:edge:oven>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:oven>alert", + "mappingStatus": "gap" + }, { "id": "compiled:edge:oven>ascii-block", "familyId": "compiled:edge:oven>ascii-block", @@ -25130,6 +26642,15 @@ "evidenceTarget": "atom:compiled:edge:oven>checklist-ledger", "mappingStatus": "gap" }, + { + "id": "compiled:edge:oven>checklist-tabs", + "familyId": "compiled:edge:oven>checklist-tabs", + "rowId": "compiled:edge:oven>checklist-tabs", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:oven>checklist-tabs", + "mappingStatus": "gap" + }, { "id": "compiled:edge:oven>checklist-workspace", "familyId": "compiled:edge:oven>checklist-workspace", @@ -25391,6 +26912,15 @@ "evidenceTarget": "atom:compiled:edge:oven>verdict-header", "mappingStatus": "gap" }, + { + "id": "compiled:edge:panel>alert", + "familyId": "compiled:edge:panel>alert", + "rowId": "compiled:edge:panel>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:panel>alert", + "mappingStatus": "gap" + }, { "id": "compiled:edge:panel>ascii-block", "familyId": "compiled:edge:panel>ascii-block", @@ -25436,6 +26966,15 @@ "evidenceTarget": "atom:compiled:edge:panel>checklist-ledger", "mappingStatus": "gap" }, + { + "id": "compiled:edge:panel>checklist-tabs", + "familyId": "compiled:edge:panel>checklist-tabs", + "rowId": "compiled:edge:panel>checklist-tabs", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:panel>checklist-tabs", + "mappingStatus": "gap" + }, { "id": "compiled:edge:panel>checklist-workspace", "familyId": "compiled:edge:panel>checklist-workspace", @@ -25589,6 +27128,15 @@ "evidenceTarget": "atom:compiled:edge:section-header>text", "mappingStatus": "gap" }, + { + "id": "compiled:edge:stack>alert", + "familyId": "compiled:edge:stack>alert", + "rowId": "compiled:edge:stack>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:stack>alert", + "mappingStatus": "gap" + }, { "id": "compiled:edge:stack>ascii-block", "familyId": "compiled:edge:stack>ascii-block", @@ -25634,6 +27182,15 @@ "evidenceTarget": "atom:compiled:edge:stack>checklist-ledger", "mappingStatus": "gap" }, + { + "id": "compiled:edge:stack>checklist-tabs", + "familyId": "compiled:edge:stack>checklist-tabs", + "rowId": "compiled:edge:stack>checklist-tabs", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:edge:stack>checklist-tabs", + "mappingStatus": "gap" + }, { "id": "compiled:edge:stack>checklist-workspace", "familyId": "compiled:edge:stack>checklist-workspace", @@ -25787,6 +27344,51 @@ "evidenceTarget": "atom:compiled:edge:verdict-header>bind", "mappingStatus": "gap" }, + { + "id": "compiled:element:agent-monitor-activity-chart", + "familyId": "compiled:element:agent-monitor-activity-chart", + "rowId": "compiled:element:agent-monitor-activity-chart", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:element:agent-monitor-activity-chart", + "mappingStatus": "gap" + }, + { + "id": "compiled:element:agent-monitor-event-card", + "familyId": "compiled:element:agent-monitor-event-card", + "rowId": "compiled:element:agent-monitor-event-card", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:element:agent-monitor-event-card", + "mappingStatus": "gap" + }, + { + "id": "compiled:element:alert", + "familyId": "compiled:element:alert", + "rowId": "compiled:element:alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:element:alert", + "mappingStatus": "gap" + }, + { + "id": "compiled:element:alert-description", + "familyId": "compiled:element:alert-description", + "rowId": "compiled:element:alert-description", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:element:alert-description", + "mappingStatus": "gap" + }, + { + "id": "compiled:element:alert-title", + "familyId": "compiled:element:alert-title", + "rowId": "compiled:element:alert-title", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:element:alert-title", + "mappingStatus": "gap" + }, { "id": "compiled:element:ascii-block", "familyId": "compiled:element:ascii-block", @@ -25868,6 +27470,15 @@ "evidenceTarget": "atom:compiled:element:checklist-ledger", "mappingStatus": "gap" }, + { + "id": "compiled:element:checklist-tabs", + "familyId": "compiled:element:checklist-tabs", + "rowId": "compiled:element:checklist-tabs", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:element:checklist-tabs", + "mappingStatus": "gap" + }, { "id": "compiled:element:checklist-workspace", "familyId": "compiled:element:checklist-workspace", @@ -26273,6 +27884,51 @@ "evidenceTarget": "atom:compiled:element:waffle-metric", "mappingStatus": "implemented" }, + { + "id": "compiled:filter:command", + "familyId": "compiled:filter:command", + "rowId": "compiled:filter:command", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:filter:command", + "mappingStatus": "gap" + }, + { + "id": "compiled:filter:diff", + "familyId": "compiled:filter:diff", + "rowId": "compiled:filter:diff", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:filter:diff", + "mappingStatus": "gap" + }, + { + "id": "compiled:filter:failed", + "familyId": "compiled:filter:failed", + "rowId": "compiled:filter:failed", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:filter:failed", + "mappingStatus": "gap" + }, + { + "id": "compiled:filter:lifecycle", + "familyId": "compiled:filter:lifecycle", + "rowId": "compiled:filter:lifecycle", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:filter:lifecycle", + "mappingStatus": "gap" + }, + { + "id": "compiled:filter:message", + "familyId": "compiled:filter:message", + "rowId": "compiled:filter:message", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:filter:message", + "mappingStatus": "gap" + }, { "id": "compiled:filter:non-pass", "familyId": "compiled:filter:non-pass", @@ -26282,6 +27938,15 @@ "evidenceTarget": "atom:compiled:filter:non-pass", "mappingStatus": "gap" }, + { + "id": "compiled:filter:tool", + "familyId": "compiled:filter:tool", + "rowId": "compiled:filter:tool", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:compiled:filter:tool", + "mappingStatus": "gap" + }, { "id": "compiled:format:delta", "familyId": "compiled:format:delta", @@ -26516,6 +28181,231 @@ "evidenceTarget": "atom:compiled:theme:visual-parity", "mappingStatus": "gap" }, + { + "id": "grammar:attribute:agent-monitor-activity-chart:fallback", + "familyId": "grammar:attribute:agent-monitor-activity-chart:fallback", + "rowId": "grammar:attribute:agent-monitor-activity-chart:fallback", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:agent-monitor-activity-chart:fallback", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:agent-monitor-activity-chart:format", + "familyId": "grammar:attribute:agent-monitor-activity-chart:format", + "rowId": "grammar:attribute:agent-monitor-activity-chart:format", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:agent-monitor-activity-chart:format", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:agent-monitor-activity-chart:id", + "familyId": "grammar:attribute:agent-monitor-activity-chart:id", + "rowId": "grammar:attribute:agent-monitor-activity-chart:id", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:agent-monitor-activity-chart:id", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:agent-monitor-activity-chart:optional", + "familyId": "grammar:attribute:agent-monitor-activity-chart:optional", + "rowId": "grammar:attribute:agent-monitor-activity-chart:optional", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:agent-monitor-activity-chart:optional", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:agent-monitor-activity-chart:slot", + "familyId": "grammar:attribute:agent-monitor-activity-chart:slot", + "rowId": "grammar:attribute:agent-monitor-activity-chart:slot", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:agent-monitor-activity-chart:slot", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:agent-monitor-activity-chart:source", + "familyId": "grammar:attribute:agent-monitor-activity-chart:source", + "rowId": "grammar:attribute:agent-monitor-activity-chart:source", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:agent-monitor-activity-chart:source", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:agent-monitor-event-card:fallback", + "familyId": "grammar:attribute:agent-monitor-event-card:fallback", + "rowId": "grammar:attribute:agent-monitor-event-card:fallback", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:agent-monitor-event-card:fallback", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:agent-monitor-event-card:format", + "familyId": "grammar:attribute:agent-monitor-event-card:format", + "rowId": "grammar:attribute:agent-monitor-event-card:format", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:agent-monitor-event-card:format", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:agent-monitor-event-card:id", + "familyId": "grammar:attribute:agent-monitor-event-card:id", + "rowId": "grammar:attribute:agent-monitor-event-card:id", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:agent-monitor-event-card:id", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:agent-monitor-event-card:optional", + "familyId": "grammar:attribute:agent-monitor-event-card:optional", + "rowId": "grammar:attribute:agent-monitor-event-card:optional", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:agent-monitor-event-card:optional", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:agent-monitor-event-card:slot", + "familyId": "grammar:attribute:agent-monitor-event-card:slot", + "rowId": "grammar:attribute:agent-monitor-event-card:slot", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:agent-monitor-event-card:slot", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:agent-monitor-event-card:source", + "familyId": "grammar:attribute:agent-monitor-event-card:source", + "rowId": "grammar:attribute:agent-monitor-event-card:source", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:agent-monitor-event-card:source", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert-description:fallback", + "familyId": "grammar:attribute:alert-description:fallback", + "rowId": "grammar:attribute:alert-description:fallback", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert-description:fallback", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert-description:format", + "familyId": "grammar:attribute:alert-description:format", + "rowId": "grammar:attribute:alert-description:format", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert-description:format", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert-description:optional", + "familyId": "grammar:attribute:alert-description:optional", + "rowId": "grammar:attribute:alert-description:optional", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert-description:optional", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert-description:slot", + "familyId": "grammar:attribute:alert-description:slot", + "rowId": "grammar:attribute:alert-description:slot", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert-description:slot", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert-description:source", + "familyId": "grammar:attribute:alert-description:source", + "rowId": "grammar:attribute:alert-description:source", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert-description:source", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert-title:fallback", + "familyId": "grammar:attribute:alert-title:fallback", + "rowId": "grammar:attribute:alert-title:fallback", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert-title:fallback", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert-title:format", + "familyId": "grammar:attribute:alert-title:format", + "rowId": "grammar:attribute:alert-title:format", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert-title:format", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert-title:optional", + "familyId": "grammar:attribute:alert-title:optional", + "rowId": "grammar:attribute:alert-title:optional", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert-title:optional", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert-title:slot", + "familyId": "grammar:attribute:alert-title:slot", + "rowId": "grammar:attribute:alert-title:slot", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert-title:slot", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert-title:source", + "familyId": "grammar:attribute:alert-title:source", + "rowId": "grammar:attribute:alert-title:source", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert-title:source", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert:id", + "familyId": "grammar:attribute:alert:id", + "rowId": "grammar:attribute:alert:id", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert:id", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert:role", + "familyId": "grammar:attribute:alert:role", + "rowId": "grammar:attribute:alert:role", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert:role", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:alert:variant", + "familyId": "grammar:attribute:alert:variant", + "rowId": "grammar:attribute:alert:variant", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:alert:variant", + "mappingStatus": "gap" + }, { "id": "grammar:attribute:ascii-block:fallback", "familyId": "grammar:attribute:ascii-block:fallback", @@ -26912,6 +28802,51 @@ "evidenceTarget": "atom:grammar:attribute:checklist-ledger:source", "mappingStatus": "gap" }, + { + "id": "grammar:attribute:checklist-tabs:fallback", + "familyId": "grammar:attribute:checklist-tabs:fallback", + "rowId": "grammar:attribute:checklist-tabs:fallback", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:checklist-tabs:fallback", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:checklist-tabs:format", + "familyId": "grammar:attribute:checklist-tabs:format", + "rowId": "grammar:attribute:checklist-tabs:format", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:checklist-tabs:format", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:checklist-tabs:optional", + "familyId": "grammar:attribute:checklist-tabs:optional", + "rowId": "grammar:attribute:checklist-tabs:optional", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:checklist-tabs:optional", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:checklist-tabs:slot", + "familyId": "grammar:attribute:checklist-tabs:slot", + "rowId": "grammar:attribute:checklist-tabs:slot", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:checklist-tabs:slot", + "mappingStatus": "gap" + }, + { + "id": "grammar:attribute:checklist-tabs:source", + "familyId": "grammar:attribute:checklist-tabs:source", + "rowId": "grammar:attribute:checklist-tabs:source", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:checklist-tabs:source", + "mappingStatus": "gap" + }, { "id": "grammar:attribute:checklist-workspace:fallback", "familyId": "grammar:attribute:checklist-workspace:fallback", @@ -28100,6 +30035,15 @@ "evidenceTarget": "atom:grammar:attribute:pagination:page-sizes", "mappingStatus": "gap" }, + { + "id": "grammar:attribute:pagination:subject", + "familyId": "grammar:attribute:pagination:subject", + "rowId": "grammar:attribute:pagination:subject", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:pagination:subject", + "mappingStatus": "gap" + }, { "id": "grammar:attribute:panel:column", "familyId": "grammar:attribute:panel:column", @@ -28388,6 +30332,15 @@ "evidenceTarget": "atom:grammar:attribute:section-header:class", "mappingStatus": "gap" }, + { + "id": "grammar:attribute:section-header:collection-from", + "familyId": "grammar:attribute:section-header:collection-from", + "rowId": "grammar:attribute:section-header:collection-from", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:attribute:section-header:collection-from", + "mappingStatus": "gap" + }, { "id": "grammar:attribute:section-header:fallback", "familyId": "grammar:attribute:section-header:fallback", @@ -28802,6 +30755,24 @@ "evidenceTarget": "atom:grammar:control:control-transition:sort-toggle", "mappingStatus": "gap" }, + { + "id": "grammar:edge:alert>alert-description", + "familyId": "grammar:edge:alert>alert-description", + "rowId": "grammar:edge:alert>alert-description", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:alert>alert-description", + "mappingStatus": "gap" + }, + { + "id": "grammar:edge:alert>alert-title", + "familyId": "grammar:edge:alert>alert-title", + "rowId": "grammar:edge:alert>alert-title", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:alert>alert-title", + "mappingStatus": "gap" + }, { "id": "grammar:edge:ascii-block>bind", "familyId": "grammar:edge:ascii-block>bind", @@ -28811,6 +30782,24 @@ "evidenceTarget": "atom:grammar:edge:ascii-block>bind", "mappingStatus": "gap" }, + { + "id": "grammar:edge:box>agent-monitor-activity-chart", + "familyId": "grammar:edge:box>agent-monitor-activity-chart", + "rowId": "grammar:edge:box>agent-monitor-activity-chart", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:box>agent-monitor-activity-chart", + "mappingStatus": "gap" + }, + { + "id": "grammar:edge:box>alert", + "familyId": "grammar:edge:box>alert", + "rowId": "grammar:edge:box>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:box>alert", + "mappingStatus": "gap" + }, { "id": "grammar:edge:box>ascii-block", "familyId": "grammar:edge:box>ascii-block", @@ -28856,6 +30845,15 @@ "evidenceTarget": "atom:grammar:edge:box>checklist-ledger", "mappingStatus": "gap" }, + { + "id": "grammar:edge:box>checklist-tabs", + "familyId": "grammar:edge:box>checklist-tabs", + "rowId": "grammar:edge:box>checklist-tabs", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:box>checklist-tabs", + "mappingStatus": "gap" + }, { "id": "grammar:edge:box>checklist-workspace", "familyId": "grammar:edge:box>checklist-workspace", @@ -29009,6 +31007,15 @@ "evidenceTarget": "atom:grammar:edge:box>metric-tiles", "mappingStatus": "gap" }, + { + "id": "grammar:edge:box>mode-toggle", + "familyId": "grammar:edge:box>mode-toggle", + "rowId": "grammar:edge:box>mode-toggle", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:box>mode-toggle", + "mappingStatus": "gap" + }, { "id": "grammar:edge:box>panel", "familyId": "grammar:edge:box>panel", @@ -29063,6 +31070,15 @@ "evidenceTarget": "atom:grammar:edge:box>verdict-header", "mappingStatus": "gap" }, + { + "id": "grammar:edge:case>alert", + "familyId": "grammar:edge:case>alert", + "rowId": "grammar:edge:case>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:case>alert", + "mappingStatus": "gap" + }, { "id": "grammar:edge:case>collection", "familyId": "grammar:edge:case>collection", @@ -29297,6 +31313,24 @@ "evidenceTarget": "atom:grammar:edge:domain-note>bind", "mappingStatus": "gap" }, + { + "id": "grammar:edge:each>agent-monitor-event-card", + "familyId": "grammar:edge:each>agent-monitor-event-card", + "rowId": "grammar:edge:each>agent-monitor-event-card", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:each>agent-monitor-event-card", + "mappingStatus": "gap" + }, + { + "id": "grammar:edge:each>alert", + "familyId": "grammar:edge:each>alert", + "rowId": "grammar:edge:each>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:each>alert", + "mappingStatus": "gap" + }, { "id": "grammar:edge:each>ascii-block", "familyId": "grammar:edge:each>ascii-block", @@ -29504,6 +31538,15 @@ "evidenceTarget": "atom:grammar:edge:frame-card>text", "mappingStatus": "gap" }, + { + "id": "grammar:edge:grid>alert", + "familyId": "grammar:edge:grid>alert", + "rowId": "grammar:edge:grid>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:grid>alert", + "mappingStatus": "gap" + }, { "id": "grammar:edge:grid>ascii-block", "familyId": "grammar:edge:grid>ascii-block", @@ -29549,6 +31592,15 @@ "evidenceTarget": "atom:grammar:edge:grid>checklist-ledger", "mappingStatus": "gap" }, + { + "id": "grammar:edge:grid>checklist-tabs", + "familyId": "grammar:edge:grid>checklist-tabs", + "rowId": "grammar:edge:grid>checklist-tabs", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:grid>checklist-tabs", + "mappingStatus": "gap" + }, { "id": "grammar:edge:grid>checklist-workspace", "familyId": "grammar:edge:grid>checklist-workspace", @@ -29765,6 +31817,24 @@ "evidenceTarget": "atom:grammar:edge:mode-toggle>option", "mappingStatus": "gap" }, + { + "id": "grammar:edge:oven>agent-monitor-activity-chart", + "familyId": "grammar:edge:oven>agent-monitor-activity-chart", + "rowId": "grammar:edge:oven>agent-monitor-activity-chart", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:oven>agent-monitor-activity-chart", + "mappingStatus": "gap" + }, + { + "id": "grammar:edge:oven>alert", + "familyId": "grammar:edge:oven>alert", + "rowId": "grammar:edge:oven>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:oven>alert", + "mappingStatus": "gap" + }, { "id": "grammar:edge:oven>ascii-block", "familyId": "grammar:edge:oven>ascii-block", @@ -29819,6 +31889,15 @@ "evidenceTarget": "atom:grammar:edge:oven>checklist-ledger", "mappingStatus": "gap" }, + { + "id": "grammar:edge:oven>checklist-tabs", + "familyId": "grammar:edge:oven>checklist-tabs", + "rowId": "grammar:edge:oven>checklist-tabs", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:oven>checklist-tabs", + "mappingStatus": "gap" + }, { "id": "grammar:edge:oven>checklist-workspace", "familyId": "grammar:edge:oven>checklist-workspace", @@ -30080,6 +32159,15 @@ "evidenceTarget": "atom:grammar:edge:oven>verdict-header", "mappingStatus": "gap" }, + { + "id": "grammar:edge:panel>alert", + "familyId": "grammar:edge:panel>alert", + "rowId": "grammar:edge:panel>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:panel>alert", + "mappingStatus": "gap" + }, { "id": "grammar:edge:panel>ascii-block", "familyId": "grammar:edge:panel>ascii-block", @@ -30125,6 +32213,15 @@ "evidenceTarget": "atom:grammar:edge:panel>checklist-ledger", "mappingStatus": "gap" }, + { + "id": "grammar:edge:panel>checklist-tabs", + "familyId": "grammar:edge:panel>checklist-tabs", + "rowId": "grammar:edge:panel>checklist-tabs", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:panel>checklist-tabs", + "mappingStatus": "gap" + }, { "id": "grammar:edge:panel>checklist-workspace", "familyId": "grammar:edge:panel>checklist-workspace", @@ -30278,6 +32375,15 @@ "evidenceTarget": "atom:grammar:edge:section-header>text", "mappingStatus": "gap" }, + { + "id": "grammar:edge:stack>alert", + "familyId": "grammar:edge:stack>alert", + "rowId": "grammar:edge:stack>alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:stack>alert", + "mappingStatus": "gap" + }, { "id": "grammar:edge:stack>ascii-block", "familyId": "grammar:edge:stack>ascii-block", @@ -30323,6 +32429,15 @@ "evidenceTarget": "atom:grammar:edge:stack>checklist-ledger", "mappingStatus": "gap" }, + { + "id": "grammar:edge:stack>checklist-tabs", + "familyId": "grammar:edge:stack>checklist-tabs", + "rowId": "grammar:edge:stack>checklist-tabs", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:edge:stack>checklist-tabs", + "mappingStatus": "gap" + }, { "id": "grammar:edge:stack>checklist-workspace", "familyId": "grammar:edge:stack>checklist-workspace", @@ -30476,6 +32591,51 @@ "evidenceTarget": "atom:grammar:edge:verdict-header>bind", "mappingStatus": "gap" }, + { + "id": "grammar:element:agent-monitor-activity-chart", + "familyId": "grammar:element:agent-monitor-activity-chart", + "rowId": "grammar:element:agent-monitor-activity-chart", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:element:agent-monitor-activity-chart", + "mappingStatus": "gap" + }, + { + "id": "grammar:element:agent-monitor-event-card", + "familyId": "grammar:element:agent-monitor-event-card", + "rowId": "grammar:element:agent-monitor-event-card", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:element:agent-monitor-event-card", + "mappingStatus": "gap" + }, + { + "id": "grammar:element:alert", + "familyId": "grammar:element:alert", + "rowId": "grammar:element:alert", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:element:alert", + "mappingStatus": "gap" + }, + { + "id": "grammar:element:alert-description", + "familyId": "grammar:element:alert-description", + "rowId": "grammar:element:alert-description", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:element:alert-description", + "mappingStatus": "gap" + }, + { + "id": "grammar:element:alert-title", + "familyId": "grammar:element:alert-title", + "rowId": "grammar:element:alert-title", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:element:alert-title", + "mappingStatus": "gap" + }, { "id": "grammar:element:ascii-block", "familyId": "grammar:element:ascii-block", @@ -30557,6 +32717,15 @@ "evidenceTarget": "atom:grammar:element:checklist-ledger", "mappingStatus": "gap" }, + { + "id": "grammar:element:checklist-tabs", + "familyId": "grammar:element:checklist-tabs", + "rowId": "grammar:element:checklist-tabs", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:element:checklist-tabs", + "mappingStatus": "gap" + }, { "id": "grammar:element:checklist-workspace", "familyId": "grammar:element:checklist-workspace", @@ -30962,6 +33131,51 @@ "evidenceTarget": "atom:grammar:element:waffle-metric", "mappingStatus": "implemented" }, + { + "id": "grammar:filter:command", + "familyId": "grammar:filter:command", + "rowId": "grammar:filter:command", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:filter:command", + "mappingStatus": "gap" + }, + { + "id": "grammar:filter:diff", + "familyId": "grammar:filter:diff", + "rowId": "grammar:filter:diff", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:filter:diff", + "mappingStatus": "gap" + }, + { + "id": "grammar:filter:failed", + "familyId": "grammar:filter:failed", + "rowId": "grammar:filter:failed", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:filter:failed", + "mappingStatus": "gap" + }, + { + "id": "grammar:filter:lifecycle", + "familyId": "grammar:filter:lifecycle", + "rowId": "grammar:filter:lifecycle", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:filter:lifecycle", + "mappingStatus": "gap" + }, + { + "id": "grammar:filter:message", + "familyId": "grammar:filter:message", + "rowId": "grammar:filter:message", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:filter:message", + "mappingStatus": "gap" + }, { "id": "grammar:filter:non-pass", "familyId": "grammar:filter:non-pass", @@ -30971,6 +33185,15 @@ "evidenceTarget": "atom:grammar:filter:non-pass", "mappingStatus": "gap" }, + { + "id": "grammar:filter:tool", + "familyId": "grammar:filter:tool", + "rowId": "grammar:filter:tool", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:grammar:filter:tool", + "mappingStatus": "gap" + }, { "id": "grammar:format:delta", "familyId": "grammar:format:delta", @@ -31205,6 +33428,15 @@ "evidenceTarget": "atom:grammar:theme:visual-parity", "mappingStatus": "gap" }, + { + "id": "official:ovens/agent-monitor/agent-monitor.oven", + "familyId": "official:ovens/agent-monitor/agent-monitor.oven", + "rowId": "official:ovens/agent-monitor/agent-monitor.oven", + "kind": "row", + "owner": null, + "evidenceTarget": "atom:official:ovens/agent-monitor/agent-monitor.oven", + "mappingStatus": "gap" + }, { "id": "official:ovens/checklist/checklist.oven", "familyId": "official:ovens/checklist/checklist.oven", @@ -31268,6 +33500,15 @@ "evidenceTarget": "atom:official:ovens/visual-parity/visual-parity.oven", "mappingStatus": "gap" }, + { + "id": "public:dashboard/src/components/index.ts#AgentMonitor", + "familyId": "public:dashboard/src/components/index.ts#AgentMonitor", + "rowId": "public:dashboard/src/components/index.ts#AgentMonitor", + "kind": "row", + "owner": "oven:agent-monitor", + "evidenceTarget": "atom:public:dashboard/src/components/index.ts#AgentMonitor", + "mappingStatus": "gap" + }, { "id": "public:dashboard/src/components/index.ts#AppHeader", "familyId": "public:dashboard/src/components/index.ts#AppHeader", @@ -31835,6 +34076,24 @@ "evidenceTarget": "atom:public:dashboard/src/layout/index.ts#TooltipTrigger", "mappingStatus": "gap" }, + { + "id": "public:dashboard/src/oven/index.ts#AgentMonitorActivityChart", + "familyId": "public:dashboard/src/oven/index.ts#AgentMonitorActivityChart", + "rowId": "public:dashboard/src/oven/index.ts#AgentMonitorActivityChart", + "kind": "row", + "owner": "oven:agent-monitor-activity-chart", + "evidenceTarget": "atom:public:dashboard/src/oven/index.ts#AgentMonitorActivityChart", + "mappingStatus": "gap" + }, + { + "id": "public:dashboard/src/oven/index.ts#AgentMonitorEventCard", + "familyId": "public:dashboard/src/oven/index.ts#AgentMonitorEventCard", + "rowId": "public:dashboard/src/oven/index.ts#AgentMonitorEventCard", + "kind": "row", + "owner": "oven:agent-monitor-event-card", + "evidenceTarget": "atom:public:dashboard/src/oven/index.ts#AgentMonitorEventCard", + "mappingStatus": "gap" + }, { "id": "public:dashboard/src/oven/index.ts#AsciiBlock", "familyId": "public:dashboard/src/oven/index.ts#AsciiBlock", @@ -133086,6 +135345,231 @@ ], "denominatorA": { "grammar": [ + { + "id": "grammar:attribute:agent-monitor-activity-chart:fallback", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:agent-monitor-activity-chart:format", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:agent-monitor-activity-chart:id", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:agent-monitor-activity-chart:optional", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:agent-monitor-activity-chart:slot", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:agent-monitor-activity-chart:source", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:agent-monitor-event-card:fallback", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:agent-monitor-event-card:format", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:agent-monitor-event-card:id", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:agent-monitor-event-card:optional", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:agent-monitor-event-card:slot", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:agent-monitor-event-card:source", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert-description:fallback", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert-description:format", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert-description:optional", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert-description:slot", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert-description:source", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert-title:fallback", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert-title:format", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert-title:optional", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert-title:slot", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert-title:source", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert:id", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert:role", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:alert:variant", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:attribute:ascii-block:fallback", "mappingStatus": "gap", @@ -133482,6 +135966,51 @@ "status": "gap" } }, + { + "id": "grammar:attribute:checklist-tabs:fallback", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:checklist-tabs:format", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:checklist-tabs:optional", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:checklist-tabs:slot", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:attribute:checklist-tabs:source", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:attribute:checklist-workspace:fallback", "mappingStatus": "gap", @@ -134670,6 +137199,15 @@ "status": "gap" } }, + { + "id": "grammar:attribute:pagination:subject", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:attribute:panel:column", "mappingStatus": "gap", @@ -134958,6 +137496,15 @@ "status": "gap" } }, + { + "id": "grammar:attribute:section-header:collection-from", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:attribute:section-header:fallback", "mappingStatus": "gap", @@ -135372,6 +137919,24 @@ "status": "gap" } }, + { + "id": "grammar:edge:alert>alert-description", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:edge:alert>alert-title", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:ascii-block>bind", "mappingStatus": "gap", @@ -135381,6 +137946,24 @@ "status": "gap" } }, + { + "id": "grammar:edge:box>agent-monitor-activity-chart", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:edge:box>alert", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:box>ascii-block", "mappingStatus": "gap", @@ -135426,6 +138009,15 @@ "status": "gap" } }, + { + "id": "grammar:edge:box>checklist-tabs", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:box>checklist-workspace", "mappingStatus": "gap", @@ -135579,6 +138171,15 @@ "status": "gap" } }, + { + "id": "grammar:edge:box>mode-toggle", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:box>panel", "mappingStatus": "gap", @@ -135633,6 +138234,15 @@ "status": "gap" } }, + { + "id": "grammar:edge:case>alert", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:case>collection", "mappingStatus": "gap", @@ -135867,6 +138477,24 @@ "status": "gap" } }, + { + "id": "grammar:edge:each>agent-monitor-event-card", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:edge:each>alert", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:each>ascii-block", "mappingStatus": "gap", @@ -136074,6 +138702,15 @@ "status": "gap" } }, + { + "id": "grammar:edge:grid>alert", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:grid>ascii-block", "mappingStatus": "gap", @@ -136119,6 +138756,15 @@ "status": "gap" } }, + { + "id": "grammar:edge:grid>checklist-tabs", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:grid>checklist-workspace", "mappingStatus": "gap", @@ -136335,6 +138981,24 @@ "status": "gap" } }, + { + "id": "grammar:edge:oven>agent-monitor-activity-chart", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:edge:oven>alert", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:oven>ascii-block", "mappingStatus": "gap", @@ -136389,6 +139053,15 @@ "status": "gap" } }, + { + "id": "grammar:edge:oven>checklist-tabs", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:oven>checklist-workspace", "mappingStatus": "gap", @@ -136650,6 +139323,15 @@ "status": "gap" } }, + { + "id": "grammar:edge:panel>alert", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:panel>ascii-block", "mappingStatus": "gap", @@ -136695,6 +139377,15 @@ "status": "gap" } }, + { + "id": "grammar:edge:panel>checklist-tabs", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:panel>checklist-workspace", "mappingStatus": "gap", @@ -136848,6 +139539,15 @@ "status": "gap" } }, + { + "id": "grammar:edge:stack>alert", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:stack>ascii-block", "mappingStatus": "gap", @@ -136893,6 +139593,15 @@ "status": "gap" } }, + { + "id": "grammar:edge:stack>checklist-tabs", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:edge:stack>checklist-workspace", "mappingStatus": "gap", @@ -137046,6 +139755,51 @@ "status": "gap" } }, + { + "id": "grammar:element:agent-monitor-activity-chart", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:element:agent-monitor-event-card", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:element:alert", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:element:alert-description", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:element:alert-title", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:element:ascii-block", "mappingStatus": "gap", @@ -137127,6 +139881,15 @@ "status": "gap" } }, + { + "id": "grammar:element:checklist-tabs", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:element:checklist-workspace", "mappingStatus": "gap", @@ -137532,6 +140295,51 @@ "status": "implemented" } }, + { + "id": "grammar:filter:command", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:filter:diff", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:filter:failed", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:filter:lifecycle", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "grammar:filter:message", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:filter:non-pass", "mappingStatus": "gap", @@ -137541,6 +140349,15 @@ "status": "gap" } }, + { + "id": "grammar:filter:tool", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "grammar:format:delta", "mappingStatus": "gap", @@ -137787,14 +140604,514 @@ }, { "path": "src/ovens/dsl/oven-grammar.mjs", - "fingerprint": "a44d9884842f15ebbdf3f3c63ea068917999667ce3200ae6411b24cc4b99c54b" + "fingerprint": "4546bb9ffe4684b792b94d44b0397507a6fbef239394ef02a30d30d1e4966555" }, { "path": "src/ovens/dsl/oven-validate.mjs", - "fingerprint": "d10409b3884d23f8b99e8341242538fc5f2d57aa348f9a2daccd31ab6ea7d6ed" + "fingerprint": "0a36d83d5a76c22099816a870ccba6890a69bf1917a5fad690a32b6e7be4abb9" } ], "compiledIR": [ + { + "id": "compiled:attribute:agent-monitor-activity-chart:fallback", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-activity-chart:fallback", + "element": "agent-monitor-activity-chart", + "attributes": { + "fallback": "-" + } + } + }, + "fingerprint": "b2956a8381ca1b7ec3a94ec9ac238b3354d6709cbff187ef0ed95d29bb63e46b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:agent-monitor-activity-chart:format", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-activity-chart:format", + "element": "agent-monitor-activity-chart", + "attributes": { + "format": "last-delta-percent" + } + } + }, + "fingerprint": "cf70dc79dca23e2b0c64bb64076d3feffefabe009af746fbd6c83c6aa1a54df0", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:agent-monitor-activity-chart:id", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-activity-chart:id", + "element": "agent-monitor-activity-chart", + "attributes": { + "id": "node-471" + } + } + }, + "fingerprint": "5825d23ac8d942f3fc6326e5caf2c8b2542af9eb1f5802282d8e09c0bbd6e40b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:agent-monitor-activity-chart:optional", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-activity-chart:optional", + "element": "agent-monitor-activity-chart", + "attributes": { + "optional": "true" + } + } + }, + "fingerprint": "b24499b25ce164d743ac7c8fdef23dbee240933c0e6fba1e9ad0201736e5f8bb", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:agent-monitor-activity-chart:slot", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-activity-chart:slot", + "element": "agent-monitor-activity-chart", + "attributes": { + "slot": "value" + } + } + }, + "fingerprint": "577c66c8ab10a2e118f0d7fa24a360e49ea88f91497be1bd37f2141f45eeda88", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:agent-monitor-activity-chart:source", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-activity-chart:source", + "element": "agent-monitor-activity-chart", + "attributes": { + "source": "/value" + } + } + }, + "fingerprint": "e0efda6349058c3dfdb59f81f4eb92125f4cd924ddf85b9719c3c586c1433aae", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:agent-monitor-event-card:fallback", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-event-card:fallback", + "element": "agent-monitor-event-card", + "attributes": { + "fallback": "-" + } + } + }, + "fingerprint": "40da356f5a7f535af617cf8df8ccd78a23806c402c74832c7c192cd8a70b3fcd", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:agent-monitor-event-card:format", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-event-card:format", + "element": "agent-monitor-event-card", + "attributes": { + "format": "delta" + } + } + }, + "fingerprint": "573315a4ef5b799b63e3408dfee320267bd537b5a519b1f6339aa6b9cd282587", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:agent-monitor-event-card:id", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-event-card:id", + "element": "agent-monitor-event-card", + "attributes": { + "id": "node-478" + } + } + }, + "fingerprint": "261cd18b0ce630425be6d4f8dc3b43725aae2cb75cecafa0b07eb84c30657c75", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:agent-monitor-event-card:optional", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-event-card:optional", + "element": "agent-monitor-event-card", + "attributes": { + "optional": "true" + } + } + }, + "fingerprint": "c5b6f70e3f5c196364e3180cfe50945021c5b99a16b45f23e3f4d62fe68a5fac", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:agent-monitor-event-card:slot", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-event-card:slot", + "element": "agent-monitor-event-card", + "attributes": { + "slot": "value" + } + } + }, + "fingerprint": "b3eade8666dee208750c963d0d379b6eac543264ed9bb6432bb38871f876a166", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:agent-monitor-event-card:source", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "agent-monitor-event-card:source", + "element": "agent-monitor-event-card", + "attributes": { + "source": "/value" + } + } + }, + "fingerprint": "85cb80fc10ab5e7baaa0b1c5ccdd02eb71203824826a31126a42e1fe071aa6c5", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert-description:fallback", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-description:fallback", + "element": "alert-description", + "attributes": { + "fallback": "-" + } + } + }, + "fingerprint": "297920a9dc07534f00f0ca30d720e6bf70b6a2eacd567278b1202703412b45a9", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert-description:format", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-description:format", + "element": "alert-description", + "attributes": { + "format": "ratio-to-percent" + } + } + }, + "fingerprint": "2ec39212df9e2735fea2eed690e573daa7c164fa5b5238a9670d30d21bfb1689", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert-description:optional", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-description:optional", + "element": "alert-description", + "attributes": { + "optional": "true" + } + } + }, + "fingerprint": "346a81e03766221b0efffa528912ced78c712a9dbbbd04d239b0a5577823ccb5", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert-description:slot", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-description:slot", + "element": "alert-description", + "attributes": { + "slot": "value" + } + } + }, + "fingerprint": "69fec387cbe42cce4b9ac5ceb41579b163607b9b963f3179d0799c4190ea7bcc", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert-description:source", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-description:source", + "element": "alert-description", + "attributes": { + "source": "/value" + } + } + }, + "fingerprint": "8c7b625e36e5534cc48f8ac3184e246aa86fef5b72a83fc037cbd6ef43f23341", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert-title:fallback", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-title:fallback", + "element": "alert-title", + "attributes": { + "fallback": "-" + } + } + }, + "fingerprint": "41b023792fe80d400cb111dda17f78ae85533cc4effabd546e5a525f6f1299a4", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert-title:format", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-title:format", + "element": "alert-title", + "attributes": { + "format": "telemetry-availability" + } + } + }, + "fingerprint": "00e69fa4e722c691312e42e6c4745006c8f5399cadd59b0c4e08644b7459a6ab", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert-title:optional", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-title:optional", + "element": "alert-title", + "attributes": { + "optional": "true" + } + } + }, + "fingerprint": "ff8aecb3d53c1e6a825c517c47516a718712dfa530380fc9255d6b265ae86ef0", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert-title:slot", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-title:slot", + "element": "alert-title", + "attributes": { + "slot": "value" + } + } + }, + "fingerprint": "36bfaf569e33b59a0c3bebf55ef822d69b966d7c14c62b7d7fbb91bbc645f4b7", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert-title:source", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert-title:source", + "element": "alert-title", + "attributes": { + "source": "/value" + } + } + }, + "fingerprint": "e641b67631d6eb60a10412135948ca1110280fc2e84e851177c4470650118575", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert:id", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert:id", + "element": "alert", + "attributes": { + "id": "node-264" + } + } + }, + "fingerprint": "40e441c99063326f7383b777b9fc53045650d12b8138b87bef8db7103df8fc12", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert:role", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert:role", + "element": "alert", + "attributes": { + "role": "alert" + } + } + }, + "fingerprint": "13d02eef62fef1fa654fe24842e3fb6effb38055fba3ef711100d45e19da787d", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:alert:variant", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "alert:variant", + "element": "alert", + "attributes": { + "variant": "default" + } + } + }, + "fingerprint": "cf212dedf327d42e56ce3683b07a829f1383a11fd82f41de2d85924f5c9c593e", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:attribute:ascii-block:fallback", "expectedTarget": { @@ -137823,11 +141140,11 @@ "id": "ascii-block:format", "element": "ascii-block", "attributes": { - "format": "ratio-to-percent" + "format": "last-failed-percent" } } }, - "fingerprint": "bf91558a5112fe5e16032029a077fa99248b33305235a9e4434f3c55a6dece47", + "fingerprint": "c1cfa529fa383d5409842a905dcb4f32a517fe233b926f0f2ffdd09e3c27924d", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -137843,11 +141160,11 @@ "id": "ascii-block:id", "element": "ascii-block", "attributes": { - "id": "node-360" + "id": "node-401" } } }, - "fingerprint": "003590354adccf07827671f799adde590d5497239eda2161b8e3b9345ea2e4aa", + "fingerprint": "02ac88052e8382b3c357d875ee1c434ec430046cf998dc9156ebf9e3131f99fa", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -137967,7 +141284,7 @@ "id": "bind:format", "element": "bind", "attributes": { - "format": "last-delta-percent" + "format": "last-frame-delta" }, "binding": { "prop": "value", @@ -137975,7 +141292,7 @@ } } }, - "fingerprint": "9562675bd0da99fa50d5ea5616e51f3d233972193abc7e92d9718b98400685f9", + "fingerprint": "eeae044c51b38d52b7d561ee7473086f6ef164720226fc134f1a98f150cdcab9", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -138123,11 +141440,11 @@ "id": "box:id", "element": "box", "attributes": { - "id": "node-42" + "id": "node-45" } } }, - "fingerprint": "02933da546aea1d519bc1c4eef84f0a6eca6df5b39b0a96ad4c9adc9f0ed00c4", + "fingerprint": "76ac0e6f2affb342034be36d809fb55db16da5a11f0f6afdfdd040602bda2c38", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -138323,11 +141640,11 @@ "id": "checklist-burn-panel:format", "element": "checklist-burn-panel", "attributes": { - "format": "last-failed-count" + "format": "identity" } } }, - "fingerprint": "24741d46ae5b35f5779f8455e1a026dacc3b4e8e0f0554e388ce0ee73521d72c", + "fingerprint": "acf68495b705feedabb5faf37c43c86e2148ad0b0b1d0554b7208459819f688d", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -138523,11 +141840,11 @@ "id": "checklist-event-cards:format", "element": "checklist-event-cards", "attributes": { - "format": "length" + "format": "last-failed-percent" } } }, - "fingerprint": "9ef3ec570c9b8feb06d32b634b1bd9905e4178e92e76b9b21335154da8c88b29", + "fingerprint": "31a31315e1a0ea679a044165458aa55d011813bd19cc0c1e7b972e7422b77619", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -138623,11 +141940,11 @@ "id": "checklist-ledger:format", "element": "checklist-ledger", "attributes": { - "format": "identity" + "format": "length" } } }, - "fingerprint": "155698e9b22e33d347e9e3645afe296125be0b1a946a95fa9ef60830b26ef34f", + "fingerprint": "0d4d3eed685986f2eb4fbbb98f8184700fed0bf3cf2c760d2b8829ce32ac498f", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -138695,6 +142012,106 @@ "status": "gap" } }, + { + "id": "compiled:attribute:checklist-tabs:fallback", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "checklist-tabs:fallback", + "element": "checklist-tabs", + "attributes": { + "fallback": "-" + } + } + }, + "fingerprint": "5da97dff495d1de4a82de6fb86b28c8633e5878ee76d0eb98934e9d1766923f6", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:checklist-tabs:format", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "checklist-tabs:format", + "element": "checklist-tabs", + "attributes": { + "format": "last-failed-count" + } + } + }, + "fingerprint": "b2c6f7d6049e2da161ad8d141a48a91d57d2ae691eff00ad715bbe16c76a7387", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:checklist-tabs:optional", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "checklist-tabs:optional", + "element": "checklist-tabs", + "attributes": { + "optional": "true" + } + } + }, + "fingerprint": "666b8503252791999796c4cf657bf7f1d0a18af694ddb6082af36221b85e54be", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:checklist-tabs:slot", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "checklist-tabs:slot", + "element": "checklist-tabs", + "attributes": { + "slot": "value" + } + } + }, + "fingerprint": "dfbb9878030e48c28f0abda056aecf1fd813bf96744483927fd91ecad61b82ad", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:attribute:checklist-tabs:source", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "checklist-tabs:source", + "element": "checklist-tabs", + "attributes": { + "source": "/value" + } + } + }, + "fingerprint": "c3192ac99e4d16a8342427708892f7f9d6df66a439186fc6fa55e6c998f104dc", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:attribute:checklist-workspace:fallback", "expectedTarget": { @@ -138823,11 +142240,11 @@ "id": "collection:id", "element": "collection", "attributes": { - "id": "node-175" + "id": "node-189" } } }, - "fingerprint": "1afad63191c2e081a922868a1823821371a27b5b89a1824013e72c37353dfe35", + "fingerprint": "8ff4e986e08e22cf38493a30d1c59c7d35352af60ae2edad0d827e73eb71842d", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -138983,11 +142400,11 @@ "id": "column:format", "element": "column", "attributes": { - "format": "last-frame-delta" + "format": "last-failed-percent" } } }, - "fingerprint": "312df685764ebb9e005c0ebc14a63fad5a54bc683b3d6e0193aea9af0f776e06", + "fingerprint": "4942ecde72ca5e64f29cba8d7aecd10a6c20f805ec35a197836f7b77c6450891", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139103,11 +142520,11 @@ "id": "diff-card:format", "element": "diff-card", "attributes": { - "format": "identity" + "format": "time-only" } } }, - "fingerprint": "50e4195a6b18d58de50f56a92d3bdbd35a3e9f58b727c731434ce14d3b5d4a31", + "fingerprint": "117b53e94cfac98febec5863bc2189c48147cf1a8a6fd87df6b611f46171335f", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139123,11 +142540,11 @@ "id": "diff-card:id", "element": "diff-card", "attributes": { - "id": "node-372" + "id": "node-413" } } }, - "fingerprint": "87613912c76e985479d8f5a7fbe515733667a7a3ec7c12333715e74059b4e959", + "fingerprint": "9ae410f8807f87108c961fe4e7f75dd2569148ef7399b1cd8ac41dcf7e636e7c", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139203,11 +142620,11 @@ "id": "differential-empty-state:id", "element": "differential-empty-state", "attributes": { - "id": "node-427" + "id": "node-468" } } }, - "fingerprint": "01d79e29165aeeb9dbdee7dfaba9eadd1241270967c1ca690173e75d16ed30b6", + "fingerprint": "0156a2b82318fd6ad6988679159fa71b90c1e8a5d6e23a507ad957323e41f7dd", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139263,11 +142680,11 @@ "id": "differential-kpi-strip:format", "element": "differential-kpi-strip", "attributes": { - "format": "last-progress-percent" + "format": "identity" } } }, - "fingerprint": "f80ad5960179c92b185312708c4a5aa8617c8fb3d3fab0b35120e58774d96896", + "fingerprint": "524969ae67245e86ba81e1b13cafa7b4d468707437b22263ec8ddf845475753d", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139283,11 +142700,11 @@ "id": "differential-kpi-strip:id", "element": "differential-kpi-strip", "attributes": { - "id": "node-399" + "id": "node-440" } } }, - "fingerprint": "2056a970dd1db42d811d3b22f75732ccbca42756a58890c7d09b752363a6cfb6", + "fingerprint": "05158410bdca4b2b4c453ede5f7636b8b01e8c654751d38922204230d38345f7", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139383,11 +142800,11 @@ "id": "differential-log-table:format", "element": "differential-log-table", "attributes": { - "format": "identity" + "format": "time-only" } } }, - "fingerprint": "9e62cf5581d965833f86afd212ccc17f7d0ea97e9000a414a16b7ffff936ed90", + "fingerprint": "12886bc6c1e4908676aa139256137cef42fe8d65871f8cc942aa9a471cb2a25e", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139403,11 +142820,11 @@ "id": "differential-log-table:id", "element": "differential-log-table", "attributes": { - "id": "node-406" + "id": "node-447" } } }, - "fingerprint": "9edd5865008cdb02e2d19a43862be941587470b929be8fd6049c8e74b2f01ee6", + "fingerprint": "43c25b22440ecccaca7ba41a83ed4753e623c37165963fcbd94f01b6ad918d21", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139483,11 +142900,11 @@ "id": "domain-note:id", "element": "domain-note", "attributes": { - "id": "node-341" + "id": "node-382" } } }, - "fingerprint": "ecd5ebedcdfd9f962ddbb696a5b2f5cd05464b42031784a5c6ed07a97f5c7629", + "fingerprint": "b26ab413c517ad2f3d59619566ad7832922602c4dae50c3a8ff1089778c15a71", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139543,11 +142960,11 @@ "id": "domain-tabs:format", "element": "domain-tabs", "attributes": { - "format": "telemetry-availability" + "format": "length" } } }, - "fingerprint": "0cc6a88f99e5f4d5464f811b9858a3a9bfe72b4f246edf0727bde25092ff24c0", + "fingerprint": "d988740e1dda53543480c15d638bb9fe0cd8426476d461c3e6c7efbf641e42a0", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139563,11 +142980,11 @@ "id": "domain-tabs:id", "element": "domain-tabs", "attributes": { - "id": "node-336" + "id": "node-377" } } }, - "fingerprint": "6dd2b216519d9951b6675858ca3211a7e2213bcb441a2f7909e3b561489c0c13", + "fingerprint": "d7fd75a908a718f2b855c9683a971bbcb11a098f67b2bfbff2b49bcb50d8ad3e", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139623,11 +143040,11 @@ "id": "feed-list:id", "element": "feed-list", "attributes": { - "id": "node-369" + "id": "node-410" } } }, - "fingerprint": "39c8337b33a986467b8f05dcfa3eb0c11195effc847863db153d14b21f355be3", + "fingerprint": "12be6e3d7b7c5a6d4809a0d3502712cac3cd92f9f34efb24f53b028867bda391", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139663,11 +143080,11 @@ "id": "field-list:id", "element": "field-list", "attributes": { - "id": "node-323" + "id": "node-364" } } }, - "fingerprint": "7b23dec558b1e27870ef5e55d38fe7e5d96a84825d33e4d6b383050d3a779cc4", + "fingerprint": "27ff44a877d5d7fcd6739e79b4f2830b45455867552d232840837c6e441eaab7", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139703,11 +143120,11 @@ "id": "field-toolbar:id", "element": "field-toolbar", "attributes": { - "id": "node-448" + "id": "node-503" } } }, - "fingerprint": "43bb1faae13086892192a334ce5061762592cfe09ab9b3d7c9e8426c92d8a851", + "fingerprint": "664455fa532ab9b3f360348b1db43f52d21128f60aedc56cb57ae59679366c61", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139743,11 +143160,11 @@ "id": "file-diff:format", "element": "file-diff", "attributes": { - "format": "last-progress-percent" + "format": "identity" } } }, - "fingerprint": "c7a44a28960703e45e0cf3a3f66b5fd18103fa1362c2be132f554bbd6fa561cf", + "fingerprint": "1e9810b1a682b55281db274cd4aa855d948baf31116faeca5f0a265c84a9150d", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139763,11 +143180,11 @@ "id": "file-diff:id", "element": "file-diff", "attributes": { - "id": "node-382" + "id": "node-423" } } }, - "fingerprint": "d03ac8d8cc694280a6dfee1cd67b8c8d130d13806fd18a07f929e5740108830f", + "fingerprint": "2dc783afaede3f8ef7e1c54c7f76d45a21139330aa69da06c1f3576f914c8229", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139843,11 +143260,11 @@ "id": "filter-toggle:id", "element": "filter-toggle", "attributes": { - "id": "node-476" + "id": "node-531" } } }, - "fingerprint": "11bc9bc93186bb98858471a0b9aeb7e10635bee59be32a1f3600772ff9002f7e", + "fingerprint": "52f748e55f540af0934786bb651ca5027f9bb31ed6e18b8a711bdaa6265e55b0", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139883,11 +143300,11 @@ "id": "filter-toggle:key", "element": "filter-toggle", "attributes": { - "key": "non-pass" + "key": "command" } } }, - "fingerprint": "8847fbe817e824ec1a239bc9956336f7f080e1035b33eeafafff641f722459c2", + "fingerprint": "367c795c61d1b35697247d2ee30d5658893770c8fafa2669d025383b2fde6c2d", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139943,11 +143360,11 @@ "id": "frame-card:format", "element": "frame-card", "attributes": { - "format": "relative-age" + "format": "index-by-id" } } }, - "fingerprint": "eebfef58da4e02db4d757d88156cc8880967b062011b08f17e339e4a7eb50e0e", + "fingerprint": "b5230b538ead3249cd1dd2ce6f772ddf7f926f787431032dd24e0747b75e05de", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -139963,11 +143380,11 @@ "id": "frame-card:id", "element": "frame-card", "attributes": { - "id": "node-346" + "id": "node-387" } } }, - "fingerprint": "fc486e9e35ce3d3079f1e69dd31bf0635dd17fdf8620029e8d4685477452199c", + "fingerprint": "0c33e8853413062369240ea53ff44fe21a6d4aa385377dd7ed38a244f8d53820", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -140083,11 +143500,11 @@ "id": "frame-delta-chart:format", "element": "frame-delta-chart", "attributes": { - "format": "last-delta-percent" + "format": "delta" } } }, - "fingerprint": "9b47143ed75ad415ed1e6e3921bb872d3bb5b69eaa5ac5b882ff49f1ade4c3d3", + "fingerprint": "49f1cc33167df78af7be932664a96ae1ef7826c40ca81a2b86d957ced892a59d", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -140103,11 +143520,11 @@ "id": "frame-delta-chart:id", "element": "frame-delta-chart", "attributes": { - "id": "node-420" + "id": "node-461" } } }, - "fingerprint": "9154d65333c3b566b006ca597836d0a86767f47f86ce968f8cf08c04d66aa009", + "fingerprint": "01a7c9e0e446848a8b31d139f05820c8a588b9b7746a33691a88bef8e8d6360a", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -140203,11 +143620,11 @@ "id": "grid:id", "element": "grid", "attributes": { - "id": "node-76" + "id": "node-83" } } }, - "fingerprint": "5184d688c2f8f0205aa69d32ec13633e5594a906c548a90345621784a7a82e04", + "fingerprint": "421005ac1541e42d8da8f63e52110aba7ec09caa7bbfd036d46901a67aba020c", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -140303,11 +143720,11 @@ "id": "image-triptych:id", "element": "image-triptych", "attributes": { - "id": "node-357" + "id": "node-398" } } }, - "fingerprint": "ed04d56df3290c976ea2086cd6514ea1ee441a209c076834fbc138f8922e3002", + "fingerprint": "235c42c24b4a61416020252c8c0272d5b0af80868f0d4da28b3683c5cc6f8500", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -140363,11 +143780,11 @@ "id": "kpi-item:format", "element": "kpi-item", "attributes": { - "format": "index-by-id" + "format": "last-delta-percent" } } }, - "fingerprint": "28198ea9bf50dfbea0cd911de5e038415452902dbbbff069f2ad897de047cb1b", + "fingerprint": "a665389324777c17a61df529034782f4a84578072f84ad8581430362ab78cfec", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -140423,11 +143840,11 @@ "id": "kpi-item:id", "element": "kpi-item", "attributes": { - "id": "node-228" + "id": "node-244" } } }, - "fingerprint": "12c4250103e045b03731f7d66f965a658a98b87e1dddc6f2c20cc18f7a46cfca", + "fingerprint": "abd0a5b7942aad44820baca318330f37726d974f06f6d7e91ae1857bbc49a53f", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -140603,11 +144020,11 @@ "id": "kpi-strip:id", "element": "kpi-strip", "attributes": { - "id": "node-222" + "id": "node-238" } } }, - "fingerprint": "6b3bebfb45346621316055d9de5b486bad22e129cd8e468acbafb5e202e03678", + "fingerprint": "28ed45cb7125295ddf0671fee298d7846159d8f4d8996ef9c04e731220e25933", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -140683,11 +144100,11 @@ "id": "log-table:id", "element": "log-table", "attributes": { - "id": "node-300" + "id": "node-340" } } }, - "fingerprint": "aef9b93ee8f6268e68008771762f593dde07cae5d348524bd8d2d6c34f1056aa", + "fingerprint": "e135544c7bedcb582ee11e955aee8d77ec8a460742dd4fa1468ef089d0ec07c2", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -140763,11 +144180,11 @@ "id": "loop-graph:format", "element": "loop-graph", "attributes": { - "format": "last-failed-count" + "format": "index-by-id" } } }, - "fingerprint": "8b4547c766fcef98ce9d418336a19a5d5896d048ee3756c0f6a85bcfe05c5e56", + "fingerprint": "add647b18d238343835573ff636a7aaf723d9a4fa7fd9904d79db8bb74073d28", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -140783,11 +144200,11 @@ "id": "loop-graph:id", "element": "loop-graph", "attributes": { - "id": "node-433" + "id": "node-488" } } }, - "fingerprint": "ae01faf350b9783c7022a37c1e031b4638922cd7ab9e993c7d313563730983cf", + "fingerprint": "ae86ad1e0f79cfc8c589957e455c0382994e36e979c9d931d46c1b0d7cf9b5dd", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -140903,11 +144320,11 @@ "id": "loop-progress:format", "element": "loop-progress", "attributes": { - "format": "identity" + "format": "ratio-to-percent" } } }, - "fingerprint": "0ab19d6f2d3fa274472346f3c7743eabee4d49f17bda0fba192e767c6e6a1c29", + "fingerprint": "7895c6b26d9ba4b26c972ec10308723906a0067506485f8dd6748ae8e485b0e0", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -140923,11 +144340,11 @@ "id": "loop-progress:id", "element": "loop-progress", "attributes": { - "id": "node-441" + "id": "node-496" } } }, - "fingerprint": "b96c5622a22ae85c9d1e18e720611ba830e9eb47c56101d77dd45475cd1f87c5", + "fingerprint": "a682448028e8cf9750f683cd6c057bf44b2cdf1a33ac0ad096ac76a8a4a46cf4", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -141003,11 +144420,11 @@ "id": "metric-tiles:id", "element": "metric-tiles", "attributes": { - "id": "node-328" + "id": "node-369" } } }, - "fingerprint": "d52ab50633dbe88f4da9f4cebc7334d9e1b43db1ca9df96a62dc7fbebe88766b", + "fingerprint": "400a1adf6b948b9cef1cd4b30c87d33103c8b89a741c5f6e15864f92119049e6", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -141083,11 +144500,11 @@ "id": "mode-toggle:id", "element": "mode-toggle", "attributes": { - "id": "node-454" + "id": "node-509" } } }, - "fingerprint": "a85212c238a408d0d6beb064fac7f20356831aff1350e29aaeb70454a2161e5f", + "fingerprint": "eed9ffeecfba6fa0935814fa454ce22eb4b7133c29b68ba8445a1ab62beb6523", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -141123,11 +144540,11 @@ "id": "model-lab-view:id", "element": "model-lab-view", "attributes": { - "id": "node-430" + "id": "node-485" } } }, - "fingerprint": "7c1b4bfe1ffad4a65400e5bf0428cb5a65c5203dd04bb520cf2c3ff0e0c9c73e", + "fingerprint": "e25f18e76cca4bd5e33ec270dbdb6b96fa4adbebd5ec978cf538aa54f92dc338", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -141335,6 +144752,26 @@ "status": "gap" } }, + { + "id": "compiled:attribute:pagination:subject", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "pagination:subject", + "element": "pagination", + "attributes": { + "subject": "value" + } + } + }, + "fingerprint": "eb6f53d48529f6bd7a68af397932ee4e82eced34e8d77e3560467bafcbca3356", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:attribute:panel:column", "expectedTarget": { @@ -141383,11 +144820,11 @@ "id": "panel:id", "element": "panel", "attributes": { - "id": "node-122" + "id": "node-133" } } }, - "fingerprint": "1e42453b3da590effb73ab6581e77c6d582260d90c7163aff74ff42fb089d1ee", + "fingerprint": "371985a5a18ecc7556a2165a90b7f9b9797b53768bc57f58f2d3f119067c6cd3", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -141483,11 +144920,11 @@ "id": "progress-chart:format", "element": "progress-chart", "attributes": { - "format": "time-only" + "format": "last-delta-percent" } } }, - "fingerprint": "887f0bab876a3eb306fd122feaeaf395dee5caf41c3b5cec06844464577f8808", + "fingerprint": "7e074589c40ee727cbe23613b3bbf780c141cb6cbcc90a1a91e839be192a07fc", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -141503,11 +144940,11 @@ "id": "progress-chart:id", "element": "progress-chart", "attributes": { - "id": "node-413" + "id": "node-454" } } }, - "fingerprint": "82200add5c17d8327f4b5d164dfa14d5a0c64bd073271a580da691ab29fe41f9", + "fingerprint": "c8b13f31f3bad92b27edd3cdbf481c885c6601561f5d4774a12f686b26658258", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -141763,11 +145200,11 @@ "id": "refresh-status:format", "element": "refresh-status", "attributes": { - "format": "percent" + "format": "last-progress-percent" } } }, - "fingerprint": "3f8c30e6b577e3d2f56378144039c76d033e9dd9c27ec39e18b36c3c02b272d0", + "fingerprint": "e21afbe4e109a89605e55fe200e7078f5790dd6c198467cc4485ac647bd65a70", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -141783,11 +145220,11 @@ "id": "refresh-status:id", "element": "refresh-status", "attributes": { - "id": "node-392" + "id": "node-433" } } }, - "fingerprint": "e1f7051fe7c90814556244df41be7a3a065069f7ea6ff33e6a61a5ce3f2aa5d0", + "fingerprint": "9223f9de7eb5f16659c1fb9ef44d3af4d7bddc2008c1276a3ab24f9e77daaae0", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -141903,11 +145340,11 @@ "id": "search:id", "element": "search", "attributes": { - "id": "node-462" + "id": "node-517" } } }, - "fingerprint": "bf58a769e1d63924e2789a29c407d5a99e978bf8197b6a7afebf5b73a674ac45", + "fingerprint": "cce7ee7f6fae1792041b3fd110041ea1445482e9f994871920fb3dc0300fc2ee", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -141975,6 +145412,26 @@ "status": "gap" } }, + { + "id": "compiled:attribute:section-header:collection-from", + "expectedTarget": { + "coverageTarget": { + "kind": "attribute", + "id": "section-header:collection-from", + "element": "section-header", + "attributes": { + "collectionFrom": "collection" + } + } + }, + "fingerprint": "08f176dc3df392947c12199328344fe30979154fa8719b5b1baaf58fd753464d", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:attribute:section-header:fallback", "expectedTarget": { @@ -142003,11 +145460,11 @@ "id": "section-header:format", "element": "section-header", "attributes": { - "format": "ratio-to-percent" + "format": "last-failed-percent" } } }, - "fingerprint": "716910edc71c6b538a78dc748a26fd3bf844ff57003a6c07832b5433245b9615", + "fingerprint": "f5be9854aa35e9fe216710194d5e2728f6def7dda4656f7c56d0452f1fe213aa", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -142023,11 +145480,11 @@ "id": "section-header:id", "element": "section-header", "attributes": { - "id": "node-307" + "id": "node-347" } } }, - "fingerprint": "273314f074b0826fc9672310de3d6bf5ffade151079bbd157d6607a3cd98a6e3", + "fingerprint": "1d14b0f9d61aa11c831af8581ccf5b0b33f28b268c8ecb903961c35245784f7c", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -142123,11 +145580,11 @@ "id": "sort-toggle:id", "element": "sort-toggle", "attributes": { - "id": "node-468" + "id": "node-523" } } }, - "fingerprint": "35d194497841789ede83c842af9c458db79e3e7c935b9adb1dcbaf39e7d30345", + "fingerprint": "8aa86c1731ffa76ded9e56bcc7797889bc338c29453d1f2687edd298ea00d9d5", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -142303,11 +145760,11 @@ "id": "stack:id", "element": "stack", "attributes": { - "id": "node-98" + "id": "node-107" } } }, - "fingerprint": "823b0bea9a58b0ac6caf42c3463311b8353a5cde4c52456a5b3901936833cf7b", + "fingerprint": "8d2cde889a8467059e435c1b5947d32b3b1df08b6c6dc5545eba191b8a24f31f", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -142343,11 +145800,11 @@ "id": "streaming-diff-heading:id", "element": "streaming-diff-heading", "attributes": { - "id": "node-319" + "id": "node-360" } } }, - "fingerprint": "d1bd7d54a8f89ac9000474af782fa159485d9c0a17876536efc8d0cb31024b4e", + "fingerprint": "d5875c4269b478e9c8998554502e21dd79b98ec1fcb2432d59d379daeb005bfb", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -142383,11 +145840,11 @@ "id": "switch:id", "element": "switch", "attributes": { - "id": "node-148" + "id": "node-161" } } }, - "fingerprint": "d466622bcc496f4a93e87f9b07cbe8bd61d1fccfa4fc934b4189054887d45c71", + "fingerprint": "7798585b5cb534192f867572888a70c6bcae5563c95da0368ad3ee8fa0aa6c85", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -142463,11 +145920,11 @@ "id": "text:format", "element": "text", "attributes": { - "format": "delta" + "format": "percent" } } }, - "fingerprint": "913895b5e29056fe4261b9ec7a8924433683390abd8dc1e9975786fb2beb9814", + "fingerprint": "1a1646b4a144967dac13f66325e28d8fc5afc6cf3b3ce672dc207453b2a0d834", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -142563,11 +146020,11 @@ "id": "verdict-header:id", "element": "verdict-header", "attributes": { - "id": "node-333" + "id": "node-374" } } }, - "fingerprint": "99129c627ba61b577ab343c5e3e590b6f424f1e9a089d730f734747448e53cfd", + "fingerprint": "5e015628001b25a67f499439e46f5ce7b3d6a98cd1446f10c331b87cd2b261a3", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -142899,6 +146356,44 @@ "status": "gap" } }, + { + "id": "compiled:edge:alert>alert-description", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "alert>alert-description", + "element": "alert", + "attributes": {}, + "child": "alert-description" + } + }, + "fingerprint": "a11ae7fee0b8bcbac6fdac2624d8186ad3c91aef0fbedd8e5aa9b58c08a98321", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:edge:alert>alert-title", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "alert>alert-title", + "element": "alert", + "attributes": {}, + "child": "alert-title" + } + }, + "fingerprint": "97afc4cef3077edc7f0be43dcc89917cd82e964db7902bf46b88fad2e25d3b98", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:ascii-block>bind", "expectedTarget": { @@ -142918,6 +146413,44 @@ "status": "gap" } }, + { + "id": "compiled:edge:box>agent-monitor-activity-chart", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "box>agent-monitor-activity-chart", + "element": "box", + "attributes": {}, + "child": "agent-monitor-activity-chart" + } + }, + "fingerprint": "132c9ad5266eb60d59e478655a2b72846f00bf1bc05628eb4fc81bfcca55263b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:edge:box>alert", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "box>alert", + "element": "box", + "attributes": {}, + "child": "alert" + } + }, + "fingerprint": "a1b1fd687a68439e70d068ca8ef6ee18324ba9e10ae25b118d7ddba95f29b4ed", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:box>ascii-block", "expectedTarget": { @@ -143013,6 +146546,25 @@ "status": "gap" } }, + { + "id": "compiled:edge:box>checklist-tabs", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "box>checklist-tabs", + "element": "box", + "attributes": {}, + "child": "checklist-tabs" + } + }, + "fingerprint": "96e28a530ee372da4081e00fa30f321327cfc975063afd99c53a96dac80f1ec9", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:box>checklist-workspace", "expectedTarget": { @@ -143336,6 +146888,25 @@ "status": "gap" } }, + { + "id": "compiled:edge:box>mode-toggle", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "box>mode-toggle", + "element": "box", + "attributes": {}, + "child": "mode-toggle" + } + }, + "fingerprint": "da726c27bc7b869096dcc70dc5167f4e49b17e4fef6d01fbfc35c6578d30699c", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:box>panel", "expectedTarget": { @@ -143450,6 +147021,25 @@ "status": "gap" } }, + { + "id": "compiled:edge:case>alert", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "case>alert", + "element": "case", + "attributes": {}, + "child": "alert" + } + }, + "fingerprint": "8c0024d51fedc452904fc63524339f3cd5709541306452f3b867037bba7be814", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:case>collection", "expectedTarget": { @@ -143944,6 +147534,44 @@ "status": "gap" } }, + { + "id": "compiled:edge:each>agent-monitor-event-card", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "each>agent-monitor-event-card", + "element": "each", + "attributes": {}, + "child": "agent-monitor-event-card" + } + }, + "fingerprint": "22e45b7bbe04145c7e2c781e53ae18a848cb4806e93ba8226c6f9824ba38b6d7", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:edge:each>alert", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "each>alert", + "element": "each", + "attributes": {}, + "child": "alert" + } + }, + "fingerprint": "faae80b6f9cc863ccd8b2036da031ffcaf91b93cd3a8794d87a7062301ed6c9f", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:each>ascii-block", "expectedTarget": { @@ -144381,6 +148009,25 @@ "status": "gap" } }, + { + "id": "compiled:edge:grid>alert", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "grid>alert", + "element": "grid", + "attributes": {}, + "child": "alert" + } + }, + "fingerprint": "c9577a6b6fe140c1ed9b0da95c4a04ea9d82d7ea79122f41e6f7c1afbff13701", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:grid>ascii-block", "expectedTarget": { @@ -144476,6 +148123,25 @@ "status": "gap" } }, + { + "id": "compiled:edge:grid>checklist-tabs", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "grid>checklist-tabs", + "element": "grid", + "attributes": {}, + "child": "checklist-tabs" + } + }, + "fingerprint": "5ce3ef74063bdf0151b271d3d31c1b30faaf185e08c7623d5d31c8020234d4cc", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:grid>checklist-workspace", "expectedTarget": { @@ -144932,6 +148598,44 @@ "status": "gap" } }, + { + "id": "compiled:edge:oven>agent-monitor-activity-chart", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "oven>agent-monitor-activity-chart", + "element": "oven", + "attributes": {}, + "child": "agent-monitor-activity-chart" + } + }, + "fingerprint": "1a6a7a68f45cb273b18529d5a8435e3240b8dfbd9d41cc83e01e96f1903b3ef3", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:edge:oven>alert", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "oven>alert", + "element": "oven", + "attributes": {}, + "child": "alert" + } + }, + "fingerprint": "64840245274c7c56e730b57abd599476eb88738059794423265e1fe2c349ae08", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:oven>ascii-block", "expectedTarget": { @@ -145046,6 +148750,25 @@ "status": "gap" } }, + { + "id": "compiled:edge:oven>checklist-tabs", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "oven>checklist-tabs", + "element": "oven", + "attributes": {}, + "child": "checklist-tabs" + } + }, + "fingerprint": "8f9c710c453ec954bc968e11fc7912e9f5acb8d4ad4752ca30ff1ed7437d9e0a", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:oven>checklist-workspace", "expectedTarget": { @@ -145597,6 +149320,25 @@ "status": "gap" } }, + { + "id": "compiled:edge:panel>alert", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "panel>alert", + "element": "panel", + "attributes": {}, + "child": "alert" + } + }, + "fingerprint": "a4cdbd28c3a90bf96ce2d13580d504fb8c17081f0d9445540121c4caf32dad23", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:panel>ascii-block", "expectedTarget": { @@ -145692,6 +149434,25 @@ "status": "gap" } }, + { + "id": "compiled:edge:panel>checklist-tabs", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "panel>checklist-tabs", + "element": "panel", + "attributes": {}, + "child": "checklist-tabs" + } + }, + "fingerprint": "be3615cad9eac56e706a1e2f4647b424a8b62413ae8c2565219b0207f0fab0bd", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:panel>checklist-workspace", "expectedTarget": { @@ -146015,6 +149776,25 @@ "status": "gap" } }, + { + "id": "compiled:edge:stack>alert", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "stack>alert", + "element": "stack", + "attributes": {}, + "child": "alert" + } + }, + "fingerprint": "59cf4989ebd655dc00df5ff31c2ff71692a1cf1d399b8c1b5b78f4f4e1a5f8ed", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:stack>ascii-block", "expectedTarget": { @@ -146110,6 +149890,25 @@ "status": "gap" } }, + { + "id": "compiled:edge:stack>checklist-tabs", + "expectedTarget": { + "coverageTarget": { + "kind": "edge", + "id": "stack>checklist-tabs", + "element": "stack", + "attributes": {}, + "child": "checklist-tabs" + } + }, + "fingerprint": "d968db5efbb43ca52333f9844a0bdba862897f79bb69115845779a186d466222", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:edge:stack>checklist-workspace", "expectedTarget": { @@ -146433,6 +150232,96 @@ "status": "gap" } }, + { + "id": "compiled:element:agent-monitor-activity-chart", + "expectedTarget": { + "coverageTarget": { + "kind": "element", + "id": "agent-monitor-activity-chart", + "element": "agent-monitor-activity-chart", + "attributes": {} + } + }, + "fingerprint": "9098ebb6584d32f4b166204007287f2b27ebc37401f69b7d8baa475a3c8ae5ca", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:element:agent-monitor-event-card", + "expectedTarget": { + "coverageTarget": { + "kind": "element", + "id": "agent-monitor-event-card", + "element": "agent-monitor-event-card", + "attributes": {} + } + }, + "fingerprint": "4cd21de4ef1a7126e8618c6f48f50fef23a4d133856aab9fc014a090554d73d5", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:element:alert", + "expectedTarget": { + "coverageTarget": { + "kind": "element", + "id": "alert", + "element": "alert", + "attributes": {} + } + }, + "fingerprint": "49b2176ec1cf8e2accadd2b8267df446997d4cfad306ca10f2a9ffab862c3961", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:element:alert-description", + "expectedTarget": { + "coverageTarget": { + "kind": "element", + "id": "alert-description", + "element": "alert-description", + "attributes": {} + } + }, + "fingerprint": "69d7588a17710574a712b626361ad2d79e47521df3f8c90682706a30995cdd7a", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:element:alert-title", + "expectedTarget": { + "coverageTarget": { + "kind": "element", + "id": "alert-title", + "element": "alert-title", + "attributes": {} + } + }, + "fingerprint": "d7437946c0fe0fd143a6b7cce57a233c0c52f15e9df1709d9ef2b9e0dc3c5597", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:element:ascii-block", "expectedTarget": { @@ -146599,6 +150488,24 @@ "status": "gap" } }, + { + "id": "compiled:element:checklist-tabs", + "expectedTarget": { + "coverageTarget": { + "kind": "element", + "id": "checklist-tabs", + "element": "checklist-tabs", + "attributes": {} + } + }, + "fingerprint": "84f4458086ad12745378adc8a429878f5f0b04b56deaf54f5377f371f0749233", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:element:checklist-workspace", "expectedTarget": { @@ -147409,6 +151316,116 @@ "status": "implemented" } }, + { + "id": "compiled:filter:command", + "expectedTarget": { + "coverageTarget": { + "kind": "filter", + "id": "command", + "element": "filter-toggle", + "attributes": { + "key": "command" + }, + "registry": "filter", + "registryValue": "command" + } + }, + "fingerprint": "1549f61d3e7436bf13370562b767b43fa112513126dd59f37babe8a470f74b60", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:filter:diff", + "expectedTarget": { + "coverageTarget": { + "kind": "filter", + "id": "diff", + "element": "filter-toggle", + "attributes": { + "key": "diff" + }, + "registry": "filter", + "registryValue": "diff" + } + }, + "fingerprint": "471d2bd0177f183e939811026cba7fb6ca3482625853eebaa2ea5f6a21ece01b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:filter:failed", + "expectedTarget": { + "coverageTarget": { + "kind": "filter", + "id": "failed", + "element": "filter-toggle", + "attributes": { + "key": "failed" + }, + "registry": "filter", + "registryValue": "failed" + } + }, + "fingerprint": "7fe491c18dfe07f04b3f8513cb76140246c811ac99c07909663fecb145b60d27", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:filter:lifecycle", + "expectedTarget": { + "coverageTarget": { + "kind": "filter", + "id": "lifecycle", + "element": "filter-toggle", + "attributes": { + "key": "lifecycle" + }, + "registry": "filter", + "registryValue": "lifecycle" + } + }, + "fingerprint": "b119653683c6376113708b05d77e16163de058be7b5330cd4d7300aeca3a08e0", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "compiled:filter:message", + "expectedTarget": { + "coverageTarget": { + "kind": "filter", + "id": "message", + "element": "filter-toggle", + "attributes": { + "key": "message" + }, + "registry": "filter", + "registryValue": "message" + } + }, + "fingerprint": "065a48d3c95165db7f82a484e9cf753cdb530cc7c667ac5baf34b8a3ff8206cb", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:filter:non-pass", "expectedTarget": { @@ -147431,6 +151448,28 @@ "status": "gap" } }, + { + "id": "compiled:filter:tool", + "expectedTarget": { + "coverageTarget": { + "kind": "filter", + "id": "tool", + "element": "filter-toggle", + "attributes": { + "key": "tool" + }, + "registry": "filter", + "registryValue": "tool" + } + }, + "fingerprint": "6acd81006ff97fc02f83f1f62e94818b7525ff9cd01c1c343e81aa4829c8589b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "compiled:format:delta", "expectedTarget": { @@ -148006,8 +152045,8 @@ ], "b34References": [ { - "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:08345a6407cfa04e", - "fingerprint": "08345a6407cfa04e4ac9b8f984df7b1e9cc61b2cd0c8c13ad97a154788c6a9d8", + "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", + "fingerprint": "0e91c0434dab74c6d8099893af17ae51154dda739455b280188621ce4a0fb170", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -148016,8 +152055,8 @@ } }, { - "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:0e91c0434dab74c6", - "fingerprint": "0e91c0434dab74c6d8099893af17ae51154dda739455b280188621ce4a0fb170", + "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:28670509b2644dea", + "fingerprint": "28670509b2644deaf3297d9c0bf527a346510bc42d2e2dc52000ae0a604b8498", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -148085,6 +152124,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:869312be2760fd24", + "fingerprint": "869312be2760fd2482c9aae8ff851f2eb0fbf7dbef8a917d795e204fda903e75", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:879c4c24e5fd2fba", "fingerprint": "879c4c24e5fd2fbaa2ec3d0ef72164470cecdcf5a2dc03d1f9a1419d764bc0bd", @@ -148175,6 +152224,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:db078c47db3e50c3", + "fingerprint": "db078c47db3e50c3be160d3fc7c88302b949cd37a92c87b57ad15d850a2e4144", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/App.tsx:App:ConditionalExpression:e5e69239b717d7ed", "fingerprint": "e5e69239b717d7ed083f57f7581e511c4d236ce9c4e5342c9b275a3ec42bf3a5", @@ -148226,8 +152285,8 @@ } }, { - "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:38edea39933b2588", - "fingerprint": "38edea39933b2588b65a548304bff69cf0dbd74f774aadef440485873bdb47db", + "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e", + "fingerprint": "62769dae15dabf3eb85e55aaaa7917e2737fc2f629738d87b7b8d72d1660d932", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -148236,7 +152295,7 @@ } }, { - "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e", + "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e:1", "fingerprint": "62769dae15dabf3eb85e55aaaa7917e2737fc2f629738d87b7b8d72d1660d932", "mappingStatus": "gap", "atomCoverage": { @@ -148246,8 +152305,8 @@ } }, { - "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:62769dae15dabf3e:1", - "fingerprint": "62769dae15dabf3eb85e55aaaa7917e2737fc2f629738d87b7b8d72d1660d932", + "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:662fae22a9c098ce", + "fingerprint": "662fae22a9c098ce7dfd39d7a5733a921a871489de4300f1b21ee6a59216f31f", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -148256,8 +152315,8 @@ } }, { - "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:662fae22a9c098ce", - "fingerprint": "662fae22a9c098ce7dfd39d7a5733a921a871489de4300f1b21ee6a59216f31f", + "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:6ea5a02132549b79", + "fingerprint": "6ea5a02132549b79b75583eeb9bce2e8c31ec98790221e606b37f92cf5da0862", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -148266,8 +152325,8 @@ } }, { - "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", - "fingerprint": "b67210fdce841e44b3cd523e0c3ecc3dbe2e908d9fa2b9c9dad297789908d9c0", + "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:ac413be8f7156f5a", + "fingerprint": "ac413be8f7156f5a6171e93d1fd20a65fb0f115d9d0a79ce027e55a064da1e21", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -148276,8 +152335,8 @@ } }, { - "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:c0f673b28a57b32f", - "fingerprint": "c0f673b28a57b32f71c2e3d5d0b1b7617eefa5c57915b4ef24a36f151840630c", + "id": "b34:branch:dashboard/src/App.tsx:App:LogicalExpression:b67210fdce841e44", + "fingerprint": "b67210fdce841e44b3cd523e0c3ecc3dbe2e908d9fa2b9c9dad297789908d9c0", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -148306,8 +152365,28 @@ } }, { - "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:IfStatement:0950e6df7876e854", - "fingerprint": "0950e6df7876e8548fc83a4cf4a5f5cb6ec76fb1cd493dc6b2311a3af6ab9ed5", + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:09ecd391a41039f5", + "fingerprint": "09ecd391a41039f5f452d26c0c35de8f3b4a6884ebcbc54362781ff43d93cece", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:26457aa74ab00355", + "fingerprint": "26457aa74ab00355475b3e579719b4547b0a9ebc7f13a79a1bf6c996e5f5634f", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenRuntime:ConditionalExpression:cf12e3a823885859", + "fingerprint": "cf12e3a823885859d909bc4e67b945ec25e4314d6bf126612fe9c1f2bab298de", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -148336,8 +152415,8 @@ } }, { - "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:314348123bf12d0b", - "fingerprint": "314348123bf12d0b01319f2c9709220864f9097bc661f8acf600c0f63cf49bc2", + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:34fa1aff9e378f1e", + "fingerprint": "34fa1aff9e378f1e94d37e23eb95a025dddf34895c19dc37c3269912023776cd", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -148346,8 +152425,8 @@ } }, { - "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:e1457c38a8dc8ad8", - "fingerprint": "e1457c38a8dc8ad8efaa8f6e9326454acab1e50e8bedd5a6e32f54b4b47a50d1", + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:35b0b741e18369cd", + "fingerprint": "35b0b741e18369cdc1e83485335eb999ed2c5de8374d045438a891a637149ef7", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -148356,8 +152435,8 @@ } }, { - "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:ecc4476a0741b0dd", - "fingerprint": "ecc4476a0741b0dd393993ebf4ac05c85faddd793649918112d9f9b50e6d5173", + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:CustomOvenView:IfStatement:639201685d8fe452", + "fingerprint": "639201685d8fe452844f0218d7d2a9110686853e073d838e35640e87acdfe1ad", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -148475,6 +152554,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/components/CustomOvenView/CustomOvenView.tsx:module:LogicalExpression:fec06bb1848c20a0", + "fingerprint": "fec06bb1848c20a01cab9ba8d73f68b59f12d90b7852bd9d01c2bfcc2324f23f", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/components/DifferentialTestingOven/DifferentialTestingOven.tsx:module:ConditionalExpression:fb8af5b091d0b677", "fingerprint": "fb8af5b091d0b67747685c07475570138da6091f4b3e04d31866229b252a96e1", @@ -148775,6 +152864,46 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:ConditionalExpression:2cf6dc473679913c", + "fingerprint": "2cf6dc473679913cad96527132e3a43b62f02184455820e9a0c2d5bef102a696", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:83d6cd7e558f513e", + "fingerprint": "83d6cd7e558f513e812e28f71cea95fcb3a6bb680963eac056a58412f4d04e99", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:9d1b7f9c32e0502c", + "fingerprint": "9d1b7f9c32e0502cedbbdd6d42cdb25504ce8a87b90d27c8d881dcbe01e0d074", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/lib/hrefs.ts:agentMonitorSelection:LogicalExpression:dc8f4f096cae1e89", + "fingerprint": "dc8f4f096cae1e89a18f506ebf6a851d94576662becb0a0daef53cc28b798576", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/lib/hrefs.ts:burnlistHref:ConditionalExpression:20611b6b08a46bac", "fingerprint": "20611b6b08a46bac1d94fcce7380e1cdc36032f66dba1ba05e7f032c423a6fb1", @@ -148956,8 +153085,8 @@ } }, { - "id": "b34:branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:83e728cef8897dcd", - "fingerprint": "83e728cef8897dcda2050459dc2e70858c2ad9c0e0d9f8eb03ffbb9b4ab5867c", + "id": "b34:branch:dashboard/src/lib/hrefs.ts:ovenRepoKey:ConditionalExpression:26cbb2fb634679a0", + "fingerprint": "26cbb2fb634679a0c1865a08c928a0d5dd7cbcdfbd9248acc919346a9a5bfe8c", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -149106,8 +153235,8 @@ } }, { - "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:2d0d8a0556db1aa4", - "fingerprint": "2d0d8a0556db1aa4cb5036c28dd86ab8450020ee2409622400ccfd1a752b2259", + "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:8e2406cc9247eb34", + "fingerprint": "8e2406cc9247eb34f831b65afc89a4ce1fd2aef2f08b581d58e53175ae78bb9e", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -149116,8 +153245,8 @@ } }, { - "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:3d0b44c435f0a42b", - "fingerprint": "3d0b44c435f0a42b45ff78da1f72f9e3a9e9265d9bd5d3bba64ebe548015adf4", + "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", + "fingerprint": "a069f64c73d7a307c0df5508c92ad648fa90c4c15b19337613750ee92b179f34", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -149126,8 +153255,8 @@ } }, { - "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:a069f64c73d7a307", - "fingerprint": "a069f64c73d7a307c0df5508c92ad648fa90c4c15b19337613750ee92b179f34", + "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:ConditionalExpression:d74ac9f13debb02e", + "fingerprint": "d74ac9f13debb02ecc414b4e5d8960ed472eb5056c0b094a87c5db68c838080b", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -149245,6 +153374,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:b6c40e5cf6100d60", + "fingerprint": "b6c40e5cf6100d60eae7a128219fc085a80faec412c3f170b478ee6631f63f03", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/lib/route-model.mjs:module:LogicalExpression:bb5e2a54a028afc8", "fingerprint": "bb5e2a54a028afc8bf24a43c8c5c353694f8fb4440e39e24e680377fdf5cd000", @@ -149475,6 +153614,716 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:ConditionalExpression:b6f78ae235bd59a5", + "fingerprint": "b6f78ae235bd59a5a60b830bddcf514e46536a7be1e980e0d15ba4deb1eec005", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:AgentMonitorActivityChart:LogicalExpression:9cd8c9fbbdea0f72", + "fingerprint": "9cd8c9fbbdea0f72b1c4f58908044ca48ad9d543381a0363b3f7350b2ad74b36", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:37b90dc946c05849", + "fingerprint": "37b90dc946c0584952ab9043eb34656a32acb47e2bddeec836c25444898fe01b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:ConditionalExpression:bd2fe94f3ec64d89", + "fingerprint": "bd2fe94f3ec64d89e205d90d253f74ece27afd251e0e43d376f3b3690db965d9", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:8a02a37013ec004d", + "fingerprint": "8a02a37013ec004d2eb88e1da5c1fb41236c261438e2464b50080a975cf5392e", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:b8a00595f6c90c2d", + "fingerprint": "b8a00595f6c90c2d58b323227dd0fa16c13bd2df27e00ae9a8822c2f0d07e379", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:c5fc51c3d051eb7b", + "fingerprint": "c5fc51c3d051eb7bfb8a21ff3fa6b928bcc9ab1ab54a53023257f641de08decb", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:IfStatement:df92876c3244fe99", + "fingerprint": "df92876c3244fe99feb209a70fbe8cf3d5e4e179c66f3f4f1b67e3476ee2e4ff", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:1537d76156c784c4", + "fingerprint": "1537d76156c784c4cd01bf33ca55c6efc73ac874c7fb9d9a26e2347ca3cc3058", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:2daff146483aa3ed", + "fingerprint": "2daff146483aa3eda0c8cc7396317da187032ce78f010eee939b377714bde82a", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:41b5494efc170bac", + "fingerprint": "41b5494efc170bac8c45d8dc1ba06ce32703587782b8a372bdb558524043686c", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:572a5e1546e4c285", + "fingerprint": "572a5e1546e4c28506544515fd8a58ad08e72cb2164d39a94a55d12e329557f4", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:e1324f975c7e1c55", + "fingerprint": "e1324f975c7e1c55c18b4b245f8de08f84d2173f07facdba1c0a9336002acce4", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:buildAgentMonitorActivity:LogicalExpression:f237de9b55a180cf", + "fingerprint": "f237de9b55a180cf832c6f01d2a6848b5bf13312ce4fc319d0ddbf6fdc48955d", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:02e8b0a59519d332", + "fingerprint": "02e8b0a59519d3328e829ecbcf443e2d9771a58218337e257d9be669f2d3aa20", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:ConditionalExpression:e2f711770a78ee3c", + "fingerprint": "e2f711770a78ee3ca0ee236477e0fe35452ca342114e434a34ab46bddf23e1a7", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:61b80ed4f8b7138b", + "fingerprint": "61b80ed4f8b7138b6ce695ed9ecba5d49ed97dff3a02fa8c520ab1a348b7f3dd", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:8933ea0d43090455", + "fingerprint": "8933ea0d430904550b9237bb86809ee799558e6f474d113850bbace76f8d5448", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:IfStatement:e55163fe990a35b8", + "fingerprint": "e55163fe990a35b805c2febe29de0014b26b77dc0655f9e742a426b246320b63", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:8e582ac01f0a4722", + "fingerprint": "8e582ac01f0a4722ec1bdbddd15f923b97be7f5970d48f02fe729eaa7c954952", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:b8730e972bd990f9", + "fingerprint": "b8730e972bd990f9fb60751a576fa2f91f4310a92a4440bcac9630db4158a002", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:bd87e77e5bdcca76", + "fingerprint": "bd87e77e5bdcca76aeb0b8739bc3bee58db0016f945afd6b288a57430d9f4534", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx:module:LogicalExpression:f92405e0bbb96d56", + "fingerprint": "f92405e0bbb96d56002d40c43343dbd99e1453f8e22e243a38262f4b6ac169dd", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:ConditionalExpression:f5d5a951381e35d2", + "fingerprint": "f5d5a951381e35d2561d57e9147a17b50201b48962f51bbc9cb47223ddb1bf2d", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:5d0f63658a8a3daa", + "fingerprint": "5d0f63658a8a3daaa627977c1402573dc59c6492e4d010256de509958e9a15b2", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:a40200dac7d42ba7", + "fingerprint": "a40200dac7d42ba7c765ee8ece3b9f77bb2404f85e8e2a58d217820f36e5d8c0", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:c2173f9b14a3fd10", + "fingerprint": "c2173f9b14a3fd10d14e5fb5ec67db44bfdf6ed1b288e1446f882a86c2af8122", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:AgentMonitorEventCard:LogicalExpression:d94410752185574f", + "fingerprint": "d94410752185574f217f5d39129b9fd69ccdc9f7c691e483f1e026aeef756c78", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:4ae31ffff8c4b4f3", + "fingerprint": "4ae31ffff8c4b4f33ee4f05b0fbf1f4b0fe4672e6ad61f8fa6ac5e434c72ecd5", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:7c02222e4afb2871", + "fingerprint": "7c02222e4afb28717728a7b3fca9649e0187ec58395be1188388d6c2978e0b35", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:855cf3c21f18a38a", + "fingerprint": "855cf3c21f18a38a4b3d33b00b80b92a64d46f3a1b518ac15f4b9bde842bf442", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:8ff36defcde3a6bf", + "fingerprint": "8ff36defcde3a6bfcbabf8188bd570858c14cbdc95adf81c1e5994953edebb4e", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:945aaf2d9c633122", + "fingerprint": "945aaf2d9c63312207e2f69a4ca446027616e72b1315e483ed518e8ccf754b9a", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:98554e201591453c", + "fingerprint": "98554e201591453c9b2802ce6cc62f03ec32932266f47b2b0ce6d2dc622d5136", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:b5a0348134741b50", + "fingerprint": "b5a0348134741b5027c22f80c26aa5bf39aa9d6e2514112355ed16948324fe56", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:d561245c56bd4d59", + "fingerprint": "d561245c56bd4d59d8494253ca64c920c0164f27479971ce493e8dc5bc89456e", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:ConditionalExpression:ebbb3f793e157af6", + "fingerprint": "ebbb3f793e157af6116123f8e4dc9f6515b8fb8fcb934fc295903eea324b521b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:007847839945ed50", + "fingerprint": "007847839945ed502cac03cc978011f440d4c2374d3368e3789b07f627cc8baf", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:06b20eb8edee8716", + "fingerprint": "06b20eb8edee87169fb80e3a1ea11c9a2a15b07e6e638085511b959399fba9fa", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:13592c46eb7bdc56", + "fingerprint": "13592c46eb7bdc56dfc1a2bc4d45ef5a4bdb9dc931cdd7304c13c4a1efa5484b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:1f8bc3232d470327", + "fingerprint": "1f8bc3232d47032799d940755b4ca68b35bab5923f7b235d97f5234e0a0b48a9", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:3977a717ee26b4c0", + "fingerprint": "3977a717ee26b4c0bb2bd651f99dda74c06acec9ae507573fee361be798bc94c", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:44dcfe328c3e1826", + "fingerprint": "44dcfe328c3e1826aa37c4a49686c5bf4877192c52bd7b3f039d0b98cb72b01b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:5f3c7ddd3c9e5299", + "fingerprint": "5f3c7ddd3c9e52991b41ce1627ca33648b5bc48a0df9a88f56e7033a06a480e1", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:6be06653e9876d6e", + "fingerprint": "6be06653e9876d6ea92a41dfb98b0327067cd4f6b9b9e963362cf3cf84f96c71", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:9287495dc2447ef3", + "fingerprint": "9287495dc2447ef32961113cb30226e8010bcf8e812f828d7cae6af6b8be63d8", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:94cafd2f1f3e1c75", + "fingerprint": "94cafd2f1f3e1c753df6f9ce76c81eedeffac9ed8785339bf37f3ed2eaae0e15", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:98293e4922127ad1", + "fingerprint": "98293e4922127ad14153bf4465a59a7d2b58612c72094d6fa72a24d56a8a8d2f", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:c47b24d096b3b9a7", + "fingerprint": "c47b24d096b3b9a7e91779a7472237f930a17e8a12c1dc792a718cf1429fc2cf", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d17b28be779777b8", + "fingerprint": "d17b28be779777b85291fdcc057dd1aaae9d9c86a86cf1c63d47aed819294bdd", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:d3c4e956c1948467", + "fingerprint": "d3c4e956c19484678c2137827d18f1e2599248e0775afe4dfcd121a707bc8a39", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:da64481645c2b4f6", + "fingerprint": "da64481645c2b4f69ea8b311f33e628fcc0fa5fb989418d94273cca9f3499aea", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:df82132ba73ce4e6", + "fingerprint": "df82132ba73ce4e6836c01b6584a4315d4df088ce465e081198bbf81ae158013", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:IfStatement:f7da58c441dab76a", + "fingerprint": "f7da58c441dab76a02f8c637e8c79a1002f705cce799a7b2c5a3e831a0ee479c", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:11eb1346655210ad", + "fingerprint": "11eb1346655210add1115d8a440f544328b82a4fda8db9e621821cea6c1daaf7", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:22b3c14914342b73", + "fingerprint": "22b3c14914342b73074a5c379547340069daf6672b71ba248492e8a7e242a846", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:2d2c6d08639f12cd", + "fingerprint": "2d2c6d08639f12cdf9663da5a2dcb29b51683871a973266ea9f3b10e3546f976", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:3fccfc6c117112bb", + "fingerprint": "3fccfc6c117112bb815dbe001c0ec05266dadbfb20389d4a2eb7c95093987a9e", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:48515b2a8e3fb0be", + "fingerprint": "48515b2a8e3fb0bee754f5f5abd556af1e5e2c12d027498eed60813d808f4acd", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:5b629e3f0402920d", + "fingerprint": "5b629e3f0402920d652c2d39d9626dd01f52e67bcfb3ddfe15fabf7db663d37a", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:705b20be0817e601", + "fingerprint": "705b20be0817e601c1068639e074aa2461eac28f3ed2df02b4ddfa10db02f0ce", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:74b4829187561854", + "fingerprint": "74b4829187561854edb56f9950b7772c00acab326f9404071c7499770ee4238c", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:7c776ac90ed6c801", + "fingerprint": "7c776ac90ed6c8016a64c0c25d286c4c95891d25565e4301edd331534e76a3fe", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:803ff61e52d117a8", + "fingerprint": "803ff61e52d117a899ace17c94d115f984922d23a61de4f0f6a9acf245487344", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:9536c93d464ca696", + "fingerprint": "9536c93d464ca696240e88914677afd709f69c9c4e962915ae2f49089365296f", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:a4057d42367bac6b", + "fingerprint": "a4057d42367bac6ba45fdb6591a43e54b9cbb89bdc3b0f31f6de9bc2494ec4d9", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:aa5e8006f832cd2d", + "fingerprint": "aa5e8006f832cd2d68e6d486444fdd140ccddb0b77426e0bc44f50bc88cec9fd", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:b607cbb3ca271db0", + "fingerprint": "b607cbb3ca271db0c5e10918b3189757bed25a0198772cc6ec4f3e1dad5b881b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:c5ebcdcf4164d255", + "fingerprint": "c5ebcdcf4164d255fc87126cb87aae233f4bb3bd484a8e712b7f36bbb923e5e9", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:dbe2cff14f0a7242", + "fingerprint": "dbe2cff14f0a724228e8dfd5d61b3b6721bb6de6ead72bef7beb9b3f39337d57", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx:module:LogicalExpression:f7531bbd732c637e", + "fingerprint": "f7531bbd732c637e7fe26337e05a5565606c804e55334ae4d94d14892ca45e9f", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/AsciiBlock/AsciiBlock.tsx:AsciiBlock:ConditionalExpression:a3d1557b0a99751e", "fingerprint": "a3d1557b0a99751ebd72f15f86d3926808af94e75b5b26c3fa6c2a0ed4294d22", @@ -149735,6 +154584,36 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:2e07ddfa96aab527", + "fingerprint": "2e07ddfa96aab52767d63664b5a8ec98e9d0877f08325fd971b2e89eb461eeb7", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:3f3652279171acff", + "fingerprint": "3f3652279171acfff1411b296d526f2a19cf3ad26997fe4dbce84b017c6e2a9b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:ChecklistWorkspace:LogicalExpression:4102ac1c73e332c8", + "fingerprint": "4102ac1c73e332c8478df39803e1e9637f565bfcb95021c1d2d5d7ec432735a2", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/ChecklistWorkspace/ChecklistWorkspace.tsx:module:ConditionalExpression:00e9febb41fb9293", "fingerprint": "00e9febb41fb9293514dd4935d76dfc3f5d9b86a6908dda94e2d672e5057b3dc", @@ -159346,8 +164225,38 @@ } }, { - "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:5dbc7cb76ae26938", - "fingerprint": "5dbc7cb76ae26938882433514518a70d837938f3a454b66e0293f735ab16a08e", + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:139ce3999bd34b95", + "fingerprint": "139ce3999bd34b95d1d20af5c2126c7c8ec2f04c41d22c4788c596a80d340024", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:25c2bd2ab09cf3b6", + "fingerprint": "25c2bd2ab09cf3b6fd72d3e6482daa95ea1563ee86016d6b47135a6a89a6e23d", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:8778c3eaee02a865", + "fingerprint": "8778c3eaee02a86553b058e3f07a8496d79b0a4ffc757bcf3ef9129e79a94f45", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:1ca2c32c22777c90", + "fingerprint": "1ca2c32c22777c90066520b204d14560fd1285e9f76421b80804ebcd209371d0", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -159356,8 +164265,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:622a561a4a95288b", - "fingerprint": "622a561a4a95288b1a1cfc9dc10769035d3c962f19e29725039ac8012786eb29", + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:616f67096c39e513", + "fingerprint": "616f67096c39e51368283664c953e7e3d571f463fb2e480686989d596c8aadf8", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -159366,8 +164275,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:ConditionalExpression:cd1bf78e83e8998c", - "fingerprint": "cd1bf78e83e8998cd5099cf1467acadf508463aa04768fae4a88790e7456123d", + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:61c56e7fe806d325", + "fingerprint": "61c56e7fe806d325d3ba2b2028acde8b26309cdb6ff16f6aad93053bdaa561e6", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -159386,8 +164295,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:8b6418830b656eff", - "fingerprint": "8b6418830b656eff0209968dc6976886749182f15b6b3d9a49811bb1fc7e419d", + "id": "b34:branch:dashboard/src/oven/FeedList/FeedList.tsx:FeedList:LogicalExpression:aa474a2a03bfe367", + "fingerprint": "aa474a2a03bfe367f6e611a6b0a4f58f94424011bb99ac18f96b8def99d93e3a", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -160445,6 +165354,76 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:39eeec3add1ac5ec", + "fingerprint": "39eeec3add1ac5eca9b65a3f40331c548e41a36f5767f34115a084e00528aaa0", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:3d39402c33fe783a", + "fingerprint": "3d39402c33fe783aea12a853001db01ba2204f94ffe59beff3c125bfb0000f0c", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:ConditionalExpression:437fa8c05ae07c3b", + "fingerprint": "437fa8c05ae07c3bb63fc637ce4d3905f6a5fa8bf024b07664e4610c5fe2c6e9", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:28cbf958e8e92b0d", + "fingerprint": "28cbf958e8e92b0d93c9c34b93c1369978df056b10d173f5dcc6ac4102445456", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:b34d755a3d9d24a9", + "fingerprint": "b34d755a3d9d24a97fad75cb98e916a03e04fac79562312033b948c02f9f842b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d1fa5fe08a7dc0c9", + "fingerprint": "d1fa5fe08a7dc0c9abab868076a125280c8582444e68a0332f458e06a439d1ff", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/KpiItem/KpiItem.tsx:KpiItem:LogicalExpression:d940a4b58d02a9e7", + "fingerprint": "d940a4b58d02a9e7702fc8c268999f20fa41cecb2278f34455ab421744013ce7", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/LogTable/LogTable.tsx:LogTable:ConditionalExpression:4e3dabf51cd1fc67", "fingerprint": "4e3dabf51cd1fc67a15543f55ea4b439c5b42d4ccf995074ddde5ccc49253829", @@ -162985,6 +167964,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter:ConditionalExpression:2bc22669a5696d0b", + "fingerprint": "2bc22669a5696d0bd76c7b03fe3e7dc87fce78436cef81c3e6a322061af30335", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/control-adapters.tsx:PaginationAdapter:ConditionalExpression:7cc43de1322ef602", "fingerprint": "7cc43de1322ef602cf344244126052653e6b05e136eecf357d3fa11c5bc76d56", @@ -163635,16 +168624,6 @@ "status": "gap" } }, - { - "id": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:2ce3337742db6ccc", - "fingerprint": "2ce3337742db6ccc23e5f082bc3936a2e5ab9159a3d4959962910bb611cb66ee", - "mappingStatus": "gap", - "atomCoverage": { - "implemented": 0, - "total": 1, - "status": "gap" - } - }, { "id": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:3ae1acde645995de", "fingerprint": "3ae1acde645995de093518cef12c7682b1a77169b7973c7ab3be724ef705de7f", @@ -163695,6 +168674,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:ConditionalExpression:cf811942c1b5778c", + "fingerprint": "cf811942c1b5778c5f559018b73df3320f1f996c0a122759258076836cdf41d3", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:0217fcbd88b18e00", "fingerprint": "0217fcbd88b18e00353c321aa5c69500de6907ddf36126401994248372763fe4", @@ -163706,8 +168695,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2f2c1c0c8395b9d4", - "fingerprint": "2f2c1c0c8395b9d4b685fe92ccd6355562b266be5dfaed2afe2b96597f4b83f2", + "id": "b34:branch:dashboard/src/oven/runtime/log-table-adapter.ts:buildLogTableProps:LogicalExpression:2e8e45f47d7d9a90", + "fingerprint": "2e8e45f47d7d9a90658273972e2a68a30e8e20a013ce78fe088659314e0ef7b8", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -164155,6 +169144,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:0b57ea3c6689d2f6", + "fingerprint": "0b57ea3c6689d2f64ac89d3245a7f98b6a0a0c034ac6cb64d590ba0ae983a7a3", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:0ca4cc9617a9103e", "fingerprint": "0ca4cc9617a9103efb0b67f5d3fca6d03545e407bfd96d07cca422b034136da7", @@ -164205,6 +169204,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:2ed2c44628ac80dd", + "fingerprint": "2ed2c44628ac80ddde377c25262969fcc3e850e5f8db95ecead4551b73274f08", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:30486bd775f6ef05", "fingerprint": "30486bd775f6ef05132eb1d60eebc9af533f94384f656140aa4d67393d97fa9c", @@ -164275,6 +169284,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3d88b2c3266a4540", + "fingerprint": "3d88b2c3266a45404116745a2f613f39e3cd44291492f743888c0d1bc6d9beed", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:3e553dc40a179dec", "fingerprint": "3e553dc40a179dec4cf45e9bf36cb17433d47c909433dd20eaca5f6d28dd9fe4", @@ -164335,6 +169354,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4b78900ec1977efb", + "fingerprint": "4b78900ec1977efb3870b3579b5d3ad3bb023cf91bd6ade6a3f156611639ea91", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4c5fbf04d3060e3b", "fingerprint": "4c5fbf04d3060e3b452ec40ad46b48dd1629e257127ddf92c8388944b7192433", @@ -164345,6 +169374,26 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d3e797d424b4eaa", + "fingerprint": "4d3e797d424b4eaadb60451a5159c7854af37e18065ef080e7656554110cdfa5", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4d68ad0c6bd0f2f1", + "fingerprint": "4d68ad0c6bd0f2f102723b16d6d1488bb5b3e9ac941f84de18353bdc3abcbb61", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:4fd67de79ca1c5d7", "fingerprint": "4fd67de79ca1c5d78f79d36c9710cef513da0df6cbe531394133458c00f36bdd", @@ -164595,6 +169644,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:a29f0b9a5972e081", + "fingerprint": "a29f0b9a5972e081ce1beeb3edbf03449e29a8650d3f929da74da03a15230874", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:a53d23e370714496", "fingerprint": "a53d23e370714496550b52c66fa162946f0dc28eb24e02d12c844bc2e494c787", @@ -164665,6 +169724,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:bfb49f6bdb565ae1", + "fingerprint": "bfb49f6bdb565ae1afcd9c0c270d7dd100677293c879388e453734cc0e1053a5", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:c0fa3117f93e9928", "fingerprint": "c0fa3117f93e9928e46f21fc188da7df00d3ef8ec240dfc9e3dc6d3426359761", @@ -164745,6 +169814,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:IfStatement:fdfaa51bcb5f8827", + "fingerprint": "fdfaa51bcb5f882709d9746666d50b0b8d77148dace03e2df25dc5ef242d5f98", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:40b2646caf6e7a41", "fingerprint": "40b2646caf6e7a418ba083ef704ad11ad0a29bbaff483db8905c4ab6e9e1e8a1", @@ -164795,6 +169874,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:6bf505f9c18df2dc", + "fingerprint": "6bf505f9c18df2dce5e16de759d45f93c7e1ade218d66e5c70650620851caf03", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/lower-oven-ir.ts:module:LogicalExpression:8224dbd215dfe1e9", "fingerprint": "8224dbd215dfe1e9178bf7d3967b9d94f8f7328a9e3a7442687d799c2f4d969a", @@ -165146,8 +170235,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:81c8ea6d16cba209", - "fingerprint": "81c8ea6d16cba2095ce4a70f345ab9fa7930791d18eac4e475b48f1dad70e733", + "id": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:ConditionalExpression:b034468485727f9f", + "fingerprint": "b034468485727f9f82a9b3dcf76aca1e02e2760e4b331298d94232725be8650e", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -165156,8 +170245,18 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:b5bedeb603105334", - "fingerprint": "b5bedeb60310533418cfd773e7a08e97c434159585f7b33a6d22cd9c90703d24", + "id": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:74155c24d82b03e3", + "fingerprint": "74155c24d82b03e37922d65ec2c14a055585a08492392819ddb405c665b014e8", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:81c8ea6d16cba209", + "fingerprint": "81c8ea6d16cba2095ce4a70f345ab9fa7930791d18eac4e475b48f1dad70e733", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -165166,8 +170265,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:bb9a8596ffcc3709", - "fingerprint": "bb9a8596ffcc370916e78ded085f4ecb48caa5af49f253c06555698109d52399", + "id": "b34:branch:dashboard/src/oven/runtime/oven-live-data.ts:subscribeOvenRuntimeSnapshot:IfStatement:b5bedeb603105334", + "fingerprint": "b5bedeb60310533418cfd773e7a08e97c434159585f7b33a6d22cd9c90703d24", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -165645,6 +170744,26 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:55a8e91b26703b67", + "fingerprint": "55a8e91b26703b67a872fe8cbf2ed06e6c48daceac5ad3046ff1e959d7fef26f", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:5847c052fe52b42c", + "fingerprint": "5847c052fe52b42cd3e2768dd44e6a8014c2f2a4f067830de7ecbe2e3d066c61", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:6f73b4d6eda24324", "fingerprint": "6f73b4d6eda243247e8c821886191880a726655678adbc1d6e4d183410788b7e", @@ -165766,8 +170885,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:c88dfad89abd1ea6", - "fingerprint": "c88dfad89abd1ea6b9241aef9065ec3c154a8643aa188121c52f66d2b9af6cbd", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:e5d4d9fd380832ab", + "fingerprint": "e5d4d9fd380832abcc049095882641133cc317be7ae65901657cc9f671c30031", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -165776,8 +170895,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:e5d4d9fd380832ab", - "fingerprint": "e5d4d9fd380832abcc049095882641133cc317be7ae65901657cc9f671c30031", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f4682df3b7988e28", + "fingerprint": "f4682df3b7988e28cf7fbc264d43a5141e01dce8b0a288c9957ca531654015b9", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -165786,8 +170905,18 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f4682df3b7988e28", - "fingerprint": "f4682df3b7988e28cf7fbc264d43a5141e01dce8b0a288c9957ca531654015b9", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:f5d95943521c70c9", + "fingerprint": "f5d95943521c70c9e125a20c69155268f35444894007bc545139def23ba22c9a", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:ConditionalExpression:fb7bc6db5a947968", + "fingerprint": "fb7bc6db5a94796840f6c5aba1625e568581672c123beb9a3a99313f1b969a94", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -165965,6 +171094,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:4ce0e95591d8166e", + "fingerprint": "4ce0e95591d8166ef95d97c5da0cb6f1242b80ea773347dbcd249bd1a110ad78", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:5e50bd428023e404", "fingerprint": "5e50bd428023e40432868d458a32543874ddad4db1ba452630d738f22f8dbe14", @@ -166026,8 +171165,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:887d32479e5ac373", - "fingerprint": "887d32479e5ac3734db272f0577d6efacfda22a76d2c8f1cc6320c67a18a99c9", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:8d47622d288b55a5", + "fingerprint": "8d47622d288b55a57fe42ae5e762e92d6a0d3d08297708112866c204db96b93e", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -166036,8 +171175,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:8d47622d288b55a5", - "fingerprint": "8d47622d288b55a57fe42ae5e762e92d6a0d3d08297708112866c204db96b93e", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9495f48fd3f4ea0c", + "fingerprint": "9495f48fd3f4ea0c52778c921750e1d9c1bc50fa0809f9bcc12dc320b65de084", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -166046,8 +171185,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9495f48fd3f4ea0c", - "fingerprint": "9495f48fd3f4ea0c52778c921750e1d9c1bc50fa0809f9bcc12dc320b65de084", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:996a10f85826063b", + "fingerprint": "996a10f85826063b3373765eb2d1ef290eb689be6f4922eaf79c91818ea8048e", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -166056,8 +171195,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:996a10f85826063b", - "fingerprint": "996a10f85826063b3373765eb2d1ef290eb689be6f4922eaf79c91818ea8048e", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:module:LogicalExpression:9993c329adc6195b", + "fingerprint": "9993c329adc6195bf4c5a85b7256f9cc442b74b2f6fbd7c0234b8ea5e7b47537", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -166285,6 +171424,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:b11770b9497382fe", + "fingerprint": "b11770b9497382fe94737e5f9b33b87544e1dd39beec8cabd2de286815c692be", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:ConditionalExpression:d82752f2718126bb", "fingerprint": "d82752f2718126bbabec1472991439dc2187612391cfb6235ab5cb2ba4f2b92d", @@ -166316,8 +171465,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:a929af546604bfaa", - "fingerprint": "a929af546604bfaa3964fbbce84202d315af17827eddc446c74ddd6d9b199ed2", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:IfStatement:b012bd24bbf5651b", + "fingerprint": "b012bd24bbf5651b51b46e78641eb63688395f0a4a5f9ddb3eaf4e9e7707dc0f", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -166455,6 +171604,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:69da497c6deca4cf", + "fingerprint": "69da497c6deca4cfa669dcc665ba0792e0fec03dabec3eea67246ee6ab0dcd89", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:6bdd93adccb94f8e", "fingerprint": "6bdd93adccb94f8e1eaf9fdaa135879b195f6796eea9a5a31b6e0ad5b066c7f3", @@ -166466,8 +171625,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", - "fingerprint": "a1fecaf9c99c7303a8546286e404724414220f9d9313b55ed432f7a86e1b76e6", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:848fce5a596f1aff", + "fingerprint": "848fce5a596f1aff5e8b87a5b23888efab9ffb3a7e6df9a884b4097f8533af87", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -166476,8 +171635,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a3098ec8e3405f82", - "fingerprint": "a3098ec8e3405f82676b172411999c4d8238fcf98b3c6ab8a97428f8f040c5ee", + "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:a1fecaf9c99c7303", + "fingerprint": "a1fecaf9c99c7303a8546286e404724414220f9d9313b55ed432f7a86e1b76e6", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -166536,8 +171695,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-reducer.ts:ovenReducer:SwitchCase:ea8520efb21e83f8", - "fingerprint": "ea8520efb21e83f85291f80ef2d3514340ff5d94c53a539f8ba6bc1ac0999627", + "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", + "fingerprint": "12aec929a10149521af5df56472dc7fe398875ba1f6e70bb5a717c8b519f00da", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -166546,8 +171705,18 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:12aec929a1014952", - "fingerprint": "12aec929a10149521af5df56472dc7fe398875ba1f6e70bb5a717c8b519f00da", + "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:6efb650d1c22a884", + "fingerprint": "6efb650d1c22a884a853cc702f6d86ad102f307826dc7a808795c83936b8db18", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:ConditionalExpression:74f2f8fa5a7c4245", + "fingerprint": "74f2f8fa5a7c42456f106e306cbffb812bcc1702fab18f0080492af9b39b3ff9", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -166565,6 +171734,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:IfStatement:ae216ce246107522", + "fingerprint": "ae216ce246107522e5b02ea57617cd1d6bcf2505d78c38ac17de8e3288943b7b", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:725ed4374f5bbb1e", "fingerprint": "725ed4374f5bbb1e6695c70e7be12960a29e82194b8a1d03df0ffd73cc799c64", @@ -166585,6 +171764,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:module:LogicalExpression:ca102f31e96ee334", + "fingerprint": "ca102f31e96ee3346358f993e226496ab9f4c8ac4d7d516064a8db188860648c", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/oven-selectors.ts:selectCollection:ConditionalExpression:4f993687f4a8f9ba", "fingerprint": "4f993687f4a8f9ba6c11293afeb160a3fd7aca829e595d2672bc6263314bc38b", @@ -166685,6 +171874,36 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:052617db78e67b3e", + "fingerprint": "052617db78e67b3e25bb0bb5d4ac4a7378b2a4ad6eeea631446e19450aa927a7", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:ConditionalExpression:b4524a7cc10fa52e", + "fingerprint": "b4524a7cc10fa52e863a06a9d2f871a55ea680f563ca5ffe39f0ce6aae054c16", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:collectionItemIdentity:LogicalExpression:25f15f29fc33edd8", + "fingerprint": "25f15f29fc33edd8c1e6c7e7fc2cc68f1987e68d1b664e09c0db9716f5015a4d", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenDocument:LogicalExpression:0217fcbd88b18e00", "fingerprint": "0217fcbd88b18e00353c321aa5c69500de6907ddf36126401994248372763fe4", @@ -166705,6 +171924,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:IfStatement:12957f0abdd8346b", + "fingerprint": "12957f0abdd8346b60a429549a716473e67cc124678e6b817173e2f1e95fd5a4", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:0217fcbd88b18e00", "fingerprint": "0217fcbd88b18e00353c321aa5c69500de6907ddf36126401994248372763fe4", @@ -166715,6 +171944,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:15b3c0b681f25783", + "fingerprint": "15b3c0b681f25783d84e3a4a5eb322edfd2c349a934cba7de315963340bfe2ad", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:isStaticOvenNode:LogicalExpression:1c52a102506149b3", "fingerprint": "1c52a102506149b31d316c806a52311c1bdb271b6fcb594e8fec88327c43fc6e", @@ -167056,8 +172295,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:97ee8237c820c21d", - "fingerprint": "97ee8237c820c21da325b35d2951fdd042abc410213cf0130e8d053a0e271b35", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:7f382864dfd4c1e1:1", + "fingerprint": "7f382864dfd4c1e1fa3641a1c0fe56fb85679951b6d907d61a67b109b3092755", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167066,8 +172305,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:ad933f06fec6dd22", - "fingerprint": "ad933f06fec6dd2206ec9b9d4d334b860e4e7c22a3b9032ee8d88a6eb4c23f3b", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:88a71376bd465bae", + "fingerprint": "88a71376bd465baebbcb047962d8a128cf07377959de89e6aa1fa8e4936659d6", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167076,8 +172315,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:b7bc1169a2494266", - "fingerprint": "b7bc1169a2494266ba8fab2ea1d7117249055b68fd1c6a783f304ba3b1d26347", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:97ee8237c820c21d", + "fingerprint": "97ee8237c820c21da325b35d2951fdd042abc410213cf0130e8d053a0e271b35", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167086,8 +172325,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:0a393a50d3ea29ed", - "fingerprint": "0a393a50d3ea29ed637a0807389b8547df13c833183b30362d6c78c1dee13570", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:ConditionalExpression:ad933f06fec6dd22", + "fingerprint": "ad933f06fec6dd2206ec9b9d4d334b860e4e7c22a3b9032ee8d88a6eb4c23f3b", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167096,8 +172335,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:12d28ad7a93133d3", - "fingerprint": "12d28ad7a93133d3d64b2f56a553c021056b1337a0ec708490c6f3712ecaa974", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:0a393a50d3ea29ed", + "fingerprint": "0a393a50d3ea29ed637a0807389b8547df13c833183b30362d6c78c1dee13570", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167116,8 +172355,18 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:20585287984dd9c1", - "fingerprint": "20585287984dd9c1811d5c9aa51d3e21a5ad4f69dfd489e18ff3e8bbf65a013a", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:1b146cc70f927c38", + "fingerprint": "1b146cc70f927c383e3c5036212ca98ba1c7e48162010842f6d4ebf4296b1e2c", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:2069312d4c66853f", + "fingerprint": "2069312d4c66853fd2004ce2a3127c322dc9dd5f24d9d603cff2f8665249aac3", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167146,8 +172395,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5152465376a9c911", - "fingerprint": "5152465376a9c9114826b4c7e2eb3409a1b1d25cf6d56369894f8a0aae5fb147", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:3bffa6f115e3f864", + "fingerprint": "3bffa6f115e3f864cea230e4bec6f6c3865ab9e6478216106c03396ceb63fb50", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167156,8 +172405,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:597b0aae4af34d5e", - "fingerprint": "597b0aae4af34d5e6ea453963b35421b10504eab972ee2a34b640a5d615299b5", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5152465376a9c911", + "fingerprint": "5152465376a9c9114826b4c7e2eb3409a1b1d25cf6d56369894f8a0aae5fb147", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167166,8 +172415,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:5e7967abefb3bff9", - "fingerprint": "5e7967abefb3bff99f7e0b75dd2b9f3fff2a2d93d056443b4643c91588d2e3a5", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:597b0aae4af34d5e", + "fingerprint": "597b0aae4af34d5e6ea453963b35421b10504eab972ee2a34b640a5d615299b5", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167186,8 +172435,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:8bcb1228c6d36d4c", - "fingerprint": "8bcb1228c6d36d4cf5bca470d5a7b14762351c4ea6358e50a33afb37c88b1181", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", + "fingerprint": "9213842995d448cb3211650e95e0fc4f0ff1dd41f180549595f6436e3246c064", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167196,8 +172445,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:9213842995d448cb", - "fingerprint": "9213842995d448cb3211650e95e0fc4f0ff1dd41f180549595f6436e3246c064", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:a4870193de2d95be", + "fingerprint": "a4870193de2d95be50ab9fb8929f044a48a725689c44d1a4e5b8b4d91a5df74e", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167215,6 +172464,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:ccfdba79ee088030", + "fingerprint": "ccfdba79ee08803084e86ed60425ead53315dc9996f6515ac878734cc5b90ecb", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:IfStatement:f4e0aadda15a4518", "fingerprint": "f4e0aadda15a451829446891d53b67dd57f9ed7112749db3a292b3027af08488", @@ -167296,8 +172555,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:5486e403476c5820", - "fingerprint": "5486e403476c5820f8eff1a7f1281108cabbfa591cfe23973af1f08b4c40e361", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:15b3c0b681f25783", + "fingerprint": "15b3c0b681f25783d84e3a4a5eb322edfd2c349a934cba7de315963340bfe2ad", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167306,8 +172565,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:6409c3795d66abf8", - "fingerprint": "6409c3795d66abf897748252b21fe5877f24fe039394082a773b15cfc8dd21a8", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:1f60a643f29f64f0", + "fingerprint": "1f60a643f29f64f093d6901c976438f5be9e7d4b2daf223364e6e90c9f22223b", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167316,8 +172575,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:6d78064757237b8e", - "fingerprint": "6d78064757237b8ed88d1f93c3de7c539de061520ea106be0d578d3ee89ca30d", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:5486e403476c5820", + "fingerprint": "5486e403476c5820f8eff1a7f1281108cabbfa591cfe23973af1f08b4c40e361", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167326,8 +172585,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:96fb8c747f316c6a", - "fingerprint": "96fb8c747f316c6a52ca001b685feaf86fcd8257ed047f825a9e2fd69b12b54d", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:6409c3795d66abf8", + "fingerprint": "6409c3795d66abf897748252b21fe5877f24fe039394082a773b15cfc8dd21a8", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167336,8 +172595,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:cf1bd476fcf935cb", - "fingerprint": "cf1bd476fcf935cb9401a09cd2c1f494be4749109dddacfb52ad92ff39138576", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:6d78064757237b8e", + "fingerprint": "6d78064757237b8ed88d1f93c3de7c539de061520ea106be0d578d3ee89ca30d", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167346,8 +172605,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", - "fingerprint": "fbf6d4564b415e0ce6a790dc9cd940eb2c704e483152a5ce7d483e3e0d483638", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:96fb8c747f316c6a", + "fingerprint": "96fb8c747f316c6a52ca001b685feaf86fcd8257ed047f825a9e2fd69b12b54d", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167356,8 +172615,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572", - "fingerprint": "27b040b99478757271792668447a6cfc9bc285c3fea8ac1a5521996872f2a5f9", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:cf1bd476fcf935cb", + "fingerprint": "cf1bd476fcf935cb9401a09cd2c1f494be4749109dddacfb52ad92ff39138576", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167366,8 +172625,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:27b040b994787572:1", - "fingerprint": "27b040b99478757271792668447a6cfc9bc285c3fea8ac1a5521996872f2a5f9", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:f2dba9684502413d", + "fingerprint": "f2dba9684502413d92a3c066180cfb1a13d11c7b2c27d769448258fd647a9e36", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167376,8 +172635,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239", - "fingerprint": "2f315a5ca81752391d07fd68b5ed99d995803eca4ca66c619667af9170f0009e", + "id": "b34:branch:dashboard/src/oven/runtime/OvenNode.tsx:OvenNode:LogicalExpression:fbf6d4564b415e0c", + "fingerprint": "fbf6d4564b415e0ce6a790dc9cd940eb2c704e483152a5ce7d483e3e0d483638", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167386,8 +172645,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2f315a5ca8175239:1", - "fingerprint": "2f315a5ca81752391d07fd68b5ed99d995803eca4ca66c619667af9170f0009e", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:module:ConditionalExpression:2368494c19944a82", + "fingerprint": "2368494c19944a82d030e648a18505d5abd9c74698d8752e58fb92501517c504", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167396,8 +172655,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:388d2f159fb9a778", - "fingerprint": "388d2f159fb9a778c674171387a5aec00780938d9d8afe32bbe9a40a27fbe31d", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:2773ca4334b3ed09", + "fingerprint": "2773ca4334b3ed09f1a869feec4d88f261911c2ea5f2e950798d4ac88ccd4555", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167406,8 +172665,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:40f55403640c6433", - "fingerprint": "40f55403640c643392f586da7109c6fbdca82c680f8bf28cb7c98b9ab2e08cf0", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:388d2f159fb9a778", + "fingerprint": "388d2f159fb9a778c674171387a5aec00780938d9d8afe32bbe9a40a27fbe31d", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167416,8 +172675,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:4b58356b67031944", - "fingerprint": "4b58356b67031944382c95635421bdd5f0bd28d8a7f82c14de06c040fee09db7", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:40f55403640c6433", + "fingerprint": "40f55403640c643392f586da7109c6fbdca82c680f8bf28cb7c98b9ab2e08cf0", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167426,8 +172685,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6501af3966fd5b7d", - "fingerprint": "6501af3966fd5b7d38213ca3bb2cd2fe04b6f5c2d687a204c4b64c76d3d19f28", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:43dafcf33b7efde7", + "fingerprint": "43dafcf33b7efde7eb6eb1fd63380a0a10116128e4fab49cc0234c6d8b71f4e1", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167436,8 +172695,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:663381afde3a27b9", - "fingerprint": "663381afde3a27b90e8d5486870213f237488f5a080ca0459dca07e9ecfb8b11", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", + "fingerprint": "6a4da56a523f8edbcef9d3e2f4c92cea3caa4dac89dd1e175ecc85029a87ddef", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167446,8 +172705,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:6a4da56a523f8edb", - "fingerprint": "6a4da56a523f8edbcef9d3e2f4c92cea3caa4dac89dd1e175ecc85029a87ddef", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:720b9ba1596aa0a5", + "fingerprint": "720b9ba1596aa0a52461e0d5fc90b6cf79ab5bad96deecb19a507d7652af11bd", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167456,8 +172715,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:b2859638173d6220", - "fingerprint": "b2859638173d6220ad0c150bc494b807642c117e7f99b8c26ac6812c1341bee5", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:8e3d9be74ca04c30", + "fingerprint": "8e3d9be74ca04c30fec489f2be3d46e66e0fa91ca7626c0db56afbf9a63e2bd1", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167466,8 +172725,8 @@ } }, { - "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:f6355a08580bd4ed", - "fingerprint": "f6355a08580bd4edf9514d88fb6c7173202e2598feb7a50d7da2785c2505cb8a", + "id": "b34:branch:dashboard/src/oven/runtime/OvenRuntime.tsx:OvenRuntime:ConditionalExpression:b2859638173d6220", + "fingerprint": "b2859638173d6220ad0c150bc494b807642c117e7f99b8c26ac6812c1341bee5", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -167785,6 +173044,16 @@ "status": "gap" } }, + { + "id": "b34:branch:dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter:IfStatement:4aa2aac2689a6460", + "fingerprint": "4aa2aac2689a6460f5a7862594c0e4c1e8a136b04410798ed649f832a22779ec", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:branch:dashboard/src/oven/runtime/widget-adapters.tsx:ChecklistWidgetAdapter:IfStatement:7f4e02b0deaaaf77", "fingerprint": "7f4e02b0deaaaf779c8e7ae189f2202a13cef5e7a8b12a3dac6b731da6401231", @@ -168226,8 +173495,18 @@ } }, { - "id": "b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:LogicalExpression:d2826138fda42cf5", - "fingerprint": "d2826138fda42cf51e11f67f71f5981a9e4a2edc696a068efc5750f806e76a46", + "id": "b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:29f4244244c3e4c7", + "fingerprint": "29f4244244c3e4c71347d82efc2eb3c08c5a3fed3eacda0343691ffde651ec72", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:branch:dashboard/src/oven/SectionHeader/SectionHeader.tsx:SectionHeader:IfStatement:97380eef91c0afa1", + "fingerprint": "97380eef91c0afa1f8d685a076911287acb39ca95e8e01f49adc3413617e0005", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -170975,6 +176254,56 @@ "status": "gap" } }, + { + "id": "b34:registry:componentRegistry:AgentMonitorActivityChart", + "fingerprint": "50325fd2df150a935af58ebf7fa82bef2e1ac75469220cd6505750a7a3ef1e74", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:registry:componentRegistry:AgentMonitorEventCard", + "fingerprint": "f418dbd1b6eb90718e14a612b03fa48cd25e660867a15eec78de9338c900df81", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:registry:componentRegistry:Alert", + "fingerprint": "44a57b22e03d9a661c22ffc5ffea51b3e1e33de24a53609e70f690dea8f70872", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:registry:componentRegistry:AlertDescription", + "fingerprint": "ad2354424d862d9e421c3034be833adb82024447af2e26413e11b5f74999c1e5", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "b34:registry:componentRegistry:AlertTitle", + "fingerprint": "d6b0a1362484230e9391a05b841f44de8a4a381d823158f4182eeaf15909e6dc", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "b34:registry:componentRegistry:Box", "fingerprint": "512fd3c6042cd1d9150d46fa59b5911a1f97b8275d73eb0a841daa31e93bd349", @@ -171557,7 +176886,7 @@ }, { "id": "b34:surface:dashboard/src/App.tsx", - "fingerprint": "080397df0fba73862698bb023ad8077a37c1a3ed9e3cca70f190346e4d2bbcab", + "fingerprint": "205aa6b64af24b68e4401120560ab28544d414b3912a95726dac2929410f3eba", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -171577,7 +176906,7 @@ }, { "id": "b34:surface:dashboard/src/components/CustomOvenView/CustomOvenView.tsx", - "fingerprint": "50662dc969a5935aa0bb5a58f31fbabbf345f99c7528cf42fcf3a6ef623bf729", + "fingerprint": "dc954e87c8875e00caa73351fc2a118928610fd5a3a4091853b5f4aaf0b1ae4d", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -171657,7 +176986,7 @@ }, { "id": "b34:surface:dashboard/src/lib/hrefs.ts", - "fingerprint": "012245e959c91a44299f58a02f5edaa455a03bc9f1ec4136101635ff9b194532", + "fingerprint": "8cbb99bfcf27c70cefa93bc103c09d8e2ee76a5f873576396956d057e0e02575", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -171667,7 +176996,7 @@ }, { "id": "b34:surface:dashboard/src/lib/route-model.mjs", - "fingerprint": "fc07733b2561fec878aba288d2573ae90a976afb2aa46d8fcc3e35efaac839f8", + "fingerprint": "1743650b45feee363b8fea7fb89182baa2e458f039fc54c6dff0be0a1d30b1f5", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -171745,68 +177074,8 @@ "status": "gap" } }, - { - "id": "b34:theme:checklist:region:1:className", - "fingerprint": "e11205f5d798b31ebb298daf14afd3fa0ba5ab2a8238387e0bd3cff68460b480", - "mappingStatus": "gap", - "atomCoverage": { - "implemented": 0, - "total": 1, - "status": "gap" - } - }, { "id": "b34:theme:checklist:region:1:element", - "fingerprint": "421d15c883daac9511703e79c2c30aeb9cb023b370a689b370dc81803c314b59", - "mappingStatus": "gap", - "atomCoverage": { - "implemented": 0, - "total": 1, - "status": "gap" - } - }, - { - "id": "b34:theme:checklist:region:1:kind:checklist-burn-panel", - "fingerprint": "2eab204aeb875fd2c925dc31ca7375d8e762b376cf982d40899979489f0f3979", - "mappingStatus": "gap", - "atomCoverage": { - "implemented": 0, - "total": 1, - "status": "gap" - } - }, - { - "id": "b34:theme:checklist:region:1:kind:checklist-current", - "fingerprint": "785addb3437e213f01165aedbf760d9a34d0a68cf841e56560c98e9035d8dcad", - "mappingStatus": "gap", - "atomCoverage": { - "implemented": 0, - "total": 1, - "status": "gap" - } - }, - { - "id": "b34:theme:checklist:region:1:kind:checklist-ledger", - "fingerprint": "8e1d79c9466767ade2fe49e57026373a6affc284e6ffd4c84c81eaf450fb33e1", - "mappingStatus": "gap", - "atomCoverage": { - "implemented": 0, - "total": 1, - "status": "gap" - } - }, - { - "id": "b34:theme:checklist:region:1:props", - "fingerprint": "6542b9364f60e775787712d74dda2ea787d5d836d9778e68a53cde70a902c265", - "mappingStatus": "gap", - "atomCoverage": { - "implemented": 0, - "total": 1, - "status": "gap" - } - }, - { - "id": "b34:theme:checklist:region:2:element", "fingerprint": "7d38929fd4356be35088cecc7928dce4abce59a11b1ef8a154982a091b4769c5", "mappingStatus": "gap", "atomCoverage": { @@ -171816,8 +177085,8 @@ } }, { - "id": "b34:theme:checklist:region:2:kind:checklist-event-cards", - "fingerprint": "6e7e8ef772a4dabd52dced9f22dd0503c862288d34e51b7d992d122fdada7c6a", + "id": "b34:theme:checklist:region:1:kind:checklist-tabs", + "fingerprint": "9bb2ec2b3157bd782208c9c0a2b58460de5d9509cbfa729d3a7998cb39f30994", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -172257,11 +177526,23 @@ } ], "officialOvens": [ + { + "id": "official:ovens/agent-monitor/agent-monitor.oven", + "path": "ovens/agent-monitor/agent-monitor.oven", + "sourceFingerprint": "96b12ff2bd9126a48ab500bfea723346ab34e7f408ed6acad96f98e9dfe9db6d", + "irFingerprint": "b2fb11f4cfc12958779c19a92b3e0e4e774b1955c95836075e232f3fb6e1f172", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "official:ovens/checklist/checklist.oven", "path": "ovens/checklist/checklist.oven", - "sourceFingerprint": "8506a3a0539f6f7714c15d4bb24e1ad8e896fde2dc12649361186dbadf40428d", - "irFingerprint": "51146ece59a3b06f228fdcd38c9b5c9690cd9349920eab9f93571e7b1bfa15c0", + "sourceFingerprint": "147291b12e904b0ad415233d9c027d62ebb71a093d525c9b6875cc8bdb7146bf", + "irFingerprint": "748cb57bd93d9caa7249cfa018a4577ae4b14e3b3f52f9f30bb7d456f4d162e0", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -172345,13 +177626,27 @@ }, "denominatorB": { "publicExports": [ + { + "id": "public:dashboard/src/components/index.ts#AgentMonitor", + "root": "dashboard/src/components/index.ts", + "export": "AgentMonitor", + "definition": "dashboard/src/components/AgentMonitor/AgentMonitor.tsx", + "classification": "react-component", + "fingerprint": "f8a9c1032963f5332c74493ac9ad495cf193b1be1d0658a93db58cfcc07b0df7", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "public:dashboard/src/components/index.ts#AppHeader", "root": "dashboard/src/components/index.ts", "export": "AppHeader", "definition": "dashboard/src/components/AppHeader/AppHeader.tsx", "classification": "react-component", - "fingerprint": "d770895e88336d5165a7c7dec518b33ee8eb6b8fb447f1f23202c9d5da1554cb", + "fingerprint": "d0d703a544423c9515e085adf6ffeabba396ddd23e78a5c7395e89f5ea55a42e", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -172379,7 +177674,7 @@ "export": "ChecklistDashboard", "definition": "dashboard/src/components/ChecklistDashboard/ChecklistDashboard.tsx", "classification": "react-component", - "fingerprint": "55ac8067e8b4660d6d853d8770cae84ae55c1dd61019ab7df85f6edc8ebf761f", + "fingerprint": "6a93d23bc7e548a7901ae60bf831b01b88fc48b978b53b68425f54e230e2f29b", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -172407,7 +177702,7 @@ "export": "CustomOvenView", "definition": "dashboard/src/components/CustomOvenView/CustomOvenView.tsx", "classification": "react-component", - "fingerprint": "d1742db0c9fcf038651d781454353b56ae542b70f54afa83525b51ecff859bc9", + "fingerprint": "59229b7cef783a62b2e118e2738afa45782ca39e6efa291abd91ab0fb0888e9e", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -173283,6 +178578,34 @@ "status": "gap" } }, + { + "id": "public:dashboard/src/oven/index.ts#AgentMonitorActivityChart", + "root": "dashboard/src/oven/index.ts", + "export": "AgentMonitorActivityChart", + "definition": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "classification": "react-component", + "fingerprint": "c066b01d732c89ce6b9492455144fc9d9a01233eb9d317e3c026b01827103a1a", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, + { + "id": "public:dashboard/src/oven/index.ts#AgentMonitorEventCard", + "root": "dashboard/src/oven/index.ts", + "export": "AgentMonitorEventCard", + "definition": "dashboard/src/oven/AgentMonitorEventCard/AgentMonitorEventCard.tsx", + "classification": "react-component", + "fingerprint": "3e891f4ce779a4b7b3c69575c5b76e755a61e3e7dd53c9f2adb5c4a36e7649d4", + "mappingStatus": "gap", + "atomCoverage": { + "implemented": 0, + "total": 1, + "status": "gap" + } + }, { "id": "public:dashboard/src/oven/index.ts#AsciiBlock", "root": "dashboard/src/oven/index.ts", @@ -173297,6 +178620,20 @@ "status": "gap" } }, + { + "id": "public:dashboard/src/oven/index.ts#buildAgentMonitorActivity", + "root": "dashboard/src/oven/index.ts", + "export": "buildAgentMonitorActivity", + "definition": "dashboard/src/oven/AgentMonitorActivityChart/AgentMonitorActivityChart.tsx", + "classification": "utility", + "fingerprint": "c066b01d732c89ce6b9492455144fc9d9a01233eb9d317e3c026b01827103a1a", + "mappingStatus": "supporting", + "atomCoverage": { + "implemented": 0, + "total": 0, + "status": "supporting" + } + }, { "id": "public:dashboard/src/oven/index.ts#buildChecklistProgressChart", "root": "dashboard/src/oven/index.ts", @@ -173471,7 +178808,7 @@ "export": "FeedList", "definition": "dashboard/src/oven/FeedList/FeedList.tsx", "classification": "react-component", - "fingerprint": "0f8e286706048fdd064701bdb27b55144385c216ea94cd7fe0a9d4d53e82e997", + "fingerprint": "ce6d700dbc828848ce5089af9fa287132251b20f5335d6098e56fdf108f4f80d", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -173597,7 +178934,7 @@ "export": "KpiItem", "definition": "dashboard/src/oven/KpiItem/KpiItem.tsx", "classification": "react-component", - "fingerprint": "80fc4221faf715276390d584da45db3c34f348ad73c9096d9b7703c083997d75", + "fingerprint": "88bdaacf0cfdae7a2b304239d6f29b82abd7909b1b472bafc28890d9218e2aaf", "mappingStatus": "implemented", "atomCoverage": { "implemented": 1, @@ -173667,7 +179004,7 @@ "export": "PaginationBar", "definition": "dashboard/src/oven/PaginationBar/PaginationBar.tsx", "classification": "react-component", - "fingerprint": "b6a90363ff0fbccb5987050e8baa907388d11a73e6834bbb4806bf19780b7909", + "fingerprint": "dd18ce22e5bec56a7d07f546e038a8cfb26fdc690ba3753c7b4300a00fd72516", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -173709,7 +179046,7 @@ "export": "SectionHeader", "definition": "dashboard/src/oven/SectionHeader/SectionHeader.tsx", "classification": "react-component", - "fingerprint": "21b8afa76f44a93f7090f3e826ad0fd3fd4aa11866767734b6fb6e17d1a14488", + "fingerprint": "944cb7fdbd0fdaec51ddc563676ccd82e6c67586fde65000e04c24cf4d763264", "mappingStatus": "gap", "atomCoverage": { "implemented": 0, @@ -288244,7 +293581,7 @@ "tui/src/oven-runtime/layout/layout-runtime.ts": "4361391c97cc2aa3e8c3a358f5b576db6a51bced3afdb780da9888d8d786967c", "tui/src/oven-runtime/layout/structural-viewport.tsx": "fd46914f3bdc20e5df80b2a280f8d15eab1f40974cf38921ae1f786353d7ccee", "tui/src/catalog/structural-fixture.oven": "182c120d5c5747c7e0a7f1cbc460bab2f3e415232a988ba33aa4842c1f3d22c4", - "tui/src/catalog/frame-renderer.tsx": "29c18a0a6612203313bb6097ff0c51ad6b266a072619078536c109301557693a", + "tui/src/catalog/frame-renderer.tsx": "b0d52c4c62e04e57624b9218a536079e4b2aa1f7430c9d9b5f772a93feadb553", "tui/package.json": "429cc11e898b8dacfdc104c946e3ffccde00146405569923baf76d82b7f38961", "tui/package-lock.json": "c2ade41fa10032adea090b15854034b900c452fa47911d1a55f7d4a88944a552", "tui/src/catalog/progress-frame-renderer.tsx": "1b8562ad2a732e1844093f127ac00780aec7d6db698c0e6ef47a73764f9d0aa2", @@ -288257,12 +293594,12 @@ "tui/src/catalog/progress-target-waffle-metric.oven": "42ce81d1e38d959a04c2ea57adede68b7748a88fc09d6f58a20982bba6fec75c", "tui/src/catalog/progress-target-progress-value.oven": "6f339e209fdad17eb6120e70699ecdf0653865ffc93f328c0dfe41d18c3496d0", "tui/src/glyph-surface.ts": "966bc247e478d5b372a13c3aaeba5afe269b2bca4cf86ff18c6df4d91aadc0e7", - "tui/src/oven-runtime/components/component-layout.ts": "3b62237a69f38952f36e067f370e1ffd19d4369c3214234cb08ed248757fe7e2", + "tui/src/oven-runtime/components/component-layout.ts": "73d897da8ba8fc9144b35d2dbef1c3dc699df16572dfd26fec4bca13b2ff8aea", "tui/src/oven-runtime/components/progress-components.tsx": "44d3e985773812336db5cf2a26ba26d2dd6e1dd16fdbbe2c9e21f7c327c36be1", "tui/src/oven-runtime/components/progress-glyph.ts": "b9deb96d74cf40c1f3398820378a5f7ee07195fc1c926451fdbe3473e007ef9a", - "tui/src/oven-runtime/components/terminal-capabilities.ts": "b6e9b49c61eae4bb3f50a645f59f0cd10c096fbf68b6cc8892a11fa6c21cc72d", - "tui/src/oven-runtime/components/terminal-oven-viewport.tsx": "b15f07aa7b84e2c842e50cf80bae5e4f53cbd557c5e5a75045fb5444070e264b", - "tui/src/oven-runtime/terminal-contract.ts": "eee0b67985b236ec25fd23f8c1dc0ff679bc037c51ff839781b9744a1d6a5247", + "tui/src/oven-runtime/components/terminal-capabilities.ts": "5511d069d4485634525fcaa239c5b9884fb33e990fcc9213570108647a104501", + "tui/src/oven-runtime/components/terminal-oven-viewport.tsx": "30a5dcd5d59f100abcdaf2a4858492486ecf80b97f55bb11a324e3a709b04ea3", + "tui/src/oven-runtime/terminal-contract.ts": "0fa4dd43703f45e3a5fde121ff33afee1f4bb073f431d4cccccf62b1bd7ec46e", "tui/src/oven-runtime/value-runtime.ts": "8b4e7d4af624b69ba578657a4d38045968b9414dae41ef6417db3062aca4a900" } }, @@ -288270,7 +293607,7 @@ "paths": [ { "path": "tui/src/app.tsx", - "fingerprint": "9349e0b2e021a8248cebb175302d048c4a0100d2d8ff7dccddece8f6dab53ae6" + "fingerprint": "38c1e8e98d1b3eb06f23f92dab32ba646c1c6785711756a4e75b88c3d3253fee" }, { "path": "tui/src/catalog/catalog-app.tsx", @@ -288285,12 +293622,12 @@ "fingerprint": "79c3003c436aecd5ec31c515ed2cd59687967a1ea71b520c83e6bb77659b1aa6" } ], - "fingerprint": "1fa3e4bb228f3119d414bb85d0a9aa6e4c4c35f1b4b1c580e2e0ff4dbad335e3" + "fingerprint": "3fa385286daa8740d57694fda7de62c76b3500e10153f8aa8e26f54257fcf020" } }, "coverage": { "implemented": 29, - "total": 12747, + "total": 12998, "status": "partial" } } diff --git a/bin/burnlist.mjs b/bin/burnlist.mjs index 309af32a..1a338acf 100755 --- a/bin/burnlist.mjs +++ b/bin/burnlist.mjs @@ -10,6 +10,7 @@ const packageRoot = resolve(dirname(fileURLToPath(import.meta.url)), ".."); const knownSubcommands = new Set([ "install", "uninstall", + "agent-monitor", "differential-testing", "streaming-diff", "hooks", @@ -161,6 +162,7 @@ Usage: burnlist differential-testing validate-bundle burnlist differential-testing schema burnlist differential-testing sdk + burnlist agent-monitor ... burnlist streaming-diff ... burnlist hooks [install|uninstall|status] [--agent codex,claude] [--untracked] (bare defaults to status) burnlist oven ... @@ -223,6 +225,8 @@ if (args[0] !== "oven" && (args.includes("--version") || args.includes("-v"))) { if (args[0] === "oven") { await import("../src/cli/oven-cli.mjs"); +} else if (args[0] === "agent-monitor") { + await import("../src/cli/agent-monitor-cli.mjs"); } else if (args[0] === "streaming-diff") { await import("../src/cli/streaming-diff-cli.mjs"); } else if (args[0] === "hooks") { diff --git a/dashboard/src/App.tsx b/dashboard/src/App.tsx index 5a90ee4e..54659ca8 100644 --- a/dashboard/src/App.tsx +++ b/dashboard/src/App.tsx @@ -1,8 +1,8 @@ import { useMemo, useState } from "react"; import { ListChecks } from "lucide-react"; -import { AppHeader, BurnlistTable, ChecklistOvenView, CustomOvenView, DashboardError, DifferentialTestingOvenPage, EmptyState, FILTERS, Filters, LensSwitcher, ModelLabPage, NewOvenPage, OvenCatalog, OvenDefinition, OvenExplainer, PerformanceTracingOvenPage, ProjectGroup, RunBurnPage, StreamingDiff, VisualParityPage } from "@components"; +import { AgentMonitor, AppHeader, BurnlistTable, ChecklistOvenView, CustomOvenView, DashboardError, DifferentialTestingOvenPage, EmptyState, FILTERS, Filters, LensSwitcher, ModelLabPage, NewOvenPage, OvenCatalog, OvenDefinition, OvenExplainer, PerformanceTracingOvenPage, ProjectGroup, RunBurnPage, StreamingDiff, VisualParityPage } from "@components"; import { useDashboardData } from "@hooks"; -import { checklistOvenRepoKey, currentSection, filterFromUrl, ovenRepoKey, selectedBurnlist } from "@lib"; +import { checklistOvenRepoKey, currentSection, customOvenSelection, filterFromUrl, ovenRepoKey, selectedBurnlist } from "@lib"; import type { Filter } from "@lib"; import { Button } from "@layout"; @@ -10,8 +10,9 @@ export function App() { const section = currentSection(); const selected = useMemo(selectedBurnlist, [window.location.pathname, window.location.search]); const repoKey = ovenRepoKey(); + const customOven = section === "custom-oven" ? customOvenSelection() : null; const [filter, setFilter] = useState(() => filterFromUrl(FILTERS)); - const dashboardSection = ["landing", "burnlist", "streaming-diff"].includes(section) || (section === "custom-oven" && selected) ? "burnlists" : section; + const dashboardSection = ["landing", "burnlist", "agent-monitor", "streaming-diff"].includes(section) || (section === "custom-oven" && selected) ? "burnlists" : section; const { projects, progress, error, loading, stale } = useDashboardData({ section: dashboardSection, selected }); const checklistRepoKey = checklistOvenRepoKey(progress, selected); const visibleBurnlistCount = projects.reduce((total, project) => total + project.entries.filter((entry) => filter === "all" || entry.status === filter).length, 0); @@ -26,13 +27,13 @@ export function App() { setFilter(nextFilter); }; - const fullLayout = ["differential-testing", "model-lab", "performance-tracing", "streaming-diff", "visual-parity", "custom-oven"].includes(section) || selected; + const fullLayout = ["agent-monitor", "differential-testing", "model-lab", "performance-tracing", "streaming-diff", "visual-parity", "custom-oven"].includes(section) || selected; return (
- +
- {section === "differential-testing" ? {(ir) => } : section === "model-lab" ? {(ir) => } : section === "performance-tracing" ? {(ir) => } : section === "streaming-diff" ? {(ir) => } : section === "visual-parity" ? {(ir) => } : section === "custom-oven" ? : section === "new-oven" ? : section === "run-burn" ? : section === "ovens-catalog" ? : section === "oven-explainer" ? : selected ? ( + {section === "agent-monitor" ? {(ir) => } : section === "differential-testing" ? {(ir) => } : section === "model-lab" ? {(ir) => } : section === "performance-tracing" ? {(ir) => } : section === "streaming-diff" ? {(ir) => } : section === "visual-parity" ? {(ir) => } : section === "custom-oven" ? : section === "new-oven" ? : section === "run-burn" ? : section === "ovens-catalog" ? : section === "oven-explainer" ? : selected ? ( loading && !progress ? : progress ? ( <>{error && }{(ir) => } ) : error ? : diff --git a/dashboard/src/components/AgentMonitor/AgentMonitor.tsx b/dashboard/src/components/AgentMonitor/AgentMonitor.tsx new file mode 100644 index 00000000..36429171 --- /dev/null +++ b/dashboard/src/components/AgentMonitor/AgentMonitor.tsx @@ -0,0 +1,71 @@ +import { useEffect, useMemo } from "react"; +import { useAgentMonitorActivation, useAgentMonitorFeeds, useAgentMonitorSnapshot, type ResolvedOvenIr } from "@hooks"; +import { FeedList } from "@oven"; +import { + agentMonitorAutoOpenHref, + agentMonitorRepositories, + agentMonitorSelection, + agentMonitorSnapshotNotice, + ovenRepoKey, +} from "@lib"; +import type { Project } from "@lib"; +import { OvenRuntime } from "@/oven/runtime/OvenRuntime"; +import "./agent-monitor.css"; + +export function AgentMonitor({ + ir, + projects, + projectsLoading, +}: { + ir: ResolvedOvenIr; + projects: Project[]; + projectsLoading: boolean; +}) { + const selection = agentMonitorSelection(); + const repoKey = ovenRepoKey(); + const aggregateSelection = !selection && repoKey + ? { repoKey, worktreeKey: repoKey, session: "all" } + : null; + const repositories = useMemo( + () => repoKey ? [{ repoKey, label: repoKey }] : agentMonitorRepositories(projects), + [projects, repoKey], + ); + const activation = useAgentMonitorActivation(repositories); + const feeds = useAgentMonitorFeeds( + repositories, + projectsLoading || activation.loading, + Boolean(selection || aggregateSelection), + ); + const snapshot = useAgentMonitorSnapshot(selection ?? aggregateSelection, Boolean(aggregateSelection)); + const notice = activation.error + ? { kind: "error", text: activation.error } + : agentMonitorSnapshotNotice(snapshot); + const autoOpenHref = agentMonitorAutoOpenHref(feeds.feeds); + + useEffect(() => { + if (autoOpenHref) window.location.replace(autoOpenHref); + }, [autoOpenHref]); + + if (!selection && !aggregateSelection) { + return 1} + title="Agent Monitor" + />; + } + + const current = selection ?? aggregateSelection!; + const backHref = `/r/${encodeURIComponent(current.repoKey)}/o/agent-monitor`; + return
+
+ {selection && All recent activity} +

Agent Monitor

+

{selection ? `Thread ${selection.session}` : "Latest activity across recent threads"}

+
+ {notice &&

{notice.text}

} + {snapshot.data && } +
; +} diff --git a/dashboard/src/components/AgentMonitor/agent-monitor.css b/dashboard/src/components/AgentMonitor/agent-monitor.css new file mode 100644 index 00000000..c76ace01 --- /dev/null +++ b/dashboard/src/components/AgentMonitor/agent-monitor.css @@ -0,0 +1,313 @@ +.agent-monitor-selected { + width: min(calc(100% - 32px), 1120px); + margin: 0 auto; + padding: 24px 0 40px; +} + +.agent-monitor-heading { margin: 0 0 18px; } +.agent-monitor-heading h1 { margin: 0; font: 400 24px/1.2 var(--dashboard-title-font); } +.agent-monitor-heading p { margin: 6px 0 0; color: var(--muted-foreground); overflow-wrap: anywhere; } +.agent-monitor-back { display: inline-block; margin-bottom: 12px; color: var(--primary); font-size: 13px; } +.agent-monitor-back:hover { text-decoration: underline; text-underline-offset: 4px; } + +.agent-monitor-message { + margin: 0 0 12px; + padding: 12px 16px; + border: 1px solid var(--line); + border-radius: var(--radius); + background: var(--panel); + color: var(--muted-foreground); +} + +.agent-monitor-message.is-error { border-color: rgba(239, 68, 68, .35); color: var(--destructive-foreground); } + +.agent-monitor-view { + display: grid; + min-width: 0; + gap: 14px; +} + +.agent-monitor-view .checklist-kpi-strip { + display: grid; + width: 100%; + height: auto; + min-height: 0; + grid-template-columns: minmax(240px, 1.4fr) minmax(190px, 1.1fr) repeat(3, minmax(110px, .75fr)); + gap: 8px; + padding: 0; + overflow: visible; + border: 0; + background: transparent; +} + +.agent-monitor-view .driving-parity-kpi-item { + min-height: 78px; + padding: 14px 16px; + border: 1px solid var(--line); + border-radius: 8px; + background: var(--panel); +} + +.agent-monitor-view .driving-parity-kpi-item:first-child { border-left: 1px solid var(--line); } +.agent-monitor-view .driving-parity-kpi-heading { + color: var(--muted); + font: 400 12px/1.2 var(--dashboard-title-font); +} +.agent-monitor-view .driving-parity-kpi-ratio { + overflow: hidden; + color: var(--foreground); + font-size: 18px; + line-height: 1.3; + text-overflow: ellipsis; + white-space: nowrap; +} + +.agent-monitor-health [data-slot="alert"] { + min-height: 64px; + justify-content: center; +} + +.agent-monitor-activity { + min-width: 0; + padding: 16px; + border: 1px solid var(--line); + border-radius: 8px; + background: var(--panel); +} + +.agent-monitor-activity-heading { + display: flex; + align-items: flex-start; + justify-content: space-between; + gap: 16px; +} + +.agent-monitor-activity-heading h2 { + margin: 0; + color: var(--foreground); + font: 400 18px/1.25 var(--dashboard-title-font); +} + +.agent-monitor-activity-heading p, +.agent-monitor-activity-empty { + margin: 4px 0 0; + color: var(--muted); + font-size: 12px; +} + +.agent-monitor-activity-legend { + display: flex; + flex-wrap: wrap; + justify-content: flex-end; + gap: 7px 12px; + margin: 1px 0 0; + padding: 0; + color: var(--muted-foreground); + font-size: 11px; + list-style: none; +} + +.agent-monitor-activity-legend li { + display: inline-flex; + align-items: center; + gap: 5px; + white-space: nowrap; +} + +.agent-monitor-activity-legend span { + width: 7px; + height: 7px; + border-radius: 1px; + background: currentColor; +} + +.agent-monitor-activity-legend [data-category="command"] { color: var(--primary); } +.agent-monitor-activity-legend [data-category="diff"] { color: var(--status-green); } +.agent-monitor-activity-legend [data-category="message"] { color: var(--amber); } +.agent-monitor-activity-legend [data-category="tool"] { color: var(--foreground); } +.agent-monitor-activity-legend [data-category="lifecycle"] { color: var(--muted-foreground); } +.agent-monitor-activity-legend [data-category="result"] { color: var(--destructive); } + +.agent-monitor-activity-chart { + display: block; + width: 100%; + height: 176px; + margin-top: 10px; +} + +.agent-monitor-activity-grid { + stroke: var(--line); + stroke-width: 1; + vector-effect: non-scaling-stroke; +} + +.agent-monitor-activity-axis { + fill: var(--muted); + font: 11px/1 var(--dashboard-font); +} + +.agent-monitor-activity-mark[data-category="command"] { fill: var(--primary); } +.agent-monitor-activity-mark[data-category="diff"] { fill: var(--status-green); } +.agent-monitor-activity-mark[data-category="message"] { fill: var(--amber); } +.agent-monitor-activity-mark[data-category="tool"] { fill: var(--foreground); } +.agent-monitor-activity-mark[data-category="lifecycle"] { fill: var(--muted-foreground); } +.agent-monitor-activity-mark[data-category="result"] { fill: var(--destructive); } + +.agent-monitor-activity-signal[data-signal="failure"] { fill: var(--destructive); } +.agent-monitor-activity-signal[data-signal="message"] { fill: var(--amber); } +.agent-monitor-activity-signal[data-signal="lifecycle"] { + stroke: var(--muted-foreground); + stroke-width: 2; + vector-effect: non-scaling-stroke; +} + +.agent-monitor-events { + display: grid; + min-width: 0; + gap: 8px; + margin-top: 4px; +} + +.agent-monitor-events > h2 { + margin: 4px 0 2px; + color: var(--foreground); + font: 400 20px/1.25 var(--dashboard-title-font); +} + +.agent-monitor-events .field-list-count { + color: var(--muted); + font: 400 13px/1 var(--dashboard-font); +} + +#agent-monitor-event-filter { + display: flex; + flex-wrap: wrap; + align-items: baseline; + gap: 7px 14px; + color: var(--muted); + font: 14px/1.2 var(--dashboard-title-font); +} + +#agent-monitor-event-filter button { + appearance: none; + width: auto; + height: auto; + padding: 0 0 2px; + border: 0; + border-bottom: 1px solid transparent; + border-radius: 0; + background: transparent; + box-shadow: none; + color: var(--muted); + font: inherit; + opacity: .5; +} + +#agent-monitor-event-filter button[aria-pressed="true"] { + border-bottom-color: currentColor; + color: var(--foreground); + opacity: 1; +} + +#agent-monitor-event-filter button:not(:disabled):hover { + border-color: transparent; + background: transparent; + color: var(--foreground); +} + +.agent-monitor-filter-empty { + color: var(--muted); + font-size: 13px; +} + +.agent-monitor-events:has(.agent-monitor-event) .agent-monitor-filter-empty { + display: none; +} + +.agent-monitor-event, +.agent-monitor-event [data-slot="alert-title"], +.agent-monitor-event [data-slot="alert-description"] { + min-width: 0; + overflow-wrap: anywhere; +} + +.agent-monitor-event-type { color: var(--muted-foreground); } +.agent-monitor-event[data-category="command"] .agent-monitor-event-type { color: var(--primary); } +.agent-monitor-event[data-category="diff"] .agent-monitor-event-type { color: var(--status-green); } +.agent-monitor-event[data-category="message"] .agent-monitor-event-type { color: var(--amber); } +.agent-monitor-event[data-category="result"] .agent-monitor-event-type { color: var(--destructive); } +.agent-monitor-event[data-category="tool"] .agent-monitor-event-type { color: var(--foreground); } + +.agent-monitor-patch { + margin-top: 12px; + border-top: 1px solid var(--line); + padding-top: 10px; +} + +.agent-monitor-patch summary { + width: fit-content; + color: var(--foreground); + cursor: pointer; + font: 12px/1.35 var(--dashboard-font); +} + +.agent-monitor-patch pre { + max-height: 360px; + margin: 10px 0 0; + padding: 12px; + overflow: auto; + border: 1px solid var(--line); + border-radius: 6px; + background: rgba(0, 0, 0, .28); + font: 12px/1.45 var(--dashboard-font); + tab-size: 2; + white-space: pre; +} + +.agent-monitor-patch code { font: inherit; } +.agent-monitor-patch code > span { + display: block; + min-height: 1.45em; +} + +.agent-monitor-patch [data-kind="header"] { color: var(--muted); } +.agent-monitor-patch [data-kind="hunk"] { color: var(--primary); } +.agent-monitor-patch [data-kind="add"] { color: var(--status-green); } +.agent-monitor-patch [data-kind="remove"] { color: var(--destructive); } +.agent-monitor-patch [data-kind="context"] { color: var(--muted-foreground); } +.agent-monitor-patch > p { + margin: 8px 0 0; + color: var(--muted); + font-size: 11px; +} + +.agent-monitor-events .driving-parity-pagination { + justify-content: flex-end; + margin-top: 4px; + padding: 4px 0 0; +} + +@media (max-width: 760px) { + .agent-monitor-view .checklist-kpi-strip { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + .agent-monitor-view .driving-parity-kpi-item:first-child { + grid-column: 1 / -1; + } + .agent-monitor-activity-heading { + display: grid; + } + .agent-monitor-activity-legend { + justify-content: flex-start; + } +} + +@media (max-width: 480px) { + .agent-monitor-selected { + width: calc(100% - 20px); + padding-top: 16px; + } + .agent-monitor-view .checklist-kpi-strip { grid-template-columns: minmax(0, 1fr); } + .agent-monitor-view .driving-parity-kpi-item:first-child { grid-column: auto; } + .agent-monitor-events .driving-parity-pagination { justify-content: flex-start; } +} diff --git a/dashboard/src/components/AgentMonitor/index.ts b/dashboard/src/components/AgentMonitor/index.ts new file mode 100644 index 00000000..945bdebc --- /dev/null +++ b/dashboard/src/components/AgentMonitor/index.ts @@ -0,0 +1 @@ +export { AgentMonitor } from "./AgentMonitor"; diff --git a/dashboard/src/components/AppHeader/AppHeader.tsx b/dashboard/src/components/AppHeader/AppHeader.tsx index 0ed22637..e1ccf19f 100644 --- a/dashboard/src/components/AppHeader/AppHeader.tsx +++ b/dashboard/src/components/AppHeader/AppHeader.tsx @@ -5,14 +5,16 @@ const HEADER_LINKS = [ { href: "/ovens/new", label: "New Oven", section: "new-oven" }, ] as const; -const OVEN_SECTIONS = ["differential-testing", "model-lab", "performance-tracing", "streaming-diff", "visual-parity"]; +const OVEN_SECTIONS = ["agent-monitor", "custom-oven", "differential-testing", "model-lab", "performance-tracing", "streaming-diff", "visual-parity"]; -export function AppHeader({ detail, section }: { detail: ChecklistProgressData | null; section: string }) { - const title = section === "differential-testing" ? "Differential Testing" +export function AppHeader({ detail, ovenId, section }: { detail: ChecklistProgressData | null; ovenId?: string | null; section: string }) { + const title = section === "agent-monitor" ? "Agent Monitor" + : section === "differential-testing" ? "Differential Testing" : section === "model-lab" ? "Model Lab" : section === "performance-tracing" ? "Performance Tracing" : section === "streaming-diff" ? "Streaming Diff" - : section === "visual-parity" ? "Visual Parity" : detail?.title; + : section === "visual-parity" ? "Visual Parity" + : section === "custom-oven" ? detail?.title ?? ovenId : detail?.title; return (
@@ -20,7 +22,7 @@ export function AppHeader({ detail, section }: { detail: ChecklistProgressData | Burnlist - {title &&
{title}
} + {title &&
{title}
}